/* =========================================================
   Beach Yoga Retreat Mallorca — Sandra Van Olmen
   Concept: "The Breath Line" — inhale · hold · exhale · rise.
   One drawn stroke threads the site; sections are breath-counts.
   Palette derived from the real cove + golden-hour + Palma sunset photos.
   Lane: Marcellus + Inter · soft sand + sea, airy light · round/soft.
   ========================================================= */

:root{
  /* --- palette from photos --- */
  --sand:   #F4ECE1;  /* pale dry sand — paper ground */
  --sand-2: #EFE4D4;  /* a touch deeper */
  --sea:    #5A9DA6;  /* turquoise cove water (p04) */
  --sea-d:  #3C7C85;  /* deeper water */
  --deep:   #243F47;  /* pine headland — ink */
  --clay:   #C2855E;  /* Mallorca cliff rock / golden skin */
  --horizon:#E4A85C;  /* the low-sun glint — rare accent */
  --line:   rgba(36,63,71,.14);

  --ink:    var(--deep);
  --muted:  #5E7077;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 30px;

  --display: "Marcellus", Georgia, "Times New Roman", serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  font-family:var(--body);
  color:var(--ink);
  background:var(--sand);
  line-height:1.6;
  font-weight:400;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }

/* keep long display headings from breaking one-letter-per-line */
h1,h2,h3,.brand__name,.hero__title{
  word-break:keep-all;
  overflow-wrap:normal;
  hyphens:none;
}

.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad); }

.skip{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--deep); color:var(--sand); padding:.7rem 1rem; border-radius:0 0 12px 0;
}
.skip:focus{ left:0; }

:focus-visible{ outline:2.5px solid var(--horizon); outline-offset:3px; border-radius:4px; }

/* =========================================================
   TYPE PRIMITIVES
   ========================================================= */
.h2{
  font-family:var(--display);
  font-weight:400;
  font-size:clamp(1.7rem, 5.4vw, 3rem);
  line-height:1.08;
  letter-spacing:.005em;
  color:var(--deep);
}
.h2--center{ text-align:center; }

.eyebrow{
  font-size:.72rem;
  letter-spacing:.26em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--sea-d);
}
.eyebrow--light{ color:rgba(255,255,255,.86); }

.lead{ font-size:clamp(1.02rem,2.4vw,1.18rem); color:var(--muted); max-width:60ch; }
.lead--center{ margin-inline:auto; text-align:center; }

/* =========================================================
   BUTTONS  (tap targets >= 44px)
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.5rem;
  min-height:48px;
  padding:.85rem 1.5rem;
  border-radius:999px;
  font-family:var(--body);
  font-weight:500;
  font-size:.95rem;
  letter-spacing:.01em;
  cursor:pointer;
  border:1.5px solid transparent;
  transition:transform .35s var(--ease), background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  -webkit-tap-highlight-color:transparent;
  text-align:center;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }

.btn--solid{
  background:var(--deep); color:var(--sand);
  box-shadow:0 10px 26px -14px rgba(36,63,71,.7);
}
.btn--solid:hover{ background:var(--sea-d); }

.btn--ghost{ border-color:var(--line); color:var(--deep); background:transparent; }
.btn--ghost:hover{ border-color:var(--sea-d); color:var(--sea-d); }

.btn--ghost-light{ border-color:rgba(255,255,255,.6); color:#fff; background:rgba(255,255,255,.06); }
.btn--ghost-light:hover{ background:rgba(255,255,255,.16); border-color:#fff; }

.btn--head{ background:var(--deep); color:var(--sand); min-height:44px; padding:.6rem 1.15rem; box-shadow:0 8px 20px -14px rgba(36,63,71,.8); }
.btn--head:hover{ background:var(--sea-d); }

.btn--lg{ min-height:56px; padding:1.05rem 2.3rem; font-size:1.02rem; }
.btn--sm{ min-height:44px; padding:.6rem 1.1rem; font-size:.85rem; margin-top:.6rem; }

/* =========================================================
   HEADER
   ========================================================= */
.site-head{
  position:fixed; inset:0 0 auto 0; z-index:100;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:.7rem var(--pad);
  background:transparent;
  transition:background-color .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.site-head.is-stuck{
  background:rgba(244,236,225,.9);
  backdrop-filter:saturate(140%) blur(12px);
  -webkit-backdrop-filter:saturate(140%) blur(12px);
  box-shadow:0 1px 0 var(--line);
}

.brand{ display:flex; align-items:center; gap:.6rem; color:#fff; transition:color .4s var(--ease); min-height:44px; padding:4px 2px; }
.is-stuck .brand{ color:var(--deep); }
.brand__mark{ display:grid; place-items:center; flex:0 0 auto; opacity:.95; filter:drop-shadow(0 1px 6px rgba(15,30,35,.5)); }
.is-stuck .brand__mark{ filter:none; }
.brand__txt{ display:flex; flex-direction:column; line-height:1.05; }
.brand__name{ font-family:var(--display); font-size:1.02rem; letter-spacing:.01em; text-shadow:0 1px 10px rgba(15,30,35,.55); }
.brand__sub{ font-size:.62rem; letter-spacing:.22em; text-transform:uppercase; opacity:.92; text-shadow:0 1px 8px rgba(15,30,35,.6); }
.is-stuck .brand__name,.is-stuck .brand__sub{ text-shadow:none; }
.is-stuck .brand__sub{ opacity:.7; }

.nav{ display:none; }

.head-actions{ display:flex; align-items:center; gap:.5rem; }
.lang{
  display:inline-flex; align-items:center; gap:.18rem;
  min-height:44px; min-width:44px; padding:.4rem .6rem;
  background:transparent; border:1.5px solid rgba(255,255,255,.45); border-radius:999px;
  color:#fff; font-family:var(--body); font-size:.78rem; font-weight:600; letter-spacing:.04em;
  cursor:pointer; transition:border-color .3s, color .3s, background-color .3s;
}
.is-stuck .lang{ color:var(--deep); border-color:var(--line); }
.lang:hover{ border-color:currentColor; }
.lang__off{ opacity:.5; }
.lang__sep{ opacity:.4; }
.lang.is-es .lang__on{ opacity:.5; }
.lang.is-es .lang__off{ opacity:1; }

.btn--head{ display:none; }

/* =========================================================
   HERO  — full-bleed photo, dark scrim, big type, breath line
   ========================================================= */
.hero{
  position:relative;
  min-height:100svh;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:0 var(--pad) clamp(70px, 16vh, 150px);
  isolation:isolate;
  overflow:hidden;
}
.hero__media{ position:absolute; inset:0; z-index:0; }
.hero__media img{ width:100%; height:100%; object-fit:cover; object-position:62% 52%; }
.hero__scrim{
  position:absolute; inset:0; z-index:1;
  background:
    /* MOBILE default: the headline sits at ~28-48% over a blown-out sun, so the dark floor has
       to start climbing right under the figure's hips. Top ~22% stays clear for the lifted arms. */
    linear-gradient(180deg,
      rgba(16,30,36,.30) 0%,
      rgba(16,30,36,.10) 16%,
      rgba(16,30,36,.26) 25%,
      rgba(16,30,36,.46) 34%,
      rgba(16,30,36,.64) 47%,
      rgba(16,30,36,.74) 60%,
      rgba(16,30,36,.86) 78%,
      rgba(16,30,36,.94) 100%),
    /* soft left panel for the eyebrow/CTA edge */
    linear-gradient(90deg, rgba(16,30,36,.34) 0%, rgba(16,30,36,.10) 50%, rgba(16,30,36,0) 82%);
}

.hero__inner{ max-width:760px; position:relative; z-index:3; }
.eyebrow--light{ margin-bottom:1rem; }
.hero .eyebrow--light{ color:#fff; text-shadow:0 1px 3px rgba(15,30,35,.85), 0 2px 16px rgba(15,30,35,.6); }

.hero__title{
  font-family:var(--display);
  font-weight:400;
  color:#fff;
  font-size:clamp(2.5rem, 11vw, 5.4rem);
  line-height:.98;
  letter-spacing:-.005em;
  /* crisp near edge + soft far glow: carves white letters out of a bright sunset */
  text-shadow:0 1px 2px rgba(12,24,28,.55), 0 3px 22px rgba(12,24,28,.45);
}
.hero__title span{ display:block; }
.hero__line2{ color:var(--horizon); font-style:italic; text-shadow:0 1px 2px rgba(60,30,8,.55), 0 3px 20px rgba(12,24,28,.5); }

.hero__lede{
  margin-top:1.2rem;
  max-width:46ch;
  color:rgba(255,255,255,.95);
  font-size:clamp(1rem,2.7vw,1.2rem);
  font-weight:300;
  text-shadow:0 1px 2px rgba(12,24,28,.6), 0 2px 16px rgba(12,24,28,.5);
}

.hero__cta{ margin-top:1.8rem; display:flex; flex-wrap:wrap; gap:.7rem; }

/* signature breath-line at the foot of the hero */
.breathline--hero{
  position:absolute; left:0; right:0; bottom:0; height:120px; z-index:2;
  pointer-events:none; opacity:.9;
}
.breathline--hero svg{ display:block; }
.breathline__path{
  fill:none;
  stroke:var(--horizon);
  stroke-width:2.2;
  stroke-linecap:round;
  vector-effect:non-scaling-stroke;
  filter:drop-shadow(0 1px 10px rgba(228,168,94,.35));
}
/* draw-on animation applied only when JS marks it ready (avoids hidden-by-default) */
.breathline__path.draw{
  stroke-dasharray:var(--len,2000);
  stroke-dashoffset:var(--len,2000);
}
.breathline__path.draw.in{
  animation:draw 2.6s var(--ease) forwards;
}
@keyframes draw{ to{ stroke-dashoffset:0; } }

/* scroll cue */
.scroll-cue{
  position:absolute; left:50%; bottom:22px; transform:translateX(-50%);
  z-index:4; display:flex; flex-direction:column; align-items:center; gap:.5rem;
  color:rgba(255,255,255,.8); font-size:.66rem; letter-spacing:.3em; text-transform:uppercase;
}
.scroll-cue__bar{ width:1.5px; height:34px; background:linear-gradient(rgba(255,255,255,.8), rgba(255,255,255,0)); border-radius:2px; animation:cue 2.4s var(--ease) infinite; transform-origin:top; }
@keyframes cue{ 0%,100%{ transform:scaleY(.4); opacity:.4 } 50%{ transform:scaleY(1); opacity:1 } }

/* =========================================================
   RIBBON  (breath words)
   ========================================================= */
.ribbon{
  background:var(--deep); color:var(--sand);
  overflow:hidden; white-space:nowrap;
  border-block:1px solid rgba(255,255,255,.06);
}
.ribbon__track{
  display:inline-flex; align-items:center; gap:1.1rem;
  padding-block:.85rem;
  font-family:var(--display); font-size:1.05rem; letter-spacing:.18em; text-transform:lowercase;
  animation:slide 30s linear infinite;
  will-change:transform;
}
.ribbon__track span{ opacity:.92; }
.ribbon__track i{ color:var(--horizon); font-style:normal; }
@keyframes slide{ from{ transform:translateX(0) } to{ transform:translateX(-33.333%) } }

/* =========================================================
   BLOCKS — generic
   ========================================================= */
.block{ padding-block:clamp(56px, 11vw, 120px); position:relative; }
.block--story{ background:var(--sand); }
.block--day{ background:var(--deep); color:var(--sand); }
.block--host{ background:var(--sand-2); }

/* breath-count marker (the numeral system) */
.breathmark{
  display:flex; align-items:center; gap:.85rem;
  margin-bottom:1.8rem;
}
.breathmark::before{
  content:""; width:34px; height:1.5px; background:var(--clay); border-radius:2px;
}
.breathmark__phase{
  font-size:.72rem; letter-spacing:.26em; text-transform:uppercase; font-weight:600; color:var(--clay);
}
.breathmark__num{
  font-family:var(--display); font-size:1.05rem; color:var(--muted); letter-spacing:.05em;
}
.breathmark--onsea::before{ background:var(--horizon); }
.breathmark--onsea .breathmark__phase{ color:var(--horizon); }
.breathmark--onsea .breathmark__num{ color:rgba(244,236,225,.7); }
.breathmark--light::before{ background:var(--horizon); }
.breathmark--light .breathmark__phase{ color:var(--horizon); }
.breathmark--light .breathmark__num{ color:rgba(255,255,255,.75); }

/* ---------- STORY ---------- */
.story-grid{ display:grid; gap:clamp(28px,5vw,56px); }
.story-copy .h2{ margin-bottom:1.1rem; }
.story-copy p{ color:var(--muted); margin-bottom:1rem; max-width:54ch; }

.ticks{ list-style:none; margin-top:1.5rem; display:grid; gap:.7rem; }
.ticks li{ position:relative; padding-left:1.9rem; color:var(--deep); font-size:.98rem; }
.ticks li::before{
  content:""; position:absolute; left:0; top:.5em;
  width:13px; height:13px; border-radius:50%;
  border:1.5px solid var(--sea); background:radial-gradient(circle at 50% 45%, var(--horizon) 0 32%, transparent 34%);
}

.story-photo{ position:relative; }
.story-photo img{ width:100%; border-radius:var(--radius-lg); aspect-ratio:4/5; object-fit:cover; box-shadow:0 30px 60px -36px rgba(36,63,71,.55); }
.story-photo figcaption{ margin-top:.7rem; font-size:.8rem; color:var(--muted); font-style:italic; padding-inline:.3rem; }

/* ---------- A DAY / ARC ---------- */
.block--day .h2{ color:var(--sand); }
.block--day .lead{ color:rgba(244,236,225,.78); }

.arc{
  list-style:none;
  margin-top:clamp(34px,6vw,60px);
  display:grid; gap:0;
  position:relative;
}
.arc__step{
  position:relative;
  padding:1.5rem 0 1.5rem 2.4rem;
  border-top:1px solid rgba(244,236,225,.16);
}
.arc__step:last-child{ border-bottom:1px solid rgba(244,236,225,.16); }
.arc__step::before{
  content:""; position:absolute; left:3px; top:1.9rem;
  width:11px; height:11px; border-radius:50%;
  background:var(--horizon);
  box-shadow:0 0 0 4px rgba(228,168,94,.16);
}
.arc__step::after{
  content:""; position:absolute; left:8px; top:2.6rem; bottom:-.3rem;
  width:1.5px; background:linear-gradient(rgba(228,168,94,.5), rgba(228,168,94,.05));
}
.arc__step:last-child::after{ display:none; }
.arc__phase{ font-size:.66rem; letter-spacing:.26em; text-transform:uppercase; font-weight:600; color:var(--horizon); }
.arc__step h3{ font-family:var(--display); font-weight:400; font-size:1.35rem; color:var(--sand); margin:.25rem 0 .4rem; }
.arc__step p{ color:rgba(244,236,225,.72); font-size:.95rem; max-width:52ch; }

/* ---------- THE SHORE ---------- */
.block--shore{ position:relative; display:grid; }
.shore__photo{ position:relative; min-height:46vh; overflow:hidden; }
/* crop low-left to drop the old baked-in "YOGA…" stamp in p13's top-right corner */
.shore__photo img{ width:100%; height:100%; object-fit:cover; min-height:46vh; object-position:20% 72%; }
.shore__veil{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(36,63,71,.25), rgba(36,63,71,.55)); }
.shore__panel{ background:var(--sea-d); color:#fff; padding:clamp(40px,9vw,80px) var(--pad); }
.shore__panel .h2{ color:#fff; margin-bottom:1.1rem; }
.shore__panel p{ color:rgba(255,255,255,.86); margin-bottom:1rem; max-width:54ch; }
.shore__panel .breathmark::before{ background:var(--horizon); }
.shore__panel .breathmark__phase{ color:var(--horizon); }
.shore__panel .breathmark__num{ color:rgba(255,255,255,.7); }

.facts{ list-style:none; margin-top:1.6rem; display:grid; gap:0; border-top:1px solid rgba(255,255,255,.2); }
.facts li{ display:flex; justify-content:space-between; align-items:baseline; gap:1rem; padding:.85rem 0; border-bottom:1px solid rgba(255,255,255,.2); }
.facts__k{ font-size:.7rem; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.7); }
.facts__v{ font-family:var(--display); font-size:1.02rem; text-align:right; }

/* ---------- HOST ---------- */
.host-grid{ display:grid; gap:clamp(28px,5vw,56px); }
.host-photo img{ width:100%; border-radius:var(--radius-lg); aspect-ratio:4/5; object-fit:cover; object-position:center 32%; box-shadow:0 30px 60px -36px rgba(36,63,71,.5); }
.host-copy .h2{ margin-bottom:1rem; }
.host-lede{ font-size:1.1rem; color:var(--deep); margin-bottom:1rem; }
.host-copy p{ color:var(--muted); margin-bottom:1rem; max-width:54ch; }

.pull{ margin:1.6rem 0; padding-left:1.4rem; border-left:3px solid var(--clay); }
.pull p{ font-family:var(--display); font-size:1.3rem; line-height:1.4; color:var(--deep); font-style:italic; }
.host-meta{ font-size:.9rem; color:var(--muted); }
.host-meta strong{ color:var(--clay); }

/* =========================================================
   CTA
   ========================================================= */
.cta{ position:relative; background:var(--deep); color:var(--sand); padding-block:clamp(70px,13vw,130px); overflow:hidden; }
.cta__line{ position:absolute; top:0; left:0; right:0; height:80px; opacity:.85; }
.cta__inner{ text-align:center; position:relative; }
.cta .eyebrow{ color:var(--horizon); }
.cta__h{ font-family:var(--display); font-weight:400; font-size:clamp(2rem,7vw,3.6rem); line-height:1.04; margin:.8rem 0 1rem; color:var(--sand); }
.cta__p{ max-width:52ch; margin:0 auto 1.8rem; color:rgba(244,236,225,.8); font-size:clamp(1rem,2.5vw,1.15rem); font-weight:300; }
.cta__buttons{ display:flex; justify-content:center; }
.cta .btn--solid{ background:var(--horizon); color:var(--deep); box-shadow:0 16px 40px -18px rgba(228,168,94,.7); }
.cta .btn--solid:hover{ background:#efb86e; }
.cta__fine{ margin-top:1.4rem; font-size:.85rem; color:rgba(244,236,225,.6); }
/* the email is the tap target — 44px touch height, underline stays tight to the text */
.cta__fine a{ display:inline-flex; align-items:center; min-height:44px; color:var(--horizon); border-bottom:1px solid rgba(228,168,94,.4); }

/* =========================================================
   FOOTER
   ========================================================= */
.foot{ background:#1B3036; color:rgba(244,236,225,.82); padding-block:clamp(48px,8vw,76px) 0; }
.foot__grid{ display:grid; gap:2.2rem; }
.foot__mark{ color:var(--horizon); display:block; margin-bottom:.8rem; }
.foot__name{ font-family:var(--display); font-size:1.2rem; color:var(--sand); }
.foot__by{ font-size:.85rem; color:rgba(244,236,225,.6); letter-spacing:.04em; }
.foot__col h3{ font-family:var(--display); font-weight:400; font-size:.78rem; letter-spacing:.2em; text-transform:uppercase; color:var(--horizon); margin-bottom:.7rem; }
.foot__col p{ font-size:.92rem; margin-bottom:.4rem; }
.foot__col p:has(> a:only-child){ margin-bottom:0; }
.foot__col a{ border-bottom:1px solid transparent; transition:border-color .25s, color .25s; }
.foot__col a:hover{ color:var(--sand); border-color:rgba(228,168,94,.5); }
/* contact lines: the email/site link IS the tap target — give it a real 44px touch height (scoped so it never hits the button) */
.foot__col p > a{ display:inline-flex; align-items:center; min-height:44px; }

.foot__base{
  margin-top:2.6rem; padding-block:1.4rem;
  border-top:1px solid rgba(244,236,225,.12);
  display:flex; flex-wrap:wrap; gap:.6rem 1.4rem; justify-content:space-between; align-items:center;
  font-size:.78rem; color:rgba(244,236,225,.55);
}
.foot__sign span{ color:var(--horizon); }

/* =========================================================
   SCROLL-REVEAL
   ========================================================= */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; transition:none; }
  .ribbon__track{ animation:none; }
  .scroll-cue__bar{ animation:none; }
  .breathline__path.draw{ stroke-dashoffset:0 !important; animation:none !important; }
}

/* =========================================================
   RESPONSIVE  — expand from mobile-first base
   ========================================================= */
@media (min-width:600px){
  .story-grid{ grid-template-columns:1.05fr .95fr; align-items:center; }
  .host-grid{ grid-template-columns:.92fr 1.08fr; align-items:center; }
  .ticks{ grid-template-columns:1fr 1fr; }
}

@media (min-width:880px){
  .nav{ display:flex; gap:1.6rem; }
  .nav a{ font-size:.85rem; letter-spacing:.04em; color:#fff; opacity:.9; position:relative; padding:.3rem 0; transition:opacity .25s, text-shadow .25s; text-shadow:0 1px 3px rgba(15,30,35,.7), 0 2px 14px rgba(15,30,35,.5); }
  .is-stuck .nav a{ color:var(--deep); opacity:.85; text-shadow:none; }
  .nav a::after{ content:""; position:absolute; left:0; bottom:-2px; width:0; height:1.5px; background:currentColor; transition:width .3s var(--ease); }
  .nav a:hover{ opacity:1; }
  .nav a:hover::after{ width:100%; }

  .btn--head{ display:inline-flex; }

  .arc{ grid-template-columns:repeat(4,1fr); gap:0; }
  .arc__step{ border-top:none; padding:2.6rem 1.2rem 0 0; }
  .arc__step:last-child{ border-bottom:none; }
  .arc__step::before{ left:0; top:2.6rem; }
  .arc__step::after{ left:18px; right:1.2rem; top:calc(2.6rem + 5px); bottom:auto; height:1.5px; width:auto; background:linear-gradient(90deg, rgba(244,236,225,.4), rgba(244,236,225,.05)); }
  .arc__step:last-child::after{ display:block; right:0; }
  .arc__phase{ display:block; margin-top:.4rem; }

  .block--shore{ grid-template-columns:1.15fr .85fr; align-items:stretch; }
  .shore__photo{ min-height:100%; }
  .shore__panel{ display:flex; flex-direction:column; justify-content:center; }

  /* DESKTOP hero: the copy sits in the left column over a bright sky — anchor it with a
     strong left panel and a gentler bottom, leaving the centre-right figure fully lit. */
  .hero__scrim{
    background:
      linear-gradient(90deg, rgba(16,30,36,.74) 0%, rgba(16,30,36,.52) 30%, rgba(16,30,36,.16) 58%, rgba(16,30,36,0) 80%),
      linear-gradient(180deg, rgba(16,30,36,.30) 0%, rgba(16,30,36,0) 30%, rgba(16,30,36,0) 55%, rgba(16,30,36,.34) 82%, rgba(16,30,36,.6) 100%);
  }
}

@media (min-width:1100px){
  .hero{ padding-bottom:clamp(96px,15vh,170px); }
}

/* very small phones — guarantee no overflow / no clipped type */
@media (max-width:360px){
  :root{ --pad:18px; }
  .hero__cta .btn{ width:100%; }
  .facts__v{ font-size:.92rem; }
}
