/* ─── Reset ──────────────────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .photo-strip-track { animation: none; }
}
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }

/* ─── Tokens ─────────────────────────────────────────────────────────── */
:root {
  --ink:       #080807;
  --ink-2:     #111110;
  --ink-3:     #1a1918;
  --cream:     #f2ede3;
  --cream-2:   #e8e1d5;
  --cream-3:   #d8d0c4;
  --white:     #fdfaf6;
  --gold:      #a87e28;
  --gold-lt:   #c9a84c;
  --gold-dim:  #6e5218;
  --rose:      #6e1e38;
  --text-dark: #0d0b09;
  --text-mid:  #4a4540;
  --text-dim:  #8a837a;
  --text-lt:   #f2ede3;
  --text-muted-lt: #b8b3ac;

  --font-display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --font-sans:    "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --wrap: min(1200px, calc(100% - 2.5rem));
}

/* ─── Base ───────────────────────────────────────────────────────────── */
body {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--text-lt);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
strong { font-weight: 600; }
em { font-style: italic; }

.skip-link {
  position: absolute;
  top: -120px;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--gold-lt);
  color: var(--ink);
  z-index: 200;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.skip-link:focus { top: 1rem; }

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* ─── Editorial image treatment ──────────────────────────────────────── */
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.editorial-img {
  /* slight warmth + contrast — editorial film look */
  filter: contrast(1.04) saturate(0.92);
}

/* ─── Info Strip ─────────────────────────────────────────────────────── */
.info-strip {
  background: var(--ink-2);
  border-bottom: 1px solid #1e1e1c;
}
.info-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 1.25rem;
  padding: 0.55rem 0;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted-lt);
}
.info-rule {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  vertical-align: middle;
  flex-shrink: 0;
}
@media (max-width: 540px) { .info-rule { display: none; } }

/* ─── Header ─────────────────────────────────────────────────────────── */
.site-header {
  border-bottom: 1px solid #1e1e1c;
  background: rgba(8, 8, 7, 0.94);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  text-decoration: none;
  color: var(--text-lt);
  flex-shrink: 0;
}
.logo-antdb {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
}
.logo-venue {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: none;
  color: var(--gold-lt);
}
.logo:hover .logo-antdb { color: var(--gold-lt); }

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.75rem;
}
.nav a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted-lt);
  text-decoration: none;
  transition: color 0.2s;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--white); }

.header-cta {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--gold-lt);
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--gold-lt);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.header-cta:hover {
  background: transparent;
  color: var(--gold-lt);
}

@media (max-width: 880px) {
  .site-header {
    overflow-x: clip;
  }
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 0.65rem 0.75rem;
    align-items: center;
    flex-wrap: unset;
    row-gap: 0.75rem;
  }
  .logo {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }
  .logo-antdb {
    font-size: clamp(1.2rem, 5.5vw, 1.55rem);
    letter-spacing: 0.12em;
  }
  .logo-venue {
    font-size: 0.54rem;
    letter-spacing: 0.08em;
  }
  .header-cta {
    grid-column: 2;
    grid-row: 1;
    padding: 0.5rem 0.85rem;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }
  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    row-gap: 0.45rem;
    width: 100%;
    max-width: 100%;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    box-sizing: border-box;
  }
  .nav a {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
    padding: 0.2rem 0;
  }
}

/* ─── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-lt);
  color: var(--ink);
  border-color: var(--gold-lt);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold-lt);
}
.btn-ghost {
  background: transparent;
  color: var(--text-lt);
  border-color: rgba(242, 237, 227, 0.25);
}
.btn-ghost:hover { border-color: var(--text-lt); }
.btn-cream {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn-cream:hover {
  background: transparent;
  color: var(--cream);
}
.btn-cream-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242, 237, 227, 0.35);
}
.btn-cream-outline:hover { border-color: var(--cream); }
.btn-primary-dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-primary-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* ─── Labels & links ─────────────────────────────────────────────────── */
.section-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-label-light { color: var(--gold-lt); opacity: 0.75; }

.text-link {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.text-link:hover { color: var(--ink); }

/* ─── Main ───────────────────────────────────────────────────────────── */
main { flex: 1; }

/* ─── HERO ───────────────────────────────────────────────────────────── */
.hero { background: var(--ink); }

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}
@media (min-width: 1400px) {
  .hero-split {
    grid-template-columns: 52% 48%;
  }
}
@media (max-width: 860px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 0;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  padding-right: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 860px) {
  .hero-left {
    justify-content: flex-start;
    padding-top: clamp(1.75rem, 4vw, 2.5rem);
    padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
  }
}

.hero-text-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 38rem;
}

.hero-eyebrow {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 8.5vw, 7.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--white);
}
.hero-line { display: block; }
.hero-indent-1 { padding-left: clamp(1rem, 4vw, 4rem); }
.hero-indent-2 { padding-left: clamp(1.75rem, 8vw, 8rem); }
@media (min-width: 861px) and (max-width: 1100px) {
  .hero-indent-1 { padding-left: clamp(1rem, 3vw, 2.5rem); }
  .hero-indent-2 { padding-left: clamp(1.25rem, 5vw, 4rem); }
}
.hero-line-gold { color: var(--gold-lt); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
}
.hero-right img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  /* Favor upper body / face; trims excess floor and margins */
  object-position: 48% 22%;
  filter: contrast(1.05) saturate(0.9);
}
@media (min-width: 861px) {
  .hero-right img {
    transform: scale(1.07);
    transform-origin: 48% 26%;
  }
}
@media (max-width: 860px) {
  .hero-right {
    height: 65vw;
    min-height: 340px;
    max-height: 520px;
    order: -1;
  }
}

/* Hero meta band */
.hero-meta-band {
  border-top: 1px solid #1e1e1c;
  border-bottom: 1px solid #1e1e1c;
  background: var(--ink-2);
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 700px) {
  .hero-meta { grid-template-columns: 1fr 1fr; }
}
.hero-meta-item {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-right: 1px solid #1e1e1c;
}
.hero-meta-item:last-child { border-right: none; }
.meta-label {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.meta-val {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-style: italic;
  color: var(--text-lt);
}

/* ─── Section colors ─────────────────────────────────────────────────── */
.section-cream {
  background: var(--cream);
  color: var(--text-dark);
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.section-dark {
  background: var(--ink-2);
  color: var(--text-lt);
  padding: clamp(4rem, 9vw, 7rem) 0;
  border-top: 1px solid #1e1e1c;
  border-bottom: 1px solid #1e1e1c;
}

/* ─── Experience section ─────────────────────────────────────────────── */
.experience-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 860px) {
  .experience-grid {
    grid-template-columns: 1fr 400px;
    gap: 5rem;
    align-items: start;
  }
}

.experience-text { display: flex; flex-direction: column; gap: 0; }

.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
}

.pullquote-body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 52ch;
  margin-bottom: 2rem;
}

.experience-image {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.04) saturate(0.9);
  aspect-ratio: 3 / 4;
}
@media (min-width: 860px) {
  .experience-image img { aspect-ratio: auto; min-height: 540px; }
}

/* ─── Photo Strip ────────────────────────────────────────────────────── */
.photo-strip {
  overflow: hidden;
  border-top: 1px solid #2c2c2a;
  border-bottom: 1px solid #2c2c2a;
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 38%, var(--ink) 62%, var(--ink-2) 100%);
  padding: clamp(1rem, 3vw, 1.45rem) 0;
  line-height: 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 min(48px, 5vw),
    #000 calc(100% - min(48px, 5vw)),
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 min(48px, 5vw),
    #000 calc(100% - min(48px, 5vw)),
    transparent
  );
}

@keyframes scroll-strip {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.photo-strip-track {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 24px);
  width: max-content;
  animation: scroll-strip 55s linear infinite;
  /* keeps first/last tile from clipping against mask curve */
  padding-inline: clamp(10px, 1.8vw, 20px);
}

/* Global img { max-width: 100% } collapses tiles in this flex strip — pin sizes here. */
.photo-strip-track img {
  max-width: none;
}

.strip-photo {
  --strip-h: clamp(196px, 24vw, 272px);
  flex: 0 0 auto;
  height: var(--strip-h);
  width: calc(var(--strip-h) * 1079 / 1920);
  object-fit: cover;
  object-position: center center;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.065);
  filter: grayscale(12%) contrast(1.06) saturate(0.88);
}

.strip-graphic {
  --strip-h: clamp(196px, 24vw, 272px);
  flex: 0 0 auto;
  height: var(--strip-h);
  width: calc(var(--strip-h) * 675 / 900);
  object-fit: contain;
  object-position: center;
  background: var(--ink-3);
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.065);
}

/* Cream Experience → dark strip → dark pillars: soften top edge from cream */
.photo-strip--after-experience {
  border-top-color: rgba(232, 225, 213, 0.2);
}

/* ─── Pillars ────────────────────────────────────────────────────────── */
.pillar-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid #2c2c2a;
}
.pillar-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #2c2c2a;
  align-items: start;
}
@media (max-width: 520px) {
  .pillar-item { grid-template-columns: 52px 1fr; gap: 1rem; }
}
.pillar-num {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-lt);
  padding-top: 0.15rem;
  letter-spacing: 0.04em;
  opacity: 0.9;
}
.pillar-content { display: flex; flex-direction: column; gap: 0.6rem; }
.pillar-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
}
.pillar-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted-lt);
  max-width: 52ch;
}

/* ─── Gallery ────────────────────────────────────────────────────────── */
.section-gallery .gallery-intro {
  margin-bottom: 2rem;
}
.gallery-intro-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 46ch;
  margin-bottom: 0;
}
.gallery-grid {
  display: grid;
  gap: 3px;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 420px 360px;
}
@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-feature {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 280px;
    max-height: 480px;
  }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-feature { max-height: 420px; }
}

.gallery-cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink-3);
}
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.04) saturate(0.88);
  transition: transform 0.6s ease;
}
.gallery-cell:hover img { transform: scale(1.03); }

.gallery-feature {
  grid-row: 1 / 3;
}
.gallery-cell-span-2 {
  grid-column: 2 / -1;
}
.gallery-cell-span-2 img {
  object-position: center center;
}
@media (max-width: 860px) {
  .gallery-cell-span-2 { grid-column: auto; }
}

/* ─── Performers ─────────────────────────────────────────────────────── */
.performer-cards {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
}
.performer-cards-guest {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 780px) {
  .performer-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .performer-cards { grid-template-columns: 1fr; }
}

.performer-card { display: flex; flex-direction: column; }

.performer-card-img {
  overflow: hidden;
  background: var(--ink-3);
  aspect-ratio: 3 / 4;
  position: relative;
}
/* <picture> must fill the box so img { height:100% } resolves (otherwise img shrink-wraps and leaves a gap). */
.gallery-cell picture,
.performer-card-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.performer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.05) saturate(0.88) grayscale(5%);
  transition: transform 0.6s ease;
}
.performer-card:hover .performer-card-img img { transform: scale(1.04); }

.performer-card-img-graphic img {
  object-fit: contain;
  background: var(--ink-3);
}
.performer-card-img--center img {
  object-position: center center;
}

.guest-row {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid #2c2c2a;
}

.performer-cards-guest {
  align-items: start;
}

.performer-cards-season1 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 780px) {
  .performer-cards-season1 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .performer-cards-season1 { grid-template-columns: 1fr; }
}
.performer-cards-season1 .guest-note {
  grid-column: 1 / -1;
  align-self: start;
  margin-top: 1.25rem;
  max-width: 52ch;
}

.guest-note {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted-lt);
  max-width: 36ch;
  align-self: center;
}
.guest-note a {
  color: var(--gold-lt);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.guest-note a:hover { color: var(--gold); }

.performer-card-img-guest {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #2c2c2a;
}
.guest-placeholder {
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: italic;
  color: #2c2c2a;
}

.performer-card-info {
  padding: 1rem 0 0;
  border-top: 1px solid #2c2c2a;
  margin-top: 2px;
}
.performer-name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.performer-role {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.performer-role a {
  color: var(--gold-lt);
  text-decoration: none;
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(201, 168, 76, 0.45);
}
.performer-role a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ─── Visit details ──────────────────────────────────────────────────── */
.visit-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 860px) {
  .visit-grid {
    grid-template-columns: 160px 1fr;
    gap: 6rem;
    align-items: start;
  }
}
.visit-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.visit-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 0.9;
  color: var(--cream-2);
}
.visit-details { border-top: 1px solid var(--cream-3); }
.visit-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--cream-3);
  align-items: start;
}
@media (max-width: 460px) {
  .visit-row { grid-template-columns: 1fr; gap: 0.35rem; }
}
.visit-row dt {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.15rem;
}
.visit-row dd {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── FAQ ──────────────────────────────────────────────────────────────── */
#faq-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin: 0 0 1.5rem;
}
.faq-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--cream-3);
}
.faq-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.45rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--cream-3);
}
.faq-item dt {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.45;
}
.faq-item dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.faq-item dd a {
  color: var(--gold);
  text-underline-offset: 0.15em;
}

/* ─── CTA Band ───────────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 12vw, 9rem) 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: contrast(1.05) saturate(0.7) brightness(0.45);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 7, 0.82) 0%,
    rgba(8, 8, 7, 0.55) 60%,
    rgba(8, 8, 7, 0.72) 100%
  );
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .cta-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4rem;
  }
}
.inverse-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.0;
  color: var(--white);
}
.inverse-title em { color: var(--gold-lt); }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 240px;
}

/* ─── Contact page ───────────────────────────────────────────────────── */
.contact-section {
  min-height: calc(100vh - 88px);
  background: var(--cream);
  color: var(--text-dark);
}

.contact-split {
  display: grid;
  min-height: inherit;
}
@media (min-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr 1.1fr;
  }
}

.contact-aside {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--cream-3);
}
@media (max-width: 899px) {
  .contact-aside { border-right: none; border-bottom: 1px solid var(--cream-3); }
}

.contact-image {
  margin: 0;
  overflow: hidden;
  flex: 1 1 0;
  min-height: 300px;
  max-height: 520px;
}
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 23%;
  filter: contrast(1.04) saturate(0.88);
}

/* Contact hero: tight horizontal crop on small screens (was tall / flex-grown) */
@media (max-width: 899px) {
  .contact-aside {
    min-height: 0;
  }
  .contact-image {
    flex: 0 0 auto;
    min-height: 0;
    max-height: none;
    height: clamp(9.25rem, 32vw, 12.5rem);
    max-height: min(30vh, 14rem);
  }
  .contact-image img {
    object-position: center 22%;
  }
}

.contact-aside-text {
  padding: 2.5rem 2rem 2.5rem;
  border-top: 1px solid var(--cream-3);
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.0;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
.contact-title em { color: var(--gold); }

.contact-note {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 34ch;
}
.contact-note--sub {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.contact-note a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.contact-note a:hover { color: var(--rose); }

.contact-form-col {
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 479px) {
  .field-row { grid-template-columns: 1fr; }
}

.field label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--cream-3);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-family: var(--font-body);
  border-radius: 0;
  appearance: none;
  transition: border-color 0.2s;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }
.field select:invalid,
.field select option[value=""] { color: var(--text-dim); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form-status {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
  border: 1px solid var(--cream-3);
  background: var(--white);
  color: var(--text-dark);
}
.contact-form-status[hidden] {
  display: none !important;
}
.contact-form-status--error {
  border-color: #c45c6a;
  color: #7a2f3a;
}

.contact-turnstile {
  min-height: 0;
}

.btn.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

/* ─── Groups / booking strip ──────────────────────────────────────────── */
.groups-section {
  background: var(--ink);
  border-top: 1px solid #1e1e1c;
}
.groups-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  padding: clamp(3rem, 6vw, 5rem) 0;
  align-items: start;
}
@media (max-width: 899px) {
  .groups-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .groups-divider { display: none; }
}

.groups-divider {
  width: 1px;
  background: #2a2a28;
  align-self: stretch;
  margin: 0 clamp(2rem, 4vw, 3.5rem);
}

.groups-block {
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}
.groups-block:first-child { padding-left: 0; }
.groups-block:last-child { padding-right: 0; }
@media (max-width: 899px) {
  .groups-block,
  .groups-block:first-child,
  .groups-block:last-child { padding: 0; }
}

.groups-block .section-label {
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.groups-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.groups-list li {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-lt);
  padding-left: 1rem;
  position: relative;
}
.groups-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.groups-list a {
  color: var(--text-lt);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}
.groups-list a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.groups-block--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.groups-cta-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-lt);
  max-width: 32ch;
  margin: 0;
}

.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ─── Hero subhead ───────────────────────────────────────────────────── */
.hero-subhead {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-muted-lt);
  max-width: 44ch;
}

/* ─── Visit inline link ──────────────────────────────────────────────── */
.visit-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.2s;
}
.visit-link:hover { color: var(--rose); }

/* ─── Groups homepage section ────────────────────────────────────────── */
.groups-hp {
  border-top: 1px solid #1e1e1c;
  border-bottom: 1px solid #1e1e1c;
}
.groups-hp-grid {
  display: grid;
  gap: 3.5rem;
  margin-top: 2rem;
}
@media (min-width: 860px) {
  .groups-hp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }
}
.groups-hp-lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.groups-hp-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.groups-hp-title em { color: var(--gold-lt); }
.groups-hp-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted-lt);
  max-width: 44ch;
  margin-bottom: 2rem;
}
.groups-hp-threshold {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-top: 1rem;
}
.groups-hp-options {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #2c2c2a;
}
.groups-hp-option {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #2c2c2a;
}
.groups-hp-option-name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-lt);
}
.groups-hp-option-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted-lt);
}

/* ─── Sticky mobile CTA ──────────────────────────────────────────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--ink-2);
  border-top: 1px solid #2c2c2a;
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
}
@media (max-width: 640px) {
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
}
.sticky-btn-primary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-lt);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gold-lt);
  transition: background 0.2s, color 0.2s;
}
.sticky-btn-primary:hover {
  background: transparent;
  color: var(--gold-lt);
}
.sticky-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-lt);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(242, 237, 227, 0.25);
  transition: border-color 0.2s;
}
.sticky-btn-secondary:hover { border-color: var(--text-lt); }

/* ─── Form optional label hint ───────────────────────────────────────── */
.field-optional {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: none;
  font-style: italic;
}

/* ─── Footer ─────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid #1e1e1c;
  margin-top: auto;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid #1a1a18;
}
.footer-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-lt);
  margin-bottom: 0.25rem;
}
.footer-sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-right a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
}
.footer-right a:hover { color: var(--gold-lt); }
.footer-sep { color: #2a2a28; font-size: 0.7rem; }
.footer-base { padding: 1rem 0; }
.footer-base p {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #383836;
  text-transform: uppercase;
}
