/* ============================================================
   TANNERY WORLD DANCE & CULTURAL CENTER
   Design system: Sequel-derived structure, soft earth-tone palette
   Warm sand canvas · clay cards · terracotta lamp accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --sand: #ededed;
  --clay: #dbdbdb;
  --clay-2: #cdcdcd;
  --stone: #adadad;
  --taupe: #7e7e7e;
  --ink: #252525;
  --terracotta: #686868;
  --terracotta-dark: #555555;
  --espresso: #212121;

  --glass-bg: rgba(255,255,255,0.14);
  --glass-border: rgba(255,255,255,0.32);
  --scrim: linear-gradient(180deg, rgba(20,14,6,0) 0%, rgba(20,14,6,0.18) 55%, rgba(20,14,6,0.78) 100%);

  --r-card: 10px;
  --r-pill: 9999px;

  --font-sans: 'Inter', 'Satoshi', 'General Sans', -apple-system, sans-serif;
  --font-serif: 'Instrument Serif', 'Canela', 'Tiempos Headline', 'GT Super', serif;

  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max: 1200px;
  --section-gap: clamp(3.5rem, 9vw, 7.5rem);
  --nav-h: 82px;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.05;
  color: var(--ink);
}
em, mark, .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
  background: none;
  letter-spacing: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
}
.eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--stone);
  display: inline-block;
  flex-shrink: 0;
}
.on-dark .eyebrow { color: rgba(247,240,227,0.78); }
.on-dark .eyebrow::before { background: rgba(247,240,227,0.5); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.95em 1.7em;
  border-radius: var(--r-pill);
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
}
.btn:hover { background: rgba(46,36,24,0.07); }
.btn-solid, .btn-accent {
  background: var(--terracotta);
  color: var(--sand);
  border-color: var(--terracotta);
  box-shadow: 0 8px 24px -10px rgba(181,88,31,0.45);
}
.btn-solid:hover, .btn-accent:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); }
.btn-light {
  background: rgba(20,14,6,0.42);
  border-color: rgba(255,255,255,0.75);
  color: var(--sand);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.28);
}
.btn-light:hover { background: rgba(20,14,6,0.6); }
.btn-blue {
  background: #6a6a6a;
  color: #fff;
  border-color: #6a6a6a;
  box-shadow: 0 8px 24px -10px rgba(0,122,255,0.5);
}
.btn-blue:hover { background: #555555; border-color: #555555; }
.category-box .btn-blue {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 8px 24px -10px rgba(0,0,0,0.35);
}
.category-box .btn-blue:hover { background: #f0f0f0; border-color: #f0f0f0; }
.btn-arrow::after { content: "\2192"; transition: transform 0.3s; }
.btn:hover .btn-arrow::after, .btn.btn-arrow:hover::after { transform: translateX(4px); }

/* Blue-tinted callout paragraph (matches .btn-blue accent) */
.callout-blue { color: #555555; }
.callout-blue strong { color: #474747; }

/* Frosted glass pill badge (over photography) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.55em 1.1em;
  border-radius: var(--r-pill);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sand);
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(243,236,223,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(46,36,24,0.08);
}
.site-nav.is-scrolled { border-bottom-color: var(--stone); }
.site-nav .wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.brand span { color: var(--terracotta); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.2vw, 1.3rem);
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--taupe);
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  border-radius: var(--r-pill);
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--ink); }
.nav-links a.cta {
  border: 1px solid var(--ink);
  border-radius: var(--r-pill);
  padding: 0.65em 1.3em;
  color: var(--ink);
}
.nav-links a.cta:hover { background: var(--terracotta); color: var(--sand); border-color: var(--terracotta); }
.nav-links a.cta::after { display: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  background: rgba(42,23,16,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 12px 30px -14px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  cursor: pointer;
  transition: background 0.25s ease;
  z-index: 200;
}
.nav-toggle:hover { background: rgba(42,23,16,0.75); }
.nav-toggle span {
  position: absolute; left: 13px; right: 13px; height: 2px;
  border-radius: 2px;
  background: #fff; transition: all 0.3s ease, background 0.25s ease;
}
.site-nav.is-scrolled .nav-toggle {
  background: rgba(255,255,255,0.85);
  border-color: rgba(46,36,24,0.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.site-nav.is-scrolled .nav-toggle:hover { background: rgba(255,255,255,0.95); }
.site-nav.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 99999px) {
  .nav-toggle { display: block; }
  .site-nav .wrap { position: relative; justify-content: flex-end; }
  .site-nav .brand { position: absolute; left: 50%; transform: translateX(-50%); }
  .nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--sand);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 var(--gutter);
    gap: 1.4rem;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(.65,0,.35,1);
  }
  .nav-open .nav-links { transform: translateY(0); }
  .nav-links a { font-size: 1.5rem; color: var(--ink); }
  .nav-links a.cta { margin-top: 1rem; }
}

/* ============================================================
   HOME HERO: full-bleed cinematic photo, edge to edge
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: var(--espresso);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: var(--scrim); }
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) clamp(3rem, 8vw, 5.5rem);
  max-width: var(--max);
  margin: 0 auto;
}
.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--sand);
  max-width: 16ch;
  text-transform: none;
}
.hero-sub {
  margin-top: 1.3rem;
  max-width: 46ch;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  color: rgba(247,240,227,0.8);
  font-weight: 400;
}
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============================================================
   PAGE HEADER: inner-page banner, full-bleed photo
   ============================================================ */
.page-header {
  position: relative;
  height: 58vh;
  min-height: 420px;
  overflow: hidden;
  background: var(--espresso);
}
.page-header .hero-media { position: absolute; inset: 0; }
.page-header .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-header .hero-media::after { content: ""; position: absolute; inset: 0; background: var(--scrim); }
.page-header .hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: calc(var(--nav-h) + 2rem) var(--gutter) 3rem; max-width: var(--max); margin: 0 auto; }
.page-header h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); color: var(--sand); letter-spacing: -0.02em; text-transform: none; margin-top: 0.6rem; }
.page-header .hero-sub { margin-top: 1rem; max-width: 56ch; }

/* ============================================================
   SECTIONS / GENERIC
   ============================================================ */
section { position: relative; background: var(--sand); }
.section { padding: var(--section-gap) 0; }
.section-tight { padding: clamp(2.2rem, 5vw, 4rem) 0; }
.section-flat { background: var(--sand); }
.section-white { background: #ffffff; }
.section-dim { background: var(--clay); }
.section-dark { background: var(--espresso); color: var(--sand); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--sand); }

.section-head { max-width: 900px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); text-transform: none; }
.section-head p { margin-top: 1rem; font-size: 1.03rem; color: var(--taupe); max-width: 62ch; }
.section-dark .section-head p { color: rgba(247,240,227,0.72); }

.statement {
  font-family: var(--font-sans);
  font-weight: 300;
  text-transform: none;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.14;
  max-width: 20ch;
  color: var(--ink);
}
.section-dark .statement { color: var(--sand); }

.lede { font-size: clamp(1.02rem, 1.4vw, 1.2rem); max-width: 60ch; color: var(--taupe); font-weight: 400; }
.section-dark .lede { color: rgba(247,240,227,0.8); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.grid-2.reverse { direction: rtl; } .grid-2.reverse > * { direction: ltr; }
@media (max-width: 860px) { .grid-2 { grid-template-columns: 1fr; } }

/* Youth Program "About" section: narrower photo column, bar-style eyebrow, larger body copy */
.youth-about .grid-2 { grid-template-columns: minmax(260px, 420px) 1fr; align-items: start; }
@media (max-width: 860px) { .youth-about .grid-2 { grid-template-columns: 1fr; } }
.youth-about .eyebrow {
  gap: 0.9em;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--carbon);
}
.youth-about .eyebrow::before {
  width: 3px;
  height: 1.1em;
  background: var(--carbon);
}
.youth-about-eyebrow { margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.youth-about .grid-2 p {
  margin-top: 1.4rem;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink);
}
.youth-about .grid-2 p:first-of-type { margin-top: 0; }
.youth-about .btn { margin-top: 1rem; }

/* Class showcase blocks (Youth Program Classes) */
.class-block + .class-block { margin-top: clamp(2.5rem, 6vw, 4.5rem); }
.class-block-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
}
.class-block p { margin-top: 1.1rem; line-height: 1.6; color: var(--taupe); max-width: 46ch; }

.frame { overflow: hidden; position: relative; border-radius: var(--r-card); background: var(--clay); }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.22,1,.36,1); }
.frame:hover img { transform: scale(1.04); }
.ratio-4-5 { aspect-ratio: 4/5; }
.ratio-1-1 { aspect-ratio: 1/1; }
.ratio-3-2 { aspect-ratio: 3/2; }
.ratio-16-9 { aspect-ratio: 16/9; }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1); }
.js .reveal.in { opacity: 1; transform: translateY(0); }
.js .reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity 0.6s cubic-bezier(.22,1,.36,1), transform 0.6s cubic-bezier(.22,1,.36,1); }
.js .reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.js .reveal-stagger.in > *:nth-child(1) { transition-delay: 0.02s; }
.js .reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.js .reveal-stagger.in > *:nth-child(3) { transition-delay: 0.14s; }
.js .reveal-stagger.in > *:nth-child(4) { transition-delay: 0.2s; }
.js .reveal-stagger.in > *:nth-child(5) { transition-delay: 0.26s; }
.js .reveal-stagger.in > *:nth-child(6) { transition-delay: 0.32s; }
.js .reveal-stagger.in > *:nth-child(7) { transition-delay: 0.38s; }
.js .reveal-stagger.in > *:nth-child(8) { transition-delay: 0.44s; }

/* ============================================================
   PORTFOLIO / PROGRAM CARDS: flat clay cards
   ============================================================ */
.portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
@media (max-width: 900px) { .portfolio { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .portfolio { grid-template-columns: 1fr; } }
.pcard {
  background: var(--clay);
  border-radius: var(--r-card);
  overflow: hidden;
  display: block;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}
.pcard:hover { transform: translateY(-4px); }
.pcard .pimg { aspect-ratio: 5/4; overflow: hidden; position: relative; }
.pcard .pimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.pcard:hover .pimg img { transform: scale(1.05); }
.pcard-body { padding: 1.5rem 1.5rem 1.7rem; }
.pcard-num { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--taupe); font-weight: 500; text-transform: uppercase; }
.pcard h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); margin-top: 0.6rem; text-transform: none; font-weight: 500; }
.pcard p { margin-top: 0.6rem; font-size: 0.9rem; color: var(--taupe); max-width: 34ch; }
.pcard-link { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.78rem; font-weight: 500; color: var(--ink); }
.pcard-link::after { content: "\2192"; transition: transform 0.3s; }
.pcard:hover .pcard-link::after { transform: translateX(5px); }

/* ============================================================
   STATS: minimal, hairline dividers
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat {
  border-left: 1px solid var(--stone);
  padding: 0.3rem 0 0.3rem 1.4rem;
}
.section-dark .stat { border-left-color: rgba(247,240,227,0.3); }
.stat b { display: block; font-family: var(--font-sans); font-size: clamp(2rem, 4.6vw, 2.9rem); font-weight: 500; letter-spacing: -0.02em; color: var(--ink); }
.section-dark .stat b { color: var(--sand); }
.stat span { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.03em; text-transform: uppercase; color: var(--taupe); }
.section-dark .stat span { color: rgba(247,240,227,0.6); }

/* ============================================================
   CLASS GRID (youth dance school)
   ============================================================ */
.class-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
@media (max-width: 980px) { .class-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .class-grid { grid-template-columns: 1fr; } }
.class-card {
  background: var(--clay);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform 0.4s ease;
}
.class-card:hover { transform: translateY(-4px); }
.class-card .frame { border-radius: 0; aspect-ratio: 3/4; background: var(--clay-2); }
.class-card-body { padding: 1.2rem 1.3rem 1.5rem; }
.class-card h3 { font-size: 1.15rem; text-transform: none; color: var(--ink); font-weight: 500; }
.class-card p { margin-top: 0.5rem; font-size: 0.85rem; color: var(--taupe); line-height: 1.5; }

/* ============================================================
   SCHEDULE / LEVELS
   ============================================================ */
.level-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.2rem; }
.level-tab {
  padding: 0.7em 1.3em;
  border-radius: var(--r-pill);
  border: 1px solid var(--stone);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: var(--taupe);
  transition: all 0.25s;
}
.level-tab:hover { border-color: var(--ink); color: var(--ink); }
.level-tab.active { background: var(--ink); border-color: var(--ink); color: var(--sand); }

.level-panel { display: none; }
.level-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.class-row {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: 1.15rem 0.2rem;
  border-bottom: 1px solid var(--stone);
  flex-wrap: wrap;
}
.class-row .name { font-weight: 500; font-size: 1.02rem; color: var(--ink); }
.class-row .name small { display: block; font-weight: 400; font-size: 0.8rem; color: var(--taupe); margin-top: 0.2rem; }
.class-row .when { color: var(--taupe); font-size: 0.92rem; text-align: right; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.price-card {
  background: var(--clay);
  border-radius: var(--r-card);
  padding: 1.9rem 1.3rem;
  text-align: center;
}
.price-card .n { font-family: var(--font-sans); font-weight: 500; font-size: 2.3rem; color: var(--terracotta); letter-spacing: -0.02em; }
.price-card .label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--taupe); margin-top: 0.3rem; }
.price-card .amt { margin-top: 0.9rem; font-weight: 500; font-size: 1.1rem; color: var(--ink); }

/* ============================================================
   STAFF GRID
   ============================================================ */
.staff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem 1.2rem; }
@media (max-width: 980px) { .staff-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .staff-grid { grid-template-columns: repeat(2, 1fr); } }
.staff-card .frame { aspect-ratio: 4/5; background: var(--clay); }
.staff-card h4 { font-family: var(--font-sans); font-weight: 500; font-size: 0.96rem; letter-spacing: -0.009em; text-transform: none; margin-top: 0.85rem; }
.staff-card span { display: block; font-size: 0.78rem; color: var(--terracotta); margin-top: 0.15rem; font-weight: 500; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--stone); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.4rem 0.2rem; background: none; border: none; text-align: left;
  font-family: var(--font-sans); font-weight: 500; font-size: 1.05rem; color: var(--ink); cursor: pointer;
}
.faq-q .icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-q .icon::before, .faq-q .icon::after { content: ""; position: absolute; background: var(--ink); transition: transform 0.3s ease; }
.faq-q .icon::before { top: 50%; left: 0; width: 100%; height: 1px; margin-top: 0; }
.faq-q .icon::after { left: 50%; top: 0; height: 100%; width: 1px; margin-left: 0; }
.faq-item.open .faq-q .icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 0.2rem 1.5rem; color: var(--taupe); max-width: 68ch; line-height: 1.6; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 0.8rem; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; } }
.gallery-grid .frame { cursor: pointer; }
.gallery-grid .frame.tall { grid-row: span 2; }
.gallery-grid .frame.wide { grid-column: span 2; }

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(26,19,10,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 4vh 4vw;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: var(--r-card); }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: var(--r-pill); border: 1px solid rgba(247,240,227,0.4); background: none;
  color: var(--sand); font-size: 1.4rem; cursor: pointer;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: var(--r-pill); border: 1px solid rgba(247,240,227,0.4); background: none;
  color: var(--sand); font-size: 1.3rem; cursor: pointer;
}
.lightbox-nav.prev { left: 24px; } .lightbox-nav.next { right: 24px; }

/* ============================================================
   QUOTE / TESTIMONIAL
   ============================================================ */
.quote {
  font-family: var(--font-sans);
  text-transform: none;
  font-weight: 300;
  letter-spacing: -0.02em;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.3;
  max-width: 30ch;
  color: var(--ink);
}
.quote-attr { margin-top: 1.4rem; font-family: var(--font-sans); font-weight: 500; font-size: 0.82rem; color: var(--taupe); text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================================
   NEWS / HIGHLIGHTS
   ============================================================ */
.news-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .news-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .news-row { grid-template-columns: 1fr; } }
.news-card { background: var(--clay); border-radius: var(--r-card); padding: 1.6rem; }
.news-card .date { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--terracotta); }
.news-card h4 { font-family: var(--font-sans); font-weight: 500; font-size: 1.05rem; text-transform: none; margin-top: 0.6rem; line-height: 1.35; }
.news-card p { margin-top: 0.6rem; font-size: 0.9rem; color: var(--taupe); line-height: 1.55; }

/* ============================================================
   CTA BAND: full-bleed photo
   ============================================================ */
.cta-band { position: relative; background: var(--espresso); overflow: hidden; min-height: 54vh; display: flex; align-items: center; }
.cta-band .hero-media { position: absolute; inset: 0; }
.cta-band .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .hero-media::after { content: ""; position: absolute; inset: 0; background: var(--scrim); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { text-transform: none; color: var(--sand); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: var(--espresso);
  color: var(--sand);
  padding: clamp(3.5rem, 7vw, 6rem) 0 2rem;
  border-radius: clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem) 0 0;
  background-image: radial-gradient(35% 160px at 50% 0%, rgba(255,255,255,0.06), transparent);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(33%, 320px);
  height: 1px;
  transform: translate(-50%, -50%);
  background: rgba(247,240,227,0.35);
  border-radius: 999px;
  filter: blur(2px);
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(247,240,227,0.16); }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.js .footer-top.reveal-stagger > * { filter: blur(4px); }
.js .footer-top.reveal-stagger.in > * { filter: blur(0); }
.footer-brand { font-family: var(--font-sans); font-weight: 500; font-size: 1.4rem; max-width: 12ch; text-transform: none; color: var(--sand); }
.footer-brand span { color: var(--terracotta); }
.footer-tag { margin-top: 1rem; font-size: 0.9rem; color: rgba(247,240,227,0.62); max-width: 32ch; }
.footer-col h5 { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,240,227,0.48); margin-bottom: 1rem; font-family: var(--font-sans); font-weight: 500; }
.footer-col a, .footer-col p { display: block; font-size: 0.92rem; color: rgba(247,240,227,0.85); margin-bottom: 0.7rem; }
.footer-col a { transition: color 0.3s ease; }
.footer-col a:hover { color: var(--terracotta); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 1.6rem; font-size: 0.78rem; color: rgba(247,240,227,0.4); }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--terracotta); color: var(--sand); padding: 1em 1.4em; font-weight: 500; border-radius: var(--r-card);
}
.skip-link:focus { left: var(--gutter); top: 1rem; }
