/* ============================================================
   VISHPHA BEAUTY — styles.css
   Brand palette:
     Brand brown  #564941 (primary CTA / accent — from logo)
     Brown dark   #3D332D (hover / promo bar)
     Brown light  #F2EDE8 (tinted backgrounds)
     White  #FFFFFF (page base)
     Near-black #1A1A1A (ink)
     Mocha  #B8896F (brand warmth / cover colour)
     Cream  #F7F2ED (warm white sections)
     Mid    #6B6560 (body text muted)
   Fonts:
     Display  → Plus Jakarta Sans (closest to Atyp Display — geometric, bold, clean)
     Body     → DM Sans (closest to Neurial Grotesk — neutral, modern sans)
   ============================================================ */

/* ── TOKENS ── */
:root {
  /* Palette — Sage & Warm Neutral theme */
  --brand:       #6B9968;
  --brand-dark:  #4D7A4A;
  --brand-light: #EDF3ED;
  /* --green aliases */
  --green:       #6B9968;
  --green-dark:  #4D7A4A;
  --green-light: #EDF3ED;
  --ink:         #1C1916;
  --muted:       #6B6560;
  --border:      rgba(28,25,22,.1);
  --mocha:       #8A9E76;
  --mocha-light: #EBF0E6;
  --cream:       #F6F4F0;
  --white:       #FFFFFF;
  --dark-bg:     #141210;
  --promo-green: #5A8A57;

  /* Fonts */
  --display: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --body:    'DM Sans', -apple-system, sans-serif;

  /* Easing */
  --expo:    cubic-bezier(.16,1,.3,1);
  --spring:  cubic-bezier(.34,1.56,.64,1);
  --smooth:  cubic-bezier(.25,.46,.45,.94);

  /* Layout */
  --max:    1280px;
  --pad:    clamp(20px, 4vw, 52px);
  --sec:    clamp(80px, 11vw, 130px);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--body);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width:100%; height:auto; display:block; }
button { border:none; background:none; cursor:pointer; font-family:inherit; }

/* ── SCROLL REVEAL ── */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--expo), transform .7s var(--expo);
}
.sr.visible { opacity:1; transform:translateY(0); }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(247,242,237,.6); }

/* ── SECTION HEADINGS ── */
.section-h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -.03em;
}
.section-h2-light { color: var(--white); }

.section-sub {
  font-size: clamp(.9rem, 1.5vw, 1rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  font-weight: 300;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .05em;
  padding: 14px 28px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform .4s var(--spring),
    box-shadow .35s var(--smooth),
    background .25s,
    color .25s,
    border-color .25s;
}

/* shimmer on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transition: left .5s var(--smooth);
  pointer-events: none;
}
.btn:hover::before { left: 160%; }

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 2px 14px rgba(107,153,104,.3);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,153,104,.42);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost-hero {
  background: rgba(255,255,255,.08);
  color: rgba(247,242,237,.88);
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn-ghost-hero:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.38);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-cream {
  background: var(--cream);
  color: var(--brand-dark);
  font-weight: 700;
  box-shadow: 0 2px 14px rgba(0,0,0,.12);
}
.btn-cream:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}

.btn-sm { padding: 10px 20px; font-size: .74rem; border-radius: 5px; }

/* ── CURSOR ── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
}
.cur-dot {
  position: absolute;
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.cur-ring {
  position: absolute;
  width: 32px; height: 32px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  opacity: .35;
  transform: translate(-50%,-50%);
  transition: width .25s var(--expo), height .25s var(--expo), opacity .2s;
}
.cursor.hov .cur-ring { width: 52px; height: 52px; opacity: .55; }
@media (hover:none) { .cursor { display:none; } }

/* ══════════════════════════════════════════
   LOADER
══════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s var(--expo), visibility .7s;
}
.loader.out { opacity:0; visibility:hidden; pointer-events:none; }

.loader-body { display:flex; flex-direction:column; align-items:center; gap:24px; }

.loader-icon {
  width: 56px; height: auto;
  color: var(--green);
  animation: lpulse 1.6s ease-in-out infinite;
}
@keyframes lpulse {
  0%,100% { opacity:.3; transform:scale(.94); }
  50%      { opacity:.8; transform:scale(1); }
}

.loader-bar {
  width: 90px; height: 1.5px;
  background: rgba(107,153,104,.15);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0;
  background: var(--brand);
  transition: width .3s var(--smooth);
}

/* ══════════════════════════════════════════
   PROMO BAR
══════════════════════════════════════════ */
.promo-bar {
  background: var(--promo-green);
  color: rgba(255,255,255,.92);
  padding: 9px var(--pad);
  position: relative;
  z-index: 100;
}
.promo-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--body);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .08em;
  flex-wrap: wrap;
}
.promo-dot { color: rgba(255,255,255,.4); opacity: 1; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background .4s, box-shadow .4s, transform .5s var(--expo);
}
.header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 28px rgba(26,26,26,.07);
}
.header.hide { transform: translateY(-100%); }

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad);
  height: 68px;
  gap: 16px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--body);
  font-weight: 400;
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--green);
  transition: width .35s var(--expo);
}
.nav-link:hover { color: var(--green); }
.nav-link:hover::after { width: 100%; }

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .25s;
}
.logo-link:hover { opacity: .75; }
.logo-svg {
  height: 48px;
  width: auto;
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--ink);
  position: relative;
  transition: background .22s, color .22s, transform .3s var(--spring);
}
.icon-btn:hover {
  background: var(--green-light);
  color: var(--green);
  transform: scale(1.07);
}

.cart-count {
  position: absolute;
  top: 5px; right: 5px;
  width: 14px; height: 14px;
  background: var(--mocha);
  color: var(--white);
  font-size: .52rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.cart-count.show { opacity: 1; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5.5px;
  width: 26px;
  padding: 8px 1px;
  margin-left: 8px;
}
.hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .4s var(--expo), opacity .3s;
  transform-origin: left center;
}
.hamburger.open span:nth-child(1) { transform: rotate(40deg) scaleX(1.1); }
.hamburger.open span:nth-child(2) { transform: rotate(-40deg) scaleX(1.1); }

/* ══════════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.open { pointer-events: auto; visibility: visible; }

.mm-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity .45s var(--expo);
}
.mobile-menu.open .mm-overlay { opacity: 1; }

.mm-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(380px, 90vw);
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform .5s var(--expo);
  display: flex;
  flex-direction: column;
  padding: 28px var(--pad);
}
.mobile-menu.open .mm-panel { transform: translateX(0); }

.mm-close {
  align-self: flex-end;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--ink);
  margin-bottom: 36px;
  transition: background .2s;
}
.mm-close:hover { background: var(--green-light); color: var(--green); }

.mm-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.mm-link {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: -.02em;
  transition: color .25s, padding-left .35s var(--expo);
}
.mm-link:hover { color: var(--green); padding-left: 8px; }

.mm-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.mm-footer p {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.8;
  opacity: .7;
}

/* ══════════════════════════════════════════
   HERO SCROLL CONTAINER
══════════════════════════════════════════ */
.hero-scroll-container {
  position: relative;
  height: 100vh;
  height: 100dvh;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: sticky;
  top: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Background stack */
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  position: absolute; inset: 0;
  background-image: url('assets/images/bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(14,11,9,.72) 0%, rgba(14,11,9,.28) 55%, transparent 80%),
    linear-gradient(0deg, rgba(10,8,6,.55) 0%, transparent 65%);
}
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px var(--pad) 80px;
  width: 100%;
  align-items: center;
  gap: 60px;
  will-change: transform;
}

/* TEXT */
.hero-text { display: flex; flex-direction: column; }

.hero-kicker {
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(160,210,150,.85);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--expo), transform .6s var(--expo);
}
.hero-kicker.in { opacity:1; transform:translateY(0); }

.hero-h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 26px;
}
.h1-line {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  color: #faf7f4;
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .85s var(--expo), transform .85s var(--expo);
}
.h1-line.h1-italic {
  font-style: italic;
  font-weight: 300;
  color: rgba(250,247,244,.6);
}
.h1-line.in { opacity:1; transform:translateY(0); }

.hero-desc {
  font-size: clamp(.88rem, 1.5vw, 1rem);
  color: rgba(250,247,244,.65);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--expo), transform .8s var(--expo);
}
.hero-desc.in { opacity:1; transform:translateY(0); }

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--expo), transform .8s var(--expo);
}
.hero-btns.in { opacity:1; transform:translateY(0); }

/* Proof stats */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s var(--expo) .8s, transform .8s var(--expo) .8s;
}
.hero-proof.in { opacity:1; transform:translateY(0); }

.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  color: #faf7f4;
  letter-spacing: -.03em;
  line-height: 1;
}
.proof-label {
  font-size: .64rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250,247,244,.5);
}
.proof-sep {
  width: 1px; height: 32px;
  background: rgba(250,247,244,.2);
  flex-shrink: 0;
}

/* VISUAL SIDE */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 1s var(--expo) .25s, transform 1s var(--expo) .25s;
}
.hero-visual.in { opacity:1; transform:translateX(0); }

/* Wrapper that callouts are positioned relative to */
.hero-frame-wrap {
  position: relative;
  width: 100%;
  max-width: none;
  /* Leave space on left for callout pills */
  margin-left: clamp(130px, 16vw, 180px);
  overflow: visible;
}

.hero-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(60,45,38,.4), 0 6px 20px rgba(60,45,38,.2);
}
.hero-frame-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 7s ease;
}
.hero-frame:hover .hero-frame-img { transform: scale(1.05); }

.hero-frame-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero frame — scroll-scrubbed video (alpha-transparent WebM) */
.hero-frame--video {
  aspect-ratio: 1 / 1;
  background: transparent;
  box-shadow: none;
  transform: scale(1.8) translateX(20px);
  transform-origin: center center;
  will-change: transform;
  border-radius: 0;
  overflow: visible;
}
.hero-frame--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: transparent;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.35)) drop-shadow(0 4px 10px rgba(0,0,0,.2));
}

/* Ingredient callouts */
.callout {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 100px;
  padding: 9px 16px;
  opacity: 0;
  transform: translateY(10px) scale(.96);
  transition: opacity .6s var(--expo), transform .6s var(--expo);
  box-shadow: 0 8px 28px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.1);
  white-space: nowrap;
}
.callout.in { opacity:1; transform:translateY(0) scale(1); }
.callout:hover { transform: translateY(-3px) scale(1.02) !important; }

.c1 { top: 12%; left: -30%; }
.c2 { top: 44%; left: -26%; }
.c3 { bottom: 12%; left: -24%; }

.callout-pip {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.callout-body { display: flex; flex-direction: column; }
.callout-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: .76rem;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -.01em;
}
.callout-role {
  font-family: var(--body);
  font-size: .64rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.3;
}

/* Scroll cue */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250,247,244,.4);
  opacity: 0;
  animation: sfade 1s var(--expo) 2s forwards;
}
@keyframes sfade { to { opacity:1; } }

.scroll-line {
  width: 1px; height: 44px;
  background: rgba(250,247,244,.18);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  background: rgba(250,247,244,.55);
  animation: sscroll 1.8s ease-in-out infinite;
}
@keyframes sscroll {
  0%   { top: -50%; }
  100% { top: 100%; }
}

/* ══════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════ */
.trust {
  background: #EFF6EF;
  border-bottom: 1px solid rgba(107,153,104,.12);
}
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: .76rem;
  font-weight: 400;
  color: var(--muted);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s var(--expo), transform .55s var(--expo);
}
.trust-item.visible { opacity:1; transform:translateY(0); }
.trust-item svg { color: var(--green); opacity: .65; flex-shrink: 0; }

.trust-sep {
  width: 1px; height: 18px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════ */
.products {
  padding: var(--sec) var(--pad);
  background: var(--white);
}
.products-inner { max-width: var(--max); margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pcard {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .55s var(--spring), box-shadow .55s var(--smooth);
}
.pcard:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(107,153,104,.14), 0 6px 16px rgba(26,26,26,.06);
}
.pcard-featured {
  border-color: rgba(107,153,104,.22);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(107,153,104,.1);
}

.pcard-flag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--green);
  color: var(--white);
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 4px;
}

.pcard-img-link { display: block; line-height: 0; }

.pcard-img-wrap {
  height: 240px;
  background: linear-gradient(145deg, #ede8df, #e0d8cd);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

/* Coloured top accent per card */
.pcard--rose  { border-top: 3px solid #c4857e; }
.pcard--sage  { border-top: 3px solid #7a9e7a; }
.pcard--amber { border-top: 3px solid #c4a040; }
.pcard--slate { border-top: 3px solid #7a82a8; }

/* Per-card label colours */
.pcard--rose  .pcard-label { color: #b07068; }
.pcard--sage  .pcard-label { color: #5a7a5a; }
.pcard--amber .pcard-label { color: #9a7a30; }
.pcard--slate .pcard-label { color: #4a5278; }

/* Best Seller flag matches sage */
.pcard--sage .pcard-flag { background: #7a9e7a; }

/* ── PRODUCT PLACEHOLDERS ── */
.pcard-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Shared soft geometric shape in centre */
.pcard-placeholder::before {
  content: '';
  display: block;
  border-radius: 50%;
  opacity: .18;
  transition: transform .55s var(--smooth);
}
.pcard:hover .pcard-placeholder::before { transform: scale(1.08); }

/* Per-card colour tones — each product has its own identity */

/* Claractone — dusty rose / clay */
.pcard-placeholder--1 {
  background: linear-gradient(160deg, #e8cfc8 0%, #d4b0a8 100%);
}
.pcard-placeholder--1::before {
  width: 72px; height: 118px;
  border-radius: 36px;
  background: #b07068;
  opacity: .22;
}

/* Clarimide — soft sage green */
.pcard-placeholder--2 {
  background: linear-gradient(160deg, #ccd9cc 0%, #b3c4b3 100%);
}
.pcard-placeholder--2::before {
  width: 80px; height: 110px;
  border-radius: 40px;
  background: #5a7a5a;
  opacity: .2;
}

/* Calric — warm amber / honey */
.pcard-placeholder--3 {
  background: linear-gradient(160deg, #e8d5a8 0%, #d4be88 100%);
}
.pcard-placeholder--3::before {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: #9a7a30;
  opacity: .22;
}

/* Claric Eye — dusty lavender / blue-grey */
.pcard-placeholder--4 {
  background: linear-gradient(160deg, #ccd0dc 0%, #b4bad0 100%);
}
.pcard-placeholder--4::before {
  width: 108px; height: 52px;
  border-radius: 26px;
  background: #4a5278;
  opacity: .2;
}
.pcard-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--smooth);
}
.pcard:hover .pcard-img { transform: scale(1.07); }

.pcard-body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.pcard-label {
  font-family: var(--body);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.pcard-rating {
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 600;
  color: #B8860B;
}

.pcard-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -.025em;
}
.pcard-body p {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}

.pcard-apis {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}
.pcard-apis span {
  font-size: .62rem;
  font-weight: 500;
  padding: 3px 9px;
  border: 1px solid rgba(107,153,104,.2);
  border-radius: 4px;
  color: var(--brand-dark);
  background: var(--brand-light);
  letter-spacing: .04em;
}

.pcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}
.pcard-price { display: flex; flex-direction: column; gap: 2px; }
.price-main {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}
.price-sub {
  font-size: .68rem;
  color: var(--green);
  font-weight: 500;
}

/* 3-column product grid override */
.products-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.pcard-subtitle {
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  margin-top: -6px;
}

/* INCI Accordion */
.inci-details {
  margin: 12px 0 10px;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.inci-toggle {
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: .04em;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  user-select: none;
  transition: color .2s;
}
.inci-toggle::-webkit-details-marker { display: none; }
.inci-toggle span {
  font-size: 1rem;
  font-weight: 300;
  color: var(--green);
  transition: transform .3s var(--expo);
  flex-shrink: 0;
}
.inci-details[open] .inci-toggle span { transform: rotate(45deg); }
.inci-details:hover .inci-toggle { color: var(--green-dark); }
.inci-list {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  margin-top: 8px;
  padding: 10px 12px;
  background: var(--green-light);
  border-radius: 6px;
  letter-spacing: .01em;
}

/* Directions */
.pcard-directions {
  font-size: .77rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  margin: 10px 0 14px;
  padding: 10px 12px;
  border-left: 2px solid var(--brand);
  background: var(--mocha-light);
  border-radius: 0 6px 6px 0;
}
.pcard-directions strong {
  font-weight: 600;
  color: var(--ink);
  font-size: .7rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

/* Product legal warning */
.product-warning {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  text-align: center;
  max-width: 760px;
  margin: 32px auto 0;
  padding: 16px 20px;
  background: rgba(107,153,104,.06);
  border: 1px solid rgba(107,153,104,.16);
  border-radius: 8px;
  letter-spacing: .01em;
}

.products-cta {
  text-align: center;
  margin-top: 52px;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about {
  padding: var(--sec) var(--pad);
  background: var(--cream); /* #F4F8F4 */
}
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack { position: relative; }
.about-img-main {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(26,26,26,.12);
}

/* About image — no photo yet */
.about-img-placeholder {
  background: linear-gradient(160deg, #b8ceb4 0%, #a8bea4 40%, #c0d4bc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder::before {
  content: '';
  display: block;
  width: 90px; height: 140px;
  border-radius: 45px;
  background: rgba(107,153,104,.15);
  border: 1px solid rgba(107,153,104,.25);
}

.about-card-float {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--brand-dark);
  color: var(--white);
  border-radius: 12px;
  padding: 22px 24px;
  max-width: 240px;
  box-shadow: 0 12px 40px rgba(44,74,44,.38);
}
.acf-label {
  display: block;
  font-family: var(--body);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(247,242,237,.5);
  margin-bottom: 10px;
}
.acf-text {
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(247,242,237,.9);
  line-height: 1.5;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-text .section-h2 { margin-bottom: 22px; }
.about-text .section-sub { margin-bottom: 14px; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0 36px;
}
.av-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.av-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-light);
  border-radius: 10px;
  color: var(--green);
  flex-shrink: 0;
  transition: background .25s;
}
.av-item:hover .av-icon { background: rgba(107,153,104,.18); }
.av-item strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.av-item p {
  font-size: .84rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════════
   RITUAL
══════════════════════════════════════════ */
.ritual {
  padding: var(--sec) var(--pad);
  background: var(--green-light); /* #EBF2EB */
  color: var(--ink);
}
.ritual-inner { max-width: var(--max); margin: 0 auto; }

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(107,153,104,.12);
}
.ritual-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.rstep {
  padding: 48px 32px 48px 0;
  border-right: 1px solid rgba(107,153,104,.1);
  transition: background .3s;
  padding-right: 28px;
}
.rstep:last-child { border-right: none; }
.rstep + .rstep { padding-left: 28px; padding-right: 28px; }
.rstep:hover { background: rgba(107,153,104,.04); }

.rstep-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 3rem;
  color: rgba(107,153,104,.12);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -.04em;
}
.rstep-line {
  width: 28px; height: 2px;
  background: var(--brand);
  margin-bottom: 20px;
  transition: width .4s var(--expo);
}
.rstep:hover .rstep-line { width: 44px; }

.rstep h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -.025em;
}
.rstep p {
  font-size: .84rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 18px;
}
.rstep-product {
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: .04em;
  cursor: pointer;
  transition: color .25s;
}
.rstep:hover .rstep-product { color: var(--brand-dark); }

/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.reviews {
  padding: var(--sec) var(--pad);
  background: var(--white);
}
.reviews-inner { max-width: var(--max); margin: 0 auto; }

.agg-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.agg-stars {
  color: #C8A020;
  font-size: 1rem;
  letter-spacing: .05em;
}
.agg-text {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 400;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}

.rcard {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .5s var(--spring), box-shadow .5s var(--smooth);
}
.rcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(107,153,104,.12);
}

.rcard-stars {
  color: #C8A020;
  font-size: .88rem;
  letter-spacing: .08em;
}

.rcard blockquote {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -.02em;
}
.rcard p {
  font-size: .84rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.72;
  flex: 1;
}
.rcard-footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.rcard-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: .82rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.rcard-product {
  font-size: .7rem;
  color: var(--green);
  font-weight: 500;
}

.all-reviews-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  transition: color .25s;
}
.all-reviews-link span { transition: transform .3s var(--expo); }
.all-reviews-link:hover { color: var(--green); }
.all-reviews-link:hover span { transform: translateX(5px); }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-section {
  padding: var(--sec) var(--pad);
  text-align: center;
  background: var(--mocha-light); /* #E4EFE4 */
  border-top: 1px solid rgba(107,153,104,.15);
  border-bottom: 1px solid rgba(107,153,104,.15);
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
}
.cta-h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -.035em;
  line-height: 1.05;
}
.cta-h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}
.cta-desc {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 40px;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════ */
.newsletter {
  padding: 72px var(--pad);
  background: var(--cream); /* #F4F8F4 */
  border-top: 1px solid rgba(107,153,104,.12);
}
.newsletter-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.nl-left .eyebrow { margin-bottom: 12px; }
.nl-h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.025em;
}

.nl-form { display: flex; flex-direction: column; gap: 10px; }
.nl-row { display: flex; gap: 10px; }
.nl-row input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  font-family: var(--body);
  font-size: .85rem;
  color: var(--ink);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.nl-row input::placeholder { color: var(--muted); opacity: .55; }
.nl-row input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(107,153,104,.15);
}
.nl-fine {
  font-size: .7rem;
  color: var(--muted);
  opacity: .6;
  padding-left: 2px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: #0f0e0c;
  color: rgba(228,222,214,.4);
  padding: 80px var(--pad) 40px;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 60px;
}

.footer-brand { max-width: 320px; }
.footer-logo {
  height: 40px; width: auto;
  margin-bottom: 18px;
  /* Make the dark brown SVG appear cream/light on the dark footer */
  filter: brightness(0) invert(1) opacity(0.35);
}
.footer-brand p {
  font-size: .83rem;
  line-height: 1.72;
  font-weight: 300;
  margin-bottom: 24px;
}

/* Payment method badges */
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.pay-badge {
  font-family: var(--body);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(200,190,175,.12);
  color: rgba(228,220,208,.45);
  background: rgba(200,190,175,.04);
  white-space: nowrap;
}

/* Footer legal block */
.footer-legal {
  border-top: 1px solid rgba(200,190,175,.1);
  border-bottom: 1px solid rgba(200,190,175,.1);
  padding: 22px 0;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-legal p {
  font-size: .74rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(228,220,208,.3);
}
.footer-legal strong { color: rgba(228,220,208,.55); font-weight: 600; }
.footer-legal a { color: rgba(228,220,208,.4); text-decoration: underline; text-underline-offset: 2px; }
.footer-legal a:hover { color: rgba(228,220,208,.7); }

.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(200,190,175,.12);
  color: rgba(228,220,208,.35);
  transition: background .25s, color .25s, border-color .25s;
}
.social-btn:hover {
  background: rgba(200,190,175,.12);
  color: rgba(228,220,208,.85);
  border-color: rgba(200,190,175,.3);
}

.footer-col h4 {
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(228,220,208,.6);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: .82rem;
  font-weight: 300;
  color: rgba(228,220,208,.35);
  padding: 5px 0;
  transition: color .22s, padding-left .3s var(--expo);
}
.footer-col a:hover { color: rgba(228,220,208,.75); padding-left: 5px; }

.footer-bottom {
  border-top: 1px solid rgba(200,190,175,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: .74rem; font-weight: 300; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* ── Tablet landscape ── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .ritual-grid { grid-template-columns: repeat(2, 1fr); }
  .ritual-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── Tablet portrait ── */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Mobile landscape / small tablet ── */
@media (max-width: 768px) {
  /* Header */
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .logo-svg { height: 36px; }
  .header-inner { height: 54px; }

  /* Promo bar — tighten for small screens */
  .promo-inner { gap: 10px; font-size: .65rem; }
  .promo-dot { display: none; }

  /* Hero — stack vertically, text first */
  .hero-content {
    grid-template-columns: 1fr;
    padding: 48px var(--pad) 52px;
    gap: 36px;
    text-align: center;
  }
  .hero-text { align-items: center; }
  .hero-desc { max-width: 100%; }
  .hero-btns { justify-content: center; max-width: 100%; }
  .hero-proof { justify-content: center; max-width: 100%; }
  .c1, .c2, .c3 { display: none; }
  .hero-frame-wrap { margin-left: 0; max-width: 340px; margin: 0 auto; }
  .hero-frame--video { transform: scale(1.8); }

  /* Sections */
  .products-grid-3 { grid-template-columns: 1fr 1fr; }
  .ritual-grid { grid-template-columns: 1fr 1fr; }
  .ritual-grid-3 { grid-template-columns: 1fr 1fr; }
  .rstep { padding: 28px 16px; }
  .rstep-num { font-size: 2.2rem; margin-bottom: 12px; }

  .reviews-grid { grid-template-columns: 1fr; }

  /* About */
  .about-img-main { aspect-ratio: 3/2; }
  .about-card-float { position: static; max-width: 100%; margin-top: 14px; border-radius: 10px; }

  /* CTA */
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Newsletter */
  .nl-row { flex-direction: column; }
  .nl-row .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .footer-legal { text-align: center; }
  .footer-brand { max-width: 100%; }
  .footer-payments { justify-content: center; }
  .footer-socials { justify-content: center; }

  /* Trust strip */
  .trust-sep { display: none; }
  .trust-inner { gap: 14px; }
  .trust-item { font-size: .72rem; }
}

/* ── iPhone (≤430px) ── */
@media (max-width: 430px) {
  /* Promo */
  .promo-inner {
    flex-direction: column;
    gap: 2px;
    font-size: .62rem;
    text-align: center;
    padding: 7px var(--pad);
  }

  /* Header */
  .header-inner { height: 52px; }
  .logo-svg { height: 32px; }
  /* keep only essential icons on very small screens */
  .icon-btn:not(.cart-btn):not([aria-label="Account"]) { display: none; }

  /* Hero */
  .hero-content {
    padding: 36px 20px 44px;
    gap: 28px;
  }
  .h1-line {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }
  .hero-desc {
    font-size: .85rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 32px;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
  }
  .hero-proof {
    gap: 14px;
  }
  .proof-num { font-size: 1.1rem; }
  .proof-label { font-size: .58rem; }
  .proof-sep { height: 24px; }
  .hero-frame-wrap { max-width: 280px; }
  .hero-scroll-hint { display: none; }

  /* Products */
  .products { padding: 56px 20px; }
  .products-grid { grid-template-columns: 1fr; gap: 14px; }
  .products-grid-3 { grid-template-columns: 1fr; }
  .pcard-img-wrap { height: 200px; }
  .pcard-body { padding: 18px 16px 20px; }
  .pcard-body h3 { font-size: 1.05rem; }
  .pcard-body p { font-size: .8rem; }

  /* About */
  .about { padding: 56px 20px; }
  .about-inner { gap: 32px; }
  .about-img-main { aspect-ratio: 4/3; border-radius: 10px; }
  .av-icon { width: 34px; height: 34px; border-radius: 8px; }
  .about-values { gap: 14px; margin: 24px 0 28px; }

  /* Ritual */
  .ritual { padding: 56px 20px; }
  .ritual-grid { grid-template-columns: 1fr; }
  .ritual-grid-3 { grid-template-columns: 1fr; }
  .rstep {
    padding: 22px 0;
    border-right: none;
    border-bottom: 1px solid rgba(107,153,104,.1);
  }
  .rstep:last-child { border-bottom: none; }
  .rstep + .rstep { padding-left: 0; }
  .rstep h3 { font-size: 1.1rem; }
  .rstep p { font-size: .82rem; }
  .rstep-num { font-size: 2rem; margin-bottom: 10px; }

  /* Reviews */
  .reviews { padding: 56px 20px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .rcard { padding: 22px 18px; }
  .rcard blockquote { font-size: 1rem; }

  /* CTA */
  .cta-section { padding: 56px 20px; }
  .cta-h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .cta-desc { font-size: .88rem; margin-bottom: 28px; }

  /* Newsletter */
  .newsletter { padding: 52px 20px; }
  .newsletter-inner { gap: 24px; }
  .nl-h3 { font-size: 1.3rem; }
  .nl-row input { padding: 13px 16px; font-size: .82rem; }

  /* Trust strip */
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 18px 20px;
  }
  .trust-item { font-size: .7rem; }

  /* Section headings */
  .section-h2 { font-size: clamp(1.9rem, 8vw, 2.6rem); margin-bottom: 14px; }
  .section-head { margin-bottom: 40px; }

  /* Footer */
  .footer { padding: 52px 20px 32px; }
  .footer-top { gap: 20px; }
  .footer-col h4 { margin-bottom: 12px; }
  .footer-col a { padding: 4px 0; }
  .footer-payments { gap: 5px; }
  .pay-badge { font-size: .58rem; padding: 3px 8px; }
  .footer-legal p { font-size: .7rem; }
  .footer-bottom p { font-size: .7rem; }
}
