@font-face{
  font-family:'Fraunces Var';
  font-style:normal;
  font-weight:300 700;
  font-display:swap;
  src:url('fonts/Fraunces-Var.woff2') format('woff2');
}
@font-face{
  font-family:'Fraunces Var';
  font-style:italic;
  font-weight:300 700;
  font-display:swap;
  src:url('fonts/Fraunces-Var-Italic.woff2') format('woff2');
}
@font-face{
  font-family:'Work Sans Var';
  font-style:normal;
  font-weight:400 700;
  font-display:swap;
  src:url('fonts/WorkSans-Var.woff2') format('woff2');
}
@font-face{
  font-family:'Work Sans Var';
  font-style:italic;
  font-weight:400 700;
  font-display:swap;
  src:url('fonts/WorkSans-Var-Italic.woff2') format('woff2');
}

/* ============ TOKENS ============ */
/* Deliberately single-theme (warm, olive/amber) — stays consistent regardless
   of the visitor's OS/browser theme setting. --olive/--on-olive are a matched
   pair: wherever --olive is used as a fill, its text uses --on-olive. */
:root{
  --ground:#F8F3E7;
  --ground-alt:#F0E7D2;
  --card:#FFFDF7;
  --ink:#2C2B1E;
  --ink-soft:#6E6850;
  --olive:#6E7C46;
  --olive-deep:#4A5730;
  --olive-light:#95A863;
  --on-olive:#F6EFDC;
  --amber:#C99A2E;
  --amber-soft:#E9CD92;
  --amber-ink:#463815;
  --sage:#7C9068;
  --danger:#B24C3F;
  --danger-soft:#F5E8E1;
  --success-soft:#ECF1E1;
  --line:rgba(44,43,30,0.14);
  --line-soft:rgba(44,43,30,0.08);
  --shadow:0 16px 34px -22px rgba(44,43,30,0.28);
  --shadow-sm:0 6px 16px -10px rgba(44,43,30,0.22);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}
body{
  margin:0;
  background:var(--ground);
  color:var(--ink);
  font-family:'Work Sans Var', 'Segoe UI', system-ui, sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img,svg{display:block; max-width:100%;}
a{color:inherit;}
h1,h2,h3{
  font-family:'Fraunces Var', Georgia, serif;
  font-weight:600;
  line-height:1.15;
  margin:0;
  text-wrap:balance;
  letter-spacing:-0.01em;
}
em{
  font-family:'Fraunces Var', Georgia, serif;
  font-style:italic;
  font-weight:500;
  color:var(--olive);
}
p{margin:0;}
.wrap{max-width:1080px; margin:0 auto; padding:0 24px;}

/* ============ MASTHEAD BAR (top edge accent) ============ */
.masthead-bar{background:var(--ink); height:6px;}

section{padding:48px 0;}
@media (max-width:720px){ section{padding:36px 0;} }
.sec-light{background:var(--ground-alt);}
.sec-white{background:var(--ground);}
.sec-olive{
  background-color:var(--olive);
  background-image:repeating-linear-gradient(135deg, rgba(255,255,255,0.045) 0px, rgba(255,255,255,0.045) 1px, transparent 1px, transparent 11px);
  color:var(--on-olive);
}
.sec-olive .rum-lines em, .sec-olive .rum-final em, .sec-olive em{color:var(--amber-soft);}
.sec-olive .forwhom-final{color:var(--on-olive);}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:'Work Sans Var', sans-serif;
  font-weight:700; font-size:15px;
  padding:14px 26px;
  border-radius:100px;
  border:none;
  cursor:pointer;
  text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--olive);
  color:var(--on-olive);
  box-shadow:var(--shadow-sm);
}
.btn-primary:hover{transform:translateY(-2px); box-shadow:var(--shadow);}
.btn-primary:focus-visible{outline:3px solid var(--amber-soft); outline-offset:3px;}

/* ============ sticker badge (amber pill, small rotation) ============ */
.sticker{
  display:inline-flex; align-items:center; justify-content:center;
  background:var(--amber);
  color:var(--amber-ink);
  font-family:'Work Sans Var', sans-serif;
  font-weight:700;
  font-size:12px;
  padding:6px 13px;
  border-radius:8px;
  transform:rotate(-2deg);
  box-shadow:var(--shadow-sm);
  white-space:nowrap;
}

/* ============ PROMISE / ECHO blocks (image, headline, image) ============ */
.promise-block{
  display:flex; flex-direction:column; align-items:center; gap:22px;
  text-align:center;
}
.promise-mark{width:48px; height:auto; border-radius:50%;}
.promise-block h1, .promise-block h2{
  max-width:640px;
  font-size:clamp(24px, 3.4vw, 36px);
}
.promise-subtitle{
  max-width:560px; margin-top:-8px;
  font-family:'Fraunces Var',serif; font-style:italic; font-weight:400;
  font-size:clamp(16px,2vw,19px); line-height:1.5;
  color:var(--ink-soft);
}
.bracket{
  display:flex; align-items:center; gap:8px;
  color:var(--ink-soft);
}
.bracket svg{width:180px; height:14px;}
.promise-art{
  width:min(720px, 96%); height:auto;
  border-radius:16px;
  box-shadow:var(--shadow);
}

/* ============ TESTIMONIALS (image grid only) ============ */
.proof-head{max-width:620px; margin:0 auto 32px; text-align:center;}
.proof-head h2{font-size:clamp(20px,2.6vw,28px);}
.proof-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
}
@media (max-width:760px){ .proof-grid{grid-template-columns:repeat(2,1fr);} }
.proof-tile{
  aspect-ratio:1;
  border-radius:18px;
  overflow:hidden;
  background:var(--card); border:1px solid var(--line);
}
.proof-tile img{width:100%; height:100%; object-fit:cover; display:block;}

/* ============ RUMINATION ============ */
.rum-lines p{
  font-family:'Fraunces Var',serif;
  font-size:clamp(16px,1.8vw,19px);
  font-weight:400;
  line-height:1.5;
  margin-bottom:18px;
  text-wrap:balance;
  max-width:640px;
  margin-left:auto; margin-right:auto;
  text-align:center;
}
.rum-lines em{color:var(--olive);}
.rum-art-frame{
  width:min(340px, 74%); margin:0 auto 22px;
  border-radius:16px; overflow:hidden; border:1px solid var(--line);
}
.rum-art{width:100%; height:auto; display:block;}
.rum-highlight{
  display:grid; grid-template-columns:auto 1fr; gap:22px; align-items:center;
  max-width:600px; margin:28px auto;
  background:var(--card); border:1px solid var(--line);
  border-radius:20px;
  padding:26px 28px;
}
@media (max-width:600px){ .rum-highlight{grid-template-columns:1fr; text-align:center;} }
.rum-highlight .icon-badge{width:42px; height:42px; color:var(--amber);}
.rum-highlight h3{color:var(--olive-deep); font-size:18px; margin-bottom:6px;}
.rum-highlight p{color:var(--ink-soft); font-size:14.5px;}
.rum-final{
  text-align:center; max-width:600px; margin:0 auto;
  font-family:'Fraunces Var',serif; font-size:clamp(18px,2.2vw,22px); font-weight:600;
}
.rum-final em{color:var(--olive);}

/* ============ STEPS (image consistently on one side, not alternating) ============ */
.steps-head{max-width:600px; margin:0 auto 30px; text-align:center;}
.steps-head h2{font-size:clamp(20px,2.6vw,28px);}
.steps{display:flex; flex-direction:column; gap:14px;}
.step-row{
  display:grid; grid-template-columns:1fr 260px; gap:24px; align-items:center;
  padding:22px; background:var(--card); border:1px solid var(--line); border-radius:18px;
}
@media (max-width:680px){ .step-row{grid-template-columns:1fr; gap:16px; text-align:center;} }
.step-panel{
  border-radius:14px;
  overflow:hidden;
  background:var(--ground-alt);
}
.step-panel img{width:100%; height:auto; display:block;}
.step-num{
  display:inline-flex; align-items:center;
  font-family:'Work Sans Var',sans-serif; font-weight:700; font-size:11.5px;
  color:var(--amber-ink); background:var(--amber-soft);
  padding:4px 10px; border-radius:7px;
  margin-bottom:8px; transform:rotate(-1.5deg);
}
.step-body h3{font-size:18px; margin-bottom:6px;}
.step-body p{color:var(--ink-soft); font-size:14.5px;}

/* ============ BENEFITS (2-col grid, 4 items, image+title+desc) ============ */
.benefits-head{max-width:600px; margin:0 auto 30px; text-align:center;}
.benefits-head h2{font-size:clamp(20px,2.6vw,28px);}
.benefit-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
@media (max-width:680px){ .benefit-grid{grid-template-columns:1fr;} }
.benefit-card{
  display:flex; gap:14px; align-items:flex-start;
  padding:20px; background:var(--card); border:1px solid var(--line); border-radius:16px;
}
.benefit-icon{
  width:42px; height:42px; border-radius:12px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background:var(--ground-alt);
}
.benefit-icon svg{width:21px; height:21px; color:var(--olive);}
.benefit-card h3{font-size:16px; margin-bottom:5px;}
.benefit-card p{font-size:13.5px; color:var(--ink-soft);}

/* ============ DELIVERABLES ============ */
.deliv-intro{max-width:600px; margin:0 auto; text-align:center;}
.deliv-intro h2{font-size:clamp(20px,2.6vw,28px); margin-top:8px;}
.deliv-list{display:flex; flex-direction:column; gap:12px;}
.deliv-row{
  display:grid; grid-template-columns:190px 1fr; gap:22px; align-items:center;
  padding:20px 22px; background:var(--card); border:1px solid var(--line); border-radius:18px;
}
.deliv-row.is-reverse{grid-template-columns:1fr 190px;}
.deliv-row.is-reverse .deliv-panel{order:2;}
@media (max-width:640px){
  .deliv-row, .deliv-row.is-reverse{grid-template-columns:1fr; text-align:center;}
  .deliv-row.is-reverse .deliv-panel{order:0;}
}
.deliv-panel{
  border-radius:14px; background:var(--ground-alt);
  overflow:hidden;
}
.deliv-panel img{width:100%; height:auto; display:block;}
.deliv-body h3{font-size:15.5px; margin-bottom:5px;}
.deliv-body p{font-size:13.5px; color:var(--ink-soft);}

/* ============ BONUS ============ */
.bonus-intro{max-width:600px; margin:0 auto 28px; text-align:center;}
.bonus-intro h2{font-size:clamp(20px,2.6vw,28px); margin-top:8px;}
.bonus-list{display:flex; flex-direction:column; gap:12px;}
.bonus-row{
  display:grid; grid-template-columns:180px 1fr; gap:20px; align-items:center;
  padding:20px 22px; background:var(--ground-alt); border:1px solid var(--line); border-radius:18px;
}
.bonus-row.is-reverse{grid-template-columns:1fr 180px;}
.bonus-row.is-reverse .bonus-panel{order:2;}
@media (max-width:640px){
  .bonus-row, .bonus-row.is-reverse{grid-template-columns:1fr; text-align:center;}
  .bonus-row.is-reverse .bonus-panel{order:0;}
}
.bonus-panel{
  border-radius:12px; background:var(--card);
  overflow:hidden;
}
.bonus-panel img{width:100%; height:auto; display:block;}
.bonus-tag{
  display:inline-block; font-size:10.5px; font-weight:700; letter-spacing:0.09em; text-transform:uppercase;
  color:var(--amber-ink); background:var(--amber-soft); padding:4px 10px; border-radius:100px; margin-bottom:8px;
}
.bonus-body h3{font-size:16px; margin-bottom:6px;}
.bonus-body p{font-size:13.5px; color:var(--ink-soft);}

/* ============ FOR WHOM ============ */
.forwhom-head{max-width:600px; margin:0 auto 26px; text-align:center;}
.forwhom-head h2{font-size:clamp(20px,2.6vw,28px);}
.forwhom-row{
  display:grid; grid-template-columns:1.2fr 0.8fr; gap:32px; align-items:center;
  background:var(--card); border:1px solid var(--line); border-radius:20px; padding:30px;
}
@media (max-width:820px){ .forwhom-row{grid-template-columns:1fr; padding:22px;} }
.forwhom-list{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:2px;}
.forwhom-list li{
  display:flex; gap:11px; align-items:flex-start;
  padding:11px 0; border-bottom:1px solid var(--line-soft);
  font-size:14.5px; color:var(--ink);
}
.forwhom-list li:last-child{border-bottom:none; padding-bottom:0;}
.forwhom-list li:first-child{padding-top:0;}
.forwhom-list svg{width:17px; height:17px; color:var(--sage); flex-shrink:0; margin-top:2px;}
.forwhom-art{
  border-radius:14px; overflow:hidden;
}
.forwhom-art img{width:100%; height:auto; display:block;}
.forwhom-final{
  max-width:600px; margin:26px auto 0; text-align:center;
  font-family:'Fraunces Var',serif; font-size:19px; font-weight:500; color:var(--olive-deep);
}

/* ============ RECAP ============ */
.recap-head{max-width:600px; margin:0 auto 26px; text-align:center;}
.recap-head h2{font-size:clamp(20px,2.6vw,28px); margin-top:6px;}
.recap-card{
  max-width:600px; margin:0 auto; background:var(--card);
  border:1px solid var(--line); border-radius:18px; padding:6px 26px;
}
@media (max-width:600px){ .recap-card{padding:6px 18px;} }
.recap-row{
  display:flex; justify-content:space-between; align-items:center; gap:14px;
  padding:13px 0; border-bottom:1px dotted var(--line);
}
.recap-row:last-child{border-bottom:none;}
.recap-row .item{display:flex; align-items:center; gap:9px; font-size:14px;}
.recap-row .item svg{width:15px; height:15px; color:var(--sage); flex-shrink:0;}
.recap-row .price{font-family:'Fraunces Var',serif; font-weight:600; font-size:16.5px; color:var(--olive-deep); font-variant-numeric:tabular-nums;}
.recap-total{
  max-width:600px; margin:26px auto 0; text-align:center;
}
.recap-total h3{font-size:clamp(18px,2.2vw,22px); margin-bottom:8px;}
.recap-total p{font-size:14.5px; color:var(--ink-soft);}

/* ============ OFFER (big price card, reused twice) ============ */
.offer-card{
  position:relative;
  max-width:700px; margin:0 auto;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  padding:32px;
  box-shadow:var(--shadow);
  display:grid; grid-template-columns:auto 1fr; gap:36px; align-items:center;
}
@media (max-width:760px){ .offer-card{grid-template-columns:1fr; text-align:center; padding:26px 22px;} }
.offer-sticker{position:absolute; top:-14px; left:28px;}
.offer-badge{width:260px; height:auto; border-radius:16px; box-shadow:var(--shadow-sm);}
@media (max-width:760px){ .offer-badge{margin:0 auto; width:220px;} }
.offer-main{display:flex; flex-direction:column; align-items:center; gap:11px; text-align:center;}
.offer-mini-badge{width:44px; height:auto; border-radius:50%;}
.offer-divider{width:70%; height:1px; background:var(--line); border:none;}
.offer-label{font-size:13px; color:var(--ink-soft);}
.offer-price{font-family:'Fraunces Var',serif; font-weight:700; font-size:34px; color:var(--olive-deep); line-height:1;}
.offer-alt{font-size:14px; color:var(--ink-soft);}
.offer-pay-row{display:flex; gap:9px; flex-wrap:wrap; justify-content:center;}
.offer-pay-row svg{width:46px; height:18px;}

/* ============ ACCESS ============ */
.access-head{max-width:600px; margin:0 auto 30px; text-align:center;}
.access-head h2{font-size:clamp(20px,2.6vw,28px);}
.access-row{display:grid; grid-template-columns:repeat(3,1fr); gap:14px;}
@media (max-width:760px){ .access-row{grid-template-columns:1fr; max-width:400px; margin:0 auto;} }
.access-card{
  padding:24px 22px; background:var(--card); border:1px solid var(--line); border-radius:16px;
}
.access-icon{width:32px; height:32px; color:var(--olive); margin-bottom:12px;}
.access-card h3{font-size:16px; margin-bottom:6px;}
.access-card p{font-size:13.5px; color:var(--ink-soft);}

/* ============ AUTHORITY ============ */
.authority-row{
  display:grid; grid-template-columns:1fr 0.7fr; gap:36px; align-items:center;
}
@media (max-width:760px){ .authority-row{grid-template-columns:1fr; text-align:center;} }
.authority-name{font-size:20px; margin-bottom:2px;}
.authority-role{font-size:14.5px; color:var(--olive-deep); font-weight:500; margin-bottom:12px; font-family:'Fraunces Var',serif; font-style:italic;}
.authority-bio{font-size:14.5px; color:var(--ink-soft); max-width:52ch;}
@media (max-width:760px){ .authority-bio{margin:0 auto;} }
.authority-photo{
  border-radius:18px; background:var(--card); border:1px solid var(--line);
  overflow:hidden;
}
.authority-photo img{width:100%; height:auto; display:block;}

/* ============ CHOICE ============ */
.choice-head{max-width:600px; margin:0 auto 26px; text-align:center;}
.choice-head h2{font-size:clamp(20px,2.6vw,28px);}
.choice-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
@media (max-width:680px){ .choice-row{grid-template-columns:1fr;} }
.choice-box{padding:22px 22px; border-radius:16px; display:flex; flex-direction:column; gap:10px;}
.choice-bad{background:var(--danger-soft);}
.choice-good{background:var(--success-soft);}
.choice-box .icon{width:26px; height:26px;}
.choice-bad .icon{color:var(--danger);}
.choice-good .icon{color:var(--olive-deep);}
.choice-box h3{font-size:17px; font-family:'Fraunces Var',serif; font-weight:600;}
.choice-bad h3{color:var(--danger);}
.choice-good h3{color:var(--olive-deep);}
.choice-box p{font-size:14px; color:var(--ink-soft);}
.choice-final{max-width:600px; margin:26px auto 0; text-align:center;}
.choice-final p{font-size:16px; margin-bottom:8px;}
.choice-final p:last-child{color:var(--ink-soft); font-size:14.5px;}

/* ============ FAQ ============ */
.faq-head{max-width:600px; margin:0 auto 26px; text-align:center;}
.faq-head h2{font-size:clamp(20px,2.6vw,28px);}
.faq-list{display:flex; flex-direction:column; gap:10px; max-width:680px; margin:0 auto;}
.faq-item{background:var(--card); border:1px solid var(--line); border-radius:14px; overflow:hidden;}
.faq-item summary{
  cursor:pointer; list-style:none;
  padding:17px 20px;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  font-weight:600; font-size:15px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary .plus{
  width:24px; height:24px; border-radius:50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; position:relative;
}
.faq-item summary .plus::before, .faq-item summary .plus::after{content:""; position:absolute; background:var(--olive);}
.faq-item summary .plus::before{width:9px; height:1.5px;}
.faq-item summary .plus::after{width:1.5px; height:9px; transition:transform .2s ease;}
.faq-item[open] summary .plus::after{transform:rotate(90deg); opacity:0;}
.faq-item .faq-a{padding:0 20px 19px; color:var(--ink-soft); font-size:14px; max-width:64ch;}

/* ============ FOOTER (legal text only) ============ */
.footer-legal{max-width:680px; margin:0 auto; text-align:center;}
.footer-legal p{font-size:12px; color:var(--ink-soft); margin-bottom:12px;}
.footer-legal p:last-child{margin-bottom:0; font-size:11.5px;}

/* ============ reveal ============ */
.reveal{opacity:0; transform:translateY(14px); transition:opacity .6s ease, transform .6s ease;}
.reveal.in{opacity:1; transform:none;}