/* ============================================================================
   Tasha Tour & Travel — Srinagar
   Art direction: VIVID COLOR-BLOCK (light)
   Palette engine driven from accent #2ab53e → OKLCH(64% .20 145)
     --brand  green   145
     --pop    violet  295  (base hue +150)
     --zest   chartr. 100  (base hue −45)
   Hero: typographic collage (zero photos — colour-block + type degrade path)
   Grid: bento (unequal rounded tiles, alternating hues)
   ========================================================================== */

@import url("vendor/fonts/fonts.css");

/* ---------------------------------------------------------------- tokens -- */
:root {
  /* three saturated hues — the only colour-block fills.
     brand/pop sit deep enough that WHITE body text clears WCAG AA (≥4.5:1):
     green 54% L → 4.66:1, violet 56% L → 5.06:1. Still vivid (C ≥ .18). */
  --brand:     oklch(54% 0.18 145);   /* logo-derived green */
  --brand-700: oklch(45% 0.17 145);   /* pressed / hover-dark */
  --brand-300: oklch(86% 0.10 145);   /* faint green wash */
  --pop:       oklch(56% 0.19 295);   /* +150 → violet */
  --pop-700:   oklch(47% 0.18 295);
  --zest:      oklch(82% 0.18 105);   /* −45 → chartreuse (light → carries dark text) */
  --zest-deep: oklch(60% 0.18 100);   /* gold-olive for star icons on white (≥3:1 non-text) */
  --zest-bright: oklch(92% 0.16 108); /* bright lime — headline accent on the deep-green panel */

  /* surfaces faintly tinted by the warm base hue (18) so it never feels sterile */
  --surface:   oklch(98.5% 0.010 70);
  --surface-2: oklch(95.5% 0.020 75);
  --ink:       oklch(24% 0.045 150);
  --ink-soft:  oklch(42% 0.035 150);
  --on-pop:    oklch(99% 0 0);        /* white text on dark blocks */
  --on-zest:   oklch(28% 0.07 130);   /* dark ink for the light chartreuse block */
  --line:      oklch(89% 0.020 110);

  --radius:      26px;
  --radius-lg:   34px;
  --radius-sm:   16px;
  --radius-pill: 999px;

  --shadow:    0 18px 44px -22px oklch(24% 0.05 150 / .34);
  --shadow-sm: 0 8px 22px -14px oklch(24% 0.05 150 / .30);
  --shadow-lg: 0 34px 70px -30px oklch(24% 0.05 150 / .40);

  --space: clamp(4.5rem, 3rem + 7vw, 9rem);
  --gutter: clamp(1rem, 0.4rem + 2.4vw, 1.6rem);
  --frame:  clamp(12px, 3vw, 30px);   /* viewport inset so tinted surface frames panels */
  --maxw: 1240px;

  /* fluid type */
  --t-display: clamp(2.9rem, 1.2rem + 7vw, 6.6rem);
  --t-h2:      clamp(2.05rem, 1.2rem + 3.1vw, 3.5rem);
  --t-h3:      clamp(1.35rem, 1.05rem + 1vw, 1.85rem);
  --t-body:    clamp(1.06rem, 1rem + 0.32vw, 1.22rem);
  --t-small:   clamp(0.86rem, 0.82rem + 0.15vw, 0.95rem);

  --display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --text:    "Familjen Grotesk", ui-sans-serif, system-ui, sans-serif;
}

/* ----------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--text);
  font-size: var(--t-body);
  line-height: 1.5;
  color: var(--ink);
  background: var(--surface-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
:focus-visible { outline: 3px solid var(--pop); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--zest); color: var(--on-zest); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-wrap: balance;
}
p { text-wrap: pretty; }

.wrap { width: min(100% - calc(var(--frame) * 2), var(--maxw)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------- scroll bar UI -- */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 4px; z-index: 90;
  background: var(--zest);
  transform: scaleX(0); transform-origin: 0 50%;
  will-change: transform;
}

/* ------------------------------------------------------------ demo banner -- */
.demo-banner {
  position: relative; z-index: 80;
  display: flex; flex-wrap: wrap; gap: 0.35rem 1.1rem;
  align-items: center; justify-content: center;
  padding: 0.6rem 1.1rem;
  background: var(--ink); color: var(--surface);
  font-size: clamp(0.78rem, 0.74rem + 0.2vw, 0.9rem);
  font-weight: 500; text-align: center; line-height: 1.35;
}
.demo-banner b { font-weight: 700; color: var(--zest); }
.demo-banner a {
  color: var(--surface); font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: var(--zest);
}
.demo-banner a:hover { color: var(--zest); }

/* -------------------------------------------------------------------- nav -- */
.nav {
  position: sticky; top: 0; z-index: 70;
  padding: clamp(0.6rem, 0.4rem + 0.8vw, 1rem) 0;
  transition: padding .3s ease;
}
.nav__inner {
  width: min(100% - calc(var(--frame) * 2), var(--maxw));
  margin-inline: auto;
  display: flex; align-items: center; gap: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 1.3rem;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease;
}
.nav.scrolled .nav__inner { box-shadow: var(--shadow); }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; flex: 0 0 auto; }
.brand__chip {
  width: 44px; height: 44px; flex: 0 0 auto;
  display: grid; place-items: center;
  background: var(--brand); color: var(--on-pop);
  border-radius: 14px;
  font-family: var(--display); font-weight: 800; font-size: 1.35rem;
  box-shadow: inset 0 0 0 2px oklch(99% 0 0 / .2);
}
.brand__txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--display); font-weight: 800; font-size: 1.04rem;
  letter-spacing: -0.02em; color: var(--ink);
}
.brand__loc {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink-soft); text-transform: uppercase;
}
.nav-links { display: flex; gap: 0.2rem; margin-left: auto; }
.nav-links a {
  padding: 0.55rem 0.95rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.97rem; color: var(--ink-soft);
  transition: background .18s ease, color .18s ease;
}
.nav-links a:hover { background: var(--surface-2); color: var(--ink); }
.nav__cta { flex: 0 0 auto; }

/* chunky pill buttons ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 50px; padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--text); font-weight: 700; font-size: 1.02rem;
  letter-spacing: -0.005em;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), background .2s ease,
              box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn .arrow { transition: transform .25s cubic-bezier(.2,.8,.2,1); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--wa {
  background: var(--brand); color: var(--on-pop);
  box-shadow: 0 12px 26px -14px oklch(54% 0.18 145 / .85);
}
.btn--wa:hover { background: var(--brand-700); transform: translateY(-3px);
  box-shadow: 0 18px 34px -14px oklch(54% 0.18 145 / .95); }
.btn--ink { background: var(--ink); color: var(--surface); }
.btn--ink:hover { transform: translateY(-3px); background: oklch(18% 0.04 150);
  box-shadow: var(--shadow); }
.btn--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--surface); transform: translateY(-3px); }
.btn--onblock { background: var(--surface); color: var(--ink); }
.btn--onblock:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--block { width: 100%; }

/* tiny inline whatsapp glyph button in nav */
.nav__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: 44px; padding: 0.5rem 1.15rem;
  background: var(--brand); color: var(--on-pop);
  border-radius: var(--radius-pill); font-weight: 700; font-size: 0.95rem;
  transition: transform .2s ease, background .2s ease;
}
.nav__cta svg { width: 19px; height: 19px; }
.nav__cta:hover { background: var(--brand-700); transform: translateY(-2px); }

.nav-burger {
  display: none; width: 48px; height: 48px; flex: 0 0 auto;
  border-radius: var(--radius-pill); background: var(--surface-2);
  position: relative;
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: ""; position: absolute; left: 50%; width: 20px; height: 2.4px;
  background: var(--ink); border-radius: 2px; transform: translateX(-50%);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-burger span { top: 50%; transform: translate(-50%, -50%); }
.nav-burger span::before { top: -6.5px; }
.nav-burger span::after { top: 6.5px; }

/* ------------------------------------------------------------- pill chips -- */
.chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.4rem 0.9rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase;
}
.chip svg { width: 15px; height: 15px; }
.chip--pop  { background: var(--pop);  color: var(--on-pop); }
.chip--zest { background: var(--zest); color: var(--on-zest); }
.chip--ink  { background: var(--ink);  color: var(--surface); }
.chip--out  { box-shadow: inset 0 0 0 1.5px currentColor; }

/* ====================================================================== HERO
   typographic collage: a bento of vivid colour blocks + oversized headline. */
main { display: block; }
.hero { padding: 0.4rem 0 0; }
.hero__grid {
  width: min(100% - calc(var(--frame) * 2), var(--maxw));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--gutter);
}

/* main headline block — the big --brand panel */
.hero__main {
  grid-column: 1; grid-row: 1 / span 2;
  position: relative; overflow: hidden;
  background: var(--brand); color: var(--on-pop);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1rem + 3.5vw, 3.4rem);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: clamp(1.4rem, 1rem + 3vw, 2.6rem);
  min-height: clamp(420px, 56vh, 620px);
  isolation: isolate;
}
/* faint geometric texture — concentric arcs, pure CSS, no image */
.hero__main::before {
  content: ""; position: absolute; z-index: 0; inset: auto -30% -55% auto;
  width: 88%; aspect-ratio: 1; border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 38%, oklch(99% 0 0 / .10) 38% 40%, transparent 40%) center/100% 100%,
    radial-gradient(circle, transparent 0 56%, oklch(99% 0 0 / .08) 56% 58%, transparent 58%) center/100% 100%,
    radial-gradient(circle, transparent 0 74%, oklch(99% 0 0 / .06) 74% 76%, transparent 76%) center/100% 100%;
  pointer-events: none;
}
.hero__main > * { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; align-self: flex-start;
  padding: 0.45rem 0.95rem; border-radius: var(--radius-pill);
  background: oklch(99% 0 0 / .16);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.hero__eyebrow svg { width: 15px; height: 15px; }
.hero h1 {
  font-size: var(--t-display);
  color: var(--on-pop);
}
.hero h1 .accent {
  color: var(--zest-bright);
}
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2.4px var(--zest-bright);
  text-stroke: 2.4px var(--zest-bright);
}
.hero__sub {
  max-width: 46ch; font-size: clamp(1.04rem, 0.98rem + 0.35vw, 1.24rem);
  color: oklch(99% 0 0 / .92); line-height: 1.55;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* sticker badge pinned to the hero corner */
.sticker {
  position: absolute; z-index: 3; top: clamp(14px, 2vw, 26px); right: clamp(14px, 2vw, 26px);
  width: clamp(92px, 12vw, 124px); aspect-ratio: 1;
  display: grid; place-content: center; text-align: center; gap: 2px;
  background: var(--zest); color: var(--on-zest);
  border-radius: 50%;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-sm);
  padding: 0.4rem;
}
.sticker b { font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem, 3.4vw, 2rem); line-height: 0.9; }
.sticker span { font-weight: 700; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.05; }

/* right column collage blocks */
.hero__side { display: grid; gap: var(--gutter); grid-row: 1 / span 2;
  grid-template-rows: 1.1fr 1fr; }
.hero__card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 0.9rem + 2vw, 2rem);
  display: flex; flex-direction: column; justify-content: space-between; gap: 1rem;
}
/* pop (violet) rating card */
.hero__card--pop { background: var(--pop); color: var(--on-pop); }
.hero__card--pop .stars { color: oklch(99% 0 0); }
/* zest (chartreuse) facts card with dark text */
.hero__card--zest { background: var(--zest); color: var(--on-zest); }

.rating-num {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(3rem, 2rem + 5vw, 4.6rem); line-height: 0.85;
  letter-spacing: -0.04em;
}
.stars { display: flex; gap: 2px; }
.stars svg { width: 22px; height: 22px; }
.hero__card .lbl { font-weight: 600; font-size: 0.98rem; opacity: 0.92; }
.hero__card .meta-row {
  display: flex; align-items: center; gap: 0.55rem; font-weight: 700; font-size: 0.95rem;
}
.hero__card .meta-row svg { width: 20px; height: 20px; flex: 0 0 auto; }
.facts-list { display: flex; flex-direction: column; gap: 0.6rem; font-weight: 600; }
.facts-list li { display: flex; align-items: center; gap: 0.6rem; }
.facts-list svg { width: 19px; height: 19px; flex: 0 0 auto; }

/* ----------------------------------------------------------- marquee strip -- */
.marquee {
  margin-top: var(--gutter);
  width: min(100% - calc(var(--frame) * 2), var(--maxw));
  margin-inline: auto;
  background: var(--ink); color: var(--surface);
  border-radius: var(--radius-pill);
  overflow: hidden; padding: 0.85rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee__track {
  display: flex; gap: 2.6rem; width: max-content;
  animation: marquee 34s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span {
  display: inline-flex; align-items: center; gap: 1.1rem;
  font-family: var(--display); font-weight: 700; font-size: 1.02rem;
  letter-spacing: 0.01em; white-space: nowrap;
}
.marquee .dot { color: var(--zest); font-size: 1.1rem; }
@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }

/* ============================================================ section frame --
   each major section is a giant rounded panel inset from the viewport so the
   tinted surface shows as a frame. Panels alternate colour so the eye bounces. */
.panel {
  width: min(100% - calc(var(--frame) * 2), var(--maxw));
  margin-inline: auto;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 1.2rem + 4vw, 4.2rem) clamp(1.4rem, 0.8rem + 3vw, 3.4rem);
  margin-top: var(--gutter);
}
.panel--surface { background: var(--surface); }
.panel--brand   { background: var(--brand);   color: var(--on-pop); }
.panel--pop     { background: var(--pop);     color: var(--on-pop); }
.panel--ink     { background: var(--ink);     color: var(--surface); }

.section-head { display: flex; flex-direction: column; gap: 0.9rem; max-width: 42ch; }
.section-head.center { margin-inline: auto; align-items: center; text-align: center; }
.section-head h2 { font-size: var(--t-h2); }
.panel--surface .section-head h2 { color: var(--ink); }
.section-head p { font-size: var(--t-body); color: inherit; opacity: 0.9; max-width: 50ch; }
.panel--surface .section-head p { color: var(--ink-soft); opacity: 1; }
.eyebrow {
  display: inline-flex; width: max-content; align-items: center; gap: 0.45rem;
  padding: 0.42rem 0.9rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.eyebrow svg { width: 14px; height: 14px; }
.eyebrow--pop  { background: var(--pop);  color: var(--on-pop); }
.eyebrow--zest { background: var(--zest); color: var(--on-zest); }
.eyebrow--surface { background: var(--surface); color: var(--ink); }
.eyebrow--ink { background: var(--ink); color: var(--surface); }

/* ----------------------------------------------------- trust stat band ----- */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 0.5rem + 2vw, 2.4rem);
  margin-top: clamp(1.6rem, 1rem + 2vw, 2.6rem);
}
.stat { position: relative; padding-left: 1.4rem; }
.stat:not(:first-child)::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px;
  background: oklch(99% 0 0 / .28);
}
.panel--surface .stat:not(:first-child)::before { background: var(--line); }
.stat .n {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.4rem, 1.4rem + 4vw, 4rem); line-height: 0.9;
  letter-spacing: -0.04em; display: block;
}
.stat .l { display: block; margin-top: 0.5rem; font-weight: 600; font-size: 0.98rem; opacity: 0.92; }

/* ----------------------------------------------------------- about split --- */
.about {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.6rem, 1rem + 3vw, 3.4rem);
  align-items: start; margin-top: clamp(1.4rem, 1rem + 2vw, 2.4rem);
}
.about__body { display: flex; flex-direction: column; gap: 1.1rem; }
.about__body p { color: var(--ink-soft); font-size: var(--t-body); }
.about__pull {
  background: var(--zest); color: var(--on-zest);
  border-radius: var(--radius); padding: clamp(1.5rem, 1rem + 2.5vw, 2.4rem);
  font-family: var(--display); font-weight: 700; font-size: var(--t-h3);
  line-height: 1.18; letter-spacing: -0.02em;
  display: flex; flex-direction: column; gap: 1.2rem;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.about__pull .mark {
  font-family: var(--display); font-weight: 800; font-size: 4rem; line-height: 0.6;
  opacity: 0.5; height: 1.6rem;
}
.about__pull cite {
  font-family: var(--text); font-style: normal; font-weight: 600; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.5rem; opacity: 0.85;
}
.about__pull cite svg { width: 18px; height: 18px; }

/* =============================================================== bento ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gutter);
  margin-top: clamp(1.6rem, 1rem + 2vw, 2.6rem);
}
.tile {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(1.4rem, 1rem + 1.6vw, 2.1rem);
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.2rem;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease;
  will-change: transform;
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
/* span layout — bento (unequal, gap-free on a 6-col grid):
   row1 = 4 + 2 · row2 = 2 + 4 · row3 = 3 + 3  → big-left, big-right, even pair */
.tile--wide { grid-column: span 4; min-height: 300px; }
.tile--mid  { grid-column: span 3; }
.tile--sm   { grid-column: span 2; }

/* hue rotation so no two adjacent tiles share a hue */
.tile--brand { background: var(--brand); color: var(--on-pop); }
.tile--pop   { background: var(--pop);   color: var(--on-pop); }
.tile--zest  { background: var(--zest);  color: var(--on-zest); }
.tile--ink   { background: var(--ink);   color: var(--surface); }
.tile--cream { background: var(--surface-2); color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }

.tile__icon {
  width: 56px; height: 56px; flex: 0 0 auto;
  display: grid; place-items: center; border-radius: 16px;
}
.tile__icon svg { width: 28px; height: 28px; }
.tile--brand .tile__icon { background: oklch(99% 0 0 / .16); color: var(--on-pop); }
.tile--pop   .tile__icon { background: oklch(99% 0 0 / .16); color: var(--on-pop); }
.tile--zest  .tile__icon { background: var(--on-zest); color: var(--zest); }
.tile--ink   .tile__icon { background: oklch(99% 0 0 / .12); color: var(--zest); }
.tile--cream .tile__icon { background: var(--brand); color: var(--on-pop); }

.tile__body { display: flex; flex-direction: column; gap: 0.5rem; }
.tile__title { font-family: var(--display); font-weight: 700; font-size: var(--t-h3);
  letter-spacing: -0.02em; line-height: 1.04; }
.tile__desc { font-size: 1rem; line-height: 1.45; opacity: 0.92; }
.tile--cream .tile__desc { color: var(--ink-soft); opacity: 1; }
.tile__link {
  display: inline-flex; align-items: center; gap: 0.4rem; align-self: flex-start;
  font-weight: 700; font-size: 0.95rem; padding-top: 0.2rem;
}
.tile__link svg { width: 18px; height: 18px; transition: transform .25s cubic-bezier(.2,.8,.2,1); }
.tile:hover .tile__link svg { transform: translateX(4px); }

/* ----------------------------------------------------------- reviews ------- */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter); margin-top: clamp(1.6rem, 1rem + 2vw, 2.6rem);
}
.review {
  background: var(--surface); color: var(--ink);
  border-radius: var(--radius); padding: clamp(1.5rem, 1rem + 2vw, 2.2rem);
  display: flex; flex-direction: column; gap: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease;
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.review .stars { color: var(--zest-deep); }
.review .stars svg { width: 20px; height: 20px; }
.review p { font-size: 1.08rem; line-height: 1.5; color: var(--ink); }
.review footer {
  display: flex; align-items: center; gap: 0.7rem; margin-top: auto;
  font-weight: 700; font-size: 0.92rem; color: var(--ink-soft);
}
.review .av {
  width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center;
  border-radius: 50%; background: var(--pop); color: var(--on-pop);
  font-family: var(--display); font-weight: 800; font-size: 1rem;
}
.review:nth-child(2) .av { background: var(--brand); }
.review:nth-child(3) .av { background: var(--zest); color: var(--on-zest); }

/* ----------------------------------------------------------- CTA band ------ */
.cta-band { text-align: left; }
.cta-band .panel-inner {
  display: grid; grid-template-columns: 1.3fr auto; gap: clamp(1.4rem, 1rem + 3vw, 3rem);
  align-items: center;
}
.cta-band h2 { font-size: var(--t-h2); color: var(--surface); }
.cta-band p { margin-top: 0.9rem; font-size: var(--t-body); color: oklch(99% 0 0 / .9); max-width: 46ch; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ----------------------------------------------------------- contact ------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter);
  margin-top: clamp(1.6rem, 1rem + 2vw, 2.6rem);
}
.contact-card {
  border-radius: var(--radius); padding: clamp(1.6rem, 1rem + 2.5vw, 2.6rem);
  display: flex; flex-direction: column; gap: 1.3rem;
}
.contact-card--brand { background: var(--brand); color: var(--on-pop); }
.contact-card--cream { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.contact-card h3 { font-size: var(--t-h3); }
.contact-list { display: flex; flex-direction: column; gap: 0.95rem; }
.contact-row { display: flex; align-items: flex-start; gap: 0.85rem; font-weight: 500; }
.contact-row .ic {
  width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center;
  border-radius: 13px;
}
.contact-card--brand .ic { background: oklch(99% 0 0 / .16); color: var(--on-pop); }
.contact-card--cream .ic { background: var(--surface-2); color: var(--brand); }
.contact-row .ic svg { width: 21px; height: 21px; }
.contact-row .rt { display: flex; flex-direction: column; gap: 1px; padding-top: 2px; }
.contact-row .rk { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; opacity: 0.7; }
.contact-row .rv { font-weight: 600; font-size: 1.06rem; }
.contact-card--brand .rv a:hover { color: var(--zest); }
.contact-card--cream .rv a:hover { color: var(--brand); }
.contact-actions { display: flex; flex-direction: column; gap: 0.7rem; margin-top: auto; }

.map-embed {
  width: 100%; border: 0; border-radius: var(--radius-sm);
  min-height: 200px; flex: 1 1 auto; filter: saturate(0.92);
}

/* ----------------------------------------------------------- footer -------- */
.foot {
  width: min(100% - calc(var(--frame) * 2), var(--maxw));
  margin: var(--gutter) auto calc(var(--frame));
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center;
  justify-content: space-between;
  padding: clamp(1.4rem, 1rem + 2vw, 2.2rem) clamp(1.4rem, 0.8rem + 2vw, 2.6rem);
  background: var(--surface); border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
}
.foot__brand { display: flex; align-items: center; gap: 0.75rem; }
.foot__brand .brand__chip { width: 40px; height: 40px; font-size: 1.2rem; }
.foot__brand b { font-family: var(--display); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em; }
.foot__meta { font-size: 0.9rem; color: var(--ink-soft); max-width: 52ch; }
.foot__meta a { font-weight: 700; color: var(--brand); }
.foot__note { width: 100%; font-size: 0.8rem; color: var(--ink-soft); padding-top: 0.4rem;
  border-top: 1.5px solid var(--line); }
.foot__note b { color: var(--ink); }

/* ============================================================ REVEAL ANIM == */
[data-reveal] { opacity: 0; transform: translateY(26px); }
[data-reveal].in {
  opacity: 1; transform: none;
  transition: opacity .5s cubic-bezier(.2,.8,.2,1), transform .55s cubic-bezier(.2,.8,.2,1);
}
[data-reveal][data-d="1"].in { transition-delay: .06s; }
[data-reveal][data-d="2"].in { transition-delay: .12s; }
[data-reveal][data-d="3"].in { transition-delay: .18s; }
[data-reveal][data-d="4"].in { transition-delay: .24s; }
[data-reveal][data-d="5"].in { transition-delay: .30s; }

[data-hero-el] { opacity: 0; transform: translateY(20px); }
[data-hero-el].in {
  opacity: 1; transform: none;
  transition: opacity .6s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1);
}

/* ============================================================ RESPONSIVE === */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__main { grid-column: 1; grid-row: auto; min-height: clamp(360px, 60vh, 520px); }
  .hero__side { grid-row: auto; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .about { grid-template-columns: 1fr; }
  .cta-band .panel-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile--wide, .tile--mid, .tile--sm { grid-column: span 1; min-height: 240px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav__cta { display: none; }
  .nav-burger { display: grid; place-items: center; }
  .nav__inner { padding: 0.5rem 0.5rem 0.5rem 1rem; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 0.2rem;
    position: absolute; left: var(--frame); right: var(--frame); top: calc(100% + 8px);
    background: var(--surface); border: 1.5px solid var(--line);
    border-radius: var(--radius); padding: 0.7rem; box-shadow: var(--shadow);
  }
  .nav.open .nav-links a { padding: 0.85rem 1rem; font-size: 1.05rem; }
  .nav { position: sticky; }

  .stats { grid-template-columns: 1fr; gap: 1.2rem; }
  .stat { padding-left: 0; }
  .stat:not(:first-child)::before { left: 0; top: -10px; right: 0; bottom: auto;
    width: auto; height: 2px; }
  .stat:not(:first-child) { padding-top: 1.2rem; }

  .hero__side { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .tile--wide, .tile--mid, .tile--sm { grid-column: span 1; min-height: auto; }
  .tile { min-height: auto; }

  .btn--full-sm { width: 100%; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .cta-band .actions .btn { width: 100%; }
  .contact-actions .btn { width: 100%; }

  .sticker { width: 84px; }
}

@media (max-width: 400px) {
  :root { --frame: 10px; --radius-lg: 26px; --radius: 20px; }
  .nav__inner { gap: 0.5rem; }
  .brand__loc { display: none; }
}

/* ============================================================ DARK MODE ===
   offered, never forced. Three saturated hues stay the star on a deep ground. */
@media (prefers-color-scheme: dark) {
  :root {
    --surface:   oklch(20% 0.030 150);
    --surface-2: oklch(16% 0.028 150);
    --ink:       oklch(95% 0.020 120);
    --ink-soft:  oklch(78% 0.020 120);
    --line:      oklch(34% 0.030 150);
    --brand:     oklch(54% 0.18 145);
    --brand-700: oklch(45% 0.17 145);
    --pop:       oklch(57% 0.19 295);
    --zest:      oklch(80% 0.18 105);
    --shadow:    0 18px 44px -22px oklch(0% 0 0 / .6);
    --shadow-sm: 0 8px 22px -14px oklch(0% 0 0 / .55);
    --shadow-lg: 0 34px 70px -30px oklch(0% 0 0 / .7);
  }
  body { background: oklch(12% 0.022 150); }
  .review p { color: var(--ink); }
  .tile--cream { background: var(--surface); }
  .map-embed { filter: saturate(0.92) brightness(0.85) invert(0.9) hue-rotate(180deg); }
}

/* ============================================================ REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .marquee__track { animation: none !important; transform: none !important; flex-wrap: wrap; }
  [data-reveal], [data-hero-el] { opacity: 1 !important; transform: none !important;
    transition: opacity .2s ease !important; }
  .btn:hover, .tile:hover, .review:hover, .nav__cta:hover, .hero__card:hover {
    transform: none !important; }
  .btn .arrow, .tile__link svg { transition: none !important; }
}
