:root {
  --black: #1a1a1a;
  --hot-pink: #e91e78;
  --lime: #c8e64a;
  --white: #ffffff;
  --light-gray: #f0f0f0;
  --medium-gray: #808080;
  --lilac: #c9a4f0;
  --deep-magenta: #d946d9;
  --charcoal: #0f0f10;
  --heading-font: "Franklin Gothic Medium", "Franklin Gothic", "ITC Franklin Gothic", Arial, sans-serif;
  --display-font: "Arial Black", "Arial Bold", Gadget, sans-serif;
  --body-font: "Open Sans", sans-serif;
  --tagline-font: "Playfair Display", Georgia, "Times New Roman", serif;
  --content-width: 1180px;
  --nav-height: 68px;
  --gutter: clamp(18px, 3vw, 40px);
  --section-space: clamp(44px, 7vw, 88px);
  --transition: 180ms ease;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--body-font);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

button,
.button-pill {
  appearance: none;
  border: 0;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  overflow-x: visible;
}

html {
  overflow-x: hidden;
}

.container {
  width: min(var(--content-width), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
}

.button-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--lime);
  color: #000;
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
}

.button-pill:hover,
.button-pill:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 230, 74, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.button-pill--dark:hover,
.button-pill--dark:focus-visible {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.button-pill--dark {
  background: var(--black);
  color: var(--white);
}

.button-pill--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}

.button-pill--outline:hover,
.button-pill--outline:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  filter: none;
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 8px;
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms cubic-bezier(0.23, 1, 0.32, 1), transform 620ms cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveals for grid children */
.showcase-grid .reveal:nth-child(2) { transition-delay: 120ms; }
.showcase-grid .reveal:nth-child(3) { transition-delay: 240ms; }
.content-grid .reveal:nth-child(2) { transition-delay: 100ms; }
.content-grid .reveal:nth-child(3) { transition-delay: 200ms; }
.content-grid .reveal:nth-child(4) { transition-delay: 300ms; }
.info-columns__grid .reveal:nth-child(2) { transition-delay: 100ms; }
.info-columns__grid .reveal:nth-child(3) { transition-delay: 200ms; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  z-index: 60;
  transition: none;
  will-change: width;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  color: var(--white);
}

.site-nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(1360px, calc(100% - var(--gutter) * 2));
  min-height: var(--nav-height);
  margin: 0 auto;
}

.site-nav__brand img {
  width: 68px;
}

.site-nav__menu {
  display: contents;
}

.site-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav__links a {
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--lime);
  transition: width 280ms cubic-bezier(0.23, 1, 0.32, 1);
}

.site-nav__links a:hover::after,
.site-nav__links a[aria-current="page"]::after {
  width: 100%;
}

.site-nav__links a[aria-current="page"] {
  color: var(--lime);
}

.site-nav__divider {
  opacity: 0.55;
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav__toggle {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  color: var(--white);
}

.site-nav__toggle span,
.site-nav__toggle::before,
.site-nav__toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.site-nav__toggle span {
  top: 20px;
}

.site-nav__toggle::before {
  top: 14px;
}

.site-nav__toggle::after {
  top: 26px;
}

.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: min(90vh, 980px);
  padding: clamp(40px, 6vw, 72px) 0 clamp(24px, 4vw, 40px);
}

.hero__top-row {
  position: relative;
  z-index: 2;
}

.hero__tagline {
  margin: 0;
  color: var(--hot-pink);
  font-family: var(--tagline-font);
  font-size: clamp(24px, 2.6vw, 32px);
  font-style: italic;
  line-height: 0.88;
}

.hero__middle-row {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero__logo {
  width: clamp(240px, 34vw, 440px);
}

.hero__bottom-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: clamp(40px, 8vw, 120px);
}

.hero__subtitle {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero__dates {
  flex-shrink: 0;
  text-align: right;
}

.hero__dates-label {
  display: block;
  color: var(--hot-pink);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.hero__dates-list {
  display: block;
  color: var(--hot-pink);
  font-size: clamp(38px, 3.8vw, 54px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.05em;
}

.hero__art-wrap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(8%, -50%);
  width: 65%;
  max-width: 900px;
  z-index: 1;
}

.interior-hero {
  min-height: 0;
}

.interior-hero .hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 0.7fr);
  min-height: 360px;
  padding: 56px 0 34px;
  align-items: end;
  position: static;
}

.interior-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.interior-hero__kicker {
  margin: 0 0 4px;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.interior-hero__title {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.interior-hero__title--pink {
  color: var(--hot-pink);
}

.interior-hero__title--lime {
  color: var(--lime);
}

.interior-hero__title--gallery {
  color: #ec90fd;
}

.interior-hero__title--violet {
  color: #cf8df2;
}

.interior-hero__art-wrap {
  right: 0;
  top: auto;
  bottom: 0;
  transform: translateX(8%);
  width: min(36vw, 320px);
  max-width: 320px;
}

.interior-hero__art-wrap img {
  width: 100%;
}

.description-band {
  background: #f22f6b;
}

.description-band__inner {
  padding: 28px 0 22px;
  text-align: center;
}

.description-band p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(15px, 1.7vw, 17px);
  font-weight: 700;
  line-height: 1.35;
}

.description-band small {
  display: block;
  margin-top: 12px;
  color: #000;
  font-family: var(--heading-font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.program-block {
  position: relative;
}

.program-block--white {
  background: var(--white);
}

.program-block--gray,
.program-block--light {
  background: var(--light-gray);
}

.program-block__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 32px;
  align-items: center;
  min-height: 320px;
  padding: 34px 0 32px;
}

.program-block__copy {
  max-width: 640px;
}

.program-block__title {
  margin: 0 0 8px;
  font-family: var(--heading-font);
  font-size: clamp(42px, 4vw, 56px);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.program-block__details {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.4;
}

.program-block__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.program-block__art {
  position: relative;
  display: flex;
  justify-content: center;
}

.program-block__circle {
  width: min(100%, 272px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #666a70;
}

.program-block__number {
  position: absolute;
  right: 8px;
  bottom: -12px;
  display: grid;
  place-items: center;
  width: 82px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: var(--display-font);
  font-size: 54px;
  line-height: 1;
  transition: transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
}

.program-block:hover .program-block__number {
  transform: scale(1.08);
}

.section-band {
  background: #090909;
  color: var(--white);
}

.section-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 320px);
  align-items: center;
  gap: 20px;
  min-height: 235px;
  padding: 28px 0;
}

.section-band__copy {
  max-width: 620px;
}

.section-band__tagline {
  margin: 0 0 6px;
  font-family: var(--heading-font);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.section-band__title {
  margin: 0;
  color: var(--lime);
  font-family: var(--heading-font);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.section-band__title--pink {
  color: var(--hot-pink);
}

.section-band__title--violet {
  color: #cf8df2;
}

.section-band__art {
  justify-self: end;
  width: min(100%, 340px);
}

.section-band__art--compact {
  width: min(100%, 280px);
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-panel {
  min-height: 250px;
  padding: 26px clamp(20px, 4vw, 40px);
  transition: filter 350ms ease;
}

.split-panel:hover {
  filter: brightness(1.04);
}

.split-panel--pink {
  background: var(--hot-pink);
}

.split-panel--lilac {
  background: #d1f067;
}

.split-panel--magenta {
  background: var(--deep-magenta);
}

.split-panel--gallery {
  background: #ec90fd;
}

.split-panel--light {
  background: #dddddd;
}

.split-panel--white {
  background: #f2f1f1;
}

.split-panel__title {
  margin: 0 0 8px;
  font-family: var(--heading-font);
  font-size: clamp(40px, 4vw, 54px);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.split-panel__details {
  margin: 0;
  max-width: 540px;
  font-size: 15px;
  line-height: 1.45;
}

.split-panel__copy {
  margin: 0;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.5;
}

.split-panel__details {
  margin-bottom: 18px;
}

.split-panel .button-pill {
  margin-top: 4px;
}

.showcase-intro {
  padding: 52px 0 80px;
  background: var(--white);
}

.showcase-intro--light {
  background: var(--white);
}

.center-heading {
  margin: 0;
  text-align: center;
  font-family: var(--heading-font);
  font-size: clamp(36px, 3.9vw, 54px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.dark-showcase {
  padding: 24px 0 30px;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.profile-card {
  text-align: center;
}

.profile-card__circle {
  width: min(100%, 180px);
  aspect-ratio: 1;
  margin: -70px auto 16px;
  border-radius: 50%;
  background: #666a70;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1), background 400ms ease;
}

.profile-card:hover .profile-card__circle {
  transform: scale(1.06);
  background: #7a7e84;
}

.profile-card__name {
  margin: 0 0 4px;
  font-family: var(--heading-font);
  font-size: clamp(24px, 2.6vw, 31px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.profile-card__meta {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.2;
}

.profile-card .button-pill {
  min-width: 88px;
}

.content-section {
  padding: clamp(44px, 6vw, 72px) 0;
  background: var(--white);
}

.content-section--light {
  background: var(--light-gray);
}

.content-grid {
  display: grid;
  gap: 42px;
}

.content-grid--mentorship {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card h3 {
  margin: 0 0 12px;
  font-family: var(--heading-font);
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.content-card h4 {
  margin: 18px 0 6px;
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 1.15;
}

.content-card p,
.content-card li {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.content-card p + p {
  margin-top: 12px;
}

.content-card ul {
  margin: 0;
  padding-left: 18px;
}

.content-card li + li {
  margin-top: 8px;
}

.note-section {
  padding: clamp(44px, 6vw, 68px) 0;
  background: var(--light-gray);
}

.note-section__inner {
  max-width: 920px;
}

.note-section h2 {
  margin: 0 0 16px;
  font-family: var(--heading-font);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.note-section p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
}

.info-columns {
  padding: clamp(38px, 5vw, 54px) 0;
  background: #9a9a9a;
}

.info-columns__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.info-columns h3,
.credits-band h3 {
  margin: 0 0 12px;
  font-family: var(--heading-font);
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.info-columns p,
.info-columns a,
.credits-band p {
  font-size: 14px;
  line-height: 1.45;
}

.info-columns a {
  display: inline-block;
  margin-top: 14px;
  position: relative;
  text-decoration: none;
}

.info-columns a::after,
.credits-band a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 260ms cubic-bezier(0.23, 1, 0.32, 1);
}

.info-columns a:hover::after,
.credits-band a:hover::after {
  width: 100%;
}

.credits-band {
  padding: clamp(34px, 5vw, 48px) 0;
  background: #d68ef5;
}

.credits-band__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.site-footer {
  position: relative;
  background: var(--black);
  color: var(--white);
  margin-bottom: 0;
  overflow: hidden;
}

html, body {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Subtle film grain on dark sections */
.hero::after,
.dark-showcase::after,
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  z-index: 0;
}

/* Ensure content stays above grain */
.hero > *,
.dark-showcase > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 36px 0;
}

.site-footer__logo {
  width: 72px;
}

.site-footer__text {
  padding-bottom: 0;
}

.site-footer__text p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
}

.site-footer__art {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(5, 5, 7, 0);
  pointer-events: none;
  opacity: 0;
  transition: background 300ms ease, opacity 300ms ease;
}

.modal.is-open {
  pointer-events: auto;
  opacity: 1;
  background: rgba(5, 5, 7, 0.92);
}

.modal.is-open .modal__dialog {
  transform: scale(1) translateY(0);
}

.modal__dialog {
  position: relative;
  transform: scale(0.96) translateY(12px);
  transition: transform 380ms cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(420px, 100%);
  padding: 36px 32px 32px;
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  padding: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  transition: color 200ms ease;
  cursor: pointer;
}

.modal__close:hover {
  color: var(--white);
}

.modal__media {
  width: 96px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #555;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.modal__body {
  align-self: center;
}

.modal__title {
  margin: 0 0 14px;
  font-family: var(--heading-font);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.modal__body p {
  margin: 0 0 16px;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.modal__body p:last-of-type {
  margin-bottom: 20px;
}

.modal__links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.modal__body a {
  display: inline-block;
  font-size: 12px;
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  position: relative;
  transition: color 200ms ease;
}

.modal__body a:hover {
  color: var(--lime);
}

.modal__body a + a::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

/* Application Form Modal */
.modal--form {
  padding: 24px 16px;
  align-items: start;
  overflow-y: auto;
}

.modal__dialog--form {
  width: min(560px, 100%);
  max-height: none;
  padding: 0;
  border-radius: 8px;
  text-align: left;
  flex-direction: column;
  margin: 24px auto;
}

.form-scroll {
  padding: 36px 32px 28px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.form-scroll::-webkit-scrollbar {
  width: 4px;
}

.form-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.form-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.form__title {
  margin: 0 0 20px;
  font-family: var(--heading-font);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.form__values {
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid var(--lime);
  border-radius: 0 4px 4px 0;
}

.form__values p {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.form__values p:last-child {
  margin-bottom: 0;
}

.form__group {
  border: none;
  padding: 0;
  margin: 0 0 24px;
}

.form__legend {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 6px;
  display: block;
  width: 100%;
}

.form__req {
  color: var(--hot-pink);
}

.form__opt {
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 400;
}

.form__helper {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.form__helper--schedule {
  font-size: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  margin-bottom: 14px;
}

.form__label {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.form__input,
.form__textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 1.45;
  transition: border-color 200ms ease, background 200ms ease;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form__input--indent {
  margin-top: 8px;
  margin-left: 26px;
  width: calc(100% - 26px);
}

.form__textarea {
  resize: vertical;
  min-height: 60px;
}

.form__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.form__radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 200ms ease;
}

.form__radio input[type="radio"]:checked {
  border-color: var(--lime);
  background: var(--lime);
  box-shadow: inset 0 0 0 3px var(--charcoal);
}

.form__radio input[type="radio"]:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.form__file {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.form__file::file-selector-button {
  padding: 6px 14px;
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease;
}

.form__file::file-selector-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.form__footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.form__note {
  margin: 0 0 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.button-pill--submit {
  min-width: 200px;
  min-height: 42px;
  font-size: 14px;
  background: var(--lime);
  color: #000;
}

.button-pill--submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form__status {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  min-height: 20px;
}

.form__status--success {
  color: var(--lime);
}

.form__status--error {
  color: var(--hot-pink);
}

@media (max-width: 1024px) {
  .site-nav__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav__toggle {
    display: block;
  }

  .site-nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 18px var(--gutter) 22px;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav__menu.is-open {
    display: grid;
    gap: 16px;
  }

  .site-nav__links,
  .site-nav__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav__divider {
    display: none;
  }

  .section-band__inner,
  .program-block__inner,
  .split-section,
  .content-grid--mentorship,
  .content-grid--two,
  .showcase-grid,
  .info-columns__grid,
  .credits-band__grid,
  .site-footer__inner,
  .modal__dialog {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    min-height: auto;
    padding-top: 40px;
  }

  .interior-hero .hero__inner {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 24px;
  }

  .hero__bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__art-wrap {
    position: static;
    width: 100%;
    max-width: 100%;
    display: block;
  }

  .interior-hero__art-wrap {
    width: min(100%, 340px);
    justify-self: start;
  }

  .section-band__art {
    justify-self: start;
  }

  .split-panel {
    min-height: auto;
  }

  .showcase-grid {
    gap: 24px;
  }

  .profile-card__circle {
    width: min(100%, 180px);
  }

  .modal {
    padding: 16px;
  }

  .modal__dialog {
    padding: 32px 24px 28px;
  }

  .site-footer__art {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-nav__actions {
    width: 100%;
  }

  .site-nav__actions .button-pill {
    width: 100%;
  }

  .program-block__number {
    right: 0;
    width: 72px;
    font-size: 46px;
  }

  .description-band small {
    font-size: 8px;
    line-height: 1.4;
  }

  .center-heading,
  .split-panel__title,
  .program-block__title,
  .section-band__title,
  .note-section h2,
  .interior-hero__title,
  .interior-hero__kicker {
    max-width: 12ch;
  }

  /* Fix 1: Hero art — scale down so it doesn't overlap dates */
  .hero__art-wrap {
    max-width: 70%;
    margin-left: auto;
    margin-top: -40px;
  }

  .hero__art-wrap img {
    max-width: 100%;
    height: auto;
  }

  /* Fix 2: Footer art — shrink and clip so it doesn't cover text */
  .site-footer__art {
    position: absolute;
    right: -20px;
    width: 90px;
    opacity: 0.5;
  }

  .site-footer__inner {
    padding-bottom: 18px;
    padding-right: 0;
  }

  .site-footer__text {
    max-width: calc(100% - 80px);
  }

  /* Fix 3: Speaker/mentor circles — remove negative margin overlap */
  .profile-card__circle {
    margin-top: 0;
    width: min(100%, 160px);
  }

  .showcase-grid {
    gap: 40px;
  }

  .modal__close {
    top: 10px;
    right: 12px;
    font-size: 44px;
  }
}
