/* Haku — hakuhealth.com
   Rebuilt from the original Framer site as clean, static HTML/CSS. */

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("/assets/fonts/cabinet-grotesk-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("/assets/fonts/cabinet-grotesk-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nanum Pen Script";
  src: url("/assets/fonts/nanum-pen-script-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fdfdfd;
  --ink: #1f1f1f;
  --text: #333333;
  --muted: #666666;
  --gray: #999999;
  --line: rgba(0, 0, 0, 0.05);
  --green: #00a86b;
  --green-dark: #00905c;
  --mint: #e3f3ea;
  --mint-deep: #cdeadb;
  --lavender: #e9e8fb;
  --peach: #fdefe2;
  --cloud: #f4f4f2;
  --nutrition: #38b31c;
  --sleep: #5e5ce6;
  --fitness: #ff0108;
  --supplements: #00b9a0;
  --mindfulness: rgba(195, 118, 60, 0.85);
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow-card:
    0 0.8px 2.4px -0.6px rgba(0, 0, 0, 0.02),
    0 2.4px 7.2px -1.25px rgba(0, 0, 0, 0.03),
    0 6.4px 19px -1.875px rgba(0, 0, 0, 0.04),
    0 20px 60px -2.5px rgba(0, 0, 0, 0.05);
  --text-xs: 12.5px;   /* eyebrows, laurel labels, copyright */
  --text-sm: 14px;     /* nav, footer links, sub-lines */
  --text-base: 16px;   /* dense body: FAQ answers, checklist */
  --text-md: 16.5px;   /* long-form reading: letter, legal */
  --text-lg: 17px;     /* feature paragraphs, buttons */
  --text-xl: 19px;     /* hero subtitle */
  --gray-safe: #74746e;      /* 4.6:1 on white — smallest text */
  --gray-safe-lg: #80807a;   /* 3.5:1 on cloud — large text only */
  --font-heading: "Cabinet Grotesk", sans-serif;
  --font-ui: "Inter", sans-serif;
  --font-hand: "Nanum Pen Script", cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id], footer[id] { scroll-margin-top: 96px; }

:focus-visible {
  outline: 3px solid rgba(0, 168, 107, 0.5);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 12px;
  transition: top 0.2s ease;
}

.skip-link:focus { top: 16px; }

::selection { background: var(--mint-deep); color: var(--ink); }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

strong, b { font-weight: 500; color: var(--ink); }

h1 {
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

h2 {
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

p { text-wrap: pretty; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.nav.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.18);
}

.nav__logo { padding-left: 10px; display: flex; align-items: center; }
.nav__logo img { width: 32px; height: 32px; transition: transform 0.25s ease; }
.nav__logo:hover img { transform: rotate(-8deg) scale(1.08); }

.nav__links {
  display: flex;
  gap: 20px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.nav__links a { transition: color 0.15s ease; position: relative; }
.nav__links a:hover, .nav__links a.is-active { color: var(--green); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1;
  padding: 16px 28px;
  border-radius: 40px;
  box-shadow: 0 6px 20px -6px rgba(0, 168, 107, 0.5);
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 26px -6px rgba(0, 168, 107, 0.55);
}

.btn:active { transform: translateY(0) scale(0.98); }

.btn--small { font-size: 15px; padding: 11px 18px; box-shadow: none; }

/* ---------- Hero scene card ---------- */

.hero { padding: 88px 16px 0; }

.hero__card {
  position: relative;
  max-width: 1216px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f2f9f4 0%, #e6f4ec 50%, #d3ecdd 100%);
  overflow: hidden;
  text-align: center;
  padding: 72px 40px 0;
}

/* ---- illustrated meadow scene (original artwork, drawn in CSS/SVG) ---- */

.hero__scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__sun {
  position: absolute;
  top: -80px;
  right: 8%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 224, 150, 0.55) 0%, rgba(255, 224, 150, 0.18) 45%, transparent 70%);
}

.hero__clouds { position: absolute; inset: 0; }

.hero__cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 60px;
  animation: cloud-drift 26s ease-in-out infinite alternate;
}

.hero__cloud::before,
.hero__cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.hero__cloud--1 { width: 150px; height: 34px; left: 12%; top: 14%; }
.hero__cloud--1::before { width: 56px; height: 56px; left: 24px; top: -26px; }
.hero__cloud--1::after { width: 38px; height: 38px; left: 76px; top: -14px; }

.hero__cloud--2 { width: 110px; height: 26px; right: 18%; top: 24%; animation-duration: 34s; animation-delay: -12s; }
.hero__cloud--2::before { width: 42px; height: 42px; left: 18px; top: -20px; }
.hero__cloud--2::after { width: 28px; height: 28px; left: 58px; top: -10px; }

.hero__cloud--3 { width: 90px; height: 22px; left: 30%; top: 40%; opacity: 0.7; animation-duration: 40s; animation-delay: -20s; }
.hero__cloud--3::before { width: 34px; height: 34px; left: 16px; top: -16px; }
.hero__cloud--3::after { width: 24px; height: 24px; left: 48px; top: -8px; }

@keyframes cloud-drift {
  from { margin-left: 0; }
  to { margin-left: 60px; }
}

.hero__hill {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -2px;
  width: 104%;
  will-change: transform;
}

.hero__hill--back { height: 46%; }
.hero__hill--mid { height: 34%; }

.hero__hill--front {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -2px;
  width: 104%;
  height: 24%;
  z-index: 3;
  pointer-events: none;
}

/* birds gliding across the sky */
.hero__bird {
  position: absolute;
  width: 22px;
  top: 18%;
  left: -30px;
  animation: bird-fly 52s linear infinite;
}

.hero__bird--2 {
  width: 16px;
  top: 30%;
  animation-duration: 67s;
  animation-delay: -30s;
}

@keyframes bird-fly {
  0% { transform: translate(0, 0); }
  25% { transform: translate(370px, -14px); }
  50% { transform: translate(740px, 6px); }
  75% { transform: translate(1110px, -10px); }
  100% { transform: translate(1480px, 0); }
}

/* paper plane towing the announcement */
.hero__flyer {
  position: absolute;
  top: 9%;
  left: -280px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  animation: flyer-fly 34s linear infinite;
  animation-delay: -6s;
}

.hero__plane { width: 38px; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08)); }

.hero__flag {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 8px 22px -8px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

@keyframes flyer-fly {
  0% { transform: translate(0, 0) rotate(1.5deg); }
  25% { transform: translate(430px, -12px) rotate(-1deg); }
  50% { transform: translate(860px, 8px) rotate(1.5deg); }
  75% { transform: translate(1290px, -8px) rotate(-1deg); }
  100% { transform: translate(1720px, 0) rotate(1.5deg); }
}

/* trees riding the hills */
.hero__tree { position: absolute; pointer-events: none; }
.hero__tree svg { width: 100%; }
.hero__tree--1 { width: 74px; left: 7%; bottom: 17%; }
.hero__tree--2 { width: 56px; right: 10%; bottom: 19%; }
.hero__tree--3 { width: 44px; left: 26%; bottom: 27%; opacity: 0.85; }

/* flowers and grass tufts in the foreground */
.hero__flora {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.hero__flora svg { width: 100%; }

.hero__flora .sway {
  transform-origin: 50% 100%;
  animation: flora-sway 4.5s ease-in-out infinite alternate;
}

.hero__flora--1 { width: 30px; left: 12%; bottom: 6%; }
.hero__flora--2 { width: 24px; right: 16%; bottom: 9%; }
.hero__flora--2 .sway { animation-delay: -2s; }
.hero__flora--3 { width: 30px; left: 27%; bottom: 3%; }
.hero__flora--3 .sway { animation-delay: -1.2s; animation-duration: 3.8s; }
.hero__flora--4 { width: 26px; right: 30%; bottom: 5%; }
.hero__flora--4 .sway { animation-delay: -3s; animation-duration: 5.2s; }

@keyframes flora-sway {
  from { transform: rotate(-4deg); }
  to { transform: rotate(4deg); }
}

/* fine grain so the gradients read as texture, not plastic */
.hero__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content { position: relative; z-index: 4; max-width: 640px; margin: 0 auto; }

.hero__content p {
  margin: 20px auto 28px;
  font-size: var(--text-xl);
  line-height: 1.55;
  color: var(--text);
  max-width: 420px;
}

.hero__art-wrap {
  position: relative;
  z-index: 2;
  width: min(300px, 60vw);
  margin: 48px auto clamp(70px, 10vw, 110px);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* floating category chips around the hero art */
.chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 40px;
  padding: 9px 16px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  will-change: transform;
}

.chip img { width: 18px; height: 18px; }

.chip--nutrition { color: var(--nutrition); left: -180px; top: 8%; }
.chip--sleep { color: var(--sleep); right: -150px; top: 2%; }
.chip--fitness { color: var(--fitness); left: -200px; top: 58%; }
.chip--supplements { color: var(--supplements); right: -196px; top: 48%; }
.chip--mindfulness { color: var(--mindfulness); right: -140px; top: 72%; }

/* ---------- Laurel badges ---------- */

.laurels {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 56px 24px;
  flex-wrap: wrap;
}

.laurel {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
}

.laurel svg { width: 26px; height: 44px; color: #c9c9c4; }

.laurel__body { text-align: center; }

.laurel__value {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.laurel__label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--gray-safe);
}

/* ---------- Category marquee ---------- */

.marquee {
  overflow: hidden;
  padding: 8px 0 64px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.marquee__track {
  display: flex;
  gap: 96px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.pill img { width: 26px; height: 26px; }

.pill--nutrition { color: var(--nutrition); }
.pill--sleep { color: var(--sleep); }
.pill--fitness { color: var(--fitness); }
.pill--supplements { color: var(--supplements); }
.pill--mindfulness { color: var(--mindfulness); }

/* ---------- Feature sections ---------- */

.feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 7vw, 96px);
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 40px;
}

.feature__tile {
  flex-shrink: 0;
  width: min(480px, 44vw);
  aspect-ratio: 10 / 9;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
  transition: transform 0.4s ease;
}

.feature__tile:hover { transform: rotate(-0.6deg) scale(1.015); }

.feature__tile--mint { background: radial-gradient(115% 115% at 50% 0%, var(--mint) 0%, var(--mint-deep) 100%); }
.feature__tile--lavender { background: radial-gradient(115% 115% at 50% 0%, #f0effd 0%, var(--lavender) 100%); }
.feature__tile--peach { background: radial-gradient(115% 115% at 50% 0%, #fef6ed 0%, var(--peach) 100%); }

.feature__tile img {
  width: 72%;
  animation: float 6.5s ease-in-out infinite;
}

.feature__tile--lavender img, .feature__tile--peach img { width: 84%; }

/* floating mini-chips on tiles */
.tile-chip {
  position: absolute;
  background: #fff;
  border-radius: 30px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 10px 26px -10px rgba(0, 0, 0, 0.2);
  animation: float 5.5s ease-in-out infinite;
  white-space: nowrap;
}

.feature__copy { max-width: 420px; }

.feature__copy p {
  margin-top: 14px;
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--muted);
}

.checklist {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-base);
  color: var(--text);
}

.checklist li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.section-cta { text-align: center; padding: 24px 40px 96px; }

/* ---------- Founder letter ---------- */

.letter { padding: 0 16px 96px; }

.letter__band {
  max-width: 1216px;
  margin: 0 auto;
  background: var(--cloud);
  border-radius: var(--radius-lg);
  padding: 72px 24px;
}

.letter h2 { text-align: center; margin-bottom: 8px; }

.letter__sub {
  text-align: center;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--gray-safe);
  margin-bottom: 40px;
}

.letter__card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 48px 44px 40px;
  box-shadow: var(--shadow-card);
}

.letter__card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 28px;
  font-size: 96px;
  font-weight: 500;
  line-height: 1;
  color: var(--mint-deep);
  pointer-events: none;
}

.letter__card p.letter__quote {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
  text-indent: -0.45ch;
  max-width: 24em;
}

.letter__card p {
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 58ch;
}

.letter__more {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s ease;
}

.letter__more > div { overflow: hidden; }

.letter__card.is-open .letter__more { grid-template-rows: 1fr; }

.letter__continue {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--green);
  padding: 0;
  margin-bottom: 16px;
}

.letter__continue:hover { text-decoration: underline; }

.letter__card.is-open .letter__continue { display: none; }

.letter__date { color: var(--gray-safe); font-size: var(--text-sm); }

.letter__signature {
  font-family: var(--font-hand);
  font-size: 44px;
  line-height: 1;
  color: var(--ink);
  margin-top: 20px;
  transform: rotate(-2deg);
}

/* ---------- FAQ ---------- */

.faq { padding: 96px 40px; }

.faq h2 { text-align: center; margin-bottom: 8px; }

.faq__sub {
  text-align: center;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--gray-safe);
  margin-bottom: 40px;
}

.faq__list { max-width: 760px; margin: 0 auto; }

.faq__item {
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 12px;
  background: #fff;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq__item:hover { border-color: rgba(0, 168, 107, 0.25); }

.faq__item.is-open { box-shadow: var(--shadow-card); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 20px 22px;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--ink);
}

.faq__chevron {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cloud);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq__chevron::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translate(-1px, -1px);
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
  background: var(--mint);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.faq__answer > div {
  overflow: hidden;
  padding: 0 22px;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--muted);
  max-width: 62ch;
}

.faq__item.is-open .faq__answer { grid-template-rows: 1fr; }

.faq__item.is-open .faq__answer > div { padding-bottom: 20px; }

.faq__contact {
  max-width: 760px;
  margin: 28px auto 0;
  background: var(--mint);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.faq__contact p {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.faq__contact a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  background: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.faq__contact a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.2);
}

/* ---------- Footer / Get access ---------- */

.footer { padding: 0 16px 16px; text-align: center; }

.footer__card {
  position: relative;
  overflow: hidden;
  max-width: 1216px;
  margin: 0 auto;
  background: var(--cloud);
  border-radius: var(--radius-lg);
  padding: 72px 40px 48px;
}

.footer__hills {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: 130px;
  pointer-events: none;
}

.footer__card > *:not(.footer__hills) { position: relative; z-index: 1; }

.footer__art {
  width: 220px;
  margin: 0 auto 8px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 24px 18px rgba(0, 0, 0, 0.1));
}

.footer h2 { color: var(--ink); }

.footer h2 span { display: block; color: var(--gray-safe-lg); }

.footer .btn { margin-top: 32px; }

.footer__links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 64px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.footer__links a:hover { color: var(--green); }

.footer__copyright {
  margin-top: 24px;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--gray-safe);
}

/* ---------- 404 ---------- */

.notfound {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
}

.notfound img { width: 200px; margin-bottom: 28px; animation: float 5s ease-in-out infinite; }

.notfound p {
  margin: 12px 0 28px;
  font-size: 17px;
  color: var(--muted);
  max-width: 380px;
}

/* ---------- Legal pages ---------- */

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 160px 40px 80px;
}

.legal h1 { margin-bottom: 32px; }

.legal h2 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
}

.legal p, .legal li {
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 14px;
  max-width: 62ch;
}

.legal ul { padding-left: 24px; margin-bottom: 16px; }

.legal a { color: var(--green); }

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.is-visible { opacity: 1; transform: none; }

/* staggered children */
.reveal [data-stagger] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.is-visible [data-stagger] { opacity: 1; transform: none; }

.reveal.is-visible [data-stagger="1"] { transition-delay: 0.08s; }
.reveal.is-visible [data-stagger="2"] { transition-delay: 0.16s; }
.reveal.is-visible [data-stagger="3"] { transition-delay: 0.24s; }
.reveal.is-visible [data-stagger="4"] { transition-delay: 0.32s; }

/* hero load-in */
.load-in {
  opacity: 0;
  transform: translateY(24px);
  animation: loadIn 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.load-in--1 { animation-delay: 0.05s; }
.load-in--2 { animation-delay: 0.18s; }
.load-in--3 { animation-delay: 0.3s; }
.load-in--4 { animation-delay: 0.45s; }

@keyframes loadIn {
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal [data-stagger] { opacity: 1; transform: none; transition: none; }
  .load-in { opacity: 1; transform: none; animation: none; }
  .marquee__track { animation: none; }
  .tile-chip, .footer__art, .hero__cloud, .hero__bird, .hero__flora .sway { animation: none; }
  .hero__flyer { animation: none; left: auto; right: 5%; top: 8%; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1120px) {
  .chip--nutrition { left: -8vw; }
  .chip--fitness { left: -10vw; }
  .chip--sleep { right: -7vw; }
  .chip--supplements { right: -9vw; }
  .chip--mindfulness { right: -6vw; }
}

@media (max-width: 860px) {
  .hero { padding-top: 80px; }
  .hero__card { padding: 56px 24px 0; }

  .chip { font-size: 13px; padding: 7px 12px; }
  .chip--nutrition { left: -20px; top: -4%; }
  .chip--sleep { right: -14px; top: -10%; }
  .chip--fitness { left: -34px; top: 64%; }
  .chip--supplements { right: -40px; top: 52%; }
  .chip--mindfulness { right: -10px; top: 88%; }

  .laurels { gap: 32px; padding: 40px 20px; }

  .feature {
    flex-direction: column;
    gap: 36px;
    padding: 48px 24px;
    text-align: center;
  }
  .feature--reverse { flex-direction: column; }
  .feature__tile { width: 100%; max-width: 440px; }
  .checklist { align-items: flex-start; text-align: left; margin-left: auto; margin-right: auto; width: fit-content; }

  .letter__band { padding: 56px 16px; }
  .letter__card { padding: 40px 26px 32px; }
  .letter__card::before { left: 16px; font-size: 72px; }
  .letter__quote { font-size: 18px; }

  .faq { padding: 64px 20px; }

  .footer__card { padding: 56px 24px 40px; }
  .footer__links { gap: 20px; flex-wrap: wrap; }

  .legal { padding: 140px 24px 60px; }
}

@media (max-width: 480px) {
  .nav { gap: 10px; padding: 6px; }
  .nav__links { gap: 12px; font-size: 13px; }
  .nav__logo { padding-left: 8px; }
  .nav__logo img { width: 28px; height: 28px; }
  .btn--small { font-size: 13px; padding: 9px 14px; }

  .hero__art-wrap { width: 64vw; }
  .chip--fitness { left: -12px; }
  .chip--supplements { right: -16px; }
}
