/* ═══════════════════════════════════════════════════════════════════
   Studie'o7 Salon — stylesheet
   Tokens follow the design handoff exactly. Responsive behaviour and
   the reduced-motion layer are additions (the handoff was desktop-only).
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Surfaces — light green */
  --bg:        #D8EABC;
  --bg-alt:    #C7E1A7;
  --panel:     #E5EECE;   /* header, footer, pricing box */
  --card:      #B9D68E;
  --warm:      #C7E1A7;
  --warm-2:    #B0D183;   /* hover / highlighted tiles */
  --dark:      #E5EECE;

  /* Accent — FILL colours (button faces, checkboxes, borders) */
  --green:     #365B32;
  --gold:      #C79A24;
  --gold-2:    #E2C45C;
  --gold-grad: linear-gradient(120deg, #C79A24, #E2C45C);

  /* TEXT colours */
  --text:      #18351F;   /* deep green — headings, body */
  --text-2:    #365B32;   /* secondary green */
  --text-gold: #8A670F;   /* gold text, LARGE type only (3.05:1 worst case) */
  --text-gold-sm: #6B4F0D; /* gold text at body size — 4.6:1+ everywhere */

  /* Role aliases */
  --head:      var(--text);
  --body-str:  var(--text);
  --body:      var(--text-2);
  --body-mut:  var(--text-2);
  --muted:     var(--text-2);
  --faint:     var(--text-2);
  --on-dark:      #E5EECE;
  --on-dark-mut:  #C7E1A7;

  /* Hairlines — green ink */
  --line:      rgba(24, 53, 31, .16);
  --line-soft: rgba(24, 53, 31, .11);
  --line-mid:  rgba(24, 53, 31, .24);
  --line-str:  rgba(24, 53, 31, .42);
  --tint:      rgba(54, 91, 50, .07);
  --tint-2:    rgba(54, 91, 50, .14);

  /* Fonts */
  --f-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Rhythm */
  --card-head-h: 68px;   /* mobile card-stack per-card header strip */
  --pad-x:     clamp(20px, 5vw, 48px);
  --sec-y:     clamp(70px, 9vw, 110px);
  --ease:      cubic-bezier(.22, 1, .36, 1);
}

/* ── Base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body-str);
  font-family: var(--f-body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; transition: color .3s; }
a:hover { color: var(--gold-2); }
::selection { background: var(--gold); color: var(--bg); }

h1, h2, h3, p, ul, ol, dl, dd, blockquote, figure { margin: 0; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--gold); color: var(--text);
  padding: 10px 18px; font-size: 13px; letter-spacing: .18em;
  text-transform: uppercase; transition: top .25s;
}
.skip-link:focus { top: 12px; color: var(--text); }

/* ── Shared type ─────────────────────────────────────────────────── */
h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 5.4vw, 52px);
  line-height: 1.12;
  color: var(--head);
}
h2 em { font-style: italic; color: var(--gold-2); }

.eyebrow {
  font-size: clamp(11px, 1.4vw, 12px);
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow--wide { letter-spacing: clamp(.3em, 1.6vw, .55em); font-size: 13px; margin-bottom: 26px; }

.label {
  font-size: clamp(11px, 1.4vw, 12px);
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-head { text-align: center; margin-bottom: clamp(44px, 6vw, 70px); }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-body);
  font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .3s, box-shadow .3s, background .3s, border-color .3s, color .3s;
}
.btn--gold {
  padding: 16px 40px; background: var(--gold-grad); color: var(--bg);
  font-weight: 500;
}
.btn--gold:hover {
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(224, 188, 63, .45);
}
.btn--ghost {
  padding: 15px 40px; border-color: var(--line-str); color: var(--gold-2);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--gold-2); background: rgba(224, 188, 63, .08); }
.btn--icon {
  width: 49px; height: 49px; border-color: var(--line-str); color: var(--gold-2);
}
.btn--icon:hover { background: var(--tint-2); transform: translateY(-2px); color: var(--gold-2); }
.btn--block { width: 100%; padding: 17px; letter-spacing: .26em; font-weight: 600; }
.btn--glow { animation: glowPulse 2.4s ease-in-out infinite; }
.btn--glow:hover { animation: none; }

/* ── Image slots ─────────────────────────────────────────────────────
   Every photo lives in an .img-slot. Drop a real file at the src path
   and it takes over; if the file is missing, JS flags the slot and a
   branded placeholder with the slot's label shows instead.
   ─────────────────────────────────────────────────────────────────── */
.img-slot {
  position: relative; width: 100%; height: 100%; overflow: hidden;
  background:
    linear-gradient(140deg, var(--warm) 0%, var(--bg-alt) 55%, var(--warm-2) 100%);
}
.img-slot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.img-slot::after {
  content: attr(data-label);
  position: absolute; inset: 0; display: none;
  align-items: center; justify-content: center; text-align: center;
  padding: 20px;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--faint); line-height: 1.9;
}
.img-slot.is-empty { border: 1px solid var(--line-soft); }
.img-slot.is-empty img { display: none; }
.img-slot.is-empty::after { display: flex; }

/* In the hero the label would sit behind the logo, so pin it low-left. */
.hero__slide .img-slot { border: none; }
.hero__slide .img-slot::after {
  inset: auto 0 96px 0;
  align-items: flex-end;
  font-size: 10px;
  color: rgba(107, 101, 92, .75);
}

/* ── Nav ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  background: rgba(47, 84, 47, .90);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__brand img { height: 46px; width: auto; }

.nav__menu {
  display: flex; align-items: center; gap: 34px;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
}
/* :not(.btn) matters — without it this rule out-specifies .btn--gold
   and repaints the Book Now label in muted grey. */
.nav__menu > a:not(.btn) { color: var(--body-mut); }
.nav__menu > a:not(.btn):hover { color: var(--gold-2); }
.nav__cta { padding: 11px 26px; letter-spacing: .16em; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--line-mid);
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__bar {
  display: block; width: 18px; height: 1px; background: var(--gold-2);
  transition: transform .3s, opacity .3s;
}
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
}
.hero__slides {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero.is-loaded .hero__slides { opacity: 1; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 1.4s ease;
}
.hero__slide.is-active { opacity: 1; pointer-events: auto; }

.hero__dots {
  position: absolute; right: clamp(14px, 3vw, 36px); top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 14px; z-index: 5;
}
.hero__dots button {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(232, 213, 174, .7); background: transparent;
  transition: background .4s, transform .4s;
}
.hero__dots button[aria-selected="true"] { background: var(--gold-2); transform: scale(1.35); }

/* Flat, even scrim — no radial vignette, no gradient fade at the foot.
   Photography stays plain; the tint only exists so the type stays legible. */
.hero__vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: rgba(16, 34, 20, .50);
  opacity: 0; transition: opacity 1.1s ease;
}
.hero__fade { display: none; }
.hero.is-loaded .hero__vignette,
.hero.is-loaded .hero__fade { opacity: 1; }

.hero__inner {
  position: relative; z-index: 4;
  text-align: center; padding: 0 24px; pointer-events: none;
  /* Text + logo removed above the CTAs; nudge the row down so the buttons
     land where they sat before rather than snapping to true centre.
     JS parallax composes on top of this base offset. */
  transform: translateY(24vh);
}
.hero.is-loaded .hero__inner { will-change: transform; }
.hero__logo { display: flex; justify-content: center; }
.hero__logo img {
  width: min(560px, 72vw); height: auto;
  filter: drop-shadow(0 6px 28px rgba(0, 0, 0, .85));
}
.hero__lede {
  margin: clamp(22px, 3vw, 30px) auto clamp(30px, 4vw, 44px);
  max-width: 520px;
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.7; color: #cfc8bc;
}
/* The hero photo is a bright, busy storefront, so the 50% vignette alone
   isn't enough to carry gold type. These rules are scoped to .hero so the
   ghost button elsewhere (booking confirmation) keeps its quiet styling. */
.hero .eyebrow--wide {
  color: #F3DE9A;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,.9), 0 0 18px rgba(0,0,0,.75);
}

.hero .btn--ghost,
.hero .btn--icon {
  color: #F3DE9A;
  border-color: rgba(243, 222, 154, .72);
  /* Own backdrop so the label reads over whichever part of the photo it
     lands on, rather than depending on the vignette. */
  background: rgba(10, 18, 7, .58);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  text-shadow: 0 1px 3px rgba(0,0,0,.8);
}
.hero .btn--ghost:hover,
.hero .btn--ghost:focus-visible,
.hero .btn--icon:hover,
.hero .btn--icon:focus-visible {
  color: var(--text);
  background: var(--gold-2);
  border-color: var(--gold-2);
  text-shadow: none;
}

.hero__cta {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  pointer-events: auto;
}

.hero__cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  pointer-events: none;
}
.hero__cue span:first-child {
  font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: var(--muted);
}
.hero__cue-line {
  width: 1px; height: 44px; background: rgba(224,188,63,.35); overflow: hidden;
}
.hero__cue-line i { display: block; width: 1px; height: 16px; background: var(--gold-2); animation: scrollcue 1.8s ease-in-out infinite; }

/* ── Marquee ─────────────────────────────────────────────────────── */
.marquee {
  overflow: hidden; padding: 22px 0; background: var(--bg-alt);
  border-top: 1px solid rgba(224,188,63,.16);
  border-bottom: 1px solid rgba(224,188,63,.16);
}
.marquee__track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee__group { display: flex; align-items: center; gap: 64px; padding-right: 64px; white-space: nowrap; }
.marquee__group span {
  font-family: var(--f-display); font-size: 22px;
  letter-spacing: .28em; text-transform: uppercase; color: var(--text-2);
}
.marquee__group i { color: var(--gold); font-size: 12px; font-style: normal; }

/* ── Services ────────────────────────────────────────────────────── */
.services { padding: var(--sec-y) var(--pad-x) calc(var(--sec-y) - 20px); max-width: 1240px; margin: 0 auto; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  background: var(--bg);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .5s, box-shadow .5s;
}
.service__link {
  display: block; height: 100%;
  padding: clamp(32px, 4vw, 44px) 26px;
  text-align: center; text-decoration: none; color: inherit;
}
.service__link:focus-visible { outline: 2px solid var(--gold-2); outline-offset: -3px; }
.service:hover { background: var(--warm-2); box-shadow: inset 0 -2px 0 var(--gold); }
/* 7 tiles → row 1 has 4, row 2 has 3 stretched across all columns (no empty cell) */
.service:nth-child(5) { grid-column: 1 / span 2; }
.service:nth-child(6) { grid-column: 3 / span 1; }
.service:nth-child(7) { grid-column: 4 / span 1; }
.service__icon {
  width: 54px; height: 54px; margin: 0 auto 20px;
  border: 1px solid rgba(224,188,63,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-2);
  animation: floaty 5s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  transition: background .45s, color .45s, transform .45s, border-color .45s;
}
.service:hover .service__icon {
  background: var(--gold); color: var(--bg); border-color: var(--gold);
  transform: scale(1.12) rotate(-6deg);
}
.service h3 {
  font-size: 13px; font-weight: 400; letter-spacing: .22em;
  text-transform: uppercase; color: var(--body);
}
.service p { margin-top: 10px; font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── About ───────────────────────────────────────────────────────── */
.about { padding: var(--sec-y) var(--pad-x); background: linear-gradient(var(--bg-alt), var(--bg)); }
.about__grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(48px, 6vw, 80px);
  align-items: center;
}
.about__media { position: relative; }
.about__corner {
  position: absolute; top: -22px; left: -22px; width: 120px; height: 120px;
  border-top: 1px solid var(--gold); border-left: 1px solid var(--gold);
  pointer-events: none; z-index: 2;
}
.about__photo { height: clamp(380px, 52vw, 520px); }
.about__stamp {
  position: absolute; right: -26px; bottom: -26px; width: 150px; height: 150px;
  pointer-events: none; animation: spinSlow 24s linear infinite;
}
.about__stamp text {
  font-family: var(--f-body);
  font-size: 11.5px; letter-spacing: 3.5px; fill: var(--gold); text-transform: uppercase;
}
.about__stamp circle { fill: var(--gold); }

.about__copy p:not(.eyebrow) {
  margin-bottom: 18px;
  font-size: clamp(15px, 2vw, 16.5px); line-height: 1.85; color: var(--body-mut);
}
.about__copy h2 { margin-bottom: 26px; }
.about__copy p:not(.eyebrow):last-of-type { margin-bottom: 30px; }

.about__cta { margin-bottom: 30px; }
.about__since {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 0; margin-bottom: 34px;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  color: var(--gold-2);
}
.about__since svg { flex: none; display: block; }
.about__copy .about__since p { margin: 0 !important; font-size: 14px; line-height: 1.4; color: var(--body-mut); }
.about__since strong { color: var(--head); font-weight: 500; }

.stats { display: flex; gap: clamp(24px, 4vw, 48px); flex-wrap: wrap; }
.stat dd {
  margin: 0;
  font-family: var(--f-display); font-size: clamp(32px, 4.4vw, 42px); color: var(--gold-2);
}
.stat dt {
  margin-top: 6px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
}

/* ── About: why choose us ───────────────────────────────────────── */
.about__why {
  max-width: 900px; margin: clamp(64px, 8vw, 100px) auto 0;
  padding-top: clamp(56px, 7vw, 84px);
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.about__why-lede {
  max-width: 52ch; margin: 18px auto 0;
  font-size: 15px; line-height: 1.75; color: var(--body-mut);
}
.why-stats {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: clamp(32px, 6vw, 70px);
  margin-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid var(--line-soft);
}
.why-stat { text-align: center; }
.why-stat__icon {
  width: 52px; height: 52px; margin: 0 auto 16px;
  border: 1px solid rgba(224,188,63,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-2);
}
.why-stat dl { margin: 0; }
.why-stat dd {
  margin: 0; font-family: var(--f-display); font-size: clamp(28px, 3.6vw, 36px); color: var(--gold-2);
}
.why-stat dt {
  margin-top: 6px; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted);
}

/* ── About: achievements ────────────────────────────────────────── */
.about__achievements { max-width: 1160px; margin: clamp(56px, 7vw, 80px) auto 0; text-align: center; }
.achv-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 18px;
  margin-top: clamp(36px, 5vw, 50px);
}
.achv-card {
  flex: 1 1 230px; max-width: 270px;
  background: var(--card); border: 1px solid var(--line-mid);
  padding: 30px 24px 26px; text-align: center;
  transition: border-color .3s, transform .3s;
}
.achv-card:hover { border-color: var(--line-str); transform: translateY(-3px); }
.achv-card__laurel { display: block; margin: 0 auto 16px; color: var(--gold); }
.achv-card h4 {
  font-size: 13.5px; font-weight: 400; letter-spacing: .04em;
  line-height: 1.5; color: var(--gold-2); text-transform: uppercase;
  min-height: 40px;
}
.achv-card p { margin-top: 14px; font-size: 11.5px; letter-spacing: .12em; color: var(--faint); text-transform: uppercase; }
.achv-card p span { color: var(--body-mut); }

/* ── Gallery ─────────────────────────────────────────────────────── */
.gallery { padding: var(--sec-y) var(--pad-x); max-width: 1240px; margin: 0 auto; }
.gallery__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 20px; margin-bottom: clamp(34px, 4.5vw, 54px);
}
/* Masonry rather than a fixed mosaic: the gallery mixes 4:5 promo posters
   (which carry text overlays a crop would slice through) with 16:9 room
   shots. Columns let every image keep its own aspect ratio, and new photos
   can be dropped in at any size without reworking the grid. */
.gallery__grid { columns: 3; column-gap: 14px; }
.g { break-inside: avoid; margin-bottom: 14px; }
.g .img-slot { height: auto; }
.g .img-slot img { position: static; height: auto; object-fit: unset; }
.g .img-slot.is-empty { min-height: 220px; }

/* Tiles become buttons at runtime (see JS). Cursor + focus ring here so the
   affordance is right even before the script runs. */
.g .img-slot[role="button"] { cursor: zoom-in; }
.g .img-slot[role="button"]:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px;
}
.g .img-slot[role="button"] img { transition: transform .5s cubic-bezier(.2,.7,.3,1); }
@media (hover: hover) {
  .g .img-slot[role="button"]:hover img { transform: scale(1.045); }
}

/* ── Lightbox ────────────────────────────────────────────────────── */
.lb {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(52px, 7vw, 76px) clamp(12px, 6vw, 88px);
  background: rgba(8, 14, 5, .96);
  opacity: 0; transition: opacity .26s ease;
}
.lb[hidden] { display: none; }
.lb.is-open { opacity: 1; }

.lb__fig { margin: 0; max-width: 100%; }
.lb__img {
  display: block; margin: 0 auto; max-width: 100%; max-height: 76vh;
  object-fit: contain; opacity: 0; transition: opacity .22s ease;
}
.lb__img.is-ready { opacity: 1; }
.lb__btn {
  position: absolute; display: grid; place-items: center;
  width: clamp(40px, 5vw, 52px); height: clamp(40px, 5vw, 52px);
  border-radius: 50%; cursor: pointer;
  background: rgba(229, 238, 206, .10);
  border: 1px solid rgba(229, 238, 206, .34);
  color: var(--on-dark); font-size: 20px; line-height: 1;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.lb__btn:hover, .lb__btn:focus-visible {
  background: var(--gold); border-color: var(--gold); color: var(--text);
}
.lb__btn:focus-visible { outline: 2px solid var(--on-dark); outline-offset: 2px; }
.lb__prev  { left:  clamp(10px, 2.5vw, 30px); top: 50%; transform: translateY(-50%); }
.lb__next  { right: clamp(10px, 2.5vw, 30px); top: 50%; transform: translateY(-50%); }
.lb__close { right: clamp(10px, 2.5vw, 30px); top: clamp(12px, 2.5vw, 24px); }

.lb__count {
  position: absolute; left: clamp(14px, 3vw, 32px); top: clamp(18px, 3vw, 32px);
  color: var(--on-dark-mut); font-size: 12px; letter-spacing: .22em;
}

/* On phones the side arrows would sit on the photo, so drop them to a bar
   underneath. Swipe works either way. */
@media (max-width: 620px) {
  .lb { padding: 60px 10px 92px; }
  .lb__img { max-height: 66vh; }
  .lb__prev { left: calc(50% - 62px); top: auto; bottom: 22px; transform: none; }
  .lb__next { right: calc(50% - 62px); top: auto; bottom: 22px; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .lb, .lb__img, .g .img-slot[role="button"] img { transition: none; }
}

/* ── Pricing ─────────────────────────────────────────────────────── */
.pricing {
  padding: var(--sec-y) var(--pad-x); background: var(--bg-alt);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.pricing__inner { max-width: 1240px; margin: 0 auto; }

.pricing .section-head { max-width: 700px; margin-bottom: 46px; }
.pricing__lede {
  margin-top: 20px; font-size: 15px; line-height: 1.75;
  color: var(--body-mut); max-width: 58ch;
}
.pricing__member {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 26px;
  padding: 9px 18px; background: var(--tint); border: 1px solid var(--line-mid);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-2);
}
.pricing__member b { font-weight: 500; color: var(--gold-2); }

/* Tariff shell */
.tariff {
  border: 1px solid var(--line-mid); background: var(--panel);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.tariff__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding: 0 clamp(16px, 2.4vw, 26px);
  border-bottom: 1px solid var(--line);
}
.tariff__groups { display: flex; gap: clamp(14px, 2.6vw, 34px); overflow-x: auto; scrollbar-width: none; }
.tariff__groups::-webkit-scrollbar { display: none; }
.grp {
  position: relative; background: none; border: 0; cursor: pointer;
  font-family: inherit; font-size: 12px; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; white-space: nowrap;
  color: var(--muted); padding: 22px 0 20px; transition: color .3s var(--ease);
}
.grp::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.grp:hover { color: var(--body-mut); }
.grp[aria-selected="true"] { color: var(--gold-2); }
.grp[aria-selected="true"]::after { transform: scaleX(1); }

.tariff__search { position: relative; padding: 12px 0; }
.tariff__search input {
  width: clamp(180px, 26vw, 260px); background: transparent;
  border: 1px solid var(--line); color: var(--body-str);
  font-family: inherit; font-size: 13px; font-weight: 300;
  padding: 9px 14px; transition: border-color .3s;
}
.tariff__search input::placeholder { color: var(--faint); }
.tariff__search input:focus { outline: none; border-color: var(--line-str); }

.tariff__body { display: grid; grid-template-columns: 268px minmax(0, 1fr); }

/* Category rail */
.tariff__rail {
  border-right: 1px solid var(--line);
  padding: 18px 0 26px;
  align-self: start; position: sticky; top: 92px;
  max-height: calc(100vh - 120px); overflow-y: auto; scrollbar-width: thin;
}
.tariff__rail-label {
  font-size: 10px; letter-spacing: .38em; text-transform: uppercase;
  color: var(--faint); padding: 0 24px; margin-bottom: 12px;
}
.cat {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; text-align: left; background: none; border: 0; border-radius: 0;
  cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 300;
  color: var(--body-mut); padding: 11px 24px;
  border-left: 2px solid transparent;
  transition: color .25s, background-color .25s, border-color .25s;
}
.cat:hover { color: var(--head); background: var(--tint); }
.cat[aria-current="true"] {
  color: var(--gold-2); background: var(--tint);
  border-left-color: var(--gold);
}
.cat__n {
  font-size: 11px; letter-spacing: .06em; color: var(--faint);
  border: 1px solid var(--line-soft); padding: 1px 8px; border-radius: 999px;
  flex: none;
}
.cat[aria-current="true"] .cat__n { color: var(--gold); border-color: var(--line-mid); }

/* Panel */
.tariff__panel { padding: 30px clamp(20px, 3vw, 38px) 34px; min-height: 520px; }
.tariff__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.tariff__kicker {
  font-size: 10px; letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.tariff__title {
  font-family: var(--f-display); font-weight: 400; font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.1; color: var(--head);
}
.tariff__desc { margin-top: 10px; font-size: 13.5px; line-height: 1.65; color: var(--muted); max-width: 54ch; }
.legend { display: flex; gap: 18px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); }
.legend i { width: 6px; height: 6px; display: inline-block; margin-right: 8px; vertical-align: 1px; }
.legend .m { background: var(--gold); }
.legend .nm { background: var(--faint); }

.svc { border-bottom: 1px solid var(--line-soft); }
.svc:last-child { border-bottom: 0; }
.svc__row {
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px; align-items: start; padding: 15px 12px 15px 14px;
  margin: 0 -12px 0 -14px; transition: background-color .3s var(--ease);
}
.svc:hover .svc__row { background: var(--tint); }
.svc__name { font-size: 15px; font-weight: 400; color: var(--body-str); letter-spacing: .01em; }
.svc__tag {
  font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line-mid); padding: 2px 7px;
  margin-left: 10px; vertical-align: 2px; white-space: nowrap;
}
.svc__desc { margin-top: 5px; font-size: 12.5px; line-height: 1.6; color: var(--muted); max-width: 62ch; }
.svc__price { text-align: right; font-variant-numeric: tabular-nums; }
.svc__m { font-size: 16px; font-weight: 600; color: var(--head); letter-spacing: .02em; }
.svc__nm { margin-top: 3px; font-size: 12px; color: var(--muted); text-decoration: line-through; }
.svc__where { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }

.tariff__empty { padding: 70px 0; text-align: center; color: var(--muted); font-size: 14px; }
.tariff__empty b { display: block; font-family: var(--f-display); font-size: 26px; color: var(--head); font-weight: 400; margin-bottom: 8px; }

.tariff__note {
  margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line-soft);
  font-size: 12px; line-height: 1.85; color: var(--faint);
}
.tariff__note b { color: var(--body-mut); font-weight: 400; }

.pricing__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; margin-top: 30px;
}
.pricing__foot p { font-size: 13px; color: var(--muted); }
.pricing__cta {
  display: inline-block; padding: 15px 34px; background: var(--gold-grad);
  color: #243B25; font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 500; transition: opacity .3s;
}
.pricing__cta:hover { opacity: .86; color: #243B25; }

/* ── Testimonials ────────────────────────────────────────────────── */
.quotes { padding: var(--sec-y) var(--pad-x); max-width: 860px; margin: 0 auto; text-align: center; }
.quotes__mark {
  font-family: var(--f-display); font-size: 110px; line-height: .4;
  color: rgba(224,188,63,.45); margin-bottom: 8px;
}
.quotes__body { margin: 0; }
.quotes__stars {
  display: flex; gap: 5px; margin-bottom: 20px;
}
.quotes__stars svg {
  width: 20px; height: 20px; fill: var(--gold); flex: none;
}
.quotes__text {
  min-height: 120px;
  font-family: var(--f-display); font-size: clamp(22px, 3.6vw, 32px);
  line-height: 1.5; color: var(--text);
  transition: opacity .5s;
}
.quotes__name {
  margin-top: 26px;
  font-size: 12px; letter-spacing: .35em; text-transform: uppercase; color: var(--gold);
  transition: opacity .5s;
}
.quotes.is-fading .quotes__text,
.quotes.is-fading .quotes__name { opacity: 0; }
.quotes__dots { display: flex; gap: 12px; justify-content: center; margin-top: 36px; }
.quotes__dots button {
  width: 32px; height: 3px; border: none; padding: 0; cursor: pointer;
  background: var(--line-mid); transition: background .4s;
}
.quotes__dots button.is-active { background: var(--gold); }

/* ── Booking ─────────────────────────────────────────────────────── */
.book { padding: var(--sec-y) var(--pad-x); background: linear-gradient(160deg, var(--warm), var(--bg) 65%); }
.book__grid {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(44px, 6vw, 80px);
  align-items: start;
}
.book__copy h2 { margin-bottom: 24px; }
.book__lede { margin-bottom: 40px; font-size: 16px; line-height: 1.85; color: var(--body-mut); }
.book__perks { display: flex; flex-direction: column; gap: 18px; font-size: 15px; color: var(--body-mut); }
.book__perks li { display: flex; gap: 14px; align-items: flex-start; }
.book__perks i { color: var(--gold-2); font-style: normal; }

.book__card {
  background: var(--card); border: 1px solid rgba(224,188,63,.22);
  padding: clamp(28px, 4vw, 44px) clamp(22px, 3.6vw, 42px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: span 2; }
.field label {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted);
}
.field input, .field select, .field textarea {
  background: transparent; border: 1px solid var(--line-mid);
  color: var(--body-str); padding: 13px 14px;
  font-family: var(--f-body); font-size: 15px; font-weight: 300;
  transition: border-color .3s;
  width: 100%;
}
.field select, .field input[type="date"], .field input[type="time"] {
  background: var(--card); color-scheme: light;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
}
.field.has-error input,
.field.has-error .msel__btn { border-color: #8E3A22; }

/* Per-field error message, sits directly under the field it refers to.
   Empty by default (no reserved height) so the grid stays tight until
   an error actually appears. */
.field__error {
  font-size: 12px; color: #8E3A22; letter-spacing: .04em;
  text-transform: none; line-height: 1.4;
  display: none;
}
.field.has-error .field__error { display: block; }

.field__hint {
  text-transform: none; letter-spacing: 0; font-size: 11px; color: var(--faint);
  margin-left: 8px;
}

/* Who's this for — segmented radio control */
.segmented {
  display: flex; border: 1px solid var(--line-mid); overflow: hidden;
}
.segmented__opt {
  flex: 1; position: relative; cursor: pointer;
  text-align: center; padding: 12px 10px;
  font-size: 13px; letter-spacing: .08em; color: var(--body-mut);
  transition: background .3s, color .3s;
}
.segmented__opt + .segmented__opt { border-left: 1px solid var(--line-mid); }
.segmented__opt input {
  position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none;
}
.segmented__opt:has(input:checked) { background: var(--gold); color: #243B25; }
.segmented__opt:has(input:focus-visible) { outline: 2px solid var(--gold-2); outline-offset: -2px; }
.segmented__opt:hover { color: var(--head); }
.segmented__opt:has(input:checked):hover { color: #243B25; }

/* Services — custom multi-select dropdown */
.msel { position: relative; }
.msel__btn {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; background: transparent; border: 1px solid var(--line-mid);
  color: var(--body-str); font-family: var(--f-body); font-size: 15px; font-weight: 300;
  padding: 13px 14px; cursor: pointer; text-align: left;
  transition: border-color .3s;
}
.msel__btn:hover { border-color: var(--line-str); }
.msel__btn[aria-expanded="true"] { border-color: var(--gold); }
.msel__btn-text { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.msel__btn-text.is-placeholder { color: var(--faint); }
.msel__chev { flex: none; color: var(--muted); transition: transform .25s; }
.msel__btn[aria-expanded="true"] .msel__chev { transform: rotate(180deg); color: var(--gold-2); }

.msel__panel[hidden] { display: none; }
.msel__panel {
  position: absolute; z-index: 20; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--card); border: 1px solid var(--line-mid);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .55);
  /* Cap the whole dropdown and lay it out as a column: options scroll,
     Apply bar stays pinned at the foot and is visible the moment the panel
     opens — never something you scroll to the end of the list to reach. */
  display: flex; flex-direction: column;
  max-height: 320px;
}
.msel__list {
  overflow-y: auto; overscroll-behavior: contain;
  flex: 1 1 auto; min-height: 0;
}
.msel__bar {
  flex: none;
  padding: 10px 12px;
  background: var(--card);
  border-top: 1px solid var(--line-mid);
}
.msel__apply {
  width: 100%; cursor: pointer;
  background: var(--gold); color: var(--text);
  border: 1px solid var(--gold);
  font-family: var(--f-body); font-size: 12px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 12px 16px;
  transition: background .2s, border-color .2s, color .2s;
}
.msel__apply:hover, .msel__apply:focus-visible {
  background: var(--gold-2); border-color: var(--gold-2); outline: none;
}
.msel__opt {
  display: flex; align-items: center; gap: 12px;
  width: 100%; background: none; border: 0; cursor: pointer;
  color: var(--body-mut); font-family: inherit; font-size: 14px; font-weight: 300;
  text-align: left; padding: 11px 14px;
  transition: background .2s, color .2s;
}
.msel__opt:hover { background: var(--tint); color: var(--head); }
.msel__opt-check {
  flex: none; width: 15px; height: 15px; border: 1px solid var(--line-str);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.msel__opt-check svg { opacity: 0; width: 11px; height: 11px; color: #243B25; transition: opacity .15s; }
.msel__opt[aria-selected="true"] { color: var(--head); }
.msel__opt[aria-selected="true"] .msel__opt-check { background: var(--gold); border-color: var(--gold); }
.msel__opt[aria-selected="true"] .msel__opt-check svg { opacity: 1; }

.hp {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  overflow: hidden; opacity: 0; pointer-events: none;
}
.form .btn--block { margin-top: 30px; }
.form__error {
  margin-top: 16px; min-height: 18px; text-align: center;
  font-size: 12px; color: #8E3A22; letter-spacing: .06em;
}

.booked[hidden] { display: none; }
.booked { display: grid; place-items: center; padding: clamp(20px, 4vw, 44px) 0; }
/* Focused programmatically so keyboard users aren't stranded on the removed
   form — but it is a status panel, not a control, so no visible ring. */
.booked:focus, .booked:focus-visible { outline: none; }

/* ── Stamped ticket ──────────────────────────────────────────────── */
.ticket {
  position: relative; width: 100%; max-width: 430px;
  background: var(--panel);
  border: 1px solid rgba(24,53,31,.14);
  border-radius: 18px;
  box-shadow: 0 2px 0 rgba(24,53,31,.05), 0 26px 50px -24px rgba(24,53,31,.4);
  overflow: hidden;
}
/* Entrance only plays once the card is revealed, never on page load. */
.booked.is-in .ticket {
  animation: tkCard .55s cubic-bezier(.2,.8,.3,1) both, tkThump 1.5s ease-out both;
}

.ticket__top { padding: 34px 34px 24px; text-align: left; }
.ticket__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
  animation: tkUp .5s ease-out .1s both;
}
.ticket__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.ticket__title {
  margin: 20px 0 8px;
  font-family: var(--f-display); font-size: clamp(26px, 4vw, 32px);
  line-height: 1.15; color: var(--head);
  animation: tkUp .5s ease-out .18s both;
}
.ticket__copy {
  margin: 0; max-width: 320px;
  font-size: 14.5px; line-height: 1.6; color: var(--body-mut);
  animation: tkUp .5s ease-out .26s both;
}

.ticket__tear { position: relative; height: 22px; }
.ticket__tear::before {
  content: ''; position: absolute; left: 24px; right: 24px; top: 50%;
  border-top: 2px dashed rgba(24,53,31,.28);
  animation: tkTear .6s cubic-bezier(.5,0,.2,1) .38s both;
}
.ticket__notch {
  position: absolute; top: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg);
}
.ticket__notch--l { left: -11px; }
.ticket__notch--r { right: -11px; }

.ticket__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 34px 32px;
}
.ticket__when { display: flex; flex-direction: column; gap: 5px; animation: tkUp .5s ease-out .34s both; }
.ticket__label {
  font-family: var(--f-body); font-size: 10.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.ticket__value {
  font-family: var(--f-body); font-size: 15px; font-weight: 400;
  color: var(--head); letter-spacing: .01em;
}
.ticket__replay {
  flex: none; appearance: none; cursor: pointer;
  border: 1px solid var(--line-mid); background: transparent;
  color: var(--body); font-family: var(--f-body); font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 11px 16px; border-radius: 9px;
  transition: background .18s, color .18s, border-color .18s;
}
.ticket__replay:hover, .ticket__replay:focus-visible {
  background: var(--gold); border-color: var(--gold); color: var(--text); outline: none;
}

/* Rubber stamp */
.ticket__stamp {
  position: absolute; right: 30px; bottom: 46px;
  width: 132px; height: 132px; pointer-events: none;
}
.ticket__shock {
  position: absolute; left: 50%; top: 50%; width: 120px; height: 120px;
  margin: -60px 0 0 -60px; border-radius: 50%;
  border: 3px solid rgba(54,91,50,.32);
  animation: tkShock .7s cubic-bezier(.15,.7,.3,1) .62s both;
}
.ticket__seal {
  position: absolute; left: 50%; top: 50%;
  width: 132px; height: 132px; margin: -66px 0 0 -66px;
  border: 4px solid var(--green); border-radius: 50%;
  display: grid; place-items: center; color: var(--green);
  opacity: .9; mix-blend-mode: multiply;
  animation: tkStamp 1.1s cubic-bezier(.2,.9,.3,1) both;
}
.ticket__seal-text {
  position: absolute; bottom: 16px;
  font-family: var(--f-body); font-size: 10px; font-weight: 600; letter-spacing: .18em;
}

.ticket__poppers { position: absolute; inset: 0; pointer-events: none; }
.ticket__poppers span {
  position: absolute; top: 46%; left: 50%; border-radius: 1px;
  opacity: 0;
}

@keyframes tkCard { from { opacity: 0; transform: translateY(18px) rotate(-1.2deg); } to { opacity: 1; transform: none; } }
@keyframes tkThump {
  0%,60% { transform: translate(0,0) rotate(0); }
  64% { transform: translate(0,3px) rotate(.5deg); }
  69% { transform: translate(0,-2px) rotate(-.35deg); }
  76%,100% { transform: translate(0,0) rotate(0); }
}
@keyframes tkUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes tkTear { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes tkShock { 0% { opacity: 0; transform: scale(.4); } 25% { opacity: .5; } 100% { opacity: 0; transform: scale(1.7); } }
@keyframes tkStamp {
  0% { opacity: 0; transform: translate(0,0) rotate(-26deg) scale(3.2); }
  55% { opacity: 0; transform: rotate(-16deg) scale(1.35); }
  72% { opacity: 1; transform: rotate(-11deg) scale(.94); }
  82% { transform: rotate(-11.6deg) scale(1.02); }
  100% { opacity: 1; transform: rotate(-11deg) scale(1); }
}
@keyframes tkPop {
  0% { opacity: 0; transform: translate(0,0) scale(.4) rotate(0); }
  15% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(1) rotate(var(--dr)); }
}

@media (prefers-reduced-motion: reduce) {
  .ticket, .ticket *, .ticket__poppers span { animation: none !important; }
  .ticket__seal { opacity: .9; transform: rotate(-11deg); }
  .ticket__tear::before { clip-path: none; }
}

/* Submit button while the request is in flight. */
.btn--sending { pointer-events: none; opacity: .75; }
.btn--sending::after {
  content: ''; display: inline-block; vertical-align: -2px;
  width: 13px; height: 13px; margin-left: 12px;
  border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%;
  animation: bookedSpin .7s linear infinite;
}
@keyframes bookedSpin { to { transform: rotate(360deg); } }

/* ── Contact ─────────────────────────────────────────────────────── */
.contact { padding: var(--sec-y) var(--pad-x); max-width: 1240px; margin: 0 auto; }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 5vw, 70px);
  align-items: stretch;
}
.contact h2 { margin-bottom: 40px; }
.contact__blocks { display: flex; flex-direction: column; gap: 30px; }
.contact__blocks .label { letter-spacing: .3em; margin-bottom: 8px; font-size: 11px; }
.contact__val {
  display: block;
  font-size: clamp(16px, 2.2vw, 17px); font-weight: 300; line-height: 1.7; color: var(--body);
}
a.contact__val:hover { color: var(--gold-2); }
.contact__val--gold { color: var(--gold-2); }
.contact__sub { color: var(--muted); font-size: 14px; }

.contact__map { position: relative; min-height: clamp(300px, 40vw, 460px); border: 1px solid rgba(224,188,63,.22); }
.contact__map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  filter: grayscale(1) invert(.92) contrast(.9) sepia(.25);
}
.contact__map-note {
  position: absolute; inset: auto 0 0 0; padding: 10px 16px;
  background: rgba(24,53,31,.88);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  pointer-events: none;
}

/* ── Instagram tilted wall ───────────────────────────────────────── */
.ig-wall {
  position: relative; overflow: hidden; height: 640px;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}
.ig-wall__plane-wrap { position: absolute; inset: -180px -120px; perspective: 1200px; }
.ig-wall__plane {
  width: 100%; height: 100%;
  display: flex; gap: 22px; justify-content: center;
  transform: rotateX(24deg) rotateZ(-12deg) scale(1.04);
  transform-style: preserve-3d;
}
.ig-wall__col { display: flex; flex-direction: column; gap: 22px; }
.ig-wall__col--up-1   { animation: igDriftUp 14s ease-in-out infinite alternate; }
.ig-wall__col--down-1 { animation: igDriftDown 17s ease-in-out infinite alternate; }
.ig-wall__col--up-2   { animation: igDriftUp 20s ease-in-out infinite alternate; }
.ig-wall__col--down-2 { animation: igDriftDown 15s ease-in-out infinite alternate; }
@keyframes igDriftUp   { from { transform: translateY(0) }      to { transform: translateY(-220px) } }
@keyframes igDriftDown { from { transform: translateY(-220px) } to { transform: translateY(0) } }

.ig-wall__tile, .ig-wall__blank {
  flex: none; width: 270px; height: 270px;
  overflow: hidden; border: 1px solid var(--line-mid);
}
.ig-wall__tile {
  display: block; opacity: 1; cursor: pointer;
  transition: opacity .25s, border-color .25s;
}
.ig-wall__tile:hover, .ig-wall__tile:focus-visible { opacity: 1; border-color: var(--gold); }
.ig-wall__tile .img-slot { display: block; width: 100%; height: 100%; }
.ig-wall__tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ig-wall__blank { background: var(--warm); }

.ig-wall__scrim {
  position: absolute; inset: 0; pointer-events: none;
  /* Lighter scrim: photos read clearly, with just enough veil at the
     bottom-left to keep the "The work speaks" copy legible. */
  background: radial-gradient(ellipse 65% 75% at 28% 62%,
    rgba(216,234,188,.72) 0%, rgba(216,234,188,.34) 45%, rgba(216,234,188,0) 72%);
}

.ig-wall__copy {
  position: absolute; left: clamp(24px, 5vw, 64px); bottom: clamp(80px, 9vw, 110px);
  display: flex; flex-direction: column; gap: 22px; max-width: 480px; z-index: 3;
}
.ig-wall__handle {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
}
.ig-wall__handle:hover { color: var(--gold-2); }
.ig-wall__headline {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(34px, 4.6vw, 52px); line-height: 1.08;
  color: var(--head);
}
.ig-wall__headline em { font-style: italic; color: var(--gold-2); }
.ig-wall__cta { align-self: flex-start; display: inline-flex; align-items: center; gap: 10px; }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
  position: relative; z-index: 5; margin-top: -58px;
  border-top: 1px solid var(--line);
  padding: 76px var(--pad-x) 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  pointer-events: none;
}
.footer__logo { height: 32px; width: auto; }
.footer__mid { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.footer__copy { font-size: 12px; letter-spacing: .14em; color: var(--faint); text-align: center; }
.footer__place {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--text-gold-sm); text-align: center;
}
.footer__top {
  pointer-events: auto;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
}
.footer__top:hover { color: var(--gold-2); }

/* ── Scroll reveal ───────────────────────────────────────────────── */
.js [data-rv] { opacity: 0; transform: translateY(28px); }
.js [data-rv].is-revealed {
  opacity: 1; transform: translateY(0);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

/* ── Keyframes ───────────────────────────────────────────────────── */
@keyframes marquee   { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floaty    { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes scrollcue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }
@keyframes spinSlow  { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(224,188,63,0); }
  50%      { box-shadow: 0 10px 44px rgba(224,188,63,.55), 0 0 24px rgba(235,206,100,.35); }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — not in the original handoff; designed to preserve the
   desktop composition and degrade it deliberately.
   ═══════════════════════════════════════════════════════════════════ */

/* Tablet ─────────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .about__grid   { grid-template-columns: 1fr; }
  .about__media  { max-width: 560px; }
  .about__stamp  { width: 120px; height: 120px; right: -14px; bottom: -18px; }
  .contact__grid { grid-template-columns: 1fr; }
  .book__grid    { grid-template-columns: 1fr; }
  .ig-wall { height: 600px; }
}

/* Mobile nav + layout ────────────────────────────────────────────── */
@media (max-width: 860px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service:nth-child(5), .service:nth-child(6) { grid-column: auto; }
  .service:nth-child(7) { grid-column: 1 / span 2; }
  .nav { padding: 14px var(--pad-x); }
  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed; inset: 66px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    /* Fully opaque: at 97% the hero logo still ghosted through. */
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .6);
    padding: 8px var(--pad-x) 26px;
    transform: translateY(-12px);
    opacity: 0; visibility: hidden;
    transition: opacity .3s, transform .3s, visibility .3s;
  }
  .nav__menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__menu > a {
    padding: 18px 0; border-bottom: 1px solid var(--line-soft);
    font-size: 14px; letter-spacing: .22em;
  }
  .nav__cta {
    margin-top: 22px; border-bottom: none; text-align: center;
    padding: 15px 26px; justify-content: center;
  }

  .hero__cue { display: none; }
  .hero__dots { flex-direction: row; top: auto; bottom: 26px; left: 50%; right: auto; transform: translateX(-50%); }

  .tariff__body { grid-template-columns: 1fr; }
  .tariff__rail {
    position: static; max-height: none; overflow-x: auto; overflow-y: hidden;
    display: flex; gap: 8px; padding: 14px 16px;
    border-right: 0; border-bottom: 1px solid var(--line);
    scrollbar-width: none;
  }
  .tariff__rail::-webkit-scrollbar { display: none; }
  .tariff__rail-label { display: none; }
  .cat {
    width: auto; flex: none; white-space: nowrap; padding: 8px 15px;
    border: 1px solid var(--line); border-left-width: 1px;
  }
  .cat[aria-current="true"] { border-color: var(--line-str); border-left-color: var(--line-str); }
  .cat__n { display: none; }
  .pricing__member { letter-spacing: .1em; padding: 10px 15px; }
  .tariff__search { width: 100%; padding-bottom: 16px; }
  .tariff__search input { width: 100%; }

  .gallery__head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .gallery__grid { columns: 2; }
  .g--big  { grid-column: span 2; grid-row: span 1; }
  .g--tall { grid-row: span 1; }
  .g--wide { grid-column: span 2; }

  .form__grid { grid-template-columns: 1fr; gap: 18px; }
  .field--full { grid-column: span 1; }

  .ig-wall { height: 540px; }
  .ig-wall__tile, .ig-wall__blank { width: 200px; height: 200px; }
  .ig-wall__plane { gap: 16px; }
  .ig-wall__col { gap: 16px; }

  .footer {
    flex-direction: column; text-align: center;
    margin-top: -30px; padding-top: 56px; gap: 22px;
  }
}

/* Small phones ───────────────────────────────────────────────────── */
@media (max-width: 520px) {
  .services__grid { grid-template-columns: 1fr; }
  .service:nth-child(5), .service:nth-child(6), .service:nth-child(7) { grid-column: auto; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero__cta .btn { width: 100%; }
  .hero__cta .btn--icon { width: 49px; align-self: center; }
  .quotes__mark { font-size: 80px; }
  .quotes__text { min-height: 150px; }
  .stats { gap: 26px; }
  .stat { min-width: 90px; }
  .gallery__grid { columns: 2; column-gap: 10px; }
  .g { margin-bottom: 10px; }

  .svc__row { grid-template-columns: 1fr; gap: 10px; }
  .svc__price { text-align: left; display: flex; align-items: baseline; gap: 12px; }
  .svc__nm { margin-top: 0; }
  .legend { display: none; }
}

/* ── Reduced motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .marquee__track,
  .service__icon,
  .about__stamp,
  .hero__cue-line i,
  .ig-wall__col,
  .btn--glow,
  .btn--sending::after {
    animation: none !important;
  }

  .js [data-rv] { opacity: 1 !important; transform: none !important; }
  .js [data-rv].is-revealed { transition: none; }

  .hero__slide { transition: none; }
  .hero__slides, .hero__vignette, .hero__fade { transition: none; opacity: 1; }
  .quotes__text, .quotes__name { transition: none; }

  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ══ TEXT COLOUR MAPPING ═══════════════════════════════════════════
   --gold / --gold-2 are FILL colours only — at 2.2:1 and 1.5:1 on the
   light green they are unusable as type. Gold TEXT uses --text-gold
   for large display type and --text-gold-sm at body sizes. */

h2 em,
.about__stat-n,
.achv-card__value,
/* The three selectors above don't match the markup — the real elements are
   .stat dd / .why-stat dd. Kept in place so the mapping still applies if the
   markup is ever renamed to match. */
.stat dd,
.why-stat dd,
.ig-wall__headline em { color: var(--text-gold); }

.svc__m,
.achv-card h4,
.quotes__name         { color: var(--text-gold-sm); }

.eyebrow,
.pricing__member,
.pricing__member b,
.grp[aria-selected="true"],
.cat[aria-current="true"],
.cat[aria-current="true"] .cat__n,
.tariff__kicker,
.tariff__badge,
.achv-card__label,
.book__perks i,
.contact__val--gold,
.ig-wall__handle,
.marquee__group i,
.btn--ghost,
.btn--icon,
a                      { color: var(--text-gold-sm); }

a:hover,
.btn--ghost:hover,
.btn--icon:hover,
a.contact__val:hover,
.ig-wall__handle:hover { color: var(--text); }

.svc__nm               { color: var(--text-2); }

/* ══ LIGHT GREEN THEME ══════════════════════════════════════════════ */

.nav                   { background: rgba(229, 238, 206, .92); border-bottom: 1px solid var(--line); }
.nav__menu > a:not(.btn)       { color: var(--text-2); }
.nav__menu > a:not(.btn):hover { color: var(--text); }
.nav__bar              { background: var(--text); }

.marquee               { background: var(--panel); border-color: var(--line); }
.marquee__item         { color: var(--text-2); }

.footer                { background: var(--panel); border-top: 1px solid var(--line); }
.footer__note          { color: var(--text-2); }
.footer a,
.footer__top           { color: var(--text-gold-sm); }
.footer a:hover,
.footer__top:hover     { color: var(--text); }

/* Gold buttons: deep green ink, 5.2:1 on the fill. */
.btn--gold             { color: var(--text); }
.btn--gold:hover       { color: var(--text); box-shadow: 0 12px 32px rgba(199, 154, 36, .34); }
.btn--ghost            { border-color: var(--line-str); }
.btn--ghost:hover      { border-color: var(--text); background: var(--tint-2); }
.btn--icon             { border-color: var(--line-str); }

/* Cards lift with a soft shadow — glows only read on dark. */
.tariff,
.book__form            { box-shadow: 0 10px 30px rgba(24, 53, 31, .09); }
.service               { box-shadow: none; }

/* Native pickers must match the light card. */
.field input,
.field select,
.field textarea        { color-scheme: light; }

/* ══ MOBILE CARD-STACK ══════════════════════════════════════════════
   Scroll-driven horizontal card stack for narrow viewports only.
   Everything here is gated behind (max-width: 860px). Desktop keeps the
   normal vertical layout and the fixed nav, untouched. Reduced-motion
   users get plain vertical scroll (rules live in the reduced-motion
   block below). Structure injected by main.js:
     .cardstack  (tall scroll driver, height = N × 100svh)
       .cardstack__stage  (sticky, 100svh, overflow hidden)
         .card  ×N  (absolute inset:0, DOM order = z-index)
           .card__head  (per-card header strip)
           .card__dim   (cover/dim overlay)
           <section>    (the original section, moved in by JS)
   ─────────────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  html.cardstack-on { scroll-behavior: auto; }
  /* The base stylesheet sets overflow-x:hidden on <body>. That turns body
     into a scroll container, which makes the sticky stage stick to the body
     scrollport rather than the viewport — cards then land a viewport too high.
     Override body back to visible and clip horizontally on <html> instead. */
  html.cardstack-on { overflow-x: hidden; }
  html.cardstack-on body { overflow-x: visible; }

  /* Each card carries its own header strip, so hide the fixed nav BAR —
     but keep .nav itself displayed so its child .nav__menu can still open
     as a full-width overlay when a card toggle is tapped. We collapse the
     bar to zero height and hide the brand/toggle instead of display:none
     (which would also kill the menu). */
  html.cardstack-on .nav {
    background: none; border: 0; padding: 0; height: 0; pointer-events: none;
  }
  html.cardstack-on .nav__brand,
  html.cardstack-on .nav > .nav__toggle { display: none; }
  html.cardstack-on .nav__menu { pointer-events: auto; }

  .cardstack { position: relative; width: 100%; }

  .cardstack__stage {
    position: sticky; top: 0;
    height: var(--stage-h, 100dvh); width: 100%;
    overflow: hidden;
    background: var(--bg);
  }

  .card {
    position: absolute; inset: 0;
    overflow: hidden;
    background: var(--bg);
    transform: translateX(102%);
    will-change: transform;
    backface-visibility: hidden;
  }
  /* First card starts in place; JS keeps it there. */
  .card:first-child { transform: none; }

  /* The moved-in section fills the card. Cards that fit a viewport don't
     scroll. Cards taller than the viewport (.card--scroll, flagged by JS)
     scroll their content natively — and deliberately WITHOUT
     overscroll-behavior:contain, so when the finger reaches the card's top
     or bottom edge the scroll CHAINS to the window and the next/prev card
     stacks in. One continuous gesture reads a card, then advances.
     Top padding clears the header strip (incl. safe-area). */
  /* Sections clip their overflow. For tall cards, an inner wrapper
     (.card__inner, added by main.js) is translated upward as the window
     scrolls — driven by the single window scroll axis, so a finger swipe
     always advances the stack and never gets trapped in an inner scroller.
     Short cards center their content; no wrapper translate is applied. */
  .card > section,
  .card > .hero {
    position: absolute; inset: 0;
    height: var(--stage-h, 100dvh); min-height: 0;
    margin: 0;
    overflow: hidden;
    padding-top: calc(var(--card-head-h) + env(safe-area-inset-top, 0px) + 28px);
    padding-bottom: 28px;
    scrollbar-width: none;
  }
  .card:not(.card--scroll):not(.card--hero) > section {
    display: flex; flex-direction: column; justify-content: center;
  }
  .card__inner { will-change: transform; }
  .card > section::-webkit-scrollbar,
  .card > .hero::-webkit-scrollbar { display: none; }

  /* Hero is a full-bleed image card — no header offset pushing it down,
     the header sits transparently on top of it instead. */
  .card--hero > .hero {
    padding-top: 0;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }

  /* ── Per-card header strip ──────────────────────────────────────── */
  .card__head {
    position: absolute; inset: 0 0 auto 0; z-index: 20;
    display: flex; align-items: center; justify-content: space-between;
    height: var(--card-head-h);
    padding: env(safe-area-inset-top, 0px) var(--pad-x) 0;
    padding-inline: var(--pad-x);
    background: var(--panel);
    border-bottom: 1px solid var(--line);
  }
  .card--hero .card__head {
    background: linear-gradient(rgba(16, 34, 20, .8), transparent);
    border-bottom: 0;
  }
  .card__brand img { height: 40px; width: auto; display: block; }
  /* Hero uses the light logo on the dark gradient. */
  .card--hero .card__brand .card__brand-dark { display: none; }
  .card:not(.card--hero) .card__brand .card__brand-light { display: none; }

  .card__toggle {
    width: 44px; height: 44px; padding: 0;
    background: transparent; border: 1px solid var(--line-mid);
    cursor: pointer;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  }
  .card--hero .card__toggle { border-color: rgba(229, 238, 206, .5); }
  .card__toggle .nav__bar { background: var(--text); }
  .card--hero .card__toggle .nav__bar { background: var(--on-dark); }
  .card__toggle[aria-expanded="true"] .nav__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .card__toggle[aria-expanded="true"] .nav__bar:nth-child(2) { opacity: 0; }
  .card__toggle[aria-expanded="true"] .nav__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* ── Dim / cover overlay ────────────────────────────────────────── */
  .card__dim {
    position: absolute; inset: 0; z-index: 15;
    background: var(--text);
    opacity: 0; pointer-events: none;
  }

  /* ── Progress dots ──────────────────────────────────────────────── */
  .cardstack__dots {
    position: fixed; z-index: 90;
    right: 10px; top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 12px;
    pointer-events: none;
  }
  .cardstack__dots i {
    display: block; width: 7px; height: 7px; border-radius: 50%;
    background: var(--line-str);
    transition: transform .3s var(--ease), background .3s var(--ease);
  }
  .cardstack__dots i.is-active {
    background: var(--gold);
    transform: scale(1.4);
  }

  /* ── Scroll cue: first card only, fades on scroll ───────────────── */
  .cardstack-on .hero__cue { display: flex; }
  .cardstack-on .hero__cue.is-hidden { opacity: 0; }

  /* ── Fit-to-viewport compaction (card mode only) ─────────────────────
     Cards that must sit in a single 100svh card get their vertical rhythm
     tightened so nothing clips and no internal scroll is needed. Tall
     cards (about, pricing) keep their full height and scroll internally
     via .card--scroll. These rules are scoped to .cardstack-on so normal
     mobile (reduced-motion / >860px) is untouched. */
  .cardstack-on .card > section { padding-bottom: 20px; }

  /* Services: small 2-column tiles so all 7 fit compactly. Icon + label
     only — the description line is dropped on the card to save height. */
  .cardstack-on .card--services .section-head { margin-bottom: 12px; }
  .cardstack-on .card--services .services__grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .cardstack-on .card--services .service:nth-child(5) { grid-column: 1 / span 1; }
  .cardstack-on .card--services .service:nth-child(6) { grid-column: 2 / span 1; }
  .cardstack-on .card--services .service:nth-child(7) { grid-column: 1 / span 2; }
  .cardstack-on .card--services .service__link { padding: 14px 10px; }
  .cardstack-on .card--services .service__icon { width: 34px; height: 34px; margin: 0 auto 8px; }
  .cardstack-on .card--services .service__icon svg { width: 18px; height: 18px; }
  .cardstack-on .card--services .service h3 { font-size: 12px; letter-spacing: .1em; margin: 0; }
  .cardstack-on .card--services .service p { display: none; }

  /* Merged story block appended into the services card on mobile. */
  .cardstack-on .services__story {
    margin-top: 22px; padding-top: 22px;
    border-top: 1px solid var(--line);
  }
  .cardstack-on .services__story .eyebrow { margin-bottom: 8px; }
  .cardstack-on .services__story h2 { font-size: clamp(26px, 8vw, 34px); margin: 0 0 12px; }
  .cardstack-on .services__story p { font-size: 13px; line-height: 1.55; margin: 0 0 10px; }
  .cardstack-on .services__story .about__cta { margin-top: 14px; }

  /* Remove Why-choose-us & Achievements from the mobile card view. The
     whole About card is dropped from the stack (see main.js); these rules
     also hide the sub-blocks in case the section is ever shown. */
  .cardstack-on .about__why,
  .cardstack-on .about__achievements { display: none; }

  /* The card stack ends at the Contact card. Everything the stack doesn't
     turn into a card still sits in normal flow AFTER the stack — the
     decorative service marquee, the leftover About/Our-Story section (its
     story is already merged into the Services card), the quotes block and
     the tilted Instagram wall. Hide them all on mobile so scrolling past
     Contact doesn't reveal a long tail of stray content. */
  .cardstack-on > body .marquee,
  html.cardstack-on .marquee,
  html.cardstack-on #about,
  html.cardstack-on .quotes:not(.quotes--incard),
  html.cardstack-on .ig-wall:not(.ig-wall--incard),
  html.cardstack-on > body > .footer,
  html.cardstack-on .footer { display: none; }

  /* Reviews moved into the Contact card, between the map and the IG wall. */
  .cardstack-on .quotes--incard {
    display: block; padding: 0; margin: 28px 0 0;
    padding-top: 24px; border-top: 1px solid var(--line);
    min-height: 0;
  }
  .cardstack-on .quotes--incard .quotes__mark { font-size: 72px; margin-bottom: 2px; }
  .cardstack-on .quotes--incard .quotes__stars { margin-bottom: 14px; }
  .cardstack-on .quotes--incard .quotes__text {
    min-height: 0; font-size: 17px; line-height: 1.55;
  }
  .cardstack-on .quotes--incard .quotes__name { margin-top: 16px; }
  .cardstack-on .quotes--incard .quotes__dots { margin-top: 22px; }

  /* Gallery: cap the grid to the available height and let it breathe. */
  .cardstack-on .card--gallery .gallery__head { margin-bottom: 14px; }
  .cardstack-on .card--gallery .gallery__grid { columns: 2; column-gap: 10px; }
  .cardstack-on .card--gallery .g { margin-bottom: 10px; }

  /* Booking: compress the copy block and form gaps. */
  .cardstack-on .card--book .book__grid { gap: 18px; }
  .cardstack-on .card--book .book__lede { margin-bottom: 12px; }
  .cardstack-on .card--book .book__perks { gap: 8px; margin-bottom: 4px; }
  .cardstack-on .card--book .form__grid { gap: 14px; }

  /* Contact: tighten the blocks + map. */
  .cardstack-on .card--contact .contact__grid { gap: 20px; }
  .cardstack-on .card--contact .contact__blocks { gap: 16px; }
  .cardstack-on .card--contact .contact__map iframe { height: 240px; }

  /* Instagram wall cloned into the Contact card, below the map (mobile).
     Same tilted 3D plane as web, sized to sit inside the card. */
  .cardstack-on .ig-wall--incard {
    display: block; position: relative;
    height: 460px; margin: 28px 0 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
  }
  .cardstack-on .ig-wall--incard .ig-wall__tile,
  .cardstack-on .ig-wall--incard .ig-wall__blank {
    width: 150px; height: 150px;
  }
  .cardstack-on .ig-wall--incard .ig-wall__plane { gap: 14px; }
  .cardstack-on .ig-wall--incard .ig-wall__col { gap: 14px; }
  .cardstack-on .ig-wall--incard .ig-wall__copy {
    left: 20px; bottom: 40px; max-width: 300px; gap: 16px;
  }
  .cardstack-on .ig-wall--incard .ig-wall__headline { font-size: 30px; }
}

/* Reduced motion: no card effect at all — plain vertical scroll. The
   JS never builds the stack, but if these classes ever appear, neutralise
   them so nothing is left translated off-screen or dimmed. */
@media (max-width: 860px) and (prefers-reduced-motion: reduce) {
  .card { position: relative; transform: none !important; inset: auto; }
  .card > section, .card > .hero { position: relative; height: auto; inset: auto; padding-top: 0; overflow: visible; }
  .cardstack__stage { position: static; height: auto; overflow: visible; }
  .card__head { position: sticky; }
  .card__dim, .cardstack__dots { display: none; }
}
