/* =====================================================================
   CULTIVÉ - Barber, Neath
   Palette taken from the shop's own identity: deep forest green, antique
   gold, warm cream. Heritage serif + refined body. Felt texture + gold
   hairline frames = the signature look, on purpose (not a template).
   ===================================================================== */

:root {
  /* greens */
  --green-950: #131e17;
  --green-900: #1a271e;
  --green-850: #1f2e24;
  --green-800: #24362a;
  --green-700: #2c4234; /* the reference green */
  --green-600: #365140;
  --green-line: rgba(198, 165, 99, 0.24);

  /* golds + cream */
  --gold: #c6a563;
  --gold-2: #d8bd83;
  --gold-bright: #ecdbab;
  --cream: #f2ead6;
  --cream-dim: #c7bfa6;
  --cream-faint: rgba(242, 234, 214, 0.62);

  /* paper (light sections) */
  --paper: #f3eee1;
  --paper-2: #ece4d1;
  --ink: #1c2a20;
  --ink-dim: #4f5c4d;
  --ink-line: rgba(28, 42, 32, 0.16);

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --accent: "Cormorant Garamond", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--cream);
  background: var(--green-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.wrap { width: min(var(--maxw), 100% - 3rem); margin-inline: auto; }

/* ---------- shared type ---------- */
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-size: clamp(2rem, 1.2rem + 3.6vw, 3.9rem);
  margin: 0 0 1.1rem;
}
.display em { font-style: italic; color: var(--gold-2); }
.display.center { text-align: center; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1rem;
}
.eyebrow--center { text-align: center; }

.section-index {
  font-family: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
}
.section-sub { color: var(--cream-faint); font-size: 1.02rem; margin: 0.4rem 0 0; }

.stars { color: var(--gold-2); letter-spacing: 0.12em; font-size: 0.95em; }

/* ---------- buttons ---------- */
.btn {
  --pad: 0.85em 1.6em;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: var(--pad);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}
.btn--lg { --pad: 1.05em 2.1em; font-size: 0.9rem; }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #23331f;
  box-shadow: 0 8px 26px -12px rgba(198, 165, 99, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(198, 165, 99, 0.95), inset 0 1px 0 rgba(255,255,255,0.4); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--green-line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

.link-gold {
  color: var(--gold-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--green-line);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.link-gold:hover { color: var(--gold-bright); border-color: var(--gold); }

/* ---------- texture helpers ---------- */
/* subtle grain via layered gradients + svg noise */
.grain-layer,
.hero__grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05; mix-blend-mode: overlay;
}

/* gold hairline frame used around hero / video / map */
.framed {
  position: relative;
  padding: 10px;
  background: linear-gradient(160deg, rgba(198,165,99,0.16), rgba(198,165,99,0.04));
  border: 1px solid var(--green-line);
  border-radius: 3px;
}
.framed::before {
  content: "";
  position: absolute; inset: 6px;
  border: 1px solid rgba(198, 165, 99, 0.45);
  border-radius: 2px;
  pointer-events: none;
}
.framed > img,
.framed > iframe,
.framed > video { position: relative; border-radius: 2px; display: block; width: 100%; }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(19, 30, 23, 0.72);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-bottom: 1px solid rgba(198, 165, 99, 0.16);
}
.nav__inner {
  width: min(var(--maxw), 100% - 3rem);
  margin-inline: auto;
  display: flex; align-items: center; gap: 1.5rem;
  height: 76px;
}
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1; margin-right: auto; }
.brand__word {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.65rem;
  letter-spacing: 0.02em;
  color: var(--gold-2);
}
.brand__est {
  font-family: var(--sans);
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream-faint); margin-top: 4px;
}
.nav__links { display: flex; gap: 1.8rem; }
.nav__links a {
  color: var(--cream); text-decoration: none;
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500;
  position: relative; padding: 4px 0;
  transition: color 0.25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px;
  background: var(--gold); transition: right 0.35s var(--ease);
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--gold-bright); }
.nav__links a:hover::after,
.nav__links a.is-active::after { right: 0; }

.nav__cta { display: flex; align-items: center; gap: 1rem; }
.ig-link { color: var(--cream); display: grid; place-items: center; transition: color 0.25s, transform 0.25s; }
.ig-link:hover { color: var(--gold-2); transform: translateY(-1px); }

.nav__burger { display: none; background: none; border: 0; cursor: pointer; width: 34px; height: 26px; position: relative; }
.nav__burger span { position: absolute; left: 0; right: 0; height: 2px; background: var(--gold-2); transition: 0.3s var(--ease); }
.nav__burger span:nth-child(1) { top: 3px; }
.nav__burger span:nth-child(2) { top: 12px; }
.nav__burger span:nth-child(3) { top: 21px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { top: 12px; transform: rotate(-45deg); }

.mobilemenu {
  display: none; flex-direction: column; gap: 0.4rem;
  padding: 1rem 1.5rem 1.8rem;
  border-top: 1px solid rgba(198,165,99,0.14);
  background: rgba(19, 30, 23, 0.98);
}
.mobilemenu:not([hidden]) { display: flex; }
@media (min-width: 721px) { .mobilemenu { display: none !important; } }
.mobilemenu a { color: var(--cream); text-decoration: none; padding: 0.75rem 0; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.05); letter-spacing: 0.04em; }
.mobilemenu a.btn { justify-content: center; margin-top: 0.8rem; border-bottom: 0; }
.mobilemenu__ig { color: var(--gold-2) !important; }

/* mobile persistent booking bar */
.mobile-book {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #22321e; text-decoration: none;
  padding: 0.9rem 1.2rem;
  align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 700; letter-spacing: 0.04em; font-size: 0.92rem;
  box-shadow: 0 -6px 20px -8px rgba(0,0,0,0.5);
}
.mobile-book__mark { font-weight: 600; opacity: 0.85; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid; place-items: center;
  padding: 4rem 1.5rem 6rem;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(54, 81, 64, 0.55), transparent 60%),
    radial-gradient(90% 70% at 50% 120%, rgba(10, 16, 12, 0.6), transparent 55%),
    linear-gradient(180deg, var(--green-800), var(--green-950));
  text-align: center;
  overflow: hidden;
}
.hero::after { /* vignette */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 220px 40px rgba(0,0,0,0.55);
}
.hero__frame {
  position: relative; z-index: 2;
  max-width: 860px;
  padding: clamp(2.2rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  border: 1px solid rgba(198, 165, 99, 0.35);
  border-radius: 3px;
}
.hero__frame::before {
  content: ""; position: absolute; inset: 8px;
  border: 1px solid rgba(198, 165, 99, 0.2);
  border-radius: 2px; pointer-events: none;
}
/* little corner ticks */
.hero__frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(var(--gold), var(--gold)) left 18px top 18px / 22px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) left 18px top 18px / 1px 22px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right 18px top 18px / 22px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right 18px top 18px / 1px 22px no-repeat,
    linear-gradient(var(--gold), var(--gold)) left 18px bottom 18px / 22px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) left 18px bottom 18px / 1px 22px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right 18px bottom 18px / 22px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right 18px bottom 18px / 1px 22px no-repeat;
  opacity: 0.55;
}
.hero__word {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.4rem, 1.5rem + 11vw, 8.5rem);
  line-height: 0.92;
  margin: 0.5rem 0 0.7rem;
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-2) 45%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold-2);
  text-shadow: 0 1px 0 rgba(0,0,0,0.15);
}
.hero__rule {
  display: flex; align-items: center; justify-content: center; gap: 0.9rem;
  color: var(--cream-dim);
  text-transform: uppercase; letter-spacing: 0.34em; font-size: 0.72rem; font-weight: 600;
  margin-bottom: 1.6rem;
}
.hero__rule em { font-style: normal; font-family: var(--accent); font-size: 1.3rem; letter-spacing: 0.1em; color: var(--gold-2); }
.hero__rule span { position: relative; }
.hero__rule::before, .hero__rule::after {
  content: ""; width: clamp(24px, 8vw, 70px); height: 1px; background: var(--green-line);
}
.hero__tag {
  font-family: var(--accent);
  font-size: clamp(1.15rem, 0.9rem + 1vw, 1.5rem);
  line-height: 1.5; color: var(--cream);
  max-width: 34ch; margin: 0 auto 2rem; font-style: italic;
}
.hero__actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.9rem; }
.hero__stars { display: flex; align-items: center; justify-content: center; gap: 0.6rem; font-size: 0.85rem; color: var(--cream-faint); letter-spacing: 0.04em; }
.hero__stars .stars { font-size: 1rem; }

.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 1px solid var(--green-line); border-radius: 20px; display: grid; place-items: start center; padding-top: 8px; }
.hero__scroll span { width: 3px; height: 8px; border-radius: 3px; background: var(--gold-2); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* =====================================================================
   MARQUEE
   ===================================================================== */
.marquee {
  background: var(--green-950);
  border-block: 1px solid rgba(198,165,99,0.16);
  overflow: hidden; padding: 0.9rem 0;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 1.6rem;
  white-space: nowrap; will-change: transform;
  animation: marquee 32s linear infinite;
  font-family: var(--accent); font-size: 1.15rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream-dim);
}
.marquee__track i { color: var(--gold); font-style: normal; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* =====================================================================
   INTRO
   ===================================================================== */
.intro { background: linear-gradient(180deg, var(--green-950), var(--green-900)); padding: clamp(4rem, 9vw, 7rem) 0; }
.intro__grid { display: grid; grid-template-columns: 0.5fr 1fr; gap: 2.5rem; align-items: start; }
.intro__copy p { color: var(--cream-faint); font-size: 1.08rem; max-width: 54ch; }
.intro__copy .display { max-width: 20ch; }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about { background: var(--green-900); padding: clamp(4rem, 9vw, 7rem) 0; position: relative; }
.about__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.framed--video { background: linear-gradient(160deg, rgba(198,165,99,0.2), rgba(198,165,99,0.05)); }
.framed--video video { width: 100%; max-height: 78vh; object-fit: cover; background: #0d140f; aspect-ratio: 9 / 16; }
.about__caption { text-align: center; font-family: var(--accent); font-style: italic; font-size: 1.05rem; color: var(--cream-faint); margin-top: 1rem; }
.about__copy p { color: var(--cream-faint); font-size: 1.05rem; }
.about__copy strong { color: var(--cream); font-weight: 600; }
.about__stats { display: flex; gap: 2rem; margin: 2rem 0; padding: 1.4rem 0; border-block: 1px solid var(--green-line); flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--serif); font-size: 2.2rem; color: var(--gold-2); line-height: 1; }
.stat__num i { font-style: normal; font-size: 1.3rem; color: var(--gold); vertical-align: super; }
.stat__label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--cream-faint); margin-top: 0.5rem; }

/* =====================================================================
   TEAM
   ===================================================================== */
.team { background: linear-gradient(180deg, var(--green-800), var(--green-850)); padding: clamp(4rem, 9vw, 7rem) 0; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .section-index { text-align: center; }
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.barber {
  position: relative; border: 1px solid var(--green-line); border-radius: 3px; overflow: hidden;
  background: var(--green-900);
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.barber:hover { transform: translateY(-5px); border-color: rgba(198,165,99,0.5); box-shadow: 0 24px 40px -26px rgba(0,0,0,0.75); }
.barber__photo { aspect-ratio: 4 / 5; overflow: hidden; }
.barber__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; filter: saturate(0.96) contrast(1.02); transition: transform 0.8s var(--ease); }
.barber:hover .barber__photo img { transform: scale(1.045); }
.barber__body { padding: 1.1rem 1.3rem 1.4rem; display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; border-top: 1px solid var(--green-line); }
.barber__name { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; margin: 0; color: var(--cream); }
.barber__role { margin: 0; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); text-align: right; }
.barber--cta { display: grid; place-items: center; background: linear-gradient(160deg, var(--green-700), var(--green-850)); }
.barber__ctainner { text-align: center; padding: 2rem 1.6rem; }
.barber__ctainner p { color: var(--cream-faint); margin: 0 0 1.4rem; }

/* =====================================================================
   SERVICES (light "menu" section)
   ===================================================================== */
.services { background: var(--paper); color: var(--ink); padding: clamp(4rem, 9vw, 7rem) 0; position: relative; }
.services .display, .services .section-index { color: var(--ink); }
.services .display { color: var(--ink); }
.services .section-index { color: #9a7d3f; }
.services .section-sub { color: var(--ink-dim); }
.menu { max-width: 860px; margin: 0 auto; }
.menu__row { padding: 1.5rem 0; border-bottom: 1px solid var(--ink-line); }
.menu__row:first-child { border-top: 1px solid var(--ink-line); }
.menu__head { display: flex; align-items: baseline; gap: 1rem; }
.menu__head h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.35rem, 1rem + 1.4vw, 1.9rem); margin: 0; color: var(--ink); white-space: nowrap; }
.menu__head::before {
  content: ""; flex: 1; order: 2; height: 1px; margin-bottom: 6px;
  background-image: radial-gradient(currentColor 1px, transparent 1.4px);
  background-size: 8px 3px; background-repeat: repeat-x; background-position: bottom; color: rgba(28,42,32,0.32);
}
.menu__price { order: 3; font-family: var(--accent); font-size: 1.5rem; font-weight: 600; color: #8a6d2f; white-space: nowrap; }
.menu__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 2rem; margin-top: 0.4rem; }
.menu__meta p { margin: 0; color: var(--ink-dim); max-width: 60ch; }
.menu__dur { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: #8a6d2f; white-space: nowrap; }
.services__cta { text-align: center; margin-top: 3rem; }

/* =====================================================================
   REVIEWS
   ===================================================================== */
.reviews { background: linear-gradient(180deg, var(--green-900), var(--green-950)); padding: clamp(4rem, 9vw, 7rem) 0; }
.reviews .section-sub { display: inline-flex; align-items: center; gap: 0.6rem; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote {
  margin: 0; padding: 2rem 1.9rem 1.8rem;
  border: 1px solid var(--green-line); border-radius: 3px;
  background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  position: relative;
}
.quote::before {
  content: "\201C"; position: absolute; top: 0.1rem; right: 1.2rem;
  font-family: var(--serif); font-size: 4.5rem; color: rgba(198,165,99,0.22); line-height: 1;
}
.quote .stars { font-size: 0.95rem; }
.quote blockquote { margin: 0.9rem 0 1.2rem; font-family: var(--accent); font-style: italic; font-size: 1.4rem; line-height: 1.4; color: var(--cream); }
.quote figcaption { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); }
.reviews__cta { text-align: center; margin-top: 3rem; }

/* =====================================================================
   VISIT (light)
   ===================================================================== */
.visit { background: var(--paper-2); color: var(--ink); padding: clamp(4rem, 9vw, 7rem) 0; }
.visit__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.visit .display, .visit__block h3 { color: var(--ink); }
.visit .section-index { color: #9a7d3f; }
.visit__block { padding: 1.4rem 0; border-bottom: 1px solid var(--ink-line); }
.visit__block:first-of-type { border-top: 1px solid var(--ink-line); }
.visit__block h3 { font-family: var(--sans); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.2em; margin: 0 0 0.6rem; color: #8a6d2f; }
.visit__block p { margin: 0 0 0.7rem; color: var(--ink-dim); font-size: 1.05rem; }
.visit__block .link-gold { color: #8a6d2f; border-color: rgba(138,109,47,0.3); }
.visit__block .link-gold:hover { color: #6f571f; border-color: #8a6d2f; }
.ticks { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; }
.ticks li { position: relative; padding-left: 1.5rem; color: var(--ink-dim); }
.ticks li::before { content: "✦"; position: absolute; left: 0; color: #b08f45; }
.visit__actions { display: flex; gap: 0.9rem; margin-top: 1.8rem; flex-wrap: wrap; }
.visit__actions .btn--ghost { color: var(--ink); border-color: var(--ink-line); }
.visit__actions .btn--ghost:hover { color: #6f571f; border-color: #8a6d2f; }
.visit__map .framed { background: linear-gradient(160deg, rgba(138,109,47,0.22), rgba(138,109,47,0.06)); border-color: rgba(138,109,47,0.25); }
.visit__map .framed::before { border-color: rgba(138,109,47,0.4); }
.visit__map iframe { width: 100%; height: 420px; border: 0; filter: grayscale(0.25) contrast(1.02); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--green-950); padding: clamp(3rem, 6vw, 4.5rem) 0 1.6rem; border-top: 1px solid rgba(198,165,99,0.16); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer__logo { width: 120px; border-radius: 4px; border: 1px solid var(--green-line); }
.footer__tag { color: var(--cream-faint); margin-top: 1.2rem; font-family: var(--accent); font-style: italic; font-size: 1.1rem; }
.footer__nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__nav a { color: var(--cream); text-decoration: none; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.25s; }
.footer__nav a:hover { color: var(--gold-2); }
.footer__contact p { color: var(--cream-faint); margin: 0 0 1rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { color: var(--gold-2); text-decoration: none; font-weight: 600; transition: color 0.25s; }
.footer__links a:hover { color: var(--gold-bright); }
.footer__base {
  width: min(var(--maxw), 100% - 3rem); margin: 2.6rem auto 0; padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
  color: var(--cream-faint); font-size: 0.8rem; letter-spacing: 0.04em;
}
.footer__rule { color: var(--gold); }

/* =====================================================================
   REVEAL ANIMATION
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 940px) {
  .intro__grid { grid-template-columns: 1fr; gap: 1rem; }
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__media { max-width: 460px; margin-inline: auto; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .visit__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .mobile-book { display: flex; }
  body { padding-bottom: 56px; } /* room for mobile book bar */
  .marquee__track { font-size: 1rem; }
  .team__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .reviews__grid { grid-template-columns: 1fr; }
  .about__stats { gap: 1.4rem; }
  .stat__num { font-size: 1.9rem; }
  .menu__meta { flex-direction: column; gap: 0.4rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__base { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 560px) {
  .hero__frame .eyebrow { letter-spacing: 0.14em; font-size: 0.6rem; }
  .hero__rule { letter-spacing: 0.2em; gap: 0.6rem; }
  .section-head .eyebrow, .eyebrow { letter-spacing: 0.2em; }
}

@media (max-width: 420px) {
  .team__grid { grid-template-columns: 1fr; }
  .hero__frame { padding: 2rem 1.2rem; }
}
