/* ============================================================
   csbmusic.com — styles
   Refined & classic: warm ivory, deep indigo, and dusty sage — a palette
   drawn from the headshot. Elegant serif headings, clean sans body.

   To rebrand: change the variables in :root below.
   • --accent      the sage highlight color
   • --bg / --ink  swap these two to flip the whole site to dark
   ============================================================ */

:root {
  --bg:        #f3eee3;   /* warm ivory (the soft studio light) */
  --bg-card:   #faf7f0;   /* warm white cards */
  --ink:       #2a2746;   /* deep indigo (the backdrop) — text + headings */
  --ink-dim:   #76707f;   /* muted mauve-grey — secondary text */
  --accent:    #5e7457;   /* dusty sage (the blouse) — change this to rebrand */
  --accent-ink:#f7f4ec;   /* warm white text on top of the sage */
  --dark:      #232246;   /* deep indigo contrast bands */
  --dark-text: #f3eee3;   /* text on dark bands */
  --line:      #e4ddcd;   /* hairline borders */
  --radius:    16px;
  --maxw:      72rem;

  color-scheme: light;
  --font-body: "Inter", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------------- Top nav ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 2.5rem);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}
.nav__links a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  color: var(--accent-ink) !important;
  background: var(--accent);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
}
.nav__cta:hover { filter: brightness(1.05); }

/* ---------------- Shared layout ---------------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2.5rem);
}

.section__title {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  margin: 0 0 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.12s ease, filter 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--accent); color: var(--accent-ink); }
.btn--solid:hover { filter: brightness(1.06); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--ghost-light { border-color: rgba(243,238,227,0.55); color: var(--dark-text); }
.btn--ghost-light:hover { background: var(--dark-text); color: var(--dark); border-color: var(--dark-text); }
.btn--big { padding: 1rem 2rem; font-size: 1.1rem; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: min(86vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 2.5rem);
  color: var(--dark-text);
}
/* Ivory text + lifted sage accents on the dark hero */
.hero__inner .hero__eyebrow,
.hero__inner .hero__name-accent { color: #aabfa0; }
.hero__inner .hero__tagline,
.hero__inner .hero__creds { color: var(--dark-text); }
.hero__inner .hero__creds-label { color: rgba(243,238,227,0.6); }
.hero__inner .hero__rule { background: rgba(243,238,227,0.3); max-width: none; }
.hero__eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-weight: 600;
  font-size: clamp(0.82rem, 1.6vw, 0.98rem);
  letter-spacing: 0.02em;
}
.hero__name {
  font-family: var(--font-display);
  margin: 0 0 1.2rem;
  font-size: clamp(3rem, 9vw, 6.25rem);
  line-height: 1.0;
  letter-spacing: 0;
  font-weight: 600;
}
/* Stacked name lockup so the long name reads as a designed unit, not a wrap. */
.hero__name-line { display: block; }
/* Sundlof carries the sage — it's the name with professional recognition. */
.hero__name-accent { color: var(--accent); }
.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.45rem, 3.4vw, 2.15rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 1rem;
}
.hero__lead {
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--ink-dim);
  max-width: 34ch;
}
.hero__rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 1.5rem 0;
  max-width: 30rem;
}
.hero__creds {
  margin: 0 0 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 32rem;
}
.hero__creds-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  margin-top: 0.7rem;
}
.hero__creds-label:first-child { margin-top: 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero__media { justify-self: center; }
.hero__photo {
  width: min(360px, 70vw);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}
.hero__photo.is-placeholder {
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(135deg, #ece6da, #ece6da 14px, #e4ddcd 14px, #e4ddcd 28px);
  border: 2px dashed var(--line);
  color: var(--ink-dim);
  font-size: 0.85rem;
}

/* Hero stage — full-bleed images that gently dissolve through her worlds */
.hero__stage {
  position: absolute;
  inset: 0;
  background: var(--dark);
}
.stage__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.stage__img.is-active { opacity: 1; }
/* Indigo scrim: unifies every photo into one world and keeps the title legible */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(22,19,40,0.92) 0%, rgba(22,19,40,0.66) 42%, rgba(22,19,40,0.30) 100%),
    linear-gradient(0deg, rgba(22,19,40,0.80) 0%, rgba(22,19,40,0.10) 48%);
}
@media (prefers-reduced-motion: reduce) {
  .stage__img { transition: none; }
}

/* ---------------- Credibility band ---------------- */
.creds {
  background: var(--ink);
  color: var(--dark-text);
}
.creds__list {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  justify-content: center;
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.creds__list li { position: relative; opacity: 0.92; }
.creds__list li + li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

/* ---------------- Lane cards ---------------- */
.lanes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  align-items: start;
}
.lane {
  position: relative;
  display: block;
  padding: 1.6rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease;
}
.lane:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 36px rgba(0,0,0,0.10);
}
/* Expand affordance: a "+" that rotates to an "×" when the card is open */
.lane::after {
  content: "+";
  position: absolute;
  top: 1.15rem;
  right: 1.3rem;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.25s ease;
}
.lane.is-open::after { transform: rotate(45deg); }
.lane__kicker {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.lane__name {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.15;
}
/* Cards are title-only; the description expands on tap/click (.is-open), or on hover (desktop) */
.lane__desc {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.96rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.lane.is-open .lane__desc {
  max-height: 14rem;
  opacity: 1;
  margin-top: 0.55rem;
}
@media (hover: hover) {
  .lane:hover .lane__desc {
    max-height: 14rem;
    opacity: 1;
    margin-top: 0.55rem;
  }
}

/* ---------------- About ---------------- */
.about__body {
  max-width: 46rem;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  line-height: 1.5;
}
.about__body p { margin: 0 0 1.2rem; }
.about__body p:last-child { margin-bottom: 0; }

/* ---------------- Selected work (recital-program style) ---------------- */
.program {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(1.5rem, 5vw, 3.5rem);
}
.program__heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
}
.program__list { list-style: none; margin: 0; padding: 0; }
.prog {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
.prog:last-child { border-bottom: 0; }
.prog__role {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
}
.prog__work { color: var(--ink); }
.prog__co {
  display: block;
  color: var(--ink-dim);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}
.program__note { color: var(--ink-dim); font-size: 0.82rem; margin: 0.9rem 0 0; }

.program__choral { list-style: none; margin: 0; padding: 0; }
.program__choral li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
.program__choral li:last-child { border-bottom: 0; }
.program__choral .choral__when { color: var(--ink-dim); font-size: 0.85rem; white-space: nowrap; }
.choral__name { display: flex; flex-direction: column; }
.choral__name a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}
.choral__name a:hover { color: var(--accent); }
.choral__name small {
  margin-top: 0.12rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-dim);
}
.choral__name small em { font-style: italic; }

/* Album cover thumbnail in Recordings */
.rec-album { align-items: center; }
.rec-album__cover {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.rec-album .choral__name { flex: 1 1 auto; min-width: 0; }
.program__honor {
  margin: 1.1rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}
.program__heading--sub { margin-top: 2.2rem; }

/* New-work / premiere tags */
.tag {
  display: inline-block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 0.08rem 0.5rem;
  margin-left: 0.3rem;
  white-space: nowrap;
  vertical-align: 0.08em;
}
.tag--premiere { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

/* Signature artistic project */
.feature {
  margin-top: 2.5rem;
  max-width: 46rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.feature__cover {
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.feature__body { flex: 1 1 auto; min-width: 0; }
.feature__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 0.3rem;
}
.feature__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.7rem;
  margin: 0;
  color: var(--ink);
}
.feature__desc { margin: 0.4rem 0 0; color: var(--ink-dim); }
.feature__title a { color: inherit; text-decoration: none; border-bottom: 2px solid var(--accent); }
.feature__title a:hover { color: var(--accent); }

.program__more { margin: 1.6rem 0 0; font-size: 0.92rem; }
.program__more a { color: var(--accent); text-decoration: none; font-weight: 600; }
.program__more a:hover { text-decoration: underline; }

/* Press pull-quote */
.press .quote {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem 2rem 2rem;
  position: relative;
}
.press .quote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.quote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.9rem, 5.5vw, 3rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.quote__cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
}
.press__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
  max-width: 52rem;
  margin: 0 auto;
}
.press__grid .quote { max-width: none; margin: 0; }
.press__kit {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.press__kit-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.press__kit-note { color: var(--ink-dim); font-size: 0.95rem; margin: 0 0 1.25rem; }
.press__kit-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }

/* Press / short bio (copyable text for presenters) */
.press__bio { max-width: 50rem; margin: 2.5rem auto 0; }
.bio-item { border-top: 1px solid var(--line); }
.bio-item:last-child { border-bottom: 1px solid var(--line); }
.bio-item__toggle {
  position: relative;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1rem 2.2rem 1rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.bio-item__toggle::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.25s ease;
}
.bio-item.is-open .bio-item__toggle::after { transform: translateY(-50%) rotate(45deg); }
.bio-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.bio-item__copy {
  margin: 0.25rem 0 1.25rem;
  padding: 0.4rem 0.95rem;
  font: 600 0.82rem var(--font-body);
  color: var(--accent);
  background: none;
  border: 1px solid var(--accent);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}
.bio-item__copy:hover { background: var(--accent); color: var(--accent-ink); }
.press__bio-body { padding-top: 0.25rem; }
.press__bio-body p { color: var(--ink); margin: 0 0 1rem; line-height: 1.7; }
.press__kit-alt { margin: 0.75rem 0 0; font-size: 0.85rem; }
.press__kit-alt a { color: var(--ink-dim); text-decoration: underline; }
.press__kit-alt a:hover { color: var(--accent); }

/* ---------------- Performance history (data-driven) ---------------- */
.history__filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem; }
.chip {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--ink-dim);
  cursor: pointer;
  transition: border-color 0.12s ease, color 0.12s ease, background 0.12s ease;
}
.chip:hover { border-color: var(--accent); color: var(--ink); }
.chip.is-active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.history__year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.9rem 0 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}
.history__year:first-child { margin-top: 0; }
.hist {
  display: flex;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
.hist__date { flex: 0 0 5rem; color: var(--ink-dim); font-size: 0.85rem; font-variant-numeric: tabular-nums; padding-top: 0.1rem; }
.hist__body { flex: 1 1 auto; min-width: 0; }
.hist__title { color: var(--ink); font-weight: 500; }
.hist__title a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--accent); }
.hist__title a:hover { color: var(--accent); }
.hist__detail { color: var(--ink-dim); font-size: 0.88rem; margin-top: 0.05rem; }
.hist__cat { color: var(--accent); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-top: 0.15rem; }
.history__note { color: var(--ink-dim); }
@media (max-width: 560px) {
  .hist { flex-direction: column; gap: 0.15rem; }
  .hist__date { flex-basis: auto; }
}

/* ---------------- Media ---------------- */
.media {
  max-width: 56rem;
  margin: 0 auto;
}

/* Performance gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.gallery__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.14s ease;
}
.gallery__img:hover { transform: scale(1.02); }
.media__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
}
.media__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Click-to-play poster facade */
.media__facade {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink) center/cover no-repeat;
  cursor: pointer;
}
.media__facade::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22,19,40,0.28);
  transition: background 0.15s ease;
}
.media__facade:hover::before { background: rgba(22,19,40,0.12); }
.media__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(22,19,40,0.72);
  border: 2px solid rgba(243,238,227,0.85);
  transition: transform 0.15s ease, background 0.15s ease;
}
.media__facade:hover .media__play {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--accent);
}
.media__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 13px 0 13px 21px;
  border-color: transparent transparent transparent #f3eee3;
}
.media__frame--placeholder {
  display: grid;
  place-items: center;
  color: var(--dark-text);
  font-size: 0.95rem;
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(94,116,87,0.35), transparent 70%),
    var(--ink);
}
.media__shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.media__shot.is-placeholder {
  min-height: 12rem;
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(135deg, #ece6da, #ece6da 14px, #e4ddcd 14px, #e4ddcd 28px);
  border: 2px dashed var(--line);
  color: var(--ink-dim);
  font-size: 0.85rem;
}
.media__links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.media__caption {
  text-align: center;
  color: var(--ink-dim);
  font-size: 0.9rem;
  font-style: italic;
  margin: 0.8rem 0 0;
}

/* Social pills (reused in media) */
.social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.12s ease, border-color 0.12s ease;
}
.social:hover { transform: translateY(-2px); border-color: var(--accent); }
.social svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------------- Contact (dark band) ---------------- */
.contact {
  background: var(--dark);
  color: var(--dark-text);
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem);
}
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  font-weight: 700;
}
.contact__lead {
  max-width: 40rem;
  margin: 0 auto 2rem;
  color: color-mix(in srgb, var(--dark-text) 78%, transparent);
  font-size: 1.08rem;
}
.contact__note {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--dark-text) 60%, transparent);
}

/* ---------------- Footer ---------------- */
.footer {
  text-align: center;
  color: var(--ink-dim);
  font-size: 0.85rem;
  padding: 2rem 1rem;
}
.footer p { margin: 0.35rem 0; }
.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* ---------------- Responsive ---------------- */
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; text-align: left; }
  .hero__media { justify-self: start; order: -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .program { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  /* Declutter the mobile opening: hide the section links, keep only the Booking CTA */
  .nav__links { gap: 0.7rem; }
  .nav__links a:not(.nav__cta) { display: none; }
  .credits__list li { flex-direction: column; gap: 0.1rem; }
  .credits__year { flex-basis: auto; }
  .feature { flex-direction: column; align-items: flex-start; }
  .press__grid { grid-template-columns: 1fr; }
}
