/* ═══════════════════════════════════════════════════════════════
   RADIANT LIFE — v3
   Every section is one StoryBrand beat. Scannable, concrete, clean.
   Poppins throughout — geometric, soft, modern. No serif.
   Accent is a BLUE teal (hue ~196), never green.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --white:  #FFFFFF;
  --warm:   #FBF9F6;   /* alternating band */
  --hair:   #E9E3DA;

  --teal:   #0E5A73;   /* 7.7:1 on white — blue-leaning, not green */
  --teal-d: #0A4457;
  --teal-p: #EAF1F4;   /* pale wash */

  --gold:   #8A6B28;   /* 5.0:1 — safe for small caps */

  --ink:    #16181B;   /* 16.6:1 */
  --ink-2:  #52585E;   /* 7.1:1 */

  --f: "Poppins", "Helvetica Neue", sans-serif;

  --pad:  clamp(1.5rem, 5vw, 5.5rem);
  --band: clamp(4.5rem, 9vw, 8rem);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --max:  1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  font-family: var(--f);
  font-weight: 300;
  font-size: clamp(1.02rem, .98rem + .22vw, 1.11rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--teal-p); color: var(--ink); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.skip { position: absolute; left: -9999px; z-index: 200; background: var(--teal); color: #fff; padding: .75rem 1.25rem; text-decoration: none; }
.skip:focus { left: 1rem; top: 1rem; }

/* ── type ─────────────────────────────────────── */
.eyebrow {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.eyebrow--c { text-align: center; }

.h1 {
  font-weight: 300;
  font-size: clamp(2.3rem, 5vw, 4.15rem);
  line-height: 1.1; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 1.5rem;
}
.h2 {
  font-weight: 300;
  font-size: clamp(1.95rem, 3.7vw, 3.1rem);
  line-height: 1.15; letter-spacing: -0.027em;
  color: var(--ink); margin-bottom: 1.4rem;
}
.h2--c { text-align: center; max-width: 22ch; margin-inline: auto; }

.lede {
  font-size: clamp(1.06rem, 1.25vw, 1.2rem);
  line-height: 1.68; color: var(--ink-2);
  max-width: 48ch; margin-bottom: 1.5rem;
}
.lede--c { text-align: center; margin-inline: auto; max-width: 44ch; }

.body { color: var(--ink-2); max-width: 46ch; margin-bottom: 1.1rem; }

.plain {
  font-weight: 400; color: var(--ink);
  max-width: 44ch; margin-bottom: 2rem;
  padding-left: 1rem; border-left: 2px solid var(--teal);
}

.closer {
  font-weight: 400; color: var(--teal);
  font-size: clamp(1.08rem, 1.4vw, 1.26rem);
  line-height: 1.6; max-width: 44ch; margin-top: 1.6rem;
}
.closer--c { text-align: center; margin-inline: auto; }
.closer em { font-style: normal; font-weight: 500; }

.fine { margin-top: 1rem; font-size: .82rem; letter-spacing: .06em; color: var(--ink-2); }

/* ── CTA ──────────────────────────────────────── */
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f); font-weight: 500;
  font-size: .84rem; letter-spacing: .1em;
  color: #fff; background: var(--teal);
  padding: 1.1rem 2.4rem; min-height: 54px;
  border-radius: 999px; text-decoration: none;
  touch-action: manipulation;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.cta:hover { background: var(--teal-d); transform: translateY(-2px); }
.cta:active { transform: translateY(0); }

/* ── bar ──────────────────────────────────────── */
.bar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; gap: 2rem;
  padding: 1.1rem var(--pad);
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.bar::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.85) 50%, rgba(255,255,255,0) 100%);
  transition: opacity .35s var(--ease);
}
.bar.on { background: rgba(255,255,255,.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding-block: .8rem; box-shadow: 0 1px 0 var(--hair); }
.bar.on::before { opacity: 0; }
.bar__mark { font-weight: 400; font-size: 1.12rem; letter-spacing: .01em; color: var(--ink); text-decoration: none; white-space: nowrap; }
.bar__nav { display: none; margin-left: auto; gap: 2rem; }
@media (min-width: 900px) { .bar__nav { display: flex; } }
.bar__nav a {
  font-size: .86rem; font-weight: 300; color: var(--ink-2);
  text-decoration: none; display: inline-flex; align-items: center; min-height: 44px;
  transition: color .2s var(--ease);
}
.bar__nav a:hover { color: var(--teal); }
.bar__cta {
  margin-left: auto;
  font-size: .8rem; font-weight: 500; letter-spacing: .04em;
  text-decoration: none; padding: .62rem 1.3rem; min-height: 44px;
  display: inline-flex; align-items: center;
  color: #fff; background: var(--teal); border-radius: 999px;
  transition: background .25s var(--ease);
}
@media (min-width: 900px) { .bar__cta { margin-left: 0; } }
.bar__cta:hover { background: var(--teal-d); }

/* ── layout ───────────────────────────────────── */
.band { padding: var(--band) var(--pad); background: var(--white); }
.band--warm { background: var(--warm); }
.wrap { width: min(var(--max), 100%); margin-inline: auto; }
.wrap--split { display: grid; gap: clamp(2.2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) { .wrap--split { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .wrap--flip .shot { order: -1; } }
.col { max-width: 34rem; }

.shot img {
  width: 100%; height: clamp(20rem, 46svh, 30rem);
  object-fit: cover; object-position: 50% 30%;
  border-radius: 3px;
  filter: saturate(.86);
}
.shot--tall img { height: clamp(24rem, 58svh, 36rem); }

/* ═══ 1 · HERO ═══ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: clip; background: var(--white); }
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 22% 44%;
  transform: scaleX(-1);          /* puts her right, words left */
  filter: saturate(.8) brightness(1.03);
}
.hero__wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(96deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.93) 34%, rgba(255,255,255,.6) 52%, rgba(255,255,255,.1) 72%, rgba(255,255,255,0) 88%),
    linear-gradient(180deg, rgba(255,255,255,.6) 0%, rgba(255,255,255,0) 22%, rgba(255,255,255,0) 72%, rgba(255,255,255,.75) 100%);
}
.hero__box {
  position: relative; z-index: 2;
  width: min(var(--max), 100%); margin-inline: auto;
  padding: 7rem var(--pad) 3rem;
}
.hero__box > * { max-width: 34rem; }
@media (max-width: 899px) {
  .hero__img { object-position: 34% 40%; }
  .hero__wash { background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.72) 38%, rgba(255,255,255,.94) 100%); }
}

/* ═══ 2 · PROBLEM — the tick list ═══ */
.ticks { list-style: none; display: grid; gap: .05rem; margin: 1.6rem 0 0; }
.ticks li {
  position: relative; padding: .72rem 0 .72rem 2rem;
  border-bottom: 1px solid var(--hair);
  color: var(--ink); font-weight: 300;
}
.ticks li:first-child { border-top: 1px solid var(--hair); }
.ticks li::before {
  content: ""; position: absolute; left: .1rem; top: 1.32em;
  width: 9px; height: 9px; border-radius: 50%;
  border: 1.5px solid var(--teal);
}

/* ═══ 4 · WHAT IT IS — three columns ═══ */
.three {
  list-style: none; display: grid; gap: clamp(1.6rem, 3vw, 2.4rem);
  margin: clamp(2.6rem, 5vw, 4rem) 0 0;
}
@media (min-width: 780px) { .three { grid-template-columns: repeat(3, 1fr); } }
.three li { padding-top: 1.4rem; border-top: 2px solid var(--teal); }
.three__k { font-weight: 500; font-size: 1.05rem; color: var(--ink); margin-bottom: .4rem; }
.three__t { color: var(--ink-2); font-size: .99rem; line-height: 1.65; }

/* ═══ 5 · HOW IT WORKS — four steps ═══ */
.steps {
  list-style: none; display: grid; gap: clamp(2rem, 3.4vw, 2.6rem);
  margin-top: clamp(2.8rem, 5vw, 4rem);
}
@media (min-width: 660px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps figure { margin-bottom: 1.1rem; overflow: clip; border-radius: 3px; }
.steps img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  filter: saturate(.78) brightness(1.05);
  transition: transform .5s var(--ease);
}
.steps li:hover img { transform: scale(1.03); }
.steps__n { font-size: .7rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.steps__h { font-weight: 400; font-size: 1.28rem; line-height: 1.25; color: var(--ink); margin-bottom: .45rem; letter-spacing: -0.01em; }
.steps__t { font-size: .97rem; line-height: 1.65; color: var(--ink-2); }

/* ═══ 6 · KAILA — pull quote ═══ */
.pull {
  margin-top: 1.8rem; padding: 1.3rem 0 1.3rem 1.3rem;
  border-left: 2px solid var(--teal);
  font-size: clamp(1.16rem, 1.7vw, 1.42rem);
  font-weight: 300; line-height: 1.45; color: var(--ink);
}

/* ═══ 7 · PROOF ═══ */
.says { list-style: none; display: grid; gap: clamp(1.4rem, 2.6vw, 2rem); margin-top: clamp(2.4rem, 5vw, 3.4rem); }
@media (min-width: 820px) { .says { grid-template-columns: repeat(3, 1fr); } }
.says li { background: var(--white); border: 1px solid var(--hair); border-radius: 4px; padding: clamp(1.5rem, 2.6vw, 2rem); }
.says__q { color: var(--ink); line-height: 1.65; margin-bottom: 1rem; }
.says__q::before { content: "\201C"; }
.says__q::after  { content: "\201D"; }
.says__w { font-size: .84rem; letter-spacing: .04em; color: var(--gold); font-weight: 500; }

/* ═══ 8 · CLOSE ═══ */
.close { position: relative; overflow: clip; padding: clamp(6rem, 13vw, 10rem) var(--pad); display: grid; place-items: center; background: var(--white); }
.close__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; filter: saturate(.78) brightness(1.06); }
.close__wash { position: absolute; inset: 0; background: linear-gradient(180deg, var(--white) 0%, rgba(255,255,255,.8) 26%, rgba(255,255,255,.86) 70%, var(--white) 100%); }
.close__box { position: relative; z-index: 2; text-align: center; width: min(46rem, 100%); }
.close__box .cta { margin-top: .6rem; }

/* ═══ FOOTER ═══ */
.foot { background: var(--white); border-top: 1px solid var(--hair); padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 2.6rem; display: grid; gap: .7rem; justify-items: center; text-align: center; }
.foot__m { font-weight: 400; font-size: 1.08rem; color: var(--ink); }
.foot__l { color: var(--gold); font-size: .95rem; }
.foot__c { font-size: .8rem; color: var(--ink-2); }

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .steps li:hover img { transform: none; }
}

/* ═══ SMALL ═══ */
@media (max-width: 660px) {
  .hero { min-height: 90svh; }
  .hero__box { padding-top: 6rem; }
  .shot img { height: 17rem; }
  .plain { padding-left: .9rem; }
}
