/* ============================================================
   ONWARD STEPS  |  direction A, "Ink on white" (2026-09-13)
   EB Garamond headlines (same family of serif as the logo),
   Source Sans 3 body at 19px in near-black, white background,
   terracotta only on the button, key phrases and the company name.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Source+Sans+3:wght@400;600;700&display=swap');

:root{
  --bg:         #FFFFFF;
  --alt:        #F7F5F1;
  --white:      #FFFFFF;

  --navy:       #1B3A5C;
  --navy-deep:  #142C47;
  --navy-soft:  #D3DDE8;

  --terra:      #B85C34;
  --terra-deep: #9C4B28;
  --terra-wash: #F6E4DA;

  --ink:        #1F2A37;
  --body:       #2B3644;
  --muted:      #5D6773;
  --line:       #E4DFD6;

  --radius:     6px;

  --serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Source Sans 3", "Segoe UI", Arial, sans-serif;

  --wide: 1240px;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth; scroll-padding-top:96px}
body{
  margin:0; background:var(--bg); color:var(--body);
  font-family:var(--sans); font-size:1.1875rem; line-height:1.6;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
@media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto} }

::selection{background:var(--terra-wash); color:var(--navy-deep)}
:focus-visible{outline:3px solid var(--terra); outline-offset:3px; border-radius:4px}

img{max-width:100%; display:block}
a{color:var(--terra-deep); text-underline-offset:3px; text-decoration-thickness:1.5px}
a:hover{color:var(--navy)}

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

.wrap{width:100%; max-width:var(--wide); margin-inline:auto; padding-inline:clamp(24px,5vw,80px)}
.narrow{max-width:760px}
section{padding-block:clamp(56px,7vw,88px)}

/* ---------- type ---------- */
h1,h2,h3,h4{font-family:var(--serif); color:var(--navy); margin:0; font-weight:700; letter-spacing:-.01em; text-wrap:balance}
h1{font-size:clamp(2.6rem,5vw,4.25rem); line-height:1.05}
h2{font-size:clamp(2rem,3.2vw,2.5rem); line-height:1.15}
h3{font-size:1.625rem; line-height:1.2}
p{margin:0 0 1.1rem; text-wrap:pretty}
p:last-child{margin-bottom:0}

.eyebrow{
  display:block; font-family:var(--sans); font-size:.9375rem; font-weight:700;
  letter-spacing:.02em; color:var(--terra-deep); margin:0 0 1rem;
}

.lead{font-size:clamp(1.2rem,1.6vw,1.375rem); line-height:1.5; color:var(--body); max-width:30em}
.lead b{font-weight:700; color:var(--navy); border-bottom:3px solid var(--terra)}
.big{font-family:var(--serif); font-weight:600; font-size:clamp(1.4rem,2vw,1.75rem); line-height:1.4; color:var(--navy)}
.small{font-size:1rem; color:var(--muted)}

.section-head{max-width:46rem; margin-bottom:clamp(28px,3vw,36px)}
.section-head p:not(.eyebrow){margin-top:1rem; color:var(--body)}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  font-family:var(--sans); font-size:1.1875rem; font-weight:700; line-height:1;
  padding:1.1rem 1.75rem; border-radius:10px; border:1.5px solid transparent;
  text-decoration:none; cursor:pointer;
  transition:background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary{background:linear-gradient(135deg,#EFD58F,#D9B45E); color:#4A3A0C}
.btn-primary:hover{background:linear-gradient(135deg,#E9CB7C,#CFA748); color:#4A3A0C}
.btn-ghost{background:var(--white); color:var(--navy); border-color:var(--line)}
.btn-ghost:hover{border-color:var(--navy); color:var(--navy)}
.btn-sm{padding:.85rem 1.4rem; font-size:1.0625rem}
.actions{display:flex; flex-wrap:wrap; align-items:center; gap:1.25rem; margin-top:1.5rem}
.actions .hint{margin:0}
.arrow{
  font-family:var(--sans); font-size:1.1rem; font-weight:700; color:var(--terra-deep);
  text-decoration:underline; text-decoration-thickness:2px; text-underline-offset:4px;
}
.arrow:hover{color:var(--navy)}
.hint{font-size:1.0625rem; line-height:1.5; color:var(--muted); margin:.75rem 0 0}

/* ---------- header ---------- */
header.site{
  position:sticky; top:0; z-index:50; background:rgba(255,255,255,.82);
  backdrop-filter:saturate(140%) blur(12px); -webkit-backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid var(--line);
}
/* on the homepage the bar is glass over the hero frame */
header.site:has(+ .hero-soft){background:rgba(255,255,255,.35); border-bottom-color:rgba(255,255,255,.6); margin-bottom:-81px}
header.site:has(+ .hero-soft) + .hero-soft{padding-top:calc(81px + clamp(20px,3vw,40px))}
.bar{display:flex; align-items:center; gap:2.5rem; padding-block:1.05rem}
.brand{display:block; flex:none}
.brand img{height:42px; width:auto}
nav.main{display:flex; gap:2rem; margin-inline-start:auto}
nav.main a{font-size:1.125rem; font-weight:500; color:var(--body); text-decoration:none; padding-block:.35rem; transition:color .18s ease}
nav.main a:hover{color:var(--navy)}
nav.main a[aria-current="page"]{color:var(--navy); font-weight:700}
.bar .btn{flex:none; background:var(--white); color:#4A3A0C; border-color:#D9B45E}
.bar .btn:hover{background:linear-gradient(135deg,#EFD58F,#D9B45E); color:#4A3A0C}

.burger{display:none; flex:none; width:44px; height:40px; border:1px solid var(--line); border-radius:var(--radius); background:var(--white); cursor:pointer; position:relative}
.burger span,.burger::before,.burger::after{content:""; position:absolute; left:12px; right:12px; height:2px; border-radius:2px; background:var(--navy); transition:.2s ease}
.burger::before{top:13px} .burger span{top:19px} .burger::after{top:25px}
.burger[aria-expanded="true"]::before{top:19px; transform:rotate(45deg)}
.burger[aria-expanded="true"] span{opacity:0}
.burger[aria-expanded="true"]::after{top:19px; transform:rotate(-45deg)}

#mobile-nav[hidden]{display:none}
#mobile-nav{display:flex; flex-direction:column; padding-bottom:1.2rem}
#mobile-nav a{padding:.85rem 0; color:var(--navy); font-weight:600; text-decoration:none; border-bottom:1px solid var(--line); font-size:1.0625rem}

@media (max-width:880px){
  nav.main{display:none}
  .burger{display:block; margin-inline-start:auto}
  .bar .btn{display:none}
}

/* ---------- bands ---------- */
.band-paper{background:var(--white)}
.band-sand{background:var(--alt)}

/* ---------- hero ---------- */
.hero{padding-block:clamp(48px,6vw,72px) clamp(56px,7vw,88px); background:var(--bg)}
.hero h1{margin-bottom:1.5rem; max-width:12em}
.hero-soft{padding-block:clamp(36px,4.5vw,64px) clamp(48px,6vw,80px)}
.testimonial{padding-top:clamp(40px,5vw,64px)}
.soft-frame{position:relative; overflow:hidden; background:#FCF7F3; border:1.5px solid #EBD3C6; border-radius:clamp(16px,2vw,22px); padding:clamp(56px,8vw,96px) clamp(24px,5vw,64px); text-align:center}
.soft-blob{position:absolute; border-radius:50%; background:var(--terra-wash); pointer-events:none}
.soft-blob.a{width:420px; height:420px; right:-140px; top:-160px}
.soft-blob.b{width:360px; height:360px; left:-120px; bottom:-180px}
.soft-inner{position:relative; display:flex; flex-direction:column; align-items:center; gap:1.35rem; max-width:52rem; margin:0 auto}
.soft-mark{display:block; width:132px; height:72px}
.hero-soft h1{font-weight:500; font-size:clamp(2.4rem,5vw,3.75rem); line-height:1.1; letter-spacing:-.005em; max-width:14em; margin:0}
.hero-soft h1 em{font-style:italic; color:var(--terra)}
.soft-lead{font-size:1.3125rem; line-height:1.55; color:#4A5563; max-width:30em; margin:0}
.btn-lg{padding:1.125rem 2.25rem; box-shadow:0 10px 24px rgba(184,92,52,.22)}
.byline-pill{margin-top:.75rem}
.byline-pill .pic{width:40px; height:40px}
@media (max-width:560px){
  .soft-frame{padding:48px 20px 44px}
  .soft-mark{width:100px; height:55px}
  .soft-lead{font-size:1.125rem}
}
.hero-grid{display:grid; grid-template-columns:1.05fr 1fr; gap:clamp(36px,6vw,80px); align-items:center}
.hero-art img{border-radius:var(--radius)}
.hero-art img:not(.portrait){width:100%; aspect-ratio:4/3; object-fit:cover}
@media (max-width:920px){
  .hero-grid{grid-template-columns:1fr}
  .hero-art{order:2; max-width:560px}
}

.byline{display:flex; align-items:center; gap:.85rem; margin-top:1.5rem; font-size:1.0625rem; color:var(--muted)}
.byline .pic{width:48px; height:48px; border-radius:50%; overflow:hidden; flex:none}
.byline .pic img{width:100%; height:100%; object-fit:cover}
.byline b{display:inline; color:var(--navy); font-weight:700}
.byline span span{color:var(--muted)}
.byline span span::before{content:" · "}

.page-hero{padding-block:clamp(28px,3.5vw,44px) clamp(22px,2.5vw,32px)}
.page-hero .lead{margin-top:.2rem}
.page-hero h1{font-size:clamp(2rem,3.6vw,2.75rem)}
.page-hero .eyebrow{display:none}

/* ---------- the check ---------- */
.check-frame{background:var(--white); border:1.5px solid #EBD3C6; border-radius:22px; padding:clamp(28px,4vw,48px)}
.check-head{text-align:center; margin-bottom:clamp(20px,3vw,32px)}
.if-touch{display:none}
@media (hover:none){ .if-hover{display:none} .if-touch{display:inline} }
.check-head h2{font-weight:500; font-size:clamp(1.75rem,3vw,2.375rem); line-height:1.2}
.check-head p{margin:.6rem auto 0; color:#4A5563; font-size:1.0625rem; line-height:1.5; max-width:44rem}
.check-lay{display:grid; grid-template-columns:minmax(0,1.6fr) minmax(0,1fr); gap:clamp(24px,4vw,44px); align-items:start}
.check-group{margin-bottom:1.1rem}
.check-gh{display:flex; align-items:flex-end; gap:.75rem; margin-bottom:.3rem}
.check-group h3{font-weight:500; font-size:1.3125rem; margin:0 auto 0 0}
.check-cols{display:flex; gap:.25rem; padding-bottom:.15rem}
.check-cols span{width:3.5rem; text-align:center; font-size:.8125rem; line-height:1.3; color:var(--muted); white-space:nowrap}
.check-row{display:grid; grid-template-columns:minmax(0,1fr) auto; align-items:center; gap:.6rem; padding:.3rem 0; border-top:1px solid #EFE6DE}
.check-row .ico{display:none; align-items:center; justify-content:center; width:1.5rem; height:1.5rem; color:var(--navy); transition:color .25s}
.check-row .ico svg{width:1.3rem; height:1.3rem}
.check-row.ok .ico{color:#6D7784}
.check-row .tx{font:inherit; font-size:1rem; line-height:1.35; color:var(--body); background:none; border:0; padding:0; text-align:left; cursor:pointer; transition:color .25s}
.check-row .tx > span:first-child{display:block}
.check-row{position:relative}
.check-row.first{grid-template-columns:minmax(0,1fr) auto auto}
.check-nudge{display:flex; align-items:center; gap:.35rem; margin-right:.4rem; white-space:nowrap; font-size:.875rem; font-weight:600; color:var(--navy)}
.check-nudge svg{width:1.125rem; height:.875rem; flex:none}
.check-row.first .cup-opt{border-color:#EBD9A6; animation:cupglow 1.6s ease-in-out infinite}
@keyframes cupglow{0%,100%{box-shadow:0 0 0 0 rgba(217,180,94,.55)} 50%{box-shadow:0 0 0 6px rgba(217,180,94,0)}}
@media (prefers-reduced-motion:reduce){ .check-row.first .cup-opt{animation:none; box-shadow:0 0 0 3px rgba(217,180,94,.35)} }
.check-row .dt{position:absolute; left:0; top:calc(100% - .35rem); z-index:5; width:min(26rem, 100%); background:var(--white); border:1px solid #EBD3C6; border-radius:12px; padding:.7rem .9rem; box-shadow:0 12px 32px rgba(27,58,92,.12); font-size:.9375rem; line-height:1.45; font-weight:400; color:var(--body); opacity:0; visibility:hidden; transform:translateY(-4px); transition:opacity .2s ease, transform .2s ease, visibility 0s .2s; pointer-events:none}
.check-row .dt::before{content:""; position:absolute; left:1.25rem; top:-6px; width:10px; height:10px; background:var(--white); border-left:1px solid #EBD3C6; border-top:1px solid #EBD3C6; transform:rotate(45deg)}
.check-row .tx:hover .dt, .check-row .tx:focus-visible .dt, .check-row.open .dt{opacity:1; visibility:visible; transform:none; transition:opacity .2s ease, transform .2s ease, visibility 0s}
.check-row.ok .tx{color:#6D7784}
.check-row.need .tx{color:var(--navy); font-weight:600}
.cups{display:flex; gap:.25rem}
.cup-opt{display:flex; flex-direction:column; align-items:center; gap:.25rem; width:3.5rem; padding:.3rem .2rem; background:none; border:1px solid transparent; border-radius:10px; cursor:pointer; font:inherit; transition:background .2s, border-color .2s}
.cup-opt small{display:none; font-size:.75rem; line-height:1.3; color:var(--muted); white-space:nowrap}
.cup-opt:hover{background:#FCF7F3; border-color:#EBD3C6}
.cup-opt.on{background:#FBF1DA; border-color:#EBD9A6}
.cup-opt.on small{color:#8A6A14; font-weight:600}
.cup{position:relative; width:1.25rem; height:1.375rem; border:1.5px solid var(--navy); border-top:0; border-radius:0 0 .6rem .6rem; background:var(--white); overflow:hidden}
.cup::before{content:""; position:absolute; left:-2px; right:-2px; top:0; height:1.5px; background:var(--navy)}
.cup i{position:absolute; left:0; right:0; bottom:0; background:var(--navy); transition:background .3s}
.cup-opt.on .cup i{background:#C9A448}
.check-panel{position:sticky; top:96px; background:#FCF7F3; border:1px solid #EBD3C6; border-radius:16px; padding:clamp(18px,2vw,24px); display:flex; flex-direction:column; min-height:15rem}
.check-panel h3{font-weight:500; font-size:1.3125rem; margin-bottom:.2rem}
.check-hint{font-size:.9375rem; color:var(--muted); margin:0 0 .75rem; line-height:1.45}
.check-panel ul{list-style:none; margin:0 0 .9rem; padding:0; flex:1}
.check-panel li{position:relative; font-size:.9375rem; line-height:1.35; color:var(--body); padding:.4rem 0 .4rem 1rem; border-top:1px solid #EBD3C6; animation:fade .35s ease both}
.check-panel li::before{content:""; position:absolute; left:0; top:.85rem; width:7px; height:7px; border-radius:50%; background:#D9B45E}
.check-panel li small{display:block; font-size:.8125rem; color:var(--muted)}
@keyframes fade{from{opacity:0; transform:translateY(6px)} to{opacity:1; transform:none}}
@media (prefers-reduced-motion: reduce){ .check-panel li{animation:none} }
.check-path{display:block; width:52px; height:22px; margin:0 auto .3rem}
.check-panel .btn{width:100%; text-align:center; padding:.95rem 1.25rem; font-size:1.0625rem; box-shadow:0 10px 24px rgba(217,180,94,.28); transition:background .25s, color .25s, box-shadow .25s}
.check-panel .btn.dim{background:#EADFD6; border-color:#EADFD6; color:#6B5A4E; box-shadow:none}
.check-note{font-size:.8125rem; color:var(--muted); margin:.6rem 0 0; text-align:center}
/* bottom bar on phones, see check.js */
.check-bar{display:none}
@media (max-width:860px){
  .check-lay{grid-template-columns:1fr}
  .check-panel{position:static}
  .check-cols{display:none}
  .cup-opt small{display:block}
  .cup-opt{width:3.5rem}
  .check-row{grid-template-columns:minmax(0,1fr); gap:.3rem .6rem; padding:.45rem 0}
  .check-row .cups{grid-column:1}
  .check-row .tx{display:block; width:100%; min-height:2.5rem; padding:.45rem 1.5rem .45rem 0; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235D6773' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6l6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right .1rem top .7rem; background-size:1rem}
  .check-row.open .tx{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235D6773' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 15l6-6l6 6'/%3E%3C/svg%3E")}
  .check-row .dt{display:none; position:static; width:auto; margin:.35rem 0 .2rem; padding:.6rem .8rem; box-shadow:none; background:#FCF7F3; opacity:1; visibility:visible; transform:none; transition:none}
  .check-row .dt::before{display:none}
  .check-row.open .dt{display:block}
  .check-row.first{grid-template-columns:minmax(0,1fr)}
  .check-nudge{font-size:.8125rem; margin:0 0 .1rem}
  .check-nudge svg{transform:rotate(90deg)}
  .cups{justify-content:flex-start}
  .check-bar{position:fixed; left:0; right:0; bottom:0; z-index:30; display:flex; align-items:center; justify-content:space-between; gap:.75rem; padding:.6rem clamp(16px,4vw,24px) calc(.6rem + env(safe-area-inset-bottom)); background:var(--white); border-top:1.5px solid #EBD3C6; box-shadow:0 -8px 24px rgba(27,58,92,.08)}
  .check-bar[hidden]{display:none}
  .check-bar p{margin:0; font-size:.9375rem; font-weight:600; color:var(--navy); line-height:1.3}
  .check-bar .btn{flex:none; white-space:nowrap}
}

/* ---------- cards: three white cards, big numerals ---------- */
.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem}
.cards.two{grid-template-columns:repeat(2,1fr)}
.cards.two > .card:last-child:nth-child(odd){grid-column:1 / -1}
.card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:clamp(24px,3vw,36px); display:flex; flex-direction:column; gap:.85rem;
}
@media (max-width:820px){ .cards,.cards.two{grid-template-columns:1fr} }
.card .num{font-family:var(--serif); font-weight:700; font-size:2.75rem; line-height:1; color:var(--terra)}
.card h3{margin:0}
.card p{margin:0; color:var(--ink)}

/* how it works, short: one row with a dotted line */
.hiw-h{font-weight:500; font-size:clamp(1.6rem,2.6vw,2.125rem); margin:0 0 1.4rem}
.hiw{list-style:none; margin:0; padding:0; display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; position:relative}
.hiw::before{content:""; position:absolute; left:.875rem; right:.875rem; top:.875rem; border-top:2px dotted #E3C97A}
.hiw li{position:relative; display:flex; flex-direction:column; gap:.35rem}
.hiw .n{position:relative; width:1.75rem; height:1.75rem; border-radius:50%; background:#FBF1DA; border:1px solid #EBD9A6; color:#8A6A14; font-weight:600; font-size:.9375rem; display:flex; align-items:center; justify-content:center}
.hiw h3{margin:.4rem 0 0; font-weight:500; font-size:1.25rem}
.hiw p{margin:0; color:var(--muted); font-size:1rem; line-height:1.5}
@media (max-width:820px){
  .hiw{grid-template-columns:1fr; gap:1.1rem}
  .hiw::before{left:.875rem; right:auto; top:.875rem; bottom:.875rem; border-top:0; border-left:2px dotted #E3C97A}
  .hiw li{display:grid; grid-template-columns:1.75rem 1fr; column-gap:.75rem; row-gap:.15rem}
  .hiw .n{grid-row:1 / 3; align-self:start}
  .hiw h3{grid-column:2; margin:0; line-height:1.75rem}
  .hiw p{grid-column:2}
}

/* prices, short: cream strip, one row */
.price-lead{margin:-.6rem 0 1.2rem; color:#4A5563; font-size:1.0625rem; line-height:1.5; max-width:44rem}
.price-strip{background:var(--alt); border:1px solid #EBD3C6; border-radius:16px; padding:clamp(20px,2.5vw,28px) clamp(20px,3vw,32px)}
.price-row{display:grid; grid-template-columns:repeat(3,1fr); gap:1rem}
.price-row p{margin:0; display:flex; align-items:baseline; gap:.5rem; flex-wrap:wrap}
.price-row p + p{border-left:1px solid #EBD3C6; padding-left:1.25rem}
.price-row b{font-family:var(--serif); font-weight:500; font-size:2rem; line-height:1; color:var(--navy)}
.price-row span{color:var(--muted); font-size:1.0625rem}
.price-note{margin:1rem 0 0; color:var(--muted); font-size:.9375rem}
.price-note .arrow{margin-left:.5rem}
@media (max-width:700px){
  .price-row{grid-template-columns:1fr; gap:.75rem}
  .price-row p + p{border-left:0; padding-left:0; border-top:1px solid #EBD3C6; padding-top:.75rem}
  .price-note .arrow{display:block; margin:.4rem 0 0}
}

/* closing strip on the homepage */
.final .strip{background:var(--alt); border:1px solid #EBD3C6; border-radius:16px; padding:clamp(20px,2.5vw,28px) clamp(20px,3vw,32px); display:flex; align-items:center; justify-content:space-between; gap:1.5rem}
.final .strip h2{margin:0; font-weight:500; font-size:clamp(1.4rem,2.2vw,1.75rem)}
.final .strip p{margin:.3rem 0 0; color:var(--muted); font-size:1rem}
.final .strip .btn{flex:none}
@media (max-width:700px){ .final .strip{flex-direction:column; align-items:flex-start} .final .strip .btn{width:100%; text-align:center} }

/* numbered steps on the How it works page */
.steps{display:grid; gap:1rem}
.step{
  display:grid; grid-template-columns:3.5rem 1fr; gap:clamp(16px,2.5vw,28px); align-items:start;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:clamp(24px,3vw,36px);
}
.step .num{font-family:var(--serif); font-weight:700; font-size:2.75rem; line-height:1; color:var(--terra)}
.step h3{margin-bottom:.5rem}
.step p{margin-bottom:0; color:var(--ink)}
@media (max-width:640px){ .step{grid-template-columns:1fr; gap:.7rem} }

/* ---------- testimonial ---------- */
.quote{
  margin:0 auto; max-width:none;
  display:grid; grid-template-columns:minmax(0,1fr) auto; gap:clamp(32px,5vw,72px); align-items:center;
  background:#FCF7F3; border:1.5px solid #EBD3C6; border-radius:20px;
  padding:clamp(32px,4vw,56px);
}
.quote .said{order:1; display:flex; flex-direction:column; gap:1.25rem}
.quote .said svg{display:block; width:36px; height:30px; fill:var(--terra)}
.quote blockquote{
  margin:0; font-family:var(--serif); font-weight:500;
  font-size:clamp(1.35rem,2vw,1.7rem); line-height:1.5; color:var(--ink);
}
.quote .who{order:2; display:flex; flex-direction:column; align-items:flex-start; gap:.25rem; max-width:240px; padding-left:clamp(24px,3vw,48px); border-left:1px solid #EBD3C6}
.quote .who img{width:72px; height:72px; border-radius:50%; object-fit:cover; border:3px solid #fff; margin-bottom:.5rem}
.quote .who .name{font-family:var(--serif); font-weight:700; font-size:1.375rem; line-height:1.2; color:var(--navy); margin:0}
.quote .who .role{font-size:1rem; font-weight:400; line-height:1.35; color:var(--body); margin:0}
.quote .who .about{font-size:.9375rem; line-height:1.5; color:var(--muted); margin:0}
@media (max-width:760px){
  .quote{grid-template-columns:1fr}
  .quote .who{border:0; padding:0; max-width:none}
}

/* ---------- note from Amin (homepage) ---------- */
.note{
  display:grid; grid-template-columns:120px 1fr; gap:clamp(20px,3vw,32px); align-items:start;
  max-width:880px; margin:0 auto;
  background:var(--white); border:1px solid #EBD3C6; border-radius:16px;
  padding:clamp(22px,3vw,32px);
}
.note img{width:120px; height:150px; object-fit:cover; border-radius:10px; display:block}
.note-who p{margin:.5rem 0 0; font-size:.8125rem; line-height:1.35; color:var(--muted)}
.note h2{margin:0 0 .6rem; font-size:clamp(1.4rem,2.2vw,1.75rem)}
.note p{color:var(--ink); margin:0}
.note p + p{margin-top:.75rem}
@media (max-width:700px){ .note{grid-template-columns:1fr} .note-who{display:flex; align-items:flex-end; gap:.75rem} .note img{width:88px; height:110px} .note-who p{margin:0 0 .25rem} }

/* ---------- pricing ---------- */
.tiers{display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; align-items:stretch}
@media (max-width:860px){ .tiers{grid-template-columns:1fr} }
.tier{
  background:var(--white); border:1px solid #EBD3C6; border-radius:16px;
  padding:clamp(22px,2.8vw,32px); display:flex; flex-direction:column; gap:.5rem;
}
.tier.navy{background:var(--alt); border-color:#D9B45E}
.tier h3{font-family:var(--serif); font-size:1.375rem; font-weight:500; color:var(--navy); margin:0}
.tier .amount{font-family:var(--serif); font-weight:500; font-size:2.75rem; line-height:1; color:var(--navy); display:block; margin-top:.35rem}
.tier .per{font-size:.9375rem; color:var(--muted); margin:0; line-height:1.4}
.tier .ideas{margin:1rem 0 0; padding-top:1rem; border-top:1px solid #EBD3C6; font-weight:600; color:var(--navy); font-size:.9375rem; line-height:1.4}
.tier ul{list-style:none; margin:.6rem 0 0; padding:0; display:grid; gap:.55rem; font-size:1rem; color:var(--ink)}
.tier .per + ul{margin-top:1rem; padding-top:1rem; border-top:1px solid #EBD3C6}
.tier ul li{position:relative; padding-left:1.5rem; line-height:1.45}
.tier ul li::before{
  content:""; position:absolute; left:0; top:.32em; width:1rem; height:1rem;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A448' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center/100% no-repeat;
}
.tier .after{margin:auto 0 0; padding-top:1rem; font-size:.875rem; color:var(--muted)}
.tier .btn{margin-top:auto; width:100%; text-align:center; margin-block-start:1.25rem}

/* ---------- prose ---------- */
.prose p{font-size:1.1875rem; line-height:1.65; color:var(--ink)}
.prose h2{margin-top:2.75rem; margin-bottom:1rem; font-size:clamp(1.6rem,2.6vw,2rem)}
.prose h2:first-child{margin-top:0}
.prose .eyebrow + h2{margin-top:0}
.pull{
  margin:2rem 0;
  font-family:var(--serif); font-weight:600; font-size:clamp(1.4rem,2vw,1.75rem); line-height:1.4;
  color:var(--navy);
}

/* ---------- homepage snippet block ---------- */
.split{display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(32px,5vw,68px); align-items:center}
@media (max-width:860px){ .split{grid-template-columns:1fr} }
.split .portrait,.hero-art .portrait{border-radius:var(--radius); max-width:380px}

/* ---------- closing ---------- */
.final{padding-top:0}
.final .box{
  background:var(--alt); border-radius:var(--radius);
  padding:clamp(40px,6vw,64px); text-align:center;
}
.final .box h2{margin-bottom:1rem}
.final .box p{max-width:30em; margin-inline:auto; font-size:1.25rem; color:var(--ink)}
.final .box .btn{margin-top:1.75rem}

/* ---------- footer ---------- */
footer.site{border-top:1px solid var(--line); padding-block:2.4rem; background:var(--alt)}
.foot{display:flex; flex-wrap:wrap; gap:1rem 2rem; align-items:center; justify-content:space-between; font-size:1rem; color:var(--muted)}
.foot nav{display:flex; flex-wrap:wrap; gap:1.5rem}
.foot a{color:var(--navy); font-weight:600; text-decoration:none}
.foot a:hover{color:var(--terra)}
.foot p{margin:0}

/* ---------- reveal ---------- */
.reveal{opacity:0; transform:translateY(10px); transition:opacity .5s ease, transform .5s ease}
.reveal.in{opacity:1; transform:none}
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1; transform:none; transition:none} }

/* ---------- hero effects (preview: ?fx=1..5) ---------- */
.soft-blob.c{display:none}
@media (prefers-reduced-motion: no-preference){
  /* 1 slow drift */
  .fx1 .soft-blob{animation:drift 14s ease-in-out infinite alternate}
  .fx1 .soft-blob.b{animation-duration:19s; animation-delay:-7s}
  @keyframes drift{from{transform:translate(0,0)} to{transform:translate(44px,32px)}}

  /* 2 blurred glow that breathes (the default) */
  .soft-blob{filter:blur(64px); opacity:.85}
  .soft-blob.a{background:#F1CDB8; width:560px; height:560px; right:-120px; top:-160px; animation:breathe 10s ease-in-out infinite alternate}
  .soft-blob.b{background:#F6E3D7; width:520px; height:520px; left:-120px; bottom:-200px; animation:breathe 13s ease-in-out infinite alternate-reverse}
  .soft-blob.c{display:block; background:#E3EAF1; width:420px; height:420px; left:50%; bottom:-260px; margin-left:-210px; animation:breathe 16s ease-in-out infinite alternate}
  @keyframes breathe{from{transform:scale(1) translate(0,0)} to{transform:scale(1.16) translate(-24px,18px)}}

  /* 3 follows the mouse */
  .fx3 .soft-frame{--mx:0; --my:0}
  .fx3 .soft-blob{transition:transform .6s cubic-bezier(.2,.7,.2,1)}
  .fx3 .soft-blob.a{transform:translate(calc(var(--mx) * 28px), calc(var(--my) * 22px))}
  .fx3 .soft-blob.b{transform:translate(calc(var(--mx) * -22px), calc(var(--my) * -16px))}
  .fx3 .soft-mark{transition:transform .6s cubic-bezier(.2,.7,.2,1); transform:translate(calc(var(--mx) * -8px), calc(var(--my) * -6px))}

  /* 4 staged entrance */
  .fx4 .soft-inner > *{opacity:0; animation:rise .8s cubic-bezier(.2,.7,.2,1) forwards}
  .fx4 .soft-inner > :nth-child(2){animation-delay:.15s}
  .fx4 .soft-inner > :nth-child(3){animation-delay:.3s}
  .fx4 .soft-inner > :nth-child(4){animation-delay:.45s}
  .fx4 .soft-inner > :nth-child(5){animation-delay:.6s}
  .fx4 .soft-mark circle{transform-box:fill-box; transform-origin:center; transform:scale(0); animation:pop .6s cubic-bezier(.3,1.4,.4,1) forwards}
  .fx4 .soft-mark circle:nth-child(2){animation-delay:.2s}
  .fx4 .soft-mark circle:nth-child(3){animation-delay:.4s}
  .fx4 .soft-blob{opacity:0; animation:fadein 1.6s ease-out .3s forwards}
  @keyframes rise{from{opacity:0; transform:translateY(18px)} to{opacity:1; transform:none}}
  @keyframes pop{to{transform:scale(1)}}
  @keyframes fadein{to{opacity:1}}

  /* 5 paper grain over a soft gradient, blobs drifting slowly */
  .fx5 .soft-frame{background:radial-gradient(120% 90% at 18% 0%, #F8E1D3 0%, #FBF1EA 45%, #FDF8F4 100%)}
  .fx5 .soft-frame::after{content:""; position:absolute; inset:0; pointer-events:none; opacity:.10; mix-blend-mode:multiply;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.35 0 0 0 0 0.2 0 0 0 0 0.1 0 0 0 1 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>")}
  .fx5 .soft-blob{filter:blur(28px); opacity:.85; animation:drift 22s ease-in-out infinite alternate}
  .fx5 .soft-blob.b{animation-duration:28s; animation-delay:-9s}
}
