*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F7F4EF;
  --warm-white: #FDFBF8;
  --ink: #1A1714;
  --ink-mid: #3D3830;
  --ink-light: #7A7268;
  --gold: #B8924A;
  --gold-light: #D4AA6A;
  --rule: rgba(26,23,20,0.12);
  --rule-gold: rgba(184,146,74,0.35);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: var(--ink);
  border-bottom: 0.5px solid rgba(184,146,74,0.3);
  padding: 0.7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 102;
  height: 36px;
}
.announce-bar p {
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.7);
  text-align: center;
}
.announce-bar p strong {
  color: var(--gold-light);
  font-weight: 300;
}
.announce-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.6;
}

/* ── ADA BADGE ── */
.ada-badge {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.4rem 1.8rem;
  border: 0.5px solid var(--rule-gold);
  background: rgba(184,146,74,0.04);
  margin: 2rem 0;
  position: relative;
}
.ada-badge::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
}
.ada-badge-label {
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.ada-badge-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: 0.05em;
  line-height: 1;
}
.ada-badge-sub {
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--ink-light);
}

.nav-wordmark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.nav-wordmark-text { line-height: 1; }
.nav-wordmark-free { color: var(--gold); }

.nav-logo {
  height: 34px;
  width: 34px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-logo:hover { opacity: 0.85; }

.footer-wordmark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.65);
  text-decoration: none;
}
.footer-wordmark-text span { color: var(--gold); }

.footer-logo {
  height: 32px;
  width: 32px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.85;
}
.footer-logo:hover { opacity: 1; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background: transparent;
  transition: background 0.4s ease, border-bottom 0.4s ease;
}
nav.scrolled {
  background: rgba(247,244,239,0.96);
  border-bottom: 0.5px solid var(--rule);
  backdrop-filter: blur(8px);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 1.0rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 0.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ── SECTION SHARED ── */
section { padding: 7rem 4rem; }

.section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::after {
  content: '';
  flex: 0 0 40px;
  height: 0.5px;
  background: var(--gold-light);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(10rem, 20vw, 22rem);
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,146,74,0.18);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.hero-eyebrow {
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 820px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-rule {
  width: 60px; height: 0.5px;
  background: var(--gold);
  margin: 2rem 0;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.hero-sub {
  font-weight: 200;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-light);
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}
.scroll-indicator { display: none; }

/* ── BUTTONS ── */
.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  border: 0.5px solid var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-gold {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  border: 0.5px solid var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.btn-gold:hover { background: var(--gold); color: var(--cream); }

/* ── ABOUT ── */
.about {
  background: var(--warm-white);
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}
.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--ink);
  position: sticky;
  top: 7rem;
}
.about-heading em { font-style: italic; color: var(--gold); display: block; }
.about-body p {
  font-family: 'Cormorant Infant', serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 2rem;
}
.about-body p:last-child { margin-bottom: 0; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 0.5px solid var(--rule);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-top: 0.4rem;
}

/* ── PHILOSOPHY STRIP ── */
.philosophy-strip {
  background: var(--ink);
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}
.philosophy-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 0.5px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.philosophy-strip::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 0.5px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.philosophy-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.4;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.philosophy-quote span { color: var(--gold-light); }
.philosophy-attr {
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.4);
  margin-top: 2.5rem;
}

/* ── HOME ROSTER TEASER ── */
.home-roster-teaser {
  background: var(--cream);
  border-top: 0.5px solid var(--rule);
}
.home-roster-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.home-roster-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.home-roster-heading em { font-style: italic; color: var(--gold); display: block; }
.home-roster-desc {
  font-family: 'Cormorant Infant', serif;
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 2rem;
}
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 0.5px solid var(--rule);
  border-top: 0.5px solid var(--rule);
}
.mini-cell {
  border-right: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  padding: 1.2rem 1.1rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--ink);
}
.mini-cell-cta {
  border-right: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  padding: 1.2rem 1.1rem;
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}
.mini-cell-cta span {
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── ARTIST CARD GRID ── */
.roster-grid-section {
  background: var(--warm-white);
  padding: 5rem 4rem 7rem;
}
.roster-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.artist-card {
  display: flex;
  flex-direction: column;
  cursor: default;
}
.artist-card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--ink);
  overflow: hidden;
  border: 0.5px solid var(--rule);
}
.artist-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s ease;
  opacity: 0.88;
}
.artist-card:hover .artist-card-photo img {
  transform: scale(1.04);
  opacity: 1;
}

/* placeholder state when no image */
.artist-card-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(247,244,239,0.02) 0px,
      rgba(247,244,239,0.02) 1px,
      transparent 1px,
      transparent 12px
    );
  z-index: 0;
}

.artist-card-photo img ~ * { z-index: 1; }

.artist-card-num {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 0.7rem;
  color: rgba(247,244,239,0.5);
  z-index: 2;
  line-height: 1;
}

/* gold accent line on hover */
.artist-card-photo .card-hover-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
  z-index: 3;
}
.artist-card:hover .card-hover-line { width: 100%; }

.artist-card-body {
  padding: 1rem 0 0;
  border-top: 0.5px solid var(--rule);
}
.artist-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: color 0.2s;
}
.artist-card:hover .artist-card-name { color: var(--gold); }
.artist-card-loc {
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-top: 0.3rem;
}
.artist-card-link {
  display: inline-block;
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 0.4rem;
  transition: color 0.2s;
}
.artist-card-link:hover { color: var(--gold-light); }

/* ── ARTISTS PAGE ── */
.artists-page-hero {
  padding: 10rem 4rem 4rem;
  border-bottom: 0.5px solid var(--rule);
}
.artists-page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.artists-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: var(--ink);
}
.artists-page-title em { font-style: italic; color: var(--gold); display: block; }
.artists-page-count {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(4rem, 8vw, 7rem);
  color: transparent;
  -webkit-text-stroke: 0.5px rgba(26,23,20,0.15);
  line-height: 1;
  flex-shrink: 0;
}

.artists-table-wrap {
  background: var(--warm-white);
  padding: 0 4rem 7rem;
}
.artists-table { max-width: 1100px; margin: 0 auto; padding-top: 1rem; }

.artist-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 0.5px solid var(--rule);
  position: relative;
  cursor: default;
}
.artist-row::before {
  content: '';
  position: absolute;
  left: -4rem; right: -4rem; top: 0; bottom: 0;
  background: var(--cream);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 0;
}
.artist-row:hover::before { opacity: 1; }
.artist-row > * { position: relative; z-index: 1; }

.ar-sweep {
  position: absolute;
  left: -4rem; top: -0.5px;
  width: 0; height: 0.5px;
  background: var(--gold);
  transition: width 0.4s ease;
  z-index: 2;
}
.artist-row:hover .ar-sweep { width: calc(100% + 8rem); }

.ar-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--ink-light);
  opacity: 0.5;
}
.ar-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.artist-row:hover .ar-name { color: var(--gold); }
.ar-loc {
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-align: right;
}
.ar-link {
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  text-align: right;
  transition: color 0.2s;
}
.ar-link:hover { color: var(--gold-light); }

.artists-cta-strip {
  background: var(--ink);
  padding: 4rem;
  text-align: center;
}
.artists-cta-strip p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--cream);
  opacity: 0.8;
  margin-bottom: 2rem;
}

/* ── SUBMIT PAGE ── */
.submit-page-hero {
  padding: 10rem 4rem 5rem;
  background: var(--warm-white);
  border-bottom: 0.5px solid var(--rule);
}
.submit-page-hero-inner { max-width: 1100px; margin: 0 auto; }
.submit-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 2rem;
}
.submit-page-title em { font-style: italic; color: var(--gold); }
.submit-page-sub {
  font-family: 'Cormorant Infant', serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 600px;
}

.submit-body { padding: 5rem 4rem 7rem; }
.submit-body-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.criteria-sticky { position: sticky; top: 7rem; }
.criteria-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 2rem;
}
.criteria-heading em { font-style: italic; color: var(--gold); }
.criteria-list { list-style: none; }
.criteria-list li {
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  padding: 1rem 0;
  border-bottom: 0.5px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  line-height: 1.5;
}
.criteria-list li::before {
  content: '';
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.criteria-note {
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: var(--ink-light);
  margin-top: 2rem;
  padding: 1.5rem;
  border: 0.5px solid var(--rule);
  background: var(--cream);
}

/* ── FORM ── */
.form-card {
  background: var(--warm-white);
  border: 0.5px solid var(--rule);
  padding: 3rem;
}
.form-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin: 2rem 0 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.5px solid var(--rule);
}
.form-section-title:first-child { margin-top: 0; }
.form-row { margin-bottom: 1.6rem; }
.form-row label {
  display: block;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.5rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid rgba(26,23,20,0.2);
  padding: 0.55rem 0;
  font-family: 'Cormorant Infant', serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--ink);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-bottom-color: var(--gold); }
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--ink-light); opacity: 0.45; }
.form-row textarea { resize: none; height: 80px; line-height: 1.6; }
.form-row select option { background: var(--cream); }
.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-disclaimer {
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: var(--ink-light);
  margin: 1.5rem 0;
}
.btn-submit-full {
  width: 100%;
  padding: 1.1rem;
  background: var(--ink);
  border: none;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  cursor: pointer;
  transition: background 0.3s;
}
.btn-submit-full:hover { background: var(--gold); }

/* form success */
.form-success {
  display: none;
  text-align: center;
  padding: 5rem 2rem;
}
.form-success.visible { display: block; }
.form-success-icon {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.form-success p {
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--ink-light);
  line-height: 1.8;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 3.5rem 4rem;
  border-top: 0.5px solid rgba(184,146,74,0.25);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copy {
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.28);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lineGrow {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* ── FEATURED ARTIST ── */
.featured-artist {
  background: var(--ink);
  border-top: 0.5px solid rgba(184,146,74,0.2);
  border-bottom: 0.5px solid rgba(184,146,74,0.2);
}
.featured-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.featured-left .section-label { color: var(--gold-light); }
.featured-left .section-label::after { background: rgba(184,146,74,0.35); }

.featured-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.featured-rule {
  width: 40px;
  height: 0.5px;
  background: var(--gold);
  margin: 1.5rem 0 2rem;
}
.featured-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 0.5px solid rgba(184,146,74,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247,244,239,0.03);
  overflow: hidden;
  max-height: 520px;
}
.featured-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.featured-photo-placeholder span {
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.2);
}

.featured-right { padding-top: 0.5rem; }
.featured-tag {
  display: inline-block;
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid rgba(184,146,74,0.4);
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.8rem;
}
.featured-bio {
  font-family: 'Cormorant Infant', serif;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.75;
  color: rgba(247,244,239,0.65);
  margin-bottom: 2.5rem;
}

.featured-links-heading {
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.3);
  margin-bottom: 0.8rem;
}
.featured-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 0.5px solid rgba(247,244,239,0.08);
}
.featured-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 0.5px solid rgba(247,244,239,0.08);
  text-decoration: none;
  transition: padding-left 0.25s;
}
.featured-link:hover { padding-left: 0.5rem; }
.fl-platform {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.featured-link:hover .fl-platform { color: var(--gold-light); }
.fl-arrow {
  font-size: 0.75rem;
  color: rgba(247,244,239,0.25);
  transition: color 0.2s, transform 0.2s;
}
.featured-link:hover .fl-arrow {
  color: var(--gold);
  transform: translate(2px, -2px);
}

/* ══════════════════════════════════════
   MOBILE — tablet down (≤768px)
══════════════════════════════════════ */
@media (max-width: 768px) {

  /* Announce bar */
  .announce-bar { padding: 0.6rem 1.2rem; gap: 0.8rem; height: 40px; }
  .announce-bar p { font-size: 0.58rem; letter-spacing: 0.12em; }

  /* Nav */
  nav { padding: 1.2rem 1.5rem; top: 40px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(247,244,239,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; letter-spacing: 0.2em; }

  /* Hero */
  .hero { padding: 0 1.5rem 4rem; min-height: 100svh; }
  .hero-bg-text {
    left: auto;
    right: 5%;
    transform: translate(0, -52%);
    font-size: clamp(6rem, 30vw, 12rem);
  }
  .hero-title { font-size: clamp(3rem, 11vw, 5rem); }
  .hero-cta { flex-direction: column; gap: 0.8rem; }
  .btn-outline, .btn-gold { text-align: center; }
  .scroll-indicator { display: none; }

  /* Sections */
  section { padding: 4rem 1.5rem; }

  /* Featured artist */
  .featured-artist { padding: 3rem 1.5rem; }
  .featured-inner {
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    align-items: start;
  }
  .featured-photo-placeholder {
    aspect-ratio: 2 / 3;
    max-height: 180px;
    width: 120px;
  }
  .featured-name { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .featured-rule { margin: 0.8rem 0 1rem; }
  .featured-bio { font-size: 1rem; margin-bottom: 1.5rem; }
  .featured-right { padding-top: 0; }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-heading { position: static; font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stat-num { font-size: 2rem; }

  /* Philosophy */
  .philosophy-strip { padding: 3.5rem 1.5rem; }

  /* Home roster teaser */
  .home-roster-teaser { padding: 4rem 1.5rem; }
  .home-roster-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Roster card grid */
  .roster-grid-section { padding: 3rem 1.5rem 5rem; }
  .roster-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }

  /* Artists page */
  .artists-page-hero { padding: 7rem 1.5rem 3rem; }
  .artists-page-hero-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .artists-page-count { font-size: 4rem; }
  .artists-table-wrap { padding: 0 1.5rem 4rem; }
  .artist-row {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    padding: 1.4rem 0;
  }
  .ar-loc { display: none; }
  .artist-row::before { left: -1.5rem; right: -1.5rem; }
  .ar-sweep { left: -1.5rem; }
  .artist-row:hover .ar-sweep { width: calc(100% + 3rem); }
  .artists-cta-strip { padding: 3rem 1.5rem; }

  /* Submit page */
  .submit-page-hero { padding: 7rem 1.5rem 3.5rem; }
  .submit-body { padding: 3rem 1.5rem 5rem; }
  .submit-body-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .criteria-sticky { position: static; }
  .form-card { padding: 2rem 1.5rem; }
  .form-2col { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  footer { padding: 2.5rem 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
}

/* ── small phones (≤420px) ── */
@media (max-width: 420px) {
  .hero-title { font-size: clamp(2.6rem, 12vw, 4rem); }
  .about-stats { grid-template-columns: 1fr 1fr; }
}