/* =====================================================================
   Sam ADHD Coach: Home page
   Reuses the exact tokens + components from the 6-Week program page.
   Homepage-specific blocks added at the bottom of each section group.
   ===================================================================== */

:root {
  --bg:            #f4ede1;
  --text:          #313131;
  --accent:        #6f3a5b;
  --accent-deep:   #4d2840;
  --accent-tint:   #ead8e1;
  --amber:         #c2853a;
  --amber-deep:    #9c6826;
  --amber-tint:    #f0e2cb;
  --surface:       #faf5ec;
  --surface-alt:   #efe6d6;
  --muted:         #6f6a61;
  --line:          rgba(49, 49, 49, 0.14);
  --line-soft:     rgba(49, 49, 49, 0.08);
  --font: "Nunito", system-ui, -apple-system, sans-serif;
  --maxw: 1080px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 16px;
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); color: var(--text);
  background: var(--bg); font-weight: 500; line-height: 1.6;
  font-size: 18px; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p { margin: 0; }
a { color: inherit; text-decoration: none; }
ol, ul { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }

/* ---- type ---- */
.eyebrow {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.eyebrow--accent { color: var(--accent); }
.h2 {
  font-weight: 800; font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.12; letter-spacing: -0.02em; max-width: 20ch;
}
.h2--invert { color: var(--bg); max-width: 22ch; }
.ink { color: var(--accent); }

/* ---- layout primitives ---- */
.section, .band {
  padding-block: clamp(56px, 9vw, 110px); padding-inline: var(--gutter);
}
.section { max-width: var(--maxw); margin-inline: auto; }
.band { background: var(--surface-alt); }
.band > * { max-width: var(--maxw); margin-inline: auto; }
.band--alt { background: var(--surface); }
.section__head { margin-bottom: clamp(36px, 5vw, 56px); }
.section__head .eyebrow { margin-bottom: 14px; display: block; }

/* ---- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 14px var(--gutter);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 900; letter-spacing: -0.02em; font-size: 1.05rem;
  white-space: nowrap; margin-right: auto;
}
.nav__brand-light { font-weight: 600; color: var(--muted); }
.nav__brand-mark {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 3px var(--bg), 0 0 0 1.5px var(--accent);
}
.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-weight: 700; font-size: 0.92rem; color: var(--muted); transition: color 0.2s;
}
.nav__links a:hover { color: var(--accent); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; border-radius: 999px;
  background: var(--accent); color: var(--bg);
  font-weight: 800; font-size: 0.95rem; letter-spacing: 0.01em;
  border: 1.5px solid var(--accent);
  transition: transform 0.18s ease, background 0.2s, box-shadow 0.2s; cursor: pointer;
}
.btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--accent); }
.btn--ghost:hover { background: var(--accent-tint); color: var(--accent-deep); transform: translateY(-2px); }
.btn--small { padding: 9px 18px; font-size: 0.85rem; }

/* ---- hero ---- */
.hero { max-width: var(--maxw); margin-inline: auto;
  padding: clamp(64px, 11vw, 130px) var(--gutter) clamp(40px, 7vw, 80px); }
.hero .eyebrow { margin-bottom: 22px; display: block; }
.hero__title {
  font-weight: 900; font-size: clamp(2.4rem, 6.4vw, 4.4rem);
  line-height: 1.05; letter-spacing: -0.035em; margin-bottom: 26px; max-width: 18ch;
}
.hero__lead { max-width: 52ch; font-size: clamp(1.05rem, 1.8vw, 1.28rem); color: var(--text); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__note { margin-top: 22px; font-size: 0.95rem; color: var(--muted); }
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 6vw, 64px); align-items: center; }
.hero__photo {
  position: relative; margin: 0; justify-self: center;
  width: 100%; max-width: 420px; aspect-ratio: 1 / 1;
}
.hero__photo::before {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 94%; aspect-ratio: 1 / 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, var(--accent-tint), color-mix(in srgb, var(--accent-tint) 45%, var(--bg)));
}
.hero__photo img {
  position: relative; width: 100%; height: 100%;
  object-fit: contain; object-position: center bottom;
  filter: drop-shadow(0 16px 28px rgba(49, 49, 49, 0.14));
}
/* about (text-only) */
.about { max-width: 760px; }
.about .eyebrow { margin-bottom: 14px; display: block; }
.about .h2 { margin-bottom: 20px; }
.about p { margin-bottom: 16px; color: var(--text); }
.about p strong { font-weight: 800; }

/* ---- chips (is this you) ---- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(28px, 4vw, 40px); }
.chips li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  font-weight: 700; font-size: 0.95rem;
}
.chips li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }
.band__note { margin-top: clamp(28px, 4vw, 40px); max-width: 60ch; color: var(--text); font-size: 1.08rem; }
.band__note strong { font-weight: 800; color: var(--accent); }

/* ---- offers (work with me) ---- */
.offers { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 22px; align-items: stretch; }
.offer {
  display: flex; flex-direction: column;
  padding: clamp(28px, 4vw, 38px); border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.offer:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(49,49,49,0.07); }
.offer--flagship { background: var(--accent-tint); border-color: color-mix(in srgb, var(--accent) 24%, transparent); }
.offer__tag {
  font-weight: 800; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.offer--flagship .offer__tag { color: var(--accent); }
.offer__title { font-weight: 800; font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -0.02em; margin-bottom: 12px; }
.offer__desc { color: var(--text); font-size: 1.05rem; margin-bottom: 20px; max-width: 46ch; }
.offer--flagship .offer__desc { color: var(--text); }
.offer__list { display: grid; gap: 10px; margin-bottom: 24px; }
.offer__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 1rem; color: var(--text); }
.offer__list li::before {
  content: ""; margin-top: 9px; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex: none;
}
.offer__price { margin-top: auto; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.offer__price strong { font-weight: 900; font-size: 1.9rem; letter-spacing: -0.02em; }
.offer__price .was { color: var(--muted); font-weight: 700; font-size: 1.05rem; text-decoration: line-through; }
.offer__price .note { color: var(--muted); font-weight: 700; font-size: 0.85rem; }
.offer__cta { align-self: flex-start; }

/* ---- product (learn on your own) ---- */
.product { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.product__body .eyebrow { margin-bottom: 14px; display: block; }
.product__body .h2 { margin-bottom: 18px; }
.product__body p { color: var(--text); font-size: 1.08rem; margin-bottom: 16px; max-width: 52ch; }
.product__bonus {
  margin: 18px 0 24px; padding: 16px 20px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--accent);
  font-size: 0.98rem; color: var(--text); max-width: 52ch;
}
.product__bonus strong { font-weight: 800; }
.product__buy { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.product__buy strong { font-weight: 900; font-size: 1.8rem; letter-spacing: -0.02em; }
.product__buy .note { color: var(--muted); font-weight: 700; font-size: 0.85rem; }
.product__formats { display: flex; flex-direction: column; gap: 14px; }
.fmt {
  display: flex; align-items: center; gap: 16px; padding: 20px 22px;
  border-radius: 12px; background: var(--surface); border: 1px solid var(--line);
}
.fmt__mark {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; background: var(--accent-tint);
  color: var(--accent-deep); font-weight: 900; font-size: 1.05rem;
}
.fmt__t { font-weight: 800; font-size: 1.02rem; }
.fmt__s { color: var(--muted); font-size: 0.92rem; }

/* ---- proof bar + testimonials ---- */
.proofbar {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(36px, 5vw, 52px);
}
.proofbar .stat {
  flex: 1 1 180px; padding: 20px 22px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--line);
}
.proofbar .stat strong { display: block; font-weight: 900; font-size: 1.7rem; letter-spacing: -0.02em; }
.proofbar .stat span { color: var(--muted); font-size: 0.92rem; font-weight: 700; }
.testimonials { columns: 2; column-gap: 22px; }
.tcard {
  break-inside: avoid; margin-bottom: 22px;
  padding: 26px 26px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
}
.tcard__stars { color: var(--amber); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 12px; }
.tcard__quote { font-size: 1.05rem; color: var(--text); margin-bottom: 18px; }
.tcard__who { display: flex; align-items: center; gap: 10px; }
.tcard__name { font-weight: 800; font-size: 0.98rem; }
.tcard__loc { color: var(--muted); font-size: 0.9rem; font-weight: 700; }

/* ---- about (coach) ---- */
.coach { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.coach__photo {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, var(--accent-tint), var(--surface));
  border: 1px solid var(--line); aspect-ratio: 13 / 14;
}
.coach__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.coach__body .eyebrow { margin-bottom: 12px; display: block; }
.coach__body .h2 { margin-bottom: 20px; }
.coach__body > p { margin-bottom: 16px; color: var(--text); }
.coach__body strong { font-weight: 800; }
.coach__note {
  margin-top: 8px; padding-left: 18px; border-left: 3px solid var(--accent);
  color: var(--muted); font-style: italic; font-size: 0.98rem;
}

/* ---- channels (content) ---- */
.channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.channel {
  display: flex; flex-direction: column; gap: 8px;
  padding: 28px 26px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.channel:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(49,49,49,0.07); }
.channel__k { font-weight: 800; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.channel__t { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.01em; }
.channel__d { color: var(--muted); font-size: 0.98rem; }
.channel__go { margin-top: auto; padding-top: 14px; font-weight: 800; font-size: 0.92rem; color: var(--accent); }
.channel--soon { opacity: 0.72; }
.channel--soon .channel__go { color: var(--muted); }

/* ---- start ---- */
.start { background: var(--accent-deep); color: var(--bg); padding-inline: var(--gutter); }
.start__inner { max-width: var(--maxw); margin-inline: auto; padding-block: clamp(64px, 9vw, 110px); }
.start .eyebrow { color: color-mix(in srgb, var(--bg) 75%, var(--accent)); margin-bottom: 16px; display: block; }
.start__lead { margin-top: 18px; color: color-mix(in srgb, var(--bg) 82%, transparent); font-size: 1.1rem; max-width: 54ch; }
.start__contacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.contact {
  padding: 24px; border-radius: 12px;
  background: color-mix(in srgb, var(--bg) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--bg) 22%, transparent);
  transition: background 0.2s, transform 0.2s;
}
.contact:hover { background: color-mix(in srgb, var(--bg) 16%, transparent); transform: translateY(-3px); }
.contact__label { display: block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: color-mix(in srgb, var(--bg) 65%, var(--accent)); margin-bottom: 8px; }
.contact__value { font-weight: 800; font-size: 1.05rem; }

/* ---- footer ---- */
.footer {
  max-width: var(--maxw); margin-inline: auto;
  padding: 40px var(--gutter); display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
}
.footer__brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; }
.footer__meta { color: var(--muted); font-size: 0.9rem; }

/* ---- reveal ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---- responsive ---- */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__photo { max-width: 380px; }
  .offers { grid-template-columns: 1fr; }
  .product { grid-template-columns: 1fr; }
  .coach { grid-template-columns: 1fr; }
  .coach__photo { max-width: 360px; }
  .channels { grid-template-columns: 1fr; }
  .testimonials { columns: 1; }
  .start__contacts { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { body { font-size: 17px; } }

/* ---- a11y ---- */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.start :focus-visible { outline-color: var(--bg); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---- disclaimer ---- */
.disclaimer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(36px, 6vw, 56px) var(--gutter);
}
.disclaimer__inner { max-width: var(--maxw); margin-inline: auto; }
.disclaimer__title {
  display: block; margin-bottom: 16px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.disclaimer p {
  max-width: 80ch; margin-bottom: 12px;
  color: var(--muted); font-size: 0.9rem; line-height: 1.7;
}
.disclaimer p:last-child { margin-bottom: 0; }
.disclaimer strong { color: var(--text); font-weight: 800; }