/* ════════════════════════════════════════════════════════
   NORA 240 GRIT · Russian Manicure Studio, Edgewater, Miami
   fresh leaf green · cream · champagne — matched to the studio wall
   ════════════════════════════════════════════════════════ */

:root {
  --green-ink:   #1C3A14;   /* deepest green — text on cream, dark sections */
  --green:       #2D5722;
  --green-soft:  #477836;
  --sage:        #A2BF90;
  --cream:       #F8F3E9;
  --cream-deep:  #F1E9DA;
  --paper:       #FFFDF7;
  --gold:        #C6A15B;   /* accents & text on dark green (5.99:1) */
  --gold-ink:    #8A672C;   /* gold TEXT on cream/paper — passes WCAG AA */
  --gold-soft:   #DDC291;
  --blush:       #E9CFC4;

  --ff-serif: "Cormorant Garamond", Georgia, serif;
  --ff-sans:  "Manrope", -apple-system, "Segoe UI", sans-serif;

  --pad-x: clamp(1.25rem, 5vw, 5.5rem);
  --radius: 18px;
  --shadow: 0 20px 60px -30px rgba(28, 58, 20, .35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--green-ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--green-ink); }

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

h1, h2, h3 { font-weight: 600; }

h1, h2 {
  font-family: var(--ff-serif);
  line-height: 1.04;
  letter-spacing: -.01em;
}

h1 em, h2 em, h3 em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-ink);
}
.reviews h2 em { color: var(--gold); }

a { color: inherit; }

.overline {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 1rem;
}
.reviews .overline, .cta-final .overline { color: var(--gold-soft); }

.section-head { max-width: 720px; }
.section-head h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.section-sub { margin-top: 1.1rem; color: rgba(28, 58, 20, .74); max-width: 56ch; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 1rem 1.9rem; font-size: 1rem; }

.btn-gold  { background: var(--gold); color: var(--green-ink); box-shadow: 0 12px 30px -14px rgba(198, 161, 91, .8); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-dark  { background: var(--green-ink); color: var(--cream); box-shadow: var(--shadow); }
.btn-dark:hover { background: var(--green); }
.btn-cream { background: var(--cream); color: var(--green-ink); }
.btn-cream:hover { background: var(--paper); }
.btn-ghost { border-color: rgba(28, 58, 20, .3); color: var(--green-ink); }
.btn-ghost:hover { border-color: var(--green-ink); background: rgba(28, 58, 20, .04); }
.btn-ghost-light { border-color: rgba(248, 243, 233, .4); color: var(--cream); }
.btn-ghost-light:hover { border-color: var(--cream); background: rgba(248, 243, 233, .08); }

/* ── Topbar ──────────────────────────────────────────── */
.topbar {
  background: var(--green-ink);
  color: rgba(248, 243, 233, .85);
  overflow: hidden;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45rem 0;
}
.topbar-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}
/* trailing margins (not gap) keep the track exactly 2x its period, so the
   -50% loop has no visible seam */
.topbar-track > * { margin-right: 2.2rem; }
.topbar-track span { white-space: nowrap; }
.topbar-track i { font-style: normal; color: var(--gold); }

/* ── Header ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .9rem var(--pad-x);
  border-bottom: 1px solid rgba(28, 58, 20, .08);
  transition: box-shadow .3s ease, padding .3s ease;
}
/* blur lives on a pseudo-element: backdrop-filter on the header itself would
   make it the containing block for the fixed-position mobile nav and break it */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(248, 243, 233, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header.is-scrolled { box-shadow: 0 10px 40px -20px rgba(28, 58, 20, .3); padding-block: .6rem; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--green-ink);
}
.brand-mark { width: 34px; height: 34px; color: var(--green); display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.brand-text em {
  font-style: normal;
  font-family: var(--ff-sans);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .3em;
  color: var(--gold-ink);
  display: block;
  margin-top: -2px;
}
.brand.light { color: var(--cream); }
.brand.light .brand-mark { color: var(--gold); }
.brand.light .brand-text em { color: var(--gold); }

.site-nav { display: flex; gap: 1.6rem; margin-left: auto; }
.site-nav > a {
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(28, 58, 20, .8);
  position: relative;
  padding: .2rem 0;
}
.site-nav > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { display: flex; align-items: center; gap: 1.1rem; }
.nav-phone { font-weight: 700; font-size: .88rem; text-decoration: none; color: var(--green-ink); }
.nav-phone:hover { color: var(--gold); }
.nav-mobile-extra { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  background: none;
  border: 1.5px solid rgba(28, 58, 20, .25);
  border-radius: 50%;
  cursor: pointer;
  padding: 0 11px;
}
.nav-toggle span { display: block; height: 2px; background: var(--green-ink); border-radius: 2px; transition: transform .3s ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(198, 161, 91, .16), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(46, 91, 73, .12), transparent 60%),
    var(--cream);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3.5rem, 7vw, 6.5rem) var(--pad-x) clamp(4rem, 8vw, 7rem);
  max-width: 1400px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(3rem, 7.2vw, 5.6rem);
  margin-bottom: 1.4rem;
}
.hero .lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(28, 58, 20, .78);
  max-width: 50ch;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.4rem; }

.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.hero-chips li {
  font-size: .8rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border: 1px solid rgba(28, 58, 20, .16);
  border-radius: 999px;
  background: rgba(255, 253, 247, .7);
}
.hero-chips strong { color: var(--gold-ink); }

/* hero visual */
.hero-visual { position: relative; min-height: 500px; }
.hero-word {
  position: absolute;
  top: -3.4rem;
  left: -0.5rem;
  z-index: 0;
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(5rem, 8.5vw, 8rem);
  line-height: 1;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(138, 103, 44, .35);
  pointer-events: none;
  user-select: none;
}
.hero-photo {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-photo img, .hero-photo .ph { width: 100%; height: 100%; object-fit: cover; }
.hero-photo.main {
  inset: 0 10% 6% 4%;
  z-index: 1;
  border-radius: 240px 240px var(--radius) var(--radius);
  animation: floatY 7s ease-in-out infinite;
}
.hero-photo.detail {
  width: 42%;
  aspect-ratio: 1 / 1;
  height: auto;
  right: 0;
  bottom: 0;
  z-index: 2;
  border: 6px solid var(--cream);
  border-radius: 50%;
  animation: floatY 7s ease-in-out 1.2s infinite;
}
.hero-quote {
  position: absolute;
  z-index: 3;
  left: -6%;
  bottom: 4%;
  width: min(270px, 80%);
  background: rgba(255, 253, 247, .94);
  border: 1px solid rgba(28, 58, 20, .09);
  border-radius: 16px;
  padding: 1rem 1.15rem .9rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: floatY 8s ease-in-out 1.4s infinite;
}
.hero-quote .stars { font-size: .72rem; color: var(--gold-ink); letter-spacing: .18em; }
.hero-quote p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.4;
  margin: .35rem 0 .45rem;
}
.hero-quote cite {
  font-style: normal;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(28, 58, 20, .55);
}
.spark {
  position: absolute;
  z-index: 2;
  color: var(--gold);
  pointer-events: none;
  animation: twinkle 3.2s ease-in-out infinite;
}
.spark.s1 { top: 5%; left: -7%; font-size: 1.3rem; }
.spark.s2 { top: 38%; right: -4%; font-size: .95rem; animation-delay: 1.1s; }
.spark.s3 { bottom: 13%; left: -10%; font-size: 1.1rem; animation-delay: 2s; }

/* the hand-drawn swash under "perfect" */
.swash-wrap { position: relative; display: inline-block; }
.swash {
  position: absolute;
  left: 0;
  bottom: -.1em;
  width: 100%;
  height: .28em;
  overflow: visible;
}
.swash path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: swashDraw 1.1s ease .7s forwards;
}
.hero-badge {
  position: absolute;
  top: -28px;
  right: 4%;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
}
.hero-badge svg {
  position: absolute;
  inset: 0;
  animation: spin 22s linear infinite;
}
.hero-badge text {
  font-family: var(--ff-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  fill: var(--green-ink);
}
.badge-core {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-ink);
  color: var(--gold);
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

/* placeholder art (used until real photos are dropped in) */
.ph {
  display: grid;
  place-items: center;
  position: relative;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-ink) 70%);
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 260px at 80% 15%, rgba(198, 161, 91, .35), transparent 60%),
    radial-gradient(340px 300px at 15% 90%, rgba(233, 207, 196, .22), transparent 60%);
}
.ph svg { width: 38%; max-width: 150px; color: rgba(248, 243, 233, .8); position: relative; }
.ph.ph-soft { background: linear-gradient(160deg, var(--blush) 0%, var(--cream-deep) 80%); }
.ph.ph-soft svg { color: rgba(28, 58, 20, .55); }
.ph.ph-gold { background: linear-gradient(160deg, var(--gold-soft) 0%, var(--gold) 90%); }
.ph.ph-gold svg { color: rgba(28, 58, 20, .55); }

/* marquee */
.marquee {
  background: var(--green-ink);
  color: var(--cream);
  overflow: hidden;
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-style: italic;
}
.marquee-track > * { margin-right: 2.4rem; }
.marquee-track i { font-style: normal; font-size: .8rem; color: var(--gold); }
.marquee-track span { white-space: nowrap; }

/* ── Stats ───────────────────────────────────────────── */
.stats { background: var(--paper); border-bottom: 1px solid rgba(28, 58, 20, .07); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) var(--pad-x);
  gap: 1.5rem;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--green);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(28, 58, 20, .72);
  margin-top: .5rem;
  display: block;
}

/* ── Standard ────────────────────────────────────────── */
.standard {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}
.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.std-card {
  background: var(--paper);
  border: 1px solid rgba(28, 58, 20, .08);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.std-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.std-num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-ink);
  display: block;
  margin-bottom: 1.4rem;
}
.std-card h3 { font-size: 1.08rem; margin-bottom: .6rem; }
.std-card p { font-size: .9rem; color: rgba(28, 58, 20, .72); }

.why-grit {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.4rem;
  align-items: center;
  background: var(--green-ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem) clamp(1.6rem, 3.5vw, 2.8rem);
}
.why-grit-mark { width: 52px; flex: none; color: var(--gold); }
.why-grit h3 { font-family: var(--ff-serif); font-size: 1.5rem; margin-bottom: .4rem; }
.why-grit p { color: rgba(248, 243, 233, .8); max-width: 72ch; }

/* ── Services ────────────────────────────────────────── */
.services {
  background: var(--cream-deep);
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}
.services > * { max-width: 1400px; margin-left: auto; margin-right: auto; }

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2.4rem;
}
.tab {
  font-family: var(--ff-sans);
  font-size: .85rem;
  font-weight: 700;
  padding: .65rem 1.3rem;
  border-radius: 999px;
  border: 1.5px solid rgba(28, 58, 20, .2);
  background: transparent;
  color: var(--green-ink);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.tab:hover { border-color: var(--green-ink); }
.tab.is-active { background: var(--green-ink); color: var(--cream); border-color: var(--green-ink); }

.menu { margin-top: 2rem; }
.menu-panel { display: grid; gap: .4rem; align-content: start; }

.menu-group-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-ink);
  padding: .4rem .2rem .1rem;
}
.menu-group-label:not(:first-child) { margin-top: 1.4rem; }

.menu-panel[hidden] { display: none; }
@media (min-width: 901px) {
  /* keep the section height steadier when switching to short categories */
  .menu-panel { min-height: 24rem; }
}

.menu-row {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  background: var(--paper);
  border: 1px solid rgba(28, 58, 20, .07);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.menu-row:hover, .menu-row:focus-visible { transform: translateX(6px); box-shadow: 0 14px 40px -24px rgba(28, 58, 20, .4); border-color: rgba(198, 161, 91, .5); }
.menu-row:focus-visible { outline: 2px solid var(--gold-ink); outline-offset: 2px; }
.menu-row::after {
  content: "book →";
  align-self: center;
  flex: none;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-ink);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s ease, transform .25s ease;
}
.menu-row:hover::after, .menu-row:focus-visible::after { opacity: 1; transform: none; }
.menu-info { max-width: 62ch; }
.menu-info h3 { font-size: 1.02rem; }
.menu-info h3 small { font-weight: 500; color: rgba(28, 58, 20, .7); font-size: .82rem; }
.menu-info p { font-size: .85rem; color: rgba(28, 58, 20, .72); margin-top: .25rem; }
.menu-dots {
  flex: 1;
  border-bottom: 1.5px dotted rgba(28, 58, 20, .25);
  margin-bottom: .45rem;
  min-width: 2rem;
}
.menu-price {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.menu-row.compact { padding-block: .8rem; }

.menu-foot {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.menu-foot p { font-size: .85rem; color: rgba(28, 58, 20, .72); max-width: 52ch; }

/* ── Gallery ─────────────────────────────────────────── */
.gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 1rem;
  margin-top: 2.6rem;
}
.g-tile {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.g-tile.tall { grid-row: span 2; }
.g-tile img, .g-tile .ph { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.g-tile:hover img { transform: scale(1.05); }

.ig-tile {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: .9rem;
  background: var(--green-ink);
  color: var(--cream);
  padding: 1.6rem;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.45;
  transition: background .3s ease;
}
.ig-tile:hover { background: var(--green); }
.ig-tile strong { font-family: var(--ff-serif); font-size: 1.25rem; font-style: italic; color: var(--gold); }
.ig-icon { width: 30px; color: var(--gold); }
.ig-arrow { font-size: 1.3rem; transition: transform .3s ease; }
.ig-tile:hover .ig-arrow { transform: translateX(6px); }

/* ── Reviews ─────────────────────────────────────────── */
.reviews {
  background:
    radial-gradient(900px 500px at 110% 0%, rgba(198, 161, 91, .14), transparent 60%),
    var(--green-ink);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}
.reviews > * { max-width: 1400px; margin-left: auto; margin-right: auto; }
.reviews h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }

.rating-block {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
}
.rating-big {
  font-family: var(--ff-serif);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stars { color: var(--gold); letter-spacing: .2em; }
.rating-meta .stars { font-size: 1.3rem; }
.rating-meta p { color: rgba(248, 243, 233, .8); margin-top: .3rem; }

.topics {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.6rem;
}
.topics li {
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .9rem;
  border: 1px solid rgba(248, 243, 233, .25);
  border-radius: 999px;
  color: rgba(248, 243, 233, .85);
}
.topics b { color: var(--gold); font-weight: 800; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.review-card {
  background: rgba(248, 243, 233, .06);
  border: 1px solid rgba(248, 243, 233, .14);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: background .3s ease, transform .3s ease;
}
.review-card:hover { background: rgba(248, 243, 233, .1); transform: translateY(-4px); }
.review-card p {
  font-family: var(--ff-serif);
  font-size: 1.12rem;
  line-height: 1.5;
  color: rgba(248, 243, 233, .92);
}
.review-card footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.review-card cite { font-style: normal; font-weight: 700; font-size: .88rem; }
.review-card .stars { font-size: .8rem; }

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.6rem;
}

/* ── Team ────────────────────────────────────────────── */
.team {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.6rem;
}
.team-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid rgba(28, 58, 20, .08);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.7rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-photo {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.3rem;
}
.team-photo img, .team-photo .ph { width: 100%; height: 100%; object-fit: cover; }
.ph-initial {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-ink) 80%);
  color: var(--gold);
  font-family: var(--ff-serif);
  font-size: 4.5rem;
  font-style: italic;
}
.team-card h3 { font-family: var(--ff-serif); font-size: 1.7rem; }
.team-role {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: .2rem 0 .8rem;
}
.team-card > p:not(.team-role) { font-size: .9rem; color: rgba(28, 58, 20, .72); }
.team-book {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1.1rem;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  color: var(--green);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: color .25s ease;
}
.team-book:hover { color: var(--gold); }

/* ── Visit ───────────────────────────────────────────── */
.visit { background: var(--cream-deep); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  align-items: center;
}
.visit h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1.6rem; }
address { font-style: normal; }
.visit-line { margin-bottom: .9rem; }
.visit-line a { font-weight: 700; text-decoration: none; border-bottom: 1.5px solid var(--gold); padding-bottom: 1px; }
.visit-line a:hover { color: var(--gold); }

.hours { border-collapse: collapse; margin: 1.2rem 0; }
.hours th, .hours td { text-align: left; padding: .5rem 0; font-size: .95rem; }
.hours th { font-weight: 700; padding-right: 2.5rem; }
.hours tr + tr { border-top: 1px dashed rgba(28, 58, 20, .2); }

.visit-notes { list-style: none; margin-bottom: 1.8rem; }
.visit-notes li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .92rem;
  color: rgba(28, 58, 20, .75);
  margin-bottom: .4rem;
}
.visit-notes li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: .7rem; top: .3rem; }
.visit-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 420px;
}
.visit-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ── Policies & FAQ ──────────────────────────────────── */
.faq-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}
.policies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.policy {
  border: 1px solid rgba(28, 58, 20, .12);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  background: var(--paper);
}
.policy h3 { font-family: var(--ff-serif); font-size: 1.35rem; margin-bottom: .5rem; }
.policy p { font-size: .88rem; color: rgba(28, 58, 20, .7); }

.faq { margin-top: 2.2rem; display: grid; gap: .6rem; max-width: 940px; }
.faq details {
  background: var(--paper);
  border: 1px solid rgba(28, 58, 20, .1);
  border-radius: 14px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-weight: 700;
  font-size: .98rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  background: var(--gold-ink);
  transition: transform .3s ease;
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; }
.faq details[open] .faq-icon::after { transform: rotate(90deg); }
.faq details p {
  padding: 0 1.4rem 1.3rem;
  font-size: .92rem;
  color: rgba(28, 58, 20, .72);
  max-width: 72ch;
}

/* ── Contact ─────────────────────────────────────────── */
.contact { background: var(--cream-deep); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}
.contact h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.contact-list { list-style: none; margin-top: 1.6rem; display: grid; gap: .6rem; }
.contact-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .95rem;
  color: rgba(28, 58, 20, .8);
}
.contact-list li::before { content: "✦"; position: absolute; left: 0; top: .32rem; font-size: .68rem; color: var(--gold-ink); }
.contact-list a { font-weight: 700; text-decoration: none; border-bottom: 1.5px solid var(--gold); padding-bottom: 1px; }
.contact-list a:hover { color: var(--gold-ink); }

.contact-form {
  background: var(--paper);
  border: 1px solid rgba(28, 58, 20, .08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid;
  gap: 1.1rem;
}
.hp-field { display: none; }
.contact-form label {
  display: grid;
  gap: .45rem;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(28, 58, 20, .68);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: 400 1rem/1.4 var(--ff-sans);
  color: var(--green-ink);
  background: var(--cream);
  border: 1.5px solid rgba(28, 58, 20, .15);
  border-radius: 10px;
  padding: .8rem 1rem;
  width: 100%;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-ink);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, .25);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(28, 58, 20, .4); }
.form-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form .btn { justify-self: start; }
.contact-form .btn[disabled] { opacity: .6; transform: none; cursor: wait; }
.form-status { font-size: .92rem; font-weight: 600; padding: .9rem 1.1rem; border-radius: 10px; }
.form-status.is-ok { background: rgba(46, 91, 73, .12); color: var(--green); }
.form-status.is-err { background: rgba(178, 58, 40, .1); color: #8C2D1E; }
.form-status.is-err a { color: inherit; font-weight: 800; }

/* ── Final CTA ───────────────────────────────────────── */
.cta-final {
  background:
    radial-gradient(800px 400px at 50% 120%, rgba(198, 161, 91, .22), transparent 65%),
    var(--green-ink);
  color: var(--cream);
  text-align: center;
  padding: clamp(4.5rem, 9vw, 7.5rem) var(--pad-x);
}
.cta-final h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-bottom: 2.2rem;
}
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: #0D231C;
  color: rgba(248, 243, 233, .8);
  padding: clamp(3rem, 5vw, 4.5rem) var(--pad-x) 1.6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(248, 243, 233, .12);
}
.footer-brand p { margin-top: 1rem; font-size: .9rem; }
.footer-nav { display: grid; gap: .55rem; align-content: start; }
.footer-nav a { text-decoration: none; font-size: .9rem; width: fit-content; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact { font-size: .9rem; display: grid; gap: .8rem; align-content: start; }
.footer-contact a { text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1400px;
  margin: 1.6rem auto 0;
  font-size: .78rem;
  color: rgba(248, 243, 233, .65);
}
.footer-credit a { color: inherit; }
.footer-credit a:hover { color: var(--gold); }

/* ── Booking modal (Altegio) ─────────────────────────── */
.book-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.book-modal[hidden] { display: none; }
.book-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 35, 28, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.book-dialog {
  position: relative;
  width: min(440px, 100%);
  height: min(780px, calc(100dvh - 2rem));
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: bookIn .35s cubic-bezier(.2, .9, .3, 1.15);
}
@keyframes bookIn { from { opacity: 0; transform: translateY(24px) scale(.97); } }
.book-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem .8rem .8rem 1.3rem;
  border-bottom: 1px solid rgba(28, 58, 20, .1);
}
.book-title { font-family: var(--ff-serif); font-weight: 600; font-size: 1.2rem; }
.book-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(28, 58, 20, .2);
  background: none;
  color: var(--green-ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .25s ease;
  flex: none;
}
.book-close:hover { background: rgba(28, 58, 20, .07); }
.book-close svg { width: 18px; height: 18px; }
.book-body { position: relative; flex: 1; }
.book-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: .9rem;
  color: rgba(28, 58, 20, .6);
}
.book-body iframe { position: relative; width: 100%; height: 100%; border: 0; display: block; }
.book-foot {
  padding: .8rem 1.3rem;
  border-top: 1px solid rgba(28, 58, 20, .1);
  font-size: .8rem;
  color: rgba(28, 58, 20, .72);
}
.book-foot a { font-weight: 700; }
@media (max-width: 520px) {
  .book-modal { padding: 0; }
  .book-dialog { width: 100%; height: 100dvh; border-radius: 0; }
}

/* ── Animations ──────────────────────────────────────── */
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes swashDraw { to { stroke-dashoffset: 0; } }
@keyframes twinkle {
  0%, 100% { opacity: .25; transform: scale(.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(18deg); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* reveal styles only apply once JS has stamped .js on <html> —
   with JS off/failed the page stays fully visible */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal.delay-1 { transition-delay: .12s; }
.js .reveal.delay-2 { transition-delay: .24s; }
.js .reveal.delay-3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .topbar-track, .marquee-track, .hero-badge svg, .hero-photo.main, .hero-photo.detail, .book-dialog,
  .hero-quote, .spark { animation: none; }
  .swash path { animation: none; stroke-dashoffset: 0; }
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .standard-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 440px; margin-top: 2.6rem; }
  .hero-word { top: -2.6rem; left: 0; font-size: clamp(4rem, 15vw, 6rem); }
  .hero-quote { left: 0; bottom: 0; }
  .spark.s1 { left: 0; }
  .spark.s3 { left: -2%; }
  .visit-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .policies { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .header-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .site-nav {
    position: fixed;
    inset: 0;
    top: 0;
    height: 100dvh;
    z-index: 90;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    background: var(--cream);
    transform: translateY(-102%);
    visibility: hidden;
    transition: transform .45s cubic-bezier(.65, 0, .35, 1), visibility 0s .45s;
    margin: 0;
  }
  .site-nav.is-open { transform: none; visibility: visible; transition-delay: 0s; }
  .site-nav > a { font-family: var(--ff-serif); font-size: 1.7rem; font-weight: 600; }
  .nav-mobile-extra {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.4rem;
  }
  .nav-toggle { position: relative; z-index: 95; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .standard-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .review-grid { grid-template-columns: 1fr; }
  .menu-row { flex-wrap: wrap; align-items: flex-start; }
  .menu-dots { display: none; }
  .menu-price { width: 100%; }
  .menu-row::after { display: none; }
  .form-duo { grid-template-columns: 1fr; }
  .why-grit { flex-direction: column; align-items: flex-start; }
  .hero-badge { right: 4px; top: -16px; transform: scale(.8); transform-origin: top right; }
  .rating-block { flex-wrap: wrap; }
}
