/* ===== Maya — Botanical Portal (natural cream workshop) ===== */
/* Calm/serene variant of the interactive-portal-landing-page skill.
   New layer role: .product (the cream jar floating in the opening). RTL/Hebrew. */

:root {
  --ease-zoom: cubic-bezier(0.33, 0, 0.2, 1);     /* gentle, slow settle */
  --ease-card: cubic-bezier(0.34, 1.56, 0.64, 1);  /* soft spring */
  --ink:      #2f3a2b;                              /* deep herb green */
  --ink-2:    #243019;                             /* darker green (final cta) */
  --ivory:    #f6efe4;
  --amber:    #c98a3c;
  --amber-deep:#b8772b;                            /* darker amber for AA text on ivory */
  --lav:      #8b7bb0;
  --paper:    #fffdf9;                             /* solid card surface */
  --serif:    "Frank Ruhl Libre", Georgia, serif;  /* Hebrew headline serif */
  --line:     rgba(47, 58, 43, 0.12);              /* hairlines */
  --shadow-soft: 0 18px 40px rgba(60, 50, 30, 0.10);
}

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

/* Vertical scrolling lives on the root; only clip horizontal (100vw hero +
   corner bias can overflow sideways). Don't put overflow on body too — two
   scroll containers fight and break programmatic + momentum scrolling. */
html { scroll-behavior: smooth; overflow-x: hidden; background: #e9e3d6; }
body { width: 100%; background: #e9e3d6; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Heebo", system-ui, sans-serif;
  cursor: none;
}

/* ===== Hero shell ===== */
/* The hero PINS (sticky) inside a tall stage so the layers can "burst to the
   corners" and dissolve as you scroll one screen, then the content takes over. */
/* The hero stage sits ABOVE the content (z:2) and the first content section is pulled
   up to overlap the pinned hero (see .section--testi). So the testimonials are REVEALED
   in place as the portal dissolves — no blank screen, no waiting for the hero to scroll
   away. The hero's layers fade to 0, uncovering the content already sitting behind. */
.hero-stage { position: relative; height: 200vh; height: 200dvh; z-index: 2; }
.hero {
  position: sticky; top: 0;
  width: 100vw; height: 100vh; height: 100dvh; overflow: hidden;
}

/* Legibility scrims (z:12, between foliage z7 and UI z15). The photo's luminance
   swings wildly under the text; these give the type a calm, consistent ivory
   field so dark-green/amber copy stays readable without a boxy glass panel.
   They fade out with the dissolve via the JS-driven --spread custom property. */
.hero::before {              /* top band behind the nav */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 170px; z-index: 12;
  background: linear-gradient(180deg, rgba(244,237,224,.95) 0%, rgba(245,238,226,.7) 45%, rgba(246,239,228,0) 100%);
  pointer-events: none; opacity: calc(1 - var(--spread, 0));
}
.hero::after {              /* soft warm wash behind the hero text (right, RTL) */
  content: ""; position: absolute; inset: 0; z-index: 12; pointer-events: none;
  background: radial-gradient(52% 84% at 84% 50%,
              rgba(246,239,228,.93) 0%, rgba(246,239,228,.62) 50%, rgba(246,239,228,0) 84%);
  opacity: calc(1 - var(--spread, 0));
}

/* Reduced motion: no dissolve stage — hero just scrolls away like a normal section. */
@media (prefers-reduced-motion: reduce) {
  .hero-stage { height: auto; }
  .hero { position: relative; }
}

/* ===== Full-bleed layers ===== */
.layer {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  user-select: none; pointer-events: none;
  will-change: transform, opacity;
}

.layer--sky    { z-index: 1; opacity: 0; }
.layer--scene  { z-index: 4; opacity: 1; transform-origin: center center; }
.layer--flowers{ z-index: 7; opacity: 0; }

/* Corner cutouts are 1:1 squares with foliage in one corner. Size them as
   bottom-corner ACCENTS (not full-bleed cover) so they frame the portal
   without burying the jar. JS still drives parallax + cursor push on top. */
.layer--corner {
  position: absolute; inset: auto; z-index: 6; opacity: 0;
  bottom: 0; height: 58vh; width: auto;
  object-fit: contain; transform-origin: center bottom;
}
.layer--corner-left  { left: 0;  object-position: left bottom; }
.layer--corner-right { right: 0; object-position: right bottom; }

/* warm bloom behind the jar, inside the opening */
.product-glow {
  position: absolute; z-index: 3;
  left: 50%; top: 48%;
  width: 46vh; height: 46vh;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
              rgba(255, 236, 196, 0.85) 0%,
              rgba(255, 224, 168, 0.45) 40%,
              rgba(255, 224, 168, 0) 70%);
  opacity: 0; pointer-events: none;
  filter: blur(2px);
}

/* ===== Hero product: the cream jar (z:5) ===== */
/* Not full-bleed — sized to sit inside the wreath opening. JS drives the
   float + parallax, so positioning is folded into the JS transform. */
.product {
  position: absolute; z-index: 5;
  left: 50%; top: 50%;
  height: 56vh; width: auto;
  opacity: 0;
  pointer-events: none; user-select: none;
  filter: drop-shadow(0 24px 40px rgba(60, 45, 20, 0.35));
  will-change: transform, opacity;
}

/* ===== Nav (z:20) ===== */
.nav {
  position: absolute; top: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex; align-items: center; gap: 24px;
  padding: 10px 26px; opacity: 0;
}
.nav__link {
  color: var(--ink);
  text-decoration: none;
  font-size: 17px; font-weight: 600;
  text-shadow: 0 1px 8px rgba(246, 239, 228, 0.8);
  transition: color 0.25s ease;
}
.nav__link:hover { color: var(--amber-deep); }
.nav__mark { color: var(--amber); font-size: 16px; opacity: 0.85; }

/* ===== Hero text — RIGHT side for RTL (z:15) ===== */
.hero-text {
  position: absolute;
  right: 6vw; top: 50%;
  transform: translateY(-50%);
  z-index: 15; max-width: 500px;
  text-align: right; opacity: 0;
}
.hero-text__eyebrow {
  display: inline-block; margin-bottom: 18px;
  font-size: 17px; font-weight: 600; letter-spacing: 0.03em;
  color: var(--eb);
  text-shadow: 0 1px 8px rgba(246, 239, 228, 0.8);
}
.hero-text__title {
  font-family: "Heebo", sans-serif;
  font-weight: 900; color: var(--ink);
  line-height: 1.04;
  text-shadow: 0 3px 26px rgba(255, 248, 235, 0.55);
}
/* two-tier headline: punchy hook (lead) + supporting line (tail) */
.ht-lead { display: block; font-size: clamp(40px, 5.2vw, 72px); line-height: 1.04; white-space: nowrap; }
.ht-tail {
  display: block; margin-top: 0.42em;
  font-size: clamp(20px, 2.5vw, 30px); font-weight: 700; line-height: 1.28;
}
.hero-text__line { display: block; }
.hero-text__line--accent { color: var(--amber-deep); }
.hero-text__sub {
  margin-top: 20px;
  font-size: 16px; font-weight: 400; line-height: 1.7;
  color: rgba(47, 58, 43, 0.92);
  text-shadow: 0 1px 12px rgba(255, 250, 240, 0.7);
}

/* ===== CTA button ===== */
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 30px; padding: 15px 30px;
  border-radius: 999px;
  background: var(--ink); color: var(--ivory);
  font-size: 16px; font-weight: 700; text-decoration: none;
  box-shadow: 0 14px 30px rgba(47, 58, 43, 0.3);
  transition: transform 0.3s var(--ease-card), background 0.3s ease, box-shadow 0.3s ease;
}
.cta__icon { font-size: 17px; }
.cta:hover {
  transform: translateY(-3px);
  background: var(--amber);
  box-shadow: 0 18px 38px rgba(201, 138, 60, 0.4);
}

/* ===== Workshop fact cards — glass, bottom-left for RTL (z:15) ===== */
.cards {
  position: absolute; left: 6vw; bottom: 7vh;
  z-index: 15;
  display: flex; flex-direction: row; gap: 14px;
  opacity: 0;
}
.card {
  min-width: 120px;
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  /* dark herb-green glass so the white text holds contrast over any photo area */
  background: rgba(40, 50, 33, 0.46);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  text-align: center;
  touch-action: manipulation;
  /* STATIC at idle — movement only on hover */
  transition: transform 0.45s var(--ease-card), box-shadow 0.45s var(--ease-card);
  will-change: transform;
}
.card__big {
  font-family: "Heebo", sans-serif;
  font-size: 26px; font-weight: 800; color: #fff; line-height: 1;
  text-shadow: 0 1px 10px rgba(20, 30, 15, 0.45);
}
.card__label {
  font-size: 13px; font-weight: 400; color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(20, 30, 15, 0.45);
}
.card:hover {
  transform: translateY(-10px) scale(1.06);
  box-shadow: 0 24px 44px rgba(60, 50, 30, 0.22);
  z-index: 10;
}
.cards:has(.card:hover) .card:not(:hover) { transform: scale(0.97); opacity: 0.9; }

/* staggered entrance for the fact cards — rise + soft spring, matching the
   section scroll-reveals. `backwards` fill holds the hidden state during the
   stagger delay, then releases so :hover transforms still work after. */
@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}
.cards-in .card { animation: cardIn 0.45s var(--ease-card) backwards; }
.cards-in .card:nth-child(2) { animation-delay: 0.08s; }
.cards-in .card:nth-child(3) { animation-delay: 0.16s; }
@media (prefers-reduced-motion: reduce) { .cards-in .card { animation: none; } }

/* ===== Soft glow cursor (z:999) — firefly, not blend-difference ===== */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 46px; height: 46px; margin: -23px 0 0 -23px;
  border-radius: 50%;
  background: radial-gradient(circle,
              rgba(255, 214, 130, 0.55) 0%,
              rgba(255, 206, 120, 0.28) 45%,
              rgba(255, 206, 120, 0) 72%);
  pointer-events: none; z-index: 999;
  transition: width 0.25s ease, height 0.25s ease, margin 0.25s ease;
}
.cursor--active { width: 78px; height: 78px; margin: -39px 0 0 -39px; }

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor { display: none; }
}

/* ===== Small screens: stack text, shrink jar ===== */
@media (max-width: 720px) {
  /* jar sits lower in the portal on mobile */
  .product { height: 32vh; top: 53%; }
  /* text lifted (46%) + trimmed so the CTA clears the cards on short phones */
  .hero-text { right: 50%; transform: translate(50%, -50%); text-align: center; max-width: 88vw; top: 46%; }
  .ht-lead { font-size: clamp(28px, 9vw, 40px); }
  .ht-tail { font-size: clamp(15px, 4.2vw, 19px); margin-top: 0.3em; }
  .hero-text__sub { font-size: 13.5px; line-height: 1.5; margin-top: 16px; }
  .cta { margin-top: 14px; padding: 10px 20px; font-size: 14px; }
  .cta .ico { width: 16px; height: 16px; }
  .nav { display: none; }

  /* cards: horizontal row across the bottom, shrunk to share the width */
  .cards {
    left: 50%; transform: translateX(-50%); bottom: 3vh;
    width: min(94vw, 380px); gap: 8px;
  }
  .card { min-width: 0; flex: 1 1 0; padding: 10px 8px; border-radius: 14px; }
  .card__big { font-size: 16px; }
  .card__label { font-size: 10px; line-height: 1.2; }

  /* MOBILE PERF: drop backdrop-filter blur (very expensive on phones); compensate
     with a more opaque surface so the text stays legible. */
  .card { background: rgba(40, 50, 33, 0.62); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .price-card { background: rgba(255, 252, 246, 0.85); backdrop-filter: none; -webkit-backdrop-filter: none; }

  /* (layers keep will-change: transform/opacity so the parallax translate stays on
     the GPU; the dissolve only translates + fades — no per-frame scaling re-raster) */

  /* text sits a bit higher on mobile -> move the legibility wash to follow it */
  .hero::after {
    background: radial-gradient(96% 50% at 50% 52%,
                rgba(246,239,228,.93) 0%, rgba(246,239,228,.62) 54%, rgba(246,239,228,0) 86%);
  }
  .hero::before { height: 0; }
}

/* =====================================================================
   SCROLLING CONTENT — "Maya's Garden" (Botanical Editorial)
   ===================================================================== */
:root {
  --eb: #8a5618;        /* AA-safe deep-ochre eyebrow text */
  --amber-cta: #9c6014; /* deep amber pill — passes AA (5.1:1) with white text */
}

.content { position: relative; z-index: 1; }   /* paint above the hero */

.ico { width: 1.1em; height: 1.1em; flex: none; display: inline-block; vertical-align: -0.18em; }

/* ----- section shell ----- */
.section {
  position: relative;
  padding-block: clamp(72px, 10vw, 128px);
  padding-inline: 6vw;
  background: var(--ivory);
  color: var(--ink);
}
.band-ink { background: var(--ink); color: var(--ivory); }

.sec-head { text-align: center; max-width: 760px; margin-inline: auto; margin-bottom: clamp(34px, 5vw, 60px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 17px; letter-spacing: 0.04em; color: var(--eb);
}
.band-ink .eyebrow, .eyebrow--amber { color: var(--amber); }
.eyebrow--amber { justify-content: center; }
.ico--eb { width: 19px; height: 19px; color: var(--amber); }
.eyebrow .ico--eb { vertical-align: middle; }
.h-section {
  font-family: var(--serif); font-weight: 700; color: var(--ink);
  line-height: 1.14; font-size: clamp(30px, 4.4vw, 52px); margin-top: 10px;
}
.band-ink .h-section { color: var(--ivory); }
.body { font-size: 17px; line-height: 1.8; color: var(--ink); margin-top: 16px; }

/* ----- scroll-reveal ----- */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .56s ease, transform .56s ease;
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ----- 1 · testimonials ----- */
.section--testi {
  position: relative;
  padding-block: clamp(72px, 9vw, 116px) clamp(56px, 8vw, 96px);
}
/* Pull the first section up by ~one viewport so it sits behind the pinned hero and
   is revealed as the portal dissolves (motion only). Reduced-motion keeps it in
   normal flow (no overlap, hero just scrolls away). */
@media (prefers-reduced-motion: no-preference) {
  .section--testi { margin-top: -100vh; margin-top: -100dvh; }
}
.testi-wrap { max-width: 720px; margin-inline: auto; text-align: center; }
.sprig-mark { display: block; width: 30px; height: 30px; margin: 0 auto 4px; color: var(--amber); }
.stars { display: flex; justify-content: center; gap: 6px; color: var(--amber); margin: 8px 0 22px; }
.stars .ico { width: 22px; height: 22px; }
.quotes { display: grid; gap: 28px; }
.quote blockquote {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(20px, 2.6vw, 29px); line-height: 1.55; color: var(--ink);
}
.quote figcaption { margin-top: 16px; font-weight: 500; color: rgba(47,58,43,.7); font-size: 15px; }

/* ----- 2 · about ----- */
.about-grid {
  max-width: 1080px; margin-inline: auto;
  display: grid; grid-template-columns: 250px 1fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.about-photo img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 50%;                                   /* circle */
  border: 4px solid var(--paper);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(47,58,43,.06);
}
.about-text .h-section { font-weight: 500; font-size: clamp(24px, 3vw, 34px); }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chips li {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 15px; border: 1.5px solid var(--amber); border-radius: 999px;
  font-weight: 500; font-size: 14px; color: var(--ink);
}
.chips .ico { width: 15px; height: 15px; color: var(--amber); }

/* ----- 3 · takeaways ----- */
.take-grid { max-width: 1080px; margin-inline: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.take-card {
  background: var(--paper); border-radius: 20px; padding: 34px 28px;
  box-shadow: var(--shadow-soft); border-top: 3px solid var(--amber);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .4s var(--ease-card), box-shadow .4s var(--ease-card);
}
.take-card.reveal { transition: opacity .56s ease, transform .56s ease; }
.take-card.in { transition: transform .4s var(--ease-card), box-shadow .4s var(--ease-card); }
.take-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(60,50,30,.16); }
.take-card .glyph { width: 44px; height: 44px; color: var(--amber); }
.take-card h3 { font-weight: 700; font-size: 20px; color: var(--ink); }
.take-card p { font-size: 16px; line-height: 1.75; color: rgba(47,58,43,.9); }

/* ----- 4 · steps (ink band) ----- */
.steps {
  list-style: none; max-width: 1080px; margin-inline: auto; position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.step { text-align: center; position: relative; }
.step__num {
  display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--amber); color: var(--ink);
  font-weight: 800; font-size: 22px; position: relative; z-index: 1;
  box-shadow: 0 0 0 7px var(--ink);   /* masks the connecting vine between badges */
}
.step h3 { font-weight: 700; font-size: 19px; color: var(--ivory); }
.step p { margin-top: 8px; font-size: 15px; line-height: 1.7; color: rgba(246,239,228,.82); }
@media (min-width: 861px) {
  .steps::before {
    content: ""; position: absolute; top: 27px; inset-inline: 11%;
    height: 2px; background: linear-gradient(90deg, transparent, rgba(201,138,60,.5) 12%, rgba(201,138,60,.5) 88%, transparent);
  }
}

/* ----- 5 · pricing (glass card) ----- */
.section--pricing { overflow: hidden; }
.section--pricing::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(55% 65% at 72% 18%, rgba(201,138,60,.20), transparent 70%),
    radial-gradient(55% 65% at 22% 92%, rgba(139,123,176,.18), transparent 70%);
}
.price-card {
  position: relative; max-width: 660px; margin-inline: auto;
  border-radius: 26px; padding: clamp(28px, 4vw, 44px);
  background: rgba(255,252,246,.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.6); box-shadow: 0 30px 70px rgba(60,50,30,.16);
}
.price-head { text-align: center; padding-bottom: 22px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.price-head__eb { display: block; color: var(--eb); font-weight: 600; font-size: 16px; letter-spacing: .04em; }
.price-head__num { display: block; font-family: var(--serif); font-weight: 700; font-size: clamp(54px, 9vw, 84px); line-height: 1; color: var(--ink); margin: 6px 0; }
.price-head__sub { display: block; font-size: 13.5px; color: rgba(47,58,43,.72); }
.price-grid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.price-grid li { display: flex; gap: 12px; align-items: flex-start; }
.price-grid .ico { width: 24px; height: 24px; color: var(--amber); margin-top: 2px; }
.price-grid .k { display: block; font-size: 13px; color: rgba(47,58,43,.6); }
.price-grid .v { display: block; font-weight: 700; color: var(--ink); font-size: 16px; }
.price-grid small { font-weight: 400; color: rgba(47,58,43,.6); font-size: 12px; }
.gift {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  margin-top: 22px; padding: 12px 16px; background: rgba(201,138,60,.1);
  border-radius: 14px; font-size: 14px; color: var(--ink);
}
.gift .ico { width: 20px; height: 20px; color: var(--amber); }
.cta--block { display: flex; justify-content: center; width: 100%; margin-top: 24px; }

/* ----- 6 · faq ----- */
.faq { max-width: 760px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 4px; font-weight: 700; font-size: 17px; color: var(--ink); min-height: 44px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev { width: 20px; height: 20px; color: var(--amber); transition: transform .25s var(--ease-card); }
.faq__item[open] summary .faq__chev { transform: rotate(180deg); }
.faq__item[open] { border-inline-start: 3px solid var(--amber); padding-inline-start: 14px; }
.faq__a { padding: 0 4px 22px; font-size: 16px; line-height: 1.8; color: rgba(47,58,43,.85); }
.faq__item[open] .faq__a { animation: faqIn .3s ease; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ----- 7 · final cta (ink, full-bleed) ----- */
.section--final { background: var(--ink-2); text-align: center; overflow: hidden; }
.final-glow {
  position: absolute; left: 50%; top: 42%; width: 80vw; max-width: 880px; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,224,168,.22), rgba(255,224,168,0) 60%);
}
.final-inner { position: relative; max-width: 720px; margin-inline: auto; }
.h-final { font-family: var(--serif); font-weight: 700; color: var(--ivory); font-size: clamp(30px, 5vw, 56px); line-height: 1.14; margin: 12px 0 18px; }
.final-body { color: rgba(246,239,228,.85); font-size: 17px; line-height: 1.7; max-width: 520px; margin: 0 auto 30px; }
.final-sub { margin-top: 18px; color: var(--amber); font-size: 14px; }

/* ----- CTA variants / icons ----- */
.cta .ico { width: 18px; height: 18px; }
.cta--xl { font-size: 18px; padding: 18px 38px; background: var(--amber); color: var(--ink); }
.cta--xl:hover { background: var(--ivory); color: var(--ink); transform: translateY(-3px); box-shadow: 0 18px 38px rgba(0,0,0,.3); }

/* ----- scroll cue (falling petal) ----- */
.scrollcue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 16; display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: var(--amber); opacity: 0; pointer-events: none;
  animation: cueIn .7s ease 1.5s forwards, cueBob 2.4s ease-in-out 2s infinite;
}
.scrollcue__sprig { width: 22px; height: 22px; }
.scrollcue__chev { width: 20px; height: 20px; }
@keyframes cueIn { to { opacity: .85; } }
@keyframes cueBob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
@media (prefers-reduced-motion: reduce) { .scrollcue { animation: cueIn .7s ease 0.6s forwards; } }
/* Hide the scroll cue on small / touch screens — it overlaps the cards. Placed AFTER
   the base .scrollcue rule so it wins by source order (equal specificity). */
@media (max-width: 820px), (hover: none), (pointer: coarse) {
  .scrollcue { display: none !important; }
}

/* ----- sticky mobile WhatsApp bar ----- */
.stickybar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 200;
  display: none; align-items: center; justify-content: space-between; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--ink); color: var(--ivory); text-decoration: none;
  transform: translateY(120%); transition: transform .3s ease;
  box-shadow: 0 -8px 24px rgba(0,0,0,.18);
}
.stickybar.show { transform: none; }
.stickybar__info { font-size: 12.5px; line-height: 1.25; }
.stickybar__info strong { font-weight: 800; color: var(--amber); font-size: 15px; }
.stickybar__btn {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  background: var(--amber-cta); color: #fff; font-weight: 700;
  padding: 10px 16px; border-radius: 999px; font-size: 14px;
  transition: transform .2s var(--ease-card);
}
.stickybar:active .stickybar__btn { transform: scale(0.96); }
.stickybar .ico { width: 17px; height: 17px; }

/* ----- focus visibility ----- */
a:focus-visible, summary:focus-visible {
  outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 6px;
}

/* ----- tap responsiveness: kill 300ms delay + give a press state on touch ----- */
.cta, .stickybar, .nav__link, .faq__item summary, .chips li { touch-action: manipulation; }
.cta:active { transform: translateY(0) scale(0.97); }
.cta--xl:active { transform: scale(0.97); }

/* ----- responsive ----- */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 200px; margin-inline: auto; }
  .take-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 30px 22px; }
  .price-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .stickybar { display: flex; }
  .content { padding-bottom: 64px; }   /* room above the sticky bar */
}

/* =====================================================================
   TOUCH DEVICES — native-scroll hero (no pinned dissolve = guaranteed smooth).
   The hero becomes a normal block that scrolls away; content follows immediately
   (the reveal-underneath overlap is removed). Desktop keeps the sticky dissolve.
   Placed last so it wins by source order over the base sticky/overlap rules.
   ===================================================================== */
@media (hover: none), (pointer: coarse) {
  .hero-stage { height: auto; }
  .hero { position: relative; height: 100vh; height: 100svh; }
  .section--testi { margin-top: 0; }
}
