/* ============================================================
   SCHIMPF COMBAT FRAMEWORK — landing page stylesheet
   Aesthetic: editorial luxury · mocha mousse palette
   Type: Manrope (primary) + Fraunces (italic display accent)
   ============================================================ */

:root {
  /* mocha mousse palette */
  --ink:       #1A1410;     /* near-black */
  --espresso:  #2A1F18;     /* deep brown for body */
  --mocha:     #8B6F47;     /* brand brown */
  --mocha-d:   #6E5736;
  --caramel:   #D4A574;     /* accent */
  --caramel-l: #E5C19B;
  --cream:     #F5E6D3;     /* soft */
  --paper:     #FAF6F0;     /* page bg */
  --paper-w:   #FDFAF5;
  --white:     #FFFFFF;
  --line:      rgba(42, 31, 24, 0.14);
  --line-soft: rgba(42, 31, 24, 0.08);

  /* type */
  --sans: 'Manrope', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  --serif: 'Fraunces', 'Times New Roman', Georgia, serif;

  /* spacing */
  --gut: clamp(1.25rem, 2vw, 2rem);
  --pad: clamp(1.5rem, 4vw, 5rem);

  /* radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--espresso);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 96px; /* room for sticky CTA */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }
em.serif { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ===== UTILITIES ===== */
.kicker {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mocha);
  padding: 6px 12px;
  border: 1px solid var(--mocha);
  border-radius: 999px;
  background: rgba(212, 165, 116, 0.08);
}
.kicker--light { color: var(--cream); border-color: var(--caramel); background: rgba(245, 230, 211, 0.08); }
.kicker i { font-size: 9px; }

.h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.h2 em.serif { font-weight: 400; letter-spacing: -0.005em; }
.h2--light { color: var(--cream); }

.dek {
  max-width: 56ch;
  margin-top: 1rem;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--espresso);
  opacity: 0.85;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 14px 22px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn__icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--white);
  padding: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.04);
  flex-shrink: 0;
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 8px 24px -8px rgba(26, 20, 16, 0.45), inset 0 0 0 1px rgba(255,255,255,0.04);
}
.btn--primary:hover {
  background: var(--mocha);
  box-shadow: 0 14px 36px -10px rgba(139, 111, 71, 0.55);
}
.btn--dark {
  background: var(--mocha);
  color: var(--cream);
  box-shadow: 0 8px 24px -8px rgba(139, 111, 71, 0.45);
}
.btn--dark:hover { background: var(--ink); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--text {
  padding: 14px 8px;
  background: none;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn--text:hover { color: var(--mocha); border-color: var(--mocha); }
.btn--sm { padding: 10px 16px; font-size: 12.5px; }
.btn--lg { padding: 17px 28px; font-size: 15px; }
.btn--xl { padding: 22px 36px; font-size: 17px; }

/* CTA button — accommodates long bilingual labels */
.btn--cta {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}
.btn--cta .btn__label {
  flex: 1 1 auto;
  font-weight: 700;
  letter-spacing: 0.01em;
  word-break: keep-all; /* keep Chinese phrases tighter */
}
.btn--cta > i { flex-shrink: 0; }

/* ===== brand mark (used in footer) ===== */
.nav__mark {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-weight: 800; font-size: 13px; letter-spacing: 0.06em;
  font-family: var(--serif); font-style: italic;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 75% -10%, rgba(212, 165, 116, 0.28), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(139, 111, 71, 0.18), transparent 60%),
    var(--paper);
  overflow: hidden;
}
.hero::before {
  /* paper grain */
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(42,31,24,0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.hero__paper {
  position: relative;
  max-width: 1320px; margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) var(--pad) clamp(3rem, 5vw, 5rem);
}

.hero__masthead {
  display: flex; align-items: center; gap: 1rem;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  color: var(--mocha-d);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 12px 0;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.hero__rule { flex: 1 1 40px; height: 1px; background: var(--line); }

.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "title portrait"
    "quote portrait";
  gap: clamp(2rem, 4vw, 4rem) clamp(2rem, 5vw, 4rem);
}
.hero__title { grid-area: title; }
.hero__portrait { grid-area: portrait; }
.hero__quoteBlock { grid-area: quote; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  color: var(--mocha);
  margin-bottom: 1.4rem;
}
.hero__h1 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero__h1 em.serif {
  font-weight: 400;
  letter-spacing: -0.015em;
  background: linear-gradient(180deg, var(--mocha) 0%, var(--ink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  max-width: 50ch;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  color: var(--espresso);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero__lead strong { font-weight: 700; color: var(--ink); }
.hero__ctaRow {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero__bullets {
  display: flex; gap: 1.4rem; flex-wrap: wrap;
  font-size: 13.5px; color: var(--mocha-d); font-weight: 600;
}
.hero__bullets li { display: inline-flex; align-items: center; gap: 0.5em; }
.hero__bullets i { color: var(--mocha); }

.hero__portrait {
  position: relative;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.hero__portraitFrame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 30px 80px -30px rgba(26, 20, 16, 0.5),
    0 0 0 1px var(--line);
  aspect-ratio: 4 / 5;
  background: var(--ink);
}
.hero__portraitFrame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.02) saturate(0.92);
}
.hero__portraitFrame::after {
  /* warm overlay */
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(139, 111, 71, 0.0) 0%, rgba(26, 20, 16, 0.35) 100%),
    linear-gradient(180deg, rgba(245, 230, 211, 0.06) 0%, rgba(212, 165, 116, 0.10) 100%);
  pointer-events: none;
}
.hero__portraitTag {
  position: absolute; top: 16px; left: 16px;
  background: var(--paper);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  z-index: 2;
}
.hero__portrait figcaption {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 13px;
}
.hero__portrait figcaption strong {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--ink);
}
.hero__portrait figcaption span { color: var(--mocha-d); }
.hero__portraitMeta { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mocha) !important; }

.hero__quoteBlock {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  border-left: 2px solid var(--mocha);
  background: linear-gradient(90deg, rgba(212, 165, 116, 0.10), transparent 60%);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  align-self: end;
  max-width: 56ch;
}
.hero__quoteMark {
  position: absolute; top: 18px; left: 18px;
  font-size: 18px; color: var(--caramel);
}
.hero__quoteBlock p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.4rem);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 300;
}
.hero__quoteSig {
  display: block; margin-top: 0.8rem;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  color: var(--mocha);
}

.hero__belt {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.belt__item {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 1.6rem 1.5rem;
  border-right: 1px solid var(--line);
}
.belt__item:last-child { border-right: 0; }
.belt__num {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.belt__unit {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 0.55em; color: var(--mocha); margin-left: 2px;
}
.belt__lbl {
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  color: var(--mocha-d);
}

/* ===== PRESS ===== */
.press {
  padding: 2rem var(--pad);
  background: var(--paper-w);
  border-bottom: 1px solid var(--line-soft);
}
.press__inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.press__lbl {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  color: var(--mocha);
  flex-shrink: 0;
}
.press__logos {
  display: flex; gap: 2rem; flex-wrap: wrap;
  font-size: 13.5px; font-weight: 600; color: var(--espresso);
  opacity: 0.75;
}
.press__logos li { display: inline-flex; align-items: center; gap: 0.5em; }
.press__logos i { color: var(--mocha); }

/* ============================================================
   FRAMEWORK SECTION (the centerpiece highlighted module)
   ============================================================ */
.framework {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}
.framework::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><path d='M0 30 H60 M30 0 V60' stroke='%238B6F47' stroke-opacity='0.05' stroke-width='1'/></svg>");
  pointer-events: none;
}
.framework__inner {
  position: relative;
  max-width: 1280px; margin: 0 auto;
}
.framework__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.framework__head .kicker { margin-bottom: 1.2rem; }
.framework__head .dek { margin-left: auto; margin-right: auto; }


.framework__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-w);
  box-shadow: 0 30px 80px -40px rgba(26, 20, 16, 0.18);
}
.framework__item {
  position: relative;
  padding: 2.4rem 2rem 2.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
}
.framework__list .framework__item:nth-child(3n) { border-right: 0; }
.framework__list .framework__item:nth-last-child(-n+3) { border-bottom: 0; }
.framework__item:hover { background: var(--cream); }
.framework__num {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  position: absolute; top: 1.4rem; right: 1.6rem;
  font-size: 26px;
  color: var(--mocha);
  opacity: 0.5;
}
.framework__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: linear-gradient(140deg, var(--ink), var(--mocha));
  color: var(--cream);
  font-size: 22px;
  margin-bottom: 1.2rem;
  box-shadow: 0 12px 30px -10px rgba(139, 111, 71, 0.5);
}
.framework__item h3 {
  font-family: var(--sans);
  font-size: 1.18rem; font-weight: 800; letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.framework__item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--espresso);
}
.framework__item--featured {
  background: var(--ink);
  color: var(--cream);
}
.framework__item--featured h3 { color: var(--cream); }
.framework__item--featured p { color: var(--cream); opacity: 0.8; }
.framework__item--featured .framework__num { color: var(--caramel); opacity: 0.8; }
.framework__item--featured .framework__icon {
  background: linear-gradient(140deg, var(--caramel), var(--mocha));
}
.framework__item--featured:hover { background: var(--ink); }
.framework__pill {
  position: absolute; bottom: 1.4rem; right: 1.4rem;
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  background: var(--caramel); color: var(--ink);
  padding: 4px 10px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 0.35em;
}
.framework__pill i { font-size: 8px; }

.framework__cta {
  margin-top: 3.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.framework__note {
  font-size: 12.5px; letter-spacing: 0.06em; color: var(--mocha-d);
  display: inline-flex; align-items: center; gap: 0.4em;
}

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */
.split {
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
}
.split--imgLeft { background: var(--paper-w); }
.split--imgRight {
  background:
    linear-gradient(160deg, var(--cream) 0%, var(--paper) 60%);
}
.split__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--imgRight .split__text { order: 1; }
.split--imgRight .split__image { order: 2; }

.split__image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow:
    0 40px 100px -40px rgba(26, 20, 16, 0.4),
    0 0 0 1px var(--line);
}
.split__image img,
.split__image video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  filter: sepia(0.05) contrast(1.02);
}
.split__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 20, 16, 0.3) 100%);
  pointer-events: none;
}
.split__badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--paper);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  box-shadow: 0 12px 30px -10px rgba(26, 20, 16, 0.3);
  z-index: 2;
  min-width: 92px;
}
.split__badge i { color: var(--mocha); font-size: 18px; }
.split__badge em { font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: lowercase; letter-spacing: 0; font-size: 14px; color: var(--mocha); }
.split__badge--alt { background: var(--ink); color: var(--cream); }
.split__badge--alt i, .split__badge--alt em { color: var(--caramel); }
.split__caption {
  position: absolute; bottom: 16px; left: 18px;
  color: var(--cream);
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
  z-index: 2;
}

.split__text { display: flex; flex-direction: column; gap: 1.2rem; }
.split__text .kicker { align-self: flex-start; margin-bottom: 0.4rem; }
.split__text p { color: var(--espresso); font-size: 1.02rem; line-height: 1.65; }
.split__text strong { font-weight: 700; color: var(--ink); }

.split__credentials {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.split__credentials li {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 14.5px; color: var(--espresso); font-weight: 500;
}
.split__credentials i {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mocha); color: var(--cream);
  font-size: 10px;
  flex-shrink: 0;
}

/* steps */
.steps {
  display: flex; flex-direction: column; gap: 1.4rem;
  margin: 1.5rem 0 0.5rem;
  padding-left: 0;
}
.steps li {
  display: flex; gap: 1.2rem;
  padding: 1.2rem 1.2rem 1.2rem 1.4rem;
  background: var(--paper-w);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform .25s ease, box-shadow .25s ease;
}
.steps li:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -20px rgba(26,20,16,0.2); }
.steps__num {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 32px; line-height: 1;
  color: var(--mocha);
  flex-shrink: 0;
  width: 38px; text-align: center;
}
.steps li h3 { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 4px; }
.steps li p { font-size: 14.5px; color: var(--espresso); }

/* ============================================================
   NUMBERS SECTION (dark)
   ============================================================ */
.numbers {
  padding: clamp(4rem, 8vw, 6.5rem) var(--pad);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.numbers::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 80% 20%, rgba(212, 165, 116, 0.18), transparent 60%),
    radial-gradient(800px 400px at 0% 100%, rgba(139, 111, 71, 0.18), transparent 60%);
  pointer-events: none;
}
.numbers__inner { position: relative; max-width: 1280px; margin: 0 auto; text-align: center; }
.numbers__inner .kicker { margin-bottom: 1rem; }
.numbers__inner .h2 { margin-bottom: 3rem; }
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  border-top: 1px solid rgba(245, 230, 211, 0.15);
  border-bottom: 1px solid rgba(245, 230, 211, 0.15);
}
.numbers__item {
  padding: 2rem 1rem;
  border-right: 1px solid rgba(245, 230, 211, 0.15);
  display: flex; flex-direction: column; gap: 0.5rem; align-items: center;
}
.numbers__item:last-child { border-right: 0; }
.numbers__big {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--cream);
  background: linear-gradient(180deg, var(--cream), var(--caramel));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.numbers__big sup {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 0.4em; vertical-align: super; margin-left: 2px;
}
.numbers__lbl { font-size: 14px; font-weight: 600; color: var(--cream); margin-top: 0.4rem; }
.numbers__sub { font-size: 12px; letter-spacing: 0.05em; color: var(--caramel); opacity: 0.85; }

/* ============================================================
   VOICES (TESTIMONIAL SLIDER)
   ============================================================ */
.voices {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--paper);
}
.voices__inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 var(--pad);
}
.voices__head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem;
  margin-bottom: 3rem; flex-wrap: wrap;
}
.voices__head .kicker { margin-bottom: 1rem; }
.voices__rating {
  display: flex; flex-direction: column; gap: 6px; align-items: flex-end;
  font-size: 13px; color: var(--mocha-d);
}
.voices__rating strong {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 24px; color: var(--ink);
}
.voices__stars { color: #d4a574; font-size: 16px; letter-spacing: 2px; }

.voices__slider {
  position: relative;
  overflow: hidden;
  /* extend to viewport edges so the marquee can scroll off-screen cleanly */
  margin-left: calc(-1 * var(--pad));
  margin-right: calc(-1 * var(--pad));
  padding-left: var(--pad);
  /* fade edges so cards appear/disappear softly */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.voices__track {
  display: flex;
  width: max-content;
  animation: voicesScroll 55s linear infinite;
  will-change: transform;
}
@keyframes voicesScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.voices__slider:hover .voices__track { animation-play-state: paused; }

.voice {
  flex: 0 0 320px;                /* fixed width for seamless marquee math */
  margin-right: 1.2rem;           /* every card carries its own gap so -50% loops cleanly */
  background: var(--paper-w);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.voice:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -24px rgba(26,20,16,0.2);
  border-color: var(--mocha);
}
.voice__head {
  display: flex; align-items: center; gap: 0.8rem;
}
.voice__head > div {
  flex: 1; display: flex; flex-direction: column;
}
.voice__head strong {
  font-size: 14px; font-weight: 700; color: var(--ink);
}
.voice__head span {
  font-size: 11.5px; color: var(--mocha-d);
}
.voice__avatar {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-weight: 800; font-size: 13px; letter-spacing: 0.05em;
  color: var(--paper);
  flex-shrink: 0;
  font-family: var(--serif); font-style: italic;
}
.voice__avatar--a { background: linear-gradient(135deg, #8B6F47, #5A4530); }
.voice__avatar--b { background: linear-gradient(135deg, #D4A574, #A07A4D); }
.voice__avatar--c { background: linear-gradient(135deg, #6E5736, #2A1F18); }
.voice__avatar--d { background: linear-gradient(135deg, #B58963, #7A5638); }
.voice__avatar--e { background: linear-gradient(135deg, #A57F5C, #44321F); }
.voice__avatar--f { background: linear-gradient(135deg, #E5C19B, #8B6F47); color: var(--ink); }
.voice__avatar--g { background: linear-gradient(135deg, #4D3A26, #8B6F47); }
.voice__avatar--h { background: linear-gradient(135deg, #C8956A, #6E5736); }

.voice__verified {
  color: #00B67A; /* trustpilot green */
  font-size: 18px;
}
.voice__stars {
  color: #00B67A; /* trustpilot rating green */
  font-size: 14px; letter-spacing: 1px;
}
.voice__stars i { background: #00B67A; color: var(--white); padding: 2px; border-radius: 2px; margin-right: 1px; font-size: 11px; }
.voice__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--espresso);
  flex: 1;
}
.voice__foot {
  display: flex; justify-content: space-between;
  font-size: 11.5px;
  color: var(--mocha-d);
  padding-top: 0.7rem;
  border-top: 1px solid var(--line-soft);
}
.voice__source { display: inline-flex; align-items: center; gap: 0.35em; font-weight: 700; }
.voice__source i { color: #00B67A; }


/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  background: var(--paper-w);
}
.faq__inner { max-width: 920px; margin: 0 auto; }
.faq__head { text-align: center; margin-bottom: 3rem; }
.faq__head .kicker { margin-bottom: 1rem; }
.faq__list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0 1.4rem;
  transition: background .25s, border-color .25s;
}
.faq details[open] { background: var(--cream); border-color: var(--mocha); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 1.02rem; font-weight: 700; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
  color: var(--mocha); transition: transform .3s ease;
  font-size: 14px; flex-shrink: 0;
}
.faq details[open] summary i { transform: rotate(45deg); }
.faq details p {
  padding: 0 0 1.4rem;
  font-size: 14.5px; line-height: 1.65; color: var(--espresso);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalCta {
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(212, 165, 116, 0.25), transparent 70%),
    var(--ink);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.finalCta::after {
  content: '';
  position: absolute; left: 50%; bottom: -200px;
  width: 800px; height: 400px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(212, 165, 116, 0.18), transparent);
  pointer-events: none;
}
.finalCta__inner { position: relative; max-width: 820px; margin: 0 auto; }
.finalCta__inner .kicker { margin-bottom: 1.2rem; }
.finalCta__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.finalCta__title em.serif {
  background: linear-gradient(180deg, var(--caramel) 0%, var(--cream) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 400;
}
.finalCta__lead {
  max-width: 60ch; margin: 0 auto 2.4rem;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--cream); opacity: 0.85;
}
.finalCta__lead strong { color: var(--caramel); font-weight: 700; }
.finalCta__note {
  display: block; margin-top: 1.2rem;
  font-size: 12px; letter-spacing: 0.06em; color: var(--caramel); opacity: 0.85;
}
.finalCta .btn--primary {
  background: var(--caramel);
  color: var(--ink);
}
.finalCta .btn--primary:hover {
  background: var(--cream);
  color: var(--ink);
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  padding: clamp(3rem, 5vw, 5rem) var(--pad) 1.5rem;
  background: var(--ink);
  color: var(--cream);
}
.foot__inner { max-width: 1280px; margin: 0 auto; }
.foot__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245, 230, 211, 0.12);
}
.foot__brand {
  display: flex; flex-direction: column; gap: 0.8rem;
}
.foot__brand .nav__mark { background: var(--caramel); color: var(--ink); }
.foot__brand strong {
  font-size: 16px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 800;
}
.foot__brand p {
  font-size: 13.5px; line-height: 1.6; color: var(--cream); opacity: 0.7; max-width: 36ch;
}
.foot__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.foot__cols h4 {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  color: var(--caramel);
  margin-bottom: 1rem;
}
.foot__cols ul { display: flex; flex-direction: column; gap: 0.6rem; }
.foot__cols a, .foot__btn {
  font-size: 14px; color: var(--cream); opacity: 0.8;
  transition: opacity .2s, color .2s;
  display: inline-flex; align-items: center; gap: 0.4em;
  text-align: left;
}
.foot__cols a:hover, .foot__btn:hover { opacity: 1; color: var(--caramel); }
.foot__bottom {
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  font-size: 11.5px; color: var(--cream); opacity: 0.55;
}

/* ============================================================
   FIXED BOTTOM CTA BAR
   ============================================================ */
.stickyCta {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(26, 20, 16, 0.92);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-top: 1px solid rgba(212, 165, 116, 0.25);
  box-shadow: 0 -20px 60px -20px rgba(26, 20, 16, 0.4);
}
.stickyCta__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 12px var(--pad);
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  flex-wrap: wrap;
}
.stickyCta__lbl {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  color: var(--cream);
}
.stickyCta__pulse {
  color: var(--caramel);
  font-size: 8px;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.stickyCta .btn--primary {
  background: var(--caramel);
  color: var(--ink);
}
.stickyCta .btn--primary:hover { background: var(--cream); }

/* ============================================================
   MODALS
   ============================================================ */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.modal.is-open { display: flex; animation: modalIn .25s ease; }
@keyframes modalIn { from { opacity: 0; } to { opacity: 1; } }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(26, 20, 16, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal__panel {
  position: relative;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--paper-w);
  border-radius: var(--r-lg);
  padding: 2.4rem 2rem 2rem;
  box-shadow: 0 40px 120px -30px rgba(0,0,0,0.6);
  animation: panelIn .35s cubic-bezier(0.22,1,0.36,1);
}
@keyframes panelIn {
  from { transform: translateY(20px) scale(0.98); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 14px;
  color: var(--ink);
  transition: all .2s ease;
}
.modal__close:hover { background: var(--ink); color: var(--cream); }

.modal__panel--legal { max-width: 760px; }

.quiz { display: flex; flex-direction: column; gap: 1.2rem; }
.quiz .kicker { align-self: flex-start; }
.quiz__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.quiz__sub {
  font-size: 14.5px; color: var(--mocha-d);
}
.quiz__options {
  display: flex; flex-direction: column; gap: 0.7rem;
  margin-top: 0.5rem;
}
.quiz__opt {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-align: left;
  cursor: pointer;
  transition: all .25s ease;
}
.quiz__opt:hover {
  border-color: var(--ink);
  background: var(--cream);
  transform: translateX(4px);
}
.quiz__opt:hover .quiz__letter { background: var(--ink); color: var(--cream); }
.quiz__opt.is-selected {
  border-color: var(--ink);
  background: var(--cream);
  box-shadow: 0 0 0 2px var(--ink) inset;
}
.quiz__opt.is-selected .quiz__letter { background: var(--ink); color: var(--cream); }
.quiz__opt.is-selected > i { color: var(--ink); }

.quiz__submit {
  margin-top: 1.1rem;
  width: 100%;
  justify-content: center;
}
.quiz__submit:disabled,
.quiz__submit[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.4);
  transform: none;
  box-shadow: none;
}
.quiz__letter {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 18px;
  flex-shrink: 0;
  transition: all .25s ease;
}
.quiz__txt { display: flex; flex-direction: column; gap: 4px; }
.quiz__txt strong { font-size: 15.5px; font-weight: 800; color: var(--ink); }
.quiz__txt em { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--espresso); font-size: 14.5px; }
.quiz__opt > i { color: var(--mocha); font-size: 14px; }

.quiz--done { text-align: center; align-items: center; padding: 1.5rem 0.5rem; }
.quiz__doneIcon {
  font-size: 56px;
  color: #00B67A;
  margin-bottom: 0.5rem;
  animation: pop .5s cubic-bezier(0.22,1.6,0.36,1);
}
@keyframes pop { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.quiz__loader {
  display: inline-flex; gap: 8px; margin: 1rem 0 1.5rem;
}
.quiz__loader span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--mocha);
  animation: bounce 1.2s ease-in-out infinite;
}
.quiz__loader span:nth-child(2) { animation-delay: .15s; }
.quiz__loader span:nth-child(3) { animation-delay: .30s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-10px); opacity: 1; }
}

.legal { display: flex; flex-direction: column; gap: 0.9rem; }
.legal .kicker { align-self: flex-start; }
.legal h3 {
  font-family: var(--sans);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink);
}
.legal p { font-size: 14.5px; line-height: 1.65; color: var(--espresso); }
.legal p strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "portrait"
      "quote";
  }
  .hero__portrait { max-width: 460px; margin: 0 auto; width: 100%; }
  .hero__belt { grid-template-columns: repeat(2, 1fr); }
  .belt__item:nth-child(2n) { border-right: 0; }
  .belt__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .framework__list { grid-template-columns: repeat(2, 1fr); }
  .framework__list .framework__item { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .framework__list .framework__item:nth-child(2n) { border-right: 0; }
  .framework__list .framework__item:nth-last-child(-n+2) { border-bottom: 0; }
  .framework__list .framework__item:nth-child(3n) { border-right: 1px solid var(--line); }

  .split__inner { grid-template-columns: 1fr; }
  .split--imgRight .split__text { order: 2; }
  .split--imgRight .split__image { order: 1; }
  .split__image { max-width: 540px; margin: 0 auto; }

  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .numbers__item:nth-child(2n) { border-right: 0; }
  .numbers__item:nth-child(-n+2) { border-bottom: 1px solid rgba(245, 230, 211, 0.15); }

  .voice { flex: 0 0 280px; } /* tablet card */

  .foot__top { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: repeat(3, 1fr); }
}

/* ===== TABLET DOWN ===== */
@media (max-width: 720px) {
  :root {
    --pad: 1.25rem;
    --gut: 1rem;
  }
  body { padding-bottom: 96px; font-size: 15px; }

  /* HERO */
  .hero__paper { padding-top: clamp(1.5rem, 5vw, 2rem); padding-bottom: 2.5rem; }
  .hero__masthead {
    font-size: 9.5px; gap: 0.5rem; padding: 9px 0;
    letter-spacing: 0.18em;
    margin-bottom: 1.6rem;
    justify-content: space-between;
  }
  .hero__rule { display: none; }
  .hero__eyebrow { font-size: 10.5px; letter-spacing: 0.2em; margin-bottom: 0.8rem; }
  .hero__h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
  }
  .hero__lead { font-size: 14.5px; margin-bottom: 1.4rem; line-height: 1.55; }
  .hero__ctaRow { gap: 0.6rem; margin-bottom: 1.4rem; flex-direction: column; align-items: stretch; }
  .hero__ctaRow .btn--text { display: inline-flex; justify-content: center; }
  .hero__bullets { gap: 0.8rem; font-size: 12.5px; }
  .hero__grid { gap: 2rem; }

  /* portrait — smaller, more compact */
  .hero__portrait { max-width: 320px; }
  .hero__portraitFrame { aspect-ratio: 1 / 1; border-radius: var(--r-md); }
  .hero__portrait figcaption { text-align: center; align-items: center; }
  .hero__portrait figcaption strong { font-size: 19px; }
  .hero__portrait figcaption span { font-size: 12px; }
  .hero__portraitMeta { font-size: 10px !important; }

  .hero__quoteBlock { padding: 1.1rem 1rem 1.1rem 1.6rem; }
  .hero__quoteBlock p { font-size: 1rem; line-height: 1.45; }
  .hero__quoteSig { font-size: 10px; }

  .hero__belt { grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
  .belt__item { padding: 1.1rem 1rem; gap: 0.3rem; }
  .belt__item:nth-child(2n) { border-right: 0; }
  .belt__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .belt__num { font-size: 1.6rem; }
  .belt__lbl { font-size: 10px; letter-spacing: 0.12em; }

  /* PRESS */
  .press { padding: 1.4rem var(--pad); }
  .press__inner { gap: 0.8rem; }
  .press__lbl { font-size: 10px; }
  .press__logos { gap: 0.8rem 1.2rem; font-size: 12px; row-gap: 0.6rem; }

  /* HEADINGS */
  .h2 { font-size: clamp(1.7rem, 7vw, 2.3rem); }
  .kicker { font-size: 10px; letter-spacing: 0.16em; padding: 5px 10px; }
  .dek { font-size: 14.5px; }

  /* FRAMEWORK */
  .framework { padding: 3rem var(--pad); }
  .framework__head { margin-bottom: 2rem; }
  .framework__list { grid-template-columns: 1fr; border-radius: var(--r-md); }
  .framework__list .framework__item { border-right: 0; padding: 1.6rem 1.3rem 1.4rem; }
  .framework__num { font-size: 22px; top: 1rem; right: 1.2rem; }
  .framework__icon { width: 48px; height: 48px; font-size: 19px; margin-bottom: 1rem; }
  .framework__item h3 { font-size: 1.06rem; }
  .framework__item p { font-size: 14px; }
  .framework__pill { bottom: 1rem; right: 1rem; font-size: 9.5px; padding: 3px 8px; }
  .framework__cta { margin-top: 2rem; }

  /* SPLIT */
  .split { padding: 3rem var(--pad); }
  .split__inner { gap: 1.8rem; }
  .split__image { aspect-ratio: 4 / 5; max-width: 420px; }
  .split__badge { padding: 10px 12px; font-size: 10px; min-width: 78px; }
  .split__badge i { font-size: 15px; }
  .split__badge em { font-size: 12px; }
  .split__text { gap: 0.9rem; }
  .split__text p { font-size: 15px; line-height: 1.6; }
  .split__credentials { padding-top: 1.1rem; gap: 0.5rem; }
  .split__credentials li { font-size: 13.5px; }
  .steps li { padding: 1rem; gap: 0.9rem; }
  .steps__num { font-size: 28px; width: 32px; }
  .steps li h3 { font-size: 16px; }
  .steps li p { font-size: 13.5px; }

  /* NUMBERS */
  .numbers { padding: 3rem var(--pad); }
  .numbers__inner .h2 { margin-bottom: 1.8rem; }
  .numbers__grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .numbers__item { padding: 1.3rem 0.6rem; gap: 0.3rem; }
  .numbers__item:nth-child(2n) { border-right: 0; }
  .numbers__item:nth-child(-n+2) { border-bottom: 1px solid rgba(245, 230, 211, 0.15); }
  .numbers__big { font-size: 2.4rem; }
  .numbers__lbl { font-size: 12.5px; }
  .numbers__sub { font-size: 11px; }

  /* VOICES */
  .voices { padding: 3rem 0; }
  .voice { flex: 0 0 calc(100vw - 3rem); padding: 1.2rem; } /* one card visible at a time */
  .voices__head { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 1.8rem; }
  .voices__rating { align-items: flex-start; }
  .voices__rating strong { font-size: 20px; }
  .voices__track { animation-duration: 90s; } /* slower scroll on mobile so each card is readable */

  /* FAQ */
  .faq { padding: 3rem var(--pad); }
  .faq__head { margin-bottom: 1.8rem; }
  .faq summary { font-size: 15px; padding: 1rem 0; }
  .faq details { padding: 0 1.1rem; }
  .faq details p { font-size: 13.5px; padding-bottom: 1.1rem; }

  /* FINAL CTA */
  .finalCta { padding: 3.5rem var(--pad); }
  .finalCta__title { font-size: clamp(1.9rem, 8.5vw, 2.6rem); line-height: 1.05; }
  .finalCta__lead { font-size: 14.5px; margin-bottom: 1.6rem; }
  .finalCta__note { font-size: 11px; }

  /* FOOTER */
  .foot { padding: 2.6rem var(--pad) 1.2rem; }
  .foot__top { gap: 1.8rem; padding-bottom: 1.6rem; }
  .foot__cols { grid-template-columns: 1fr 1fr; gap: 1.2rem 1rem; }
  .foot__cols h4 { margin-bottom: 0.7rem; font-size: 10px; }
  .foot__cols a, .foot__btn { font-size: 13px; }
  .foot__bottom { font-size: 10.5px; gap: 0.5rem; }

  /* STICKY CTA */
  .stickyCta__inner { gap: 0; padding: 8px 0.8rem; }
  .stickyCta__lbl { display: none; }   /* free up width for the long Chinese button */
  .stickyCta .btn--cta { width: 100%; }

  /* CTA BUTTONS — long Chinese text */
  .btn--cta { padding: 12px 16px; font-size: 13px; gap: 0.45em; }
  .btn--xl.btn--cta { padding: 14px 18px; font-size: 14px; }
  .btn--lg.btn--cta { padding: 13px 16px; font-size: 13px; }
  .btn__icon { width: 16px; height: 16px; }
  .btn--cta > i:last-child { font-size: 11px; }

  /* QUIZ MODAL */
  .modal { padding: 0.8rem; }
  .modal__panel { padding: 2rem 1.1rem 1.2rem; max-height: 92vh; }
  .quiz__opt { grid-template-columns: 36px 1fr 14px; padding: 0.85rem 0.9rem; gap: 0.7rem; }
  .quiz__letter { width: 36px; height: 36px; font-size: 15px; }
  .quiz__txt strong { font-size: 14px; }
  .quiz__txt em { font-size: 13px; }
}

/* ===== VERY SMALL (compact phones) ===== */
@media (max-width: 380px) {
  :root { --pad: 1rem; }
  .hero__h1 { font-size: clamp(1.85rem, 9.5vw, 2.4rem); }
  .belt__num { font-size: 1.4rem; }
  .btn--cta { font-size: 12.5px; padding: 11px 14px; }
  .stickyCta .btn--cta { font-size: 12.5px; padding: 11px 12px; gap: 0.35em; }
  .voice { padding: 1rem; }
  .voice__body { font-size: 13.5px; }
  .foot__cols { grid-template-columns: 1fr; }
}

/* small reveal-on-scroll polish (optional, JS-driven) */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s ease, transform .8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* prevent body scroll when modal open */
body.modal-open { overflow: hidden; }
