/* =========================================================
   Pawsterdam — rebuilt stylesheet
   Warm dark theme · Fraunces + Outfit · GSAP/Lenis friendly
   ========================================================= */

:root {
  --bg:        #0e0b09;
  --bg-2:      #16110d;
  --panel:     rgba(246, 237, 223, 0.03);
  --cream:     #f6eddf;
  --muted:     rgba(246, 237, 223, 0.64);
  --faint:     rgba(246, 237, 223, 0.40);
  --accent:    #ffb45c;
  --accent-2:  #ff8a4c;
  --coral:     #ff6f61;
  --line:      rgba(246, 237, 223, 0.12);
  --line-2:    rgba(246, 237, 223, 0.06);
  --radius:    18px;
  --radius-sm: 12px;
  --container: 1180px;
  --serif: "Fraunces", Georgia, serif;
  --sans:  "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.js { scroll-behavior: auto; }            /* Lenis owns scrolling when JS is up */

body {
  margin: 0;
  background: radial-gradient(120% 80% at 80% -10%, #1d140d 0%, var(--bg) 55%) no-repeat, var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.075rem);
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.1px;
  overflow-x: hidden;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* film-grain noise overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.04; }
em { font-style: italic; color: var(--accent); }
strong { font-weight: 600; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; }
.section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(4.5rem, 8vh, 6.5rem);
  scroll-margin-top: 84px;
}

/* ---------- Typographic helpers ---------- */
.eyebrow, .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
}
.dotline {
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.h2 {
  font-size: clamp(2rem, 1.4rem + 2.8vw, 3.5rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}
.h2--big { font-size: clamp(2.3rem, 1.4rem + 4vw, 4.6rem); }

/* ---------- Buttons ---------- */
.btn {
  --pad: 0.95em 1.5em;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: var(--pad);
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  will-change: transform;
}
.btn__paw { flex: none; }
.btn__label--short { display: none; }
.btn--sm { --pad: 0.7em 1.15em; font-size: 0.9rem; }
.btn--lg { --pad: 1.1em 1.9em; font-size: 1.05rem; }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2) 60%, var(--coral));
  color: #2a1707;
  box-shadow: 0 10px 30px -12px rgba(255, 138, 76, 0.7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -14px rgba(255, 138, 76, 0.85); }
.btn--ghost {
  background: var(--panel);
  border-color: var(--line);
  color: var(--cream);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem clamp(1.3rem, 4vw, 2.6rem);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(14, 11, 9, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-block: 0.75rem;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--cream);
}
.nav__logo svg { color: var(--accent); }
.nav__links { display: flex; gap: 1.7rem; }
.nav__links a {
  position: relative;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { transform: scaleX(1); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: clamp(5.5rem, 11vh, 7.5rem) 0 clamp(2.5rem, 5vh, 3.5rem);
  overflow: hidden;
}
.hero__grid {
  width: min(100% - 2.6rem, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.hero__orb--1 { width: 42vw; height: 42vw; left: -10vw; top: -8vw; background: radial-gradient(circle, rgba(255,138,76,0.35), transparent 65%); }
.hero__orb--2 { width: 34vw; height: 34vw; right: -8vw; bottom: -12vw; background: radial-gradient(circle, rgba(255,111,97,0.28), transparent 65%); }
.hero__woef {
  position: absolute;
  right: 6vw; top: 22vh;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(3rem, 9vw, 8rem);
  color: rgba(246, 237, 223, 0.05);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.hero__copy { position: relative; z-index: 2; }
.hero__title { font-size: clamp(2.5rem, 1.5rem + 4.4vw, 5.2rem); line-height: 1.02; letter-spacing: -0.025em; margin-bottom: 1.4rem; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__title .line--small { font-size: 0.4em; color: var(--muted); margin-top: 0.45em; letter-spacing: -0.01em; }
.hero__title .line--small em { color: var(--faint); }
.hero__sub { max-width: 38ch; color: var(--muted); margin: 0 0 1.9rem; font-size: 1.075rem; line-height: 1.7; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.8rem; }
.hero__proof { font-size: 0.86rem; color: var(--faint); letter-spacing: 0.02em; }

.hero__visual { position: relative; z-index: 1; }
.hero__figure {
  position: relative;
  margin: 0;
  width: fit-content;
  max-width: 100%;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.8);
  transform: rotate(1.4deg);
}
/* show the whole photo (no crop); height cap keeps the hero one screen */
.hero__figure img { display: block; width: auto; height: auto; max-width: 100%; max-height: 58svh; }
.hero__figure-glow {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14,11,9,0.55));
  pointer-events: none;
}

.hero__scrollcue {
  position: absolute; left: 50%; bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--faint);
}
.hero__scrollline { width: 1px; height: 38px; background: linear-gradient(var(--accent), transparent); }

/* ---------- Trail zone / SVG path ---------- */
.trail-zone { position: relative; }
.trail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
.trail__hint { fill: none; stroke: var(--line); stroke-width: 2; }
.trail__glow { fill: none; stroke: url(#trailGrad); stroke-width: 9; stroke-linecap: round; opacity: 0.5; }
.trail__core { fill: none; stroke: url(#trailGrad); stroke-width: 3; stroke-linecap: round; }
.trail__stamp {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(255, 180, 92, 0.85));
}
.trail__stamp--filled { fill: var(--accent); stroke: none; }
.trail-zone > .section, .trail-zone > .pack { position: relative; z-index: 1; }

/* ---------- Story ---------- */
.story__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.story__figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -40px rgba(0,0,0,0.8);
}
.story__figure img { transition: transform 0.8s var(--ease); width: 100%; }
.story__figure:hover img { transform: scale(1.045); }
.story__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.story__stats li { display: flex; flex-direction: column; }
.story__stats .stat, .story__stats strong {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--accent);
}
.story__stats span { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }
.story__promise {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin: 1.4rem 0 0;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 180, 92, 0.28);
  background: linear-gradient(110deg, rgba(255, 180, 92, 0.10), rgba(255, 180, 92, 0.03));
  color: var(--cream);
  line-height: 1.55;
}
.story__promise svg { flex: none; color: var(--accent); margin-top: 0.15rem; }
.story__promise strong { color: var(--accent); font-weight: 600; }

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.3rem;
  margin-top: 2.4rem;
}
.card {
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: transform 0.5s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 180, 92, 0.4);
  box-shadow: 0 24px 50px -30px rgba(255, 138, 76, 0.5);
}
.card__icon { color: var(--accent); margin-bottom: 1.1rem; }
.card h3 { font-size: 1.45rem; margin-bottom: 0.6rem; }
.card p { color: var(--muted); margin: 0 0 0.8rem; }
.card__price { color: var(--cream); font-size: 0.95rem; }
.card__price strong { color: var(--accent); }
.services__includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Pack ---------- */
.pack { overflow: hidden; }
.pack__bigword {
  position: absolute;
  top: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(4rem, 18vw, 16rem);
  color: rgba(246, 237, 223, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.pack__viewport {
  margin-top: clamp(1.5rem, 3vh, 2.4rem);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pack__viewport::-webkit-scrollbar { display: none; }
.pack__track {
  display: flex;
  gap: 1.4rem;
  padding-inline: clamp(1.3rem, 4vw, 4rem);
  width: max-content;
  will-change: transform;
}
.polaroid {
  flex: 0 0 auto;
  width: clamp(220px, 24vw, 300px);
  margin: 0;
  padding: 0.9rem 0.9rem 1.1rem;
  background: #faf3e6;
  border-radius: 6px;
  box-shadow: 0 26px 50px -28px rgba(0,0,0,0.85);
  transform: rotate(var(--r, -1.5deg));
  transition: transform 0.5s var(--ease);
}
.polaroid:nth-child(even) { --r: 1.8deg; }
.polaroid:hover { transform: rotate(0) translateY(-6px) scale(1.02); }
.polaroid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 3px; }
.polaroid figcaption {
  margin-top: 0.7rem;
  font-family: var(--serif);
  color: #2a1707;
  font-size: 1.02rem;
  line-height: 1.25;
}
.polaroid figcaption span { font-family: var(--sans); font-size: 0.78rem; color: #7a5c38; }

/* ---------- How it works ---------- */
.how__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
  margin-top: clamp(1.6rem, 3vh, 2.6rem);
}
.how__steps li {
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, var(--panel), transparent);
}
.how__num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 2.6rem; height: 2.6rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.how__steps h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.how__steps p { color: var(--muted); margin: 0; }

/* ---------- Reviews ---------- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.3rem;
  margin-top: clamp(1.5rem, 3vh, 2.4rem);
}
.review {
  margin: 0;
  padding: 1.9rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: transform 0.5s var(--ease), border-color 0.4s ease;
}
.review:hover { transform: translateY(-5px); border-color: rgba(255,180,92,0.35); }
.review__stars { color: var(--accent); letter-spacing: 0.18em; margin-bottom: 0.9rem; }
.review p { margin: 0 0 1.1rem; font-size: 1.05rem; }
.review footer { color: var(--muted); font-size: 0.9rem; }

/* ---------- CTA ---------- */
.cta { overflow: hidden; }
.cta__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.cta__bgtrack {
  display: flex;
  height: 100%;
  width: max-content;
  animation: ctascroll 70s linear infinite;
}
.cta__bgtrack img {
  height: 100%;
  width: auto;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}
/* track holds two identical halves; -50% → 0 drifts photos left → right */
@keyframes ctascroll {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(14,11,9,0.45) 22%, rgba(14,11,9,0.45) 78%, var(--bg) 100%),
    radial-gradient(120% 90% at 50% 50%, rgba(14,11,9,0.55), rgba(14,11,9,0.82));
}
.cta__inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin-inline: auto; }
.cta__buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin: 0 0 1.4rem; }
.cta__note { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
.cta__note > span { display: block; }
.cta__loc {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.45rem;
  color: var(--cream);
  font-weight: 400;
}
.cta__loc svg { color: var(--accent); flex: none; }

/* ---------- Custom cursor ---------- */
.cursor { position: fixed; left: 0; top: 0; z-index: 9999; pointer-events: none; mix-blend-mode: difference; }
.cursor__dot, .cursor__ring { position: absolute; top: 0; left: 0; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor__dot { width: 7px; height: 7px; background: var(--cream); }
.cursor__ring { width: 38px; height: 38px; border: 1px solid var(--cream); transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.25s; }
.cursor.is-hot .cursor__ring { width: 60px; height: 60px; opacity: 0.5; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  display: grid; place-items: center;
  background: var(--bg);
  color: var(--accent);
}
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.preloader__paw { animation: pawpulse 1.1s var(--ease) infinite; }
.preloader__word { display: flex; gap: 0.12em; font-family: var(--serif); letter-spacing: 0.2em; color: var(--cream); }
.preloader__word span { opacity: 0.25; animation: letterglow 1.4s ease infinite; }
.preloader__word span:nth-child(n) { animation-delay: calc(var(--i, 0) * 0.08s); }
@keyframes pawpulse { 50% { transform: scale(1.15) rotate(-6deg); } }
@keyframes letterglow { 40% { opacity: 1; color: var(--accent); } }
html:not(.js) .preloader { display: none; }

/* ---------- Reveal animations (fade-up) ---------- */
.tiltcard { transform-style: preserve-3d; }

/* When JS is active, hide fade-up content until revealed */
html.js .fade-up { opacity: 0; transform: translateY(26px); }
html.js .fade-up.is-in { opacity: 1; transform: none; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }

/* ---------- Desktop+: keep the hero within one screen ---------- */
@media (min-width: 901px) {
  .hero { height: 100svh; min-height: 600px; }
  .hero__visual { display: flex; justify-content: flex-end; }
  .hero__figure { max-width: 440px; }
  .hero__figure img { max-height: min(74svh, 600px); }
  /* cap the portrait story photo so the section never exceeds one screen */
  .story__figure { height: min(62vh, 540px); }
  .story__figure img { height: 100%; object-fit: cover; object-position: center 30%; }
}

/* Short laptops: trim type so nothing clips */
@media (min-width: 901px) and (max-height: 760px) {
  .hero__title { font-size: clamp(2.4rem, 4.2vw, 3.6rem); }
  .hero__sub { margin-bottom: 1.4rem; font-size: 1rem; }
  .hero__figure img { max-height: min(70svh, 520px); }
}

/* Short laptops: compact the text-heavy story so it stays one screen */
@media (min-width: 901px) and (max-height: 840px) {
  .story__copy .h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 0.8rem; }
  .story__copy > p { font-size: 0.98rem; line-height: 1.55; margin-bottom: 0.7rem; }
  .story__promise { margin-top: 0.9rem; padding: 0.8rem 1rem; line-height: 1.45; }
  .story__stats { margin-top: 1.1rem; padding-top: 0.9rem; gap: 1.4rem; }
  .story__stats .stat, .story__stats strong { font-size: 2.1rem; }
}

/* ---------- Tablet / mobile ---------- */
@media (max-width: 900px) {
  :root { --container: 700px; }
  .hero {
    min-height: 100svh;
    padding: clamp(3.75rem, 8vh, 4.75rem) 0 1.25rem;
  }
  .hero__grid { grid-template-columns: 1fr; gap: clamp(1.1rem, 3vh, 1.7rem); }
  .hero__visual { max-width: 360px; margin-inline: auto; width: 100%; }
  .hero__figure { transform: none; margin-inline: auto; }
  .hero__figure img { max-height: 38svh; }
  .hero__sub { font-size: 1rem; line-height: 1.55; max-width: 46ch; margin-bottom: 1.3rem; }
  .hero__cta { gap: 0.7rem; margin-bottom: 1.2rem; }
  .hero__scrollcue { display: none; }
  .nav__links { display: none; }
  .hero__woef { display: none; }
  .story__grid { grid-template-columns: 1fr; gap: clamp(1rem, 2.6vh, 1.5rem); }
  .story__figure { max-width: 420px; margin-inline: auto; height: clamp(150px, 23svh, 220px); }
  .story__figure img { height: 100%; object-fit: cover; object-position: center 35%; }
  .story__copy .eyebrow { margin-bottom: 0.7rem; }
  .story__copy .h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); margin-bottom: 0.7rem; }
  .story__copy > p { font-size: 0.95rem; line-height: 1.5; margin-bottom: 0.7rem; }
  .story__promise { padding: 0.8rem 1rem; margin-top: 0.8rem; line-height: 1.45; }
  .story__stats { margin-top: 1rem; padding-top: 0.9rem; gap: 0.9rem 1.6rem; }
  .section { padding-block: clamp(3.25rem, 6.5vh, 4.5rem); }

  /* horizontal card rails keep these sections within one screen on mobile */
  .how__steps, .reviews__grid {
    display: flex;
    grid-template-columns: none;
    gap: 1rem;
    margin-top: clamp(1.4rem, 3vh, 2rem);
    padding-bottom: 0.4rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .how__steps::-webkit-scrollbar, .reviews__grid::-webkit-scrollbar { display: none; }
  .how__steps > li, .reviews__grid > * { flex: 0 0 82%; scroll-snap-align: center; }
}

@media (max-width: 560px) {
  :root { --radius: 14px; }
  .nav { padding-inline: 1.1rem; gap: 0.8rem; }
  .nav__logo span { font-size: 1.1rem; }
  .btn__label--full { display: none; }
  .btn__label--short { display: inline; }
  .story__stats { gap: 0.9rem 1.8rem; }
  .story__stats .stat, .story__stats strong { font-size: 2rem; }
  .story__figure { height: clamp(140px, 20svh, 190px); }
  .story__copy > p { font-size: 0.92rem; line-height: 1.48; }
  .story__promise { font-size: 0.92rem; padding: 0.7rem 0.9rem; }
  .hero__figure img { max-height: 34svh; }
  .hero__sub { font-size: 0.96rem; margin-bottom: 1.1rem; }
  .hero__title { font-size: clamp(2.05rem, 8.5vw, 2.7rem); margin-bottom: 1rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; justify-content: center; --pad: 0.82em 1.2em; }
  .hero__proof { font-size: 0.8rem; }
  .cta__buttons { flex-direction: column; align-items: stretch; }
  .cta__buttons .btn { width: 100%; justify-content: center; }
  .polaroid { width: clamp(210px, 72vw, 260px); }
  .card { padding: 1.6rem 1.4rem; }
}

/* Very small phones (≤360px) — final trim to hold one screen */
@media (max-width: 380px) {
  .hero__figure img { max-height: 30svh; }
  .hero__title { font-size: clamp(1.95rem, 8vw, 2.4rem); }
  .hero__sub { font-size: 0.92rem; margin-bottom: 1rem; }
  .story__figure { height: clamp(120px, 17svh, 165px); }
  .story__copy > p { line-height: 1.42; }
  .story__promise { line-height: 1.4; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  html.js .fade-up { opacity: 1; transform: none; }
  .cursor { display: none; }
  .preloader { display: none; }
}
