/* =========================================================================
   HERBBOSS NG — DESIGN TOKENS
   ========================================================================= */
:root{
  /* Color */
  --forest-900:#0B2A1E;
  --forest-800:#123526;
  --forest-700:#1B4332;
  --forest-600:#2B5541;
  --forest-500:#436B54;
  --gold-600:#A87F2A;
  --gold-500:#C89B3C;
  --gold-300:#E4C878;
  --gold-100:#F3E6C3;
  --cream:#FBF7EF;
  --cream-dim:#F3EDE0;
  --ink:#1C2118;
  --ink-soft:#4A5147;
  --line:#DED4BE;
  --white:#FFFFFF;

  /* Type */
  --font-display:'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Scale */
  --step-eyebrow: .78rem;
  --step-body: 1.0625rem;
  --step-lead: 1.25rem;
  --step-h3: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
  --step-h2: clamp(1.9rem, 1.4rem + 2vw, 2.75rem);
  --step-h1: clamp(2.4rem, 1.6rem + 3.5vw, 4rem);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 4px 24px rgba(11,42,30,.08);
  --shadow-cta: 0 8px 24px rgba(200,155,60,.35);

  --container: 1120px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* =========================================================================
   RESET / BASE
   ========================================================================= */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  font-size:var(--step-body);
  line-height:1.65;
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; color:var(--forest-900); line-height:1.12; font-weight:600; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
:focus-visible{ outline:3px solid var(--gold-500); outline-offset:3px; border-radius:4px; }

.container{ max-width:var(--container); margin-inline:auto; padding-inline:24px; }
.section{ padding:clamp(56px,8vw,104px) 0; }
.section--tight{ padding:clamp(40px,6vw,72px) 0; }

.eyebrow{
  font-family:var(--font-body);
  font-size:var(--step-eyebrow);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--gold-600);
  display:inline-block;
  margin-bottom:14px;
}
.eyebrow--onDark{ color:var(--gold-300); }

.lede{ font-size:var(--step-lead); color:var(--ink-soft); max-width:60ch; }

.visually-hidden{
  position:absolute; width:1px; height:1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0; padding:0; margin:-1px;
}

.skip-link{
  position:absolute; left:-9999px; top:0; background:var(--forest-900); color:var(--white);
  padding:12px 20px; z-index:200; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }

/* =========================================================================
   SIGNATURE MOTIF — the quiet line
   A steady horizontal line with one small, easy-to-miss dip: the visual
   thesis of the whole page ("you can feel fine while something is quietly
   off"). Used as the header underline, section dividers, and the hero
   background trace. Draws itself once on load / first scroll into view.
   ========================================================================= */
.quiet-line{ width:100%; height:auto; display:block; }
.quiet-line path{
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.quiet-line--divider path{
  stroke:var(--line);
  stroke-width:1.5;
}
.quiet-line--onDark path{
  stroke:rgba(228,200,120,.35);
}
.quiet-line--draw path{
  stroke-dasharray:1400;
  stroke-dashoffset:1400;
  animation:draw-line 2.4s ease-out .2s forwards;
}
@keyframes draw-line{ to{ stroke-dashoffset:0; } }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-body); font-weight:700; font-size:1rem;
  padding:16px 30px; border-radius:999px; border:2px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  min-height:52px; text-align:center;
}
.btn:active{ transform:translateY(1px); }
.btn--gold{
  background:linear-gradient(180deg,var(--gold-500),var(--gold-600));
  color:var(--forest-900);
  box-shadow:var(--shadow-cta);
}
.btn--gold:hover{ box-shadow:0 10px 30px rgba(200,155,60,.45); transform:translateY(-1px); }
.btn--outline{
  background:transparent; border-color:var(--forest-700); color:var(--forest-700);
}
.btn--outline:hover{ background:var(--forest-700); color:var(--white); }
.btn--onDark.btn--outline{ border-color:var(--gold-300); color:var(--gold-100); }
.btn--onDark.btn--outline:hover{ background:var(--gold-300); color:var(--forest-900); }
.btn--block{ width:100%; }
.btn--lg{ padding:19px 36px; font-size:1.08rem; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(251,247,239,.92); backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.site-header__row{
  display:flex; align-items:center; justify-content:space-between;
  padding-block:14px;
}
.brand{ display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:700; font-size:1.15rem; color:var(--forest-900); }
.brand__mark{ width:30px; height:30px; border-radius:8px; background:var(--forest-700); display:flex; align-items:center; justify-content:center; color:var(--gold-300); font-family:var(--font-display); font-size:1rem; }
.site-header .btn{ padding:12px 22px; min-height:44px; font-size:.92rem; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero{
  position:relative;
  background:radial-gradient(120% 140% at 15% 0%, var(--forest-700) 0%, var(--forest-800) 46%, var(--forest-900) 100%);
  color:var(--white);
  overflow:hidden;
}
.hero__line{ position:absolute; left:0; right:0; bottom:12%; opacity:.55; pointer-events:none; }
.hero__grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.15fr 1fr; gap:56px; align-items:center;
  padding-block:clamp(56px,9vw,96px);
}
.hero__hook{
  font-family:var(--font-display); font-weight:600;
  font-size:var(--step-h1);
  color:var(--white);
  max-width:15ch;
}
.hero__hook em{ font-style:italic; color:var(--gold-300); }
.hero__sub{ margin-top:22px; font-size:var(--step-lead); color:#E7EFE8; max-width:48ch; }
.hero__ctas{ margin-top:34px; display:flex; flex-wrap:wrap; gap:14px; }
.hero__trust{ margin-top:26px; display:flex; align-items:center; gap:10px; color:#CFE0D2; font-size:.92rem; }
.hero__trust svg{ flex-shrink:0; }

.hero__coverwrap{ position:relative; display:flex; justify-content:center; }
.hero__cover{
  width:100%; max-width:340px; aspect-ratio:5/7.4;
  border-radius:var(--radius-md);
  box-shadow:0 30px 60px rgba(0,0,0,.45), 0 4px 14px rgba(0,0,0,.3);
  transform:rotate(2deg);
}

/* Placeholder image blocks (removed automatically once real asset dropped in) */
.asset-slot{
  width:100%; height:100%; border-radius:inherit;
  background:repeating-linear-gradient(135deg, rgba(228,200,120,.14) 0 12px, rgba(228,200,120,.06) 12px 24px);
  border:2px dashed rgba(228,200,120,.55);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:18px; gap:6px; color:var(--gold-100);
}
.asset-slot--light{
  border-color:var(--gold-600); color:var(--forest-700);
  background:repeating-linear-gradient(135deg, rgba(200,155,60,.10) 0 12px, rgba(200,155,60,.04) 12px 24px);
}
.asset-slot__label{ font-weight:700; font-size:.82rem; letter-spacing:.04em; text-transform:uppercase; }
.asset-slot__path{ font-family:ui-monospace,'SFMono-Regular',Menlo,monospace; font-size:.72rem; opacity:.85; word-break:break-all; }

/* =========================================================================
   PAIN SECTION
   ========================================================================= */
.pain{ background:var(--cream); }
.pain__head{ max-width:56ch; }
.pain__grid{
  margin-top:40px;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:16px;
}
.pain__chip{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:20px 22px; font-family:var(--font-display); font-style:italic; font-size:1.06rem;
  color:var(--forest-800); box-shadow:var(--shadow-card);
}
.pain__note{ margin-top:34px; font-size:var(--step-lead); color:var(--forest-800); font-family:var(--font-display); font-style:italic; max-width:52ch; }

/* =========================================================================
   AGITATION / DARK BAND
   ========================================================================= */
.agitate{ background:var(--forest-900); color:var(--white); }
.agitate__grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.agitate__list{ margin-top:20px; display:flex; flex-direction:column; gap:16px; }
.agitate__list li{ display:flex; gap:12px; color:#E3ECE4; }
.agitate__list li::before{ content:''; width:8px; height:8px; margin-top:9px; border-radius:50%; background:var(--gold-500); flex-shrink:0; }

/* =========================================================================
   BOOK INTRO
   ========================================================================= */
.intro__grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:56px; align-items:center; }
.intro__cover{ aspect-ratio:5/7.2; border-radius:var(--radius-md); box-shadow:var(--shadow-card); overflow:hidden; max-width:380px; }
.intro__tag{ display:inline-block; background:var(--forest-700); color:var(--gold-200,var(--gold-300)); padding:6px 14px; border-radius:999px; font-size:.78rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; margin-bottom:16px; }
.intro__notlist{ margin-top:24px; display:flex; flex-wrap:wrap; gap:10px; }
.intro__notlist span{ font-size:.85rem; padding:8px 14px; border:1px solid var(--line); border-radius:999px; color:var(--ink-soft); }

/* =========================================================================
   CHAPTERS
   ========================================================================= */
.chapters__grid{
  margin-top:40px;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:14px;
}
.chapter-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:22px; display:flex; gap:16px; align-items:flex-start; box-shadow:var(--shadow-card);
}
.chapter-card__num{
  font-family:var(--font-display); font-weight:600; font-size:1.4rem; color:var(--gold-600);
  min-width:34px;
}
.chapter-card__title{ font-size:.98rem; color:var(--forest-900); font-weight:600; line-height:1.4; }
.chapter-card__title.is-placeholder{ color:#9AA396; font-weight:500; font-style:italic; }

/* =========================================================================
   VALUE / WHAT YOU GET
   ========================================================================= */
.value{ background:var(--cream-dim); }
.value__grid{ margin-top:40px; display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:22px; }
.value__item{ display:flex; flex-direction:column; gap:10px; }
.value__icon{ width:44px; height:44px; border-radius:10px; background:var(--forest-700); display:flex; align-items:center; justify-content:center; color:var(--gold-300); }
.value__item h3{ font-size:1.06rem; font-family:var(--font-body); font-weight:700; color:var(--forest-900); }
.value__item p{ color:var(--ink-soft); font-size:.96rem; }

/* =========================================================================
   BONUS / OFFER STACK
   ========================================================================= */
.stack{ background:var(--forest-900); color:var(--white); }
.stack__grid{ margin-top:36px; display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:14px; }
.stack-card{
  background:rgba(255,255,255,.04); border:1px solid rgba(228,200,120,.22); border-radius:var(--radius-md);
  padding:22px;
}
.stack-card__plus{ color:var(--gold-400,var(--gold-500)); font-family:var(--font-display); font-size:1.1rem; margin-bottom:6px; display:block; }
.stack-card h3{ font-family:var(--font-body); font-weight:700; font-size:1rem; color:var(--white); }
.stack-card p{ margin-top:6px; color:#C9D6CB; font-size:.92rem; }

.offer-summary{
  margin-top:44px; background:var(--forest-800); border:1px solid rgba(228,200,120,.3);
  border-radius:var(--radius-lg); padding:clamp(24px,4vw,40px);
  display:grid; grid-template-columns:1.2fr .8fr; gap:32px; align-items:center;
}
.offer-summary__list{ display:flex; flex-direction:column; gap:10px; }
.offer-summary__list li{ display:flex; gap:10px; color:#E3ECE4; font-size:.98rem; }
.offer-summary__list li svg{ flex-shrink:0; margin-top:3px; color:var(--gold-400,var(--gold-500)); }

/* =========================================================================
   EMOTIONAL VALUE
   ========================================================================= */
.emotion{ text-align:center; }
.emotion__inner{ max-width:760px; margin-inline:auto; }
.emotion h2{ font-size:var(--step-h2); }
.emotion__grid{ margin-top:40px; display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:16px; text-align:left; }
.emotion__chip{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md); padding:18px; font-size:.94rem; color:var(--forest-800); }

/* =========================================================================
   WHO IT'S FOR
   ========================================================================= */
.audience__grid{ margin-top:36px; display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:14px; }
.audience-chip{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:18px; text-align:center; font-weight:600; color:var(--forest-800); font-size:.94rem;
}

/* =========================================================================
   TRUST / AUTHORITY
   ========================================================================= */
.trust{ background:var(--cream-dim); }
.trust__grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.trust__notlist{ margin-top:22px; display:flex; flex-direction:column; gap:10px; }
.trust__notlist li{ display:flex; gap:10px; color:var(--ink-soft); font-size:.94rem; }

/* =========================================================================
   DISCLAIMER
   ========================================================================= */
.disclaimer{
  background:var(--gold-100); border-top:1px solid var(--gold-300); border-bottom:1px solid var(--gold-300);
}
.disclaimer__box{ display:flex; gap:16px; align-items:flex-start; max-width:820px; margin-inline:auto; }
.disclaimer__box svg{ flex-shrink:0; color:var(--gold-600); margin-top:4px; }
.disclaimer__box p{ color:#4A3F1F; font-size:.94rem; line-height:1.7; }
.disclaimer__box strong{ color:var(--forest-900); }

/* =========================================================================
   PRICE
   ========================================================================= */
.price{ background:var(--forest-700); color:var(--white); text-align:center; }
.price__card{
  max-width:520px; margin-inline:auto; background:var(--forest-800); border:1px solid rgba(228,200,120,.3);
  border-radius:var(--radius-lg); padding:clamp(28px,5vw,44px); box-shadow:0 20px 50px rgba(0,0,0,.25);
}
.price__amount{ font-family:var(--font-display); font-size:clamp(2.4rem,4vw,3.2rem); color:var(--gold-300); font-weight:600; }
.price__compare{ text-decoration:line-through; opacity:.6; font-size:1.1rem; margin-right:10px; }
.price__includes{ margin-top:18px; text-align:left; display:flex; flex-direction:column; gap:8px; }
.price__includes li{ display:flex; gap:8px; color:#E3ECE4; font-size:.92rem; }
.price__note{ margin-top:18px; font-size:.82rem; color:#B9C9BC; }

/* =========================================================================
   OBJECTIONS
   ========================================================================= */
.objections__grid{ margin-top:36px; display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:18px; }
.objection{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md); padding:22px; }
.objection__q{ font-weight:700; color:var(--forest-900); font-size:.98rem; }
.objection__a{ margin-top:8px; color:var(--ink-soft); font-size:.92rem; }

/* =========================================================================
   FAQ ACCORDION
   ========================================================================= */
.faq{ background:var(--cream-dim); }
.faq__list{ margin-top:32px; max-width:820px; margin-inline:auto; display:flex; flex-direction:column; gap:10px; }
.faq-item{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md); overflow:hidden; }
.faq-item__q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  background:none; border:none; padding:18px 22px; text-align:left;
  font-family:var(--font-body); font-weight:700; font-size:.98rem; color:var(--forest-900);
}
.faq-item__icon{ flex-shrink:0; transition:transform .2s ease; color:var(--gold-600); }
.faq-item[data-open="true"] .faq-item__icon{ transform:rotate(45deg); }
.faq-item__a{
  max-height:0; overflow:hidden; transition:max-height .25s ease, padding .25s ease;
  padding:0 22px; color:var(--ink-soft); font-size:.94rem;
}
.faq-item[data-open="true"] .faq-item__a{ max-height:400px; padding:0 22px 20px; }

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.final-cta{
  background:radial-gradient(120% 160% at 85% 100%, var(--forest-700) 0%, var(--forest-900) 55%);
  color:var(--white); text-align:center;
}
.final-cta__inner{ max-width:640px; margin-inline:auto; }
.final-cta__lines{ margin:26px 0 8px; display:flex; flex-direction:column; gap:6px; font-family:var(--font-display); font-size:1.2rem; color:var(--gold-200,var(--gold-300)); }
.final-cta .btn{ margin-top:26px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer{ background:var(--forest-900); color:#B9C9BC; padding-block:44px; font-size:.86rem; }
.site-footer__grid{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:24px; align-items:center; }
.site-footer nav{ display:flex; flex-wrap:wrap; gap:18px; }
.site-footer nav a:hover{ color:var(--gold-300); }
.site-footer__bottom{ margin-top:28px; padding-top:24px; border-top:1px solid rgba(255,255,255,.08); font-size:.78rem; color:#8AA090; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width:900px){
  .hero__grid, .intro__grid, .agitate__grid, .trust__grid{ grid-template-columns:1fr; }
  .hero__grid{ gap:40px; }
  .hero__coverwrap{ order:-1; }
  .hero__cover{ max-width:260px; }
  .offer-summary{ grid-template-columns:1fr; }
}
@media (max-width:640px){
  .site-header .btn span.btn-label-full{ display:none; }
  .hero__hook{ max-width:none; }
  .btn--lg{ width:100%; }
}
