/* ============================================================
   REVIVA KOLAGEN · JoKaPROskin landing
   Editorial premium beauty system
   ============================================================ */

:root {
  /* base palette */
  --ivory: #FAF6EF;
  --ivory-2: #F4ECDF;
  --cream: #EFE6D5;
  --sand: #E5D6BD;
  --nude: #EEDDCC;
  --pearl: #F8F1EA;
  --white: #ffffff;

  /* brand teal — matched to Reviva Kolagen logotype */
  --teal: #4FBAAF;
  --teal-bright: #6FD0C4;
  --teal-deep: #2A7D74;
  --teal-ink: #143E3A;
  --teal-soft: #CDE9E5;
  --teal-tint: #EAF5F3;

  /* magenta (logo swirl) */
  --magenta: #C73B86;
  --pink: #F06EA9;
  --rose: #F2D6E3;

  /* gold accent */
  --gold: #B89968;
  --gold-soft: #DDC9A5;

  /* neutrals */
  --ink: #1A1816;
  --ink-soft: #3A352E;
  --muted: #6B6358;
  --line: #E2D9CB;
  --line-soft: #ECE3D3;

  /* radii + motion */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 36px;
  --ease: cubic-bezier(.2,.7,.2,1);

  /* type */
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============== TYPOGRAPHY ============== */
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.2vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--teal-deep);
}
.display__accent {
  font-style: italic;
  font-weight: 300;
  color: var(--teal-deep);
}
.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.h-display em {
  font-style: italic;
  color: var(--teal-deep);
}
.h-display--light { color: var(--ivory); }
.h-display--light em { color: var(--teal-bright); }

.lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 36px;
}
.copy { color: var(--ink-soft); line-height: 1.65; max-width: 60ch; margin: 0 0 18px; }
.copy--light { color: rgba(250,246,239,0.85); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
}
.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
}
.eyebrow--light { color: rgba(250,246,239,0.7); }
.eyebrow--light .eyebrow__dot { background: var(--teal-bright); }
.eyebrow--dark { color: var(--teal-deep); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn__icon { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover .btn__icon { transform: translateX(3px); }

.btn--primary {
  background: var(--ink);
  color: var(--ivory);
}
.btn--primary:hover { background: var(--teal-deep); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--ivory); }

.btn--inverse {
  background: var(--ivory);
  color: var(--ink);
}
.btn--inverse:hover { background: var(--teal-bright); color: var(--ink); }

.btn--outline-light {
  background: transparent;
  border-color: rgba(250,246,239,0.4);
  color: var(--ivory);
}
.btn--outline-light:hover { border-color: var(--ivory); background: rgba(250,246,239,.08); }

.btn--small { padding: 10px 18px; font-size: 13.5px; }
.btn--large { padding: 18px 32px; font-size: 16px; }
.btn--block { display: flex; justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 14px;
  color: var(--teal-deep); text-decoration: none;
  border-bottom: 1px solid var(--teal-soft);
  padding-bottom: 2px;
  transition: gap .25s var(--ease);
}
.link-arrow svg { width: 14px; height: 14px; }
.link-arrow:hover { gap: 12px; }

/* ============== SECTION HEADS ============== */
.section-head {
  max-width: 760px;
  margin: 0 0 64px;
}
.section-head--center { margin: 0 auto 64px; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head__lede {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
.section-head__lede--light { color: rgba(250,246,239,.75); }

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,246,239,0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.is-scrolled { border-color: var(--line-soft); }
.nav__inner {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 72px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.brand-logo {
  height: 30px;
  width: auto;
  display: block;
}
.brand-logo--footer { filter: brightness(0) invert(1) opacity(.95); height: 32px; }
.brand-divider {
  width: 1px;
  height: 22px;
  background: var(--line);
  display: inline-block;
}
.nav__brand--footer .brand-divider { background: rgba(250,246,239,.2); }
.brand-sub {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.nav__brand--footer .brand-sub { color: rgba(250,246,239,.55); }
/* legacy classes (kept for any remaining usage) */
.brand-skin {
  height: 20px;
  width: auto;
  display: block;
}
.brand-skin--footer {
  height: 22px;
  filter: brightness(0) invert(1) opacity(.92);
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 8px 22px -10px rgba(199,59,134,.25);
}
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word__primary {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 16px;
  color: var(--ink);
}
.brand-word__sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.nav__links a:hover { color: var(--teal-deep); }
.nav__cta { margin-left: 4px; }
.nav__burger {
  display: none;
  background: none; border: none; padding: 8px;
  margin-left: auto;
  flex-direction: column; gap: 4px;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  transition: transform .25s var(--ease);
}
.nav__sheet {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 16px var(--gutter) 28px;
  background: var(--ivory);
  border-bottom: 1px solid var(--line-soft);
}
.nav__sheet a {
  padding: 14px 0;
  text-decoration: none;
  color: var(--ink);
  font-size: 17px;
  font-family: var(--serif);
  border-bottom: 1px solid var(--line-soft);
}
.nav__sheet a:last-child { border-bottom: none; margin-top: 12px; }

@media (max-width: 920px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__sheet[data-open="true"] { display: flex; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 96px) 0 0;
  background: var(--ivory);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.hero__halo {
  position: absolute;
  top: -10%; right: -15%;
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle at 40% 40%, var(--teal-soft) 0%, transparent 60%);
  filter: blur(40px);
  opacity: .55;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.blob--teal {
  top: -10%; right: -8%;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle at 30% 30%, var(--teal-soft), transparent 70%);
  opacity: .9;
}
.blob--cream {
  bottom: -25%; left: -20%;
  width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, var(--rose), transparent 65%);
  opacity: .35;
}
.grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(26,24,22,.05) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  opacity: .25;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(20px, 4vw, 56px) 0 clamp(48px, 7vw, 92px);
}

.hero__copy { max-width: 600px; }

.hero__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 40px;
}

/* property pills below CTA */
.hero__props {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 540px;
}
.prop {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.prop:hover { border-color: var(--teal-soft); transform: translateY(-2px); }
.prop__icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.prop__icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.prop__text { display: flex; flex-direction: column; line-height: 1.25; }
.prop__text strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  font-style: italic;
  letter-spacing: 0.01em;
}
.prop__text small {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
@media (max-width: 540px) {
  .hero__props { grid-template-columns: 1fr; }
}

/* visual stage */
.hero__visual {
  position: relative;
  min-height: 580px;
  display: flex; flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.hero__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  max-height: 560px;
}
.hero__disc {
  position: absolute;
  left: 50%; top: 48%;
  transform: translate(-50%, -50%);
  width: 86%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff 0%, var(--teal-tint) 40%, var(--teal-soft) 100%);
  box-shadow:
    0 60px 100px -30px rgba(79,186,175,.35),
    inset 0 -40px 80px -40px rgba(42,125,116,.18);
}

.hero__hero-product {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  margin: 0;
  filter: drop-shadow(0 40px 50px rgba(26,24,22,.22));
  z-index: 2;
}
.hero__hero-product img { width: 100%; height: auto; display: block; }

/* stat pills around the product */
.stat-pill {
  position: absolute;
  z-index: 4;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex; flex-direction: column;
  line-height: 1.25;
  box-shadow: 0 20px 40px -20px rgba(26,24,22,.18);
  min-width: 130px;
  transition: transform .35s var(--ease);
}
.stat-pill:hover { transform: translateY(-3px); }
.stat-pill strong {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  color: var(--teal-deep);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  font-feature-settings: "tnum";
}
.stat-pill strong small { font-size: 0.5em; vertical-align: super; opacity: .8; }
.stat-pill > span {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.stat-pill > span small {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.stat-pill--a { top: 4%; right: -4%; }
.stat-pill--b { top: 46%; right: -10%; }
.stat-pill--c { bottom: 6%; left: -4%; }

/* small supporting trio at the bottom of the hero stage */
.hero__trio {
  position: absolute;
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: flex-end; gap: 8px;
  z-index: 1;
  opacity: .72;
}
.hero__trio figure {
  margin: 0;
  width: 70px;
  filter: drop-shadow(0 18px 24px rgba(26,24,22,.18));
}
.hero__trio figure:nth-child(2) { width: 60px; }
.hero__trio img { width: 100%; height: auto; display: block; }

/* trust strip below stage */
.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
}
.hero__trust-row {
  display: inline-flex; align-items: center; gap: 10px;
}
.hero__trust-stars { display: inline-flex; gap: 2px; color: var(--gold); }
.hero__trust-stars svg { width: 14px; height: 14px; }
.hero__trust-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.hero__trust-icon svg { width: 12px; height: 12px; }
.hero__trust-text { font-size: 12.5px; color: var(--ink-soft); letter-spacing: 0.02em; }
.hero__trust-text strong { color: var(--ink); font-weight: 600; }

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 520px; }
  .hero__stage { max-width: 460px; max-height: 460px; }
  .stat-pill--a { right: -2%; }
  .stat-pill--b { right: -2%; }
  .stat-pill--c { left: -2%; }
}
@media (max-width: 540px) {
  .stat-pill { padding: 10px 14px; min-width: 110px; }
  .stat-pill strong { font-size: 26px; }
  .stat-pill > span { font-size: 11px; }
  .stat-pill--a { top: 0; }
  .stat-pill--b { right: -4%; top: 44%; }
  .stat-pill--c { left: -4%; bottom: 2%; }
  .hero__trio { display: none; }
  .hero__trust { padding: 12px 18px; gap: 16px; }
}

/* marquee */
.hero__marquee {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255,255,255,.5);
  overflow: hidden;
  padding: 14px 0;
}
.marquee {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--teal-deep);
}
.marquee span { letter-spacing: 0.03em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* legacy hero classes kept just in case but unused */
.wow-pouch { display: none; }

/* split section: WOW Kolagen image */
.split__visual--wow {
  display: flex; align-items: center; justify-content: center;
}
.split__wow {
  max-height: 280px;
  width: auto;
  filter: drop-shadow(0 24px 36px rgba(26,24,22,.18));
}

@media (max-width: 920px) {
  .legacy-removed { display: none; }
}

/* ============== STORY ============== */
.story { padding: clamp(72px, 9vw, 130px) 0; }
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.story__intro .h-display { margin-bottom: 28px; }
.story__intro .copy { margin-bottom: 28px; }

.timeline {
  list-style: none; padding: 0; margin: 0;
  position: relative;
  display: flex; flex-direction: column;
  gap: 36px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 28px; top: 28px; bottom: 28px;
  width: 1px;
  background: linear-gradient(180deg, var(--line) 0%, var(--teal-soft) 60%, var(--teal) 100%);
}
.timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  padding-left: 0;
}
.timeline__num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--teal-deep);
  position: relative;
  z-index: 1;
}
.timeline__item--accent .timeline__num {
  background: var(--teal-deep);
  color: var(--ivory);
  border-color: var(--teal-deep);
}
.timeline__item h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  font-weight: 500;
  margin: 8px 0 6px;
  color: var(--ink);
}
.timeline__item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 46ch;
}

@media (max-width: 920px) {
  .story__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============== JOANNA ============== */
.joanna {
  background: linear-gradient(180deg, var(--pearl), var(--ivory-2));
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
  overflow: hidden;
}
.joanna__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.joanna__portrait {
  margin: 0;
  position: relative;
}
.joanna__frame {
  aspect-ratio: 4/5;
  background: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(26,24,22,.25);
}
.joanna__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.joanna__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--nude) 100%);
  gap: 18px;
}
.joanna__placeholder svg { width: 50%; height: auto; }
.joanna__placeholder-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}
.joanna__portrait figcaption {
  margin-top: 22px;
  text-align: left;
  display: flex; flex-direction: column;
}
.joanna__name {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: var(--ink);
}
.joanna__role {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.quote {
  margin: 32px 0;
  padding: 28px 32px 28px 48px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  position: relative;
}
.quote__mark {
  position: absolute;
  top: 22px; left: 18px;
  width: 24px; height: 18px;
  color: var(--teal);
}
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 12px;
  text-wrap: balance;
}
.quote cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.joanna__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.joanna__meta-num {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--teal-deep);
  font-weight: 500;
  margin-bottom: 4px;
}
.joanna__meta-label {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.35;
}

@media (max-width: 920px) {
  .joanna__grid { grid-template-columns: 1fr; }
  .joanna__meta { grid-template-columns: 1fr 1fr; }
}

/* ============== PILLARS ============== */
.pillars { padding: clamp(72px, 9vw, 130px) 0; }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pillar {
  padding: 36px 28px 36px;
  background: var(--ivory);
  display: flex; flex-direction: column;
  position: relative;
  min-height: 280px;
  transition: background .35s var(--ease);
}
.pillar:hover { background: var(--pearl); }
.pillar__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.pillar__icon svg { width: 22px; height: 22px; }
.pillar__num {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.pillar h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  margin: auto 0 12px;
  color: var(--ink);
}
.pillar p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }

@media (max-width: 920px) {
  .pillars__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .pillars__grid { grid-template-columns: 1fr; }
}

/* ============== O MARCE JOKAPROSKIN ============== */
.brand {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.brand__bg { position: absolute; inset: 0; pointer-events: none; }
.brand__blob {
  top: 30%; left: -10%;
  width: 50vw; height: 50vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, var(--teal-soft), transparent 60%);
  filter: blur(80px);
  opacity: .5;
}
.brand__inner { position: relative; z-index: 1; }

/* manifesto */
.manifesto {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(64px, 9vw, 120px);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.manifesto__rule {
  display: block;
  width: 56px; height: 1px;
  background: var(--teal);
  margin: 0 0 24px;
}
.manifesto__rule:last-child { margin: 24px 0 0; }
.manifesto__intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--muted);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.manifesto__line {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
  text-wrap: balance;
}
.manifesto__line:nth-of-type(odd) { color: var(--teal-deep); font-style: italic; }
.manifesto__closing {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--ink);
  margin: 18px 0 0;
  max-width: 32ch;
}
.manifesto__closing em { font-style: italic; }

/* mission */
.mission { margin-bottom: clamp(64px, 8vw, 100px); }
.mission__title,
.values__title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
  margin: 0 0 40px;
}
.mission__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: mission;
}
.mission__item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  position: relative;
}
.mission__item:nth-child(2) { transform: translateY(20px); }
.mission__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 38px;
  line-height: 1;
  color: var(--teal-deep);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.mission__item p {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.mission__item p strong {
  font-weight: 500;
  color: var(--ink);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.05em;
}
@media (max-width: 920px) {
  .mission__list { grid-template-columns: 1fr; }
  .mission__item:nth-child(2) { transform: none; }
}

/* values */
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.value {
  background: var(--white);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 280px;
  transition: background .3s var(--ease);
}
.value:hover { background: var(--teal-tint); }
.value__letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 60px;
  line-height: 0.9;
  color: var(--teal);
  font-weight: 400;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.value h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.1;
}
.value p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 920px) {
  .values__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .values__grid { grid-template-columns: 1fr; }
}

.brand__sign {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--teal-deep);
  margin: clamp(56px, 7vw, 88px) 0 0;
}

/* ============== RESEARCH ============== */
.research {
  background: var(--teal-ink);
  color: var(--ivory);
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
  overflow: hidden;
}
.research::before {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(45,191,181,.22) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.research::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -20%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(240,110,169,.12) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.research .wrap { position: relative; z-index: 1; }
.research__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(250,246,239,.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(250,246,239,.1);
}
.stat {
  background: var(--teal-ink);
  padding: 32px 24px 26px;
  min-height: 220px;
  display: flex; flex-direction: column;
  position: relative;
  transition: background .3s var(--ease);
}
.stat:hover { background: #0F2E2B; }
.stat--feature {
  background: linear-gradient(160deg, rgba(45,191,181,.18) 0%, rgba(19,62,59,1) 100%);
}
.stat--feature:hover { background: linear-gradient(160deg, rgba(45,191,181,.28) 0%, rgba(19,62,59,1) 100%); }
.stat__product {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 18px;
  font-weight: 500;
}
.stat__big {
  font-family: var(--serif);
  font-size: clamp(48px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin: auto 0 12px;
  font-feature-settings: "tnum";
}
.stat__big--rating small { font-size: 0.45em; color: rgba(250,246,239,.6); }
.stat__title {
  font-size: 15px;
  line-height: 1.3;
  color: var(--ivory);
  margin-bottom: 8px;
  font-weight: 500;
}
.stat__note {
  font-size: 11.5px;
  line-height: 1.4;
  color: rgba(250,246,239,.55);
  letter-spacing: 0.02em;
}

.research__disclaimer {
  max-width: 880px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(250,246,239,.6);
}
.research__disclaimer strong { color: rgba(250,246,239,.85); font-weight: 500; }

@media (max-width: 920px) {
  .research__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .research__grid { grid-template-columns: 1fr; }
}

/* ============== RITUAL ============== */
.ritual { padding: clamp(72px, 9vw, 130px) 0; background: var(--pearl); }
.ritual__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 48px;
  background: var(--ivory);
  padding: 8px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
}
.ritual__tab {
  background: transparent;
  border: none;
  padding: 18px 20px;
  border-radius: var(--r-md);
  text-align: left;
  display: flex; flex-direction: column;
  gap: 6px;
  transition: all .25s var(--ease);
  color: var(--ink-soft);
}
.ritual__tab:hover { background: var(--ivory-2); }
.ritual__tab.is-active {
  background: var(--ink);
  color: var(--ivory);
}
.ritual__tab.is-active .ritual__tab-num { color: var(--teal-bright); }
.ritual__tab-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--teal-deep);
  letter-spacing: 0.04em;
}
.ritual__tab-label {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.05;
}

.ritual__pane { display: none; }
.ritual__pane.is-active { display: block; animation: fadeUp .5s var(--ease) both; }
.ritual__pane-intro {
  text-align: center;
  margin: 0 auto 36px;
  max-width: 640px;
}
.ritual__pane-intro h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  margin: 0 0 12px;
  font-style: italic;
  color: var(--teal-deep);
}
.ritual__pane-intro p { margin: 0 auto; color: var(--ink-soft); max-width: 50ch; }

.ritual__pane-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

@media (max-width: 720px) {
  .ritual__tabs { grid-template-columns: 1fr 1fr; }
}

/* ============== PRODUCT CARD ============== */
.pcard {
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -30px rgba(26,24,22,.18);
  border-color: var(--teal-soft);
}
.pcard__media {
  background: linear-gradient(180deg, var(--white) 0%, var(--pearl) 100%);
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.pcard__media img { max-height: 100%; width: auto; }
.pcard__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.pcard__step {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 500;
}
.pcard__body h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.pcard__claim {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.pcard__benefits {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.pcard__benefits li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.pcard__benefits svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  color: var(--teal);
  margin-top: 2px;
}
.pcard__result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--teal-tint);
  border-radius: var(--r-sm);
  margin-top: auto;
}
.pcard__result-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--teal-deep);
  line-height: 1;
  flex-shrink: 0;
}
.pcard__result-label {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.pcard__result-label small {
  color: var(--muted);
  font-size: 10.5px;
  letter-spacing: 0.04em;
}

/* ============== BESTSELLERS ============== */
.bestsellers { padding: clamp(72px, 9vw, 130px) 0; }
.bestsellers__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.best {
  position: relative;
  background: var(--pearl);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform .35s var(--ease);
}
.best:hover { transform: translateY(-4px); }
.best--feature {
  grid-row: span 2;
  grid-column: 1;
  background: linear-gradient(180deg, var(--teal-tint), var(--pearl));
  padding: 36px;
}
.best__rank {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.best__media {
  margin: 0 0 24px;
  display: flex; align-items: center; justify-content: center;
  flex: 1;
  min-height: 200px;
}
.best--feature .best__media { min-height: 360px; }
.best__media img { max-width: 70%; height: auto; max-height: 320px; }
.best--feature .best__media img { max-height: 460px; max-width: 60%; }
.best__cat {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 500;
  margin-bottom: 8px;
}
.best__body h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 18px;
  color: var(--ink);
}
.best--feature .best__body h3 { font-size: clamp(26px, 2.4vw, 36px); }
.best__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
}
.badge__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--teal-deep);
  font-weight: 500;
}
.badge__label {
  font-size: 11.5px;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}

@media (max-width: 920px) {
  .bestsellers__grid { grid-template-columns: 1fr 1fr; }
  .best--feature { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 540px) {
  .bestsellers__grid { grid-template-columns: 1fr; }
  .best--feature { grid-column: auto; }
}

/* ============== SPLIT ============== */
.split { padding: clamp(72px, 9vw, 130px) 0; background: linear-gradient(180deg, var(--ivory) 0%, var(--pearl) 100%); }
.split__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  position: relative;
}
.split__side {
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: 44px 36px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.split__side--skin {
  background: linear-gradient(180deg, var(--teal-tint) 0%, var(--ivory) 100%);
  border-color: var(--teal-soft);
}
.split__tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 500;
  margin-bottom: 14px;
}
.split__side h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  margin: 0 0 28px;
  font-style: italic;
  color: var(--ink);
}
.split__visual {
  margin: 0 0 28px;
  height: 260px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  width: 100%;
}
.split__visual--skin { gap: 8px; }
.split__bottle {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 20px 30px rgba(26,24,22,.12));
}
.split__bottle--1 { transform: translateY(0); z-index: 2; }
.split__bottle--2 { transform: translateY(20px) scale(.88); z-index: 1; }
.split__bottle--3 { transform: translateY(8px) scale(.95); z-index: 1; }
.split__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  text-align: left;
  width: 100%;
  max-width: 360px;
}
.split__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.split__list svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--teal);
  margin-top: 2px;
}

.split__plus {
  align-self: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ivory);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 2;
}
.split__plus svg { width: 22px; height: 22px; }

.split__cta { text-align: center; margin-top: 48px; }

@media (max-width: 920px) {
  .split__grid { grid-template-columns: 1fr; }
  .split__plus { margin: -36px auto; }
}

/* ============== PROOF ============== */
.proof { padding: clamp(72px, 9vw, 130px) 0; }
.proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 32px;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  margin-bottom: 48px;
}
.proof__stat { display: flex; flex-direction: column; }
.proof__num {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 8px;
}
.proof__label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.proof__quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote-card {
  background: var(--pearl);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
}
.quote-card__stars { display: flex; gap: 4px; color: var(--gold); }
.quote-card__stars svg { width: 16px; height: 16px; }
.quote-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.quote-card__author {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.quote-card--photo .quote-card__photo {
  aspect-ratio: 4/3;
  background: var(--cream);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 920px) {
  .proof__stats { grid-template-columns: 1fr 1fr; }
  .proof__quotes { grid-template-columns: 1fr; }
}

/* proof: wide quote + link to all reviews */
.proof__more {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.quote-card--wide {
  min-height: 0;
}
.quote-card__product {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-top: 2px;
  font-weight: 500;
}
.proof__link {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 16px 22px;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.proof__link svg { width: 14px; height: 14px; }
.proof__link:hover {
  background: var(--ink); color: var(--ivory); border-color: var(--ink);
}
@media (max-width: 720px) {
  .proof__more { grid-template-columns: 1fr; }
  .proof__link { justify-content: center; white-space: normal; }
}

/* ============== AUDIENCE ============== */
.audience { padding: clamp(72px, 9vw, 130px) 0; background: var(--pearl); }
.audience__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.aud-card {
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: all .3s var(--ease);
}
.aud-card:hover {
  background: var(--white);
  border-color: var(--teal-soft);
  transform: translateY(-3px);
}
.aud-card--accent {
  background: linear-gradient(160deg, var(--teal-tint), var(--ivory));
  border-color: var(--teal-soft);
}
.aud-card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pearl);
  color: var(--teal-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.aud-card__icon svg { width: 22px; height: 22px; }
.aud-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.15;
}
.aud-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 920px) {
  .audience__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .audience__grid { grid-template-columns: 1fr; }
}

/* ============== FAQ ============== */
.faq { padding: clamp(72px, 9vw, 130px) 0; }
.faq__inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(32px, 5vw, 80px);
}
.faq__head { position: sticky; top: 100px; height: max-content; }
.faq__list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line-soft); }
.faq__item { border-bottom: 1px solid var(--line-soft); }
.faq__q {
  width: 100%;
  background: none; border: none;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 500;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.faq__q:hover { color: var(--teal-deep); }
.faq__chev {
  width: 22px; height: 22px;
  flex-shrink: 0;
  transition: transform .35s var(--ease);
  color: var(--teal-deep);
}
.faq__q[aria-expanded="true"] .faq__chev { transform: rotate(45deg); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.faq__q[aria-expanded="true"] + .faq__a { grid-template-rows: 1fr; }
.faq__a > p {
  overflow: hidden;
  margin: 0;
  padding-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 15px;
  max-width: 64ch;
  transition: padding-bottom .35s var(--ease);
}
.faq__q[aria-expanded="true"] + .faq__a > p { padding-bottom: 24px; }

@media (max-width: 920px) {
  .faq__inner { grid-template-columns: 1fr; }
  .faq__head { position: static; }
}

/* ============== FINAL ============== */
.final {
  position: relative;
  background: var(--teal-ink);
  color: var(--ivory);
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}
.final__bg { position: absolute; inset: 0; pointer-events: none; }
.final__blob {
  top: -30%; left: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(45,191,181,.3), transparent 60%);
  filter: blur(80px);
  opacity: 1;
}
.final__inner { position: relative; z-index: 1; max-width: 760px; text-align: center; margin: 0 auto; }
.final__title { margin-bottom: 24px; }
.final__copy { margin: 0 auto 40px; max-width: 600px; }
.final__cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ============== FOOTER ============== */
.footer {
  background: var(--ink);
  color: rgba(250,246,239,.78);
  padding: 64px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,246,239,.1);
}
.footer__brand p { margin: 16px 0 0; font-size: 13.5px; max-width: 38ch; line-height: 1.6; color: rgba(250,246,239,.6); }
.footer__brand .brand-word__primary { color: var(--ivory); }
.footer__brand .brand-word__sub { color: rgba(250,246,239,.6); }
.footer h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__base {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(250,246,239,.45);
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ============== STICKY MOBILE CTA ============== */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  z-index: 60;
  display: none;
  align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,.4);
  transition: transform .35s var(--ease);
}
.sticky-cta.is-visible { transform: translateX(-50%) translateY(0); }
.sticky-cta svg { width: 16px; height: 16px; }
@media (max-width: 720px) {
  .sticky-cta { display: inline-flex; }
}

/* ============== REVEAL ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* ============== ACCESSIBILITY ============== */
:focus-visible {
  outline: 2px solid var(--teal-deep);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
