:root{
  --ink:#26251f;
  --muted:#6e685f;
  --paper:#fffaf4;
  --cream:#f8efe6;
  --blush:#f8d5dc;
  --rose:#cf6e83;
  --rose-dark:#994c5e;
  --sage:#77766a;
  --line:rgba(38,37,31,.14);
  --shadow:0 24px 70px rgba(38,37,31,.14);
  --radius:28px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg,var(--paper),#fff);
  line-height:1.65;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.site-header{
  position:sticky;top:0;z-index:10;
  display:flex;align-items:center;justify-content:space-between;
  padding:18px clamp(20px,5vw,72px);
  background:rgba(255,250,244,.86);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.brand{display:flex;align-items:center;gap:12px;font-weight:800;letter-spacing:.02em}
.brand img{width:38px;height:38px;border-radius:50%;object-fit:cover}
.nav{display:flex;gap:26px;font-size:14px;font-weight:600;color:var(--muted)}
.nav a:hover{color:var(--rose-dark)}
.section-pad{padding:clamp(64px,8vw,112px) clamp(20px,5vw,72px)}
.hero{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,520px);gap:clamp(36px,6vw,80px);align-items:center;min-height:calc(100vh - 76px)}
.eyebrow{text-transform:uppercase;letter-spacing:.16em;color:var(--rose-dark);font-size:12px;font-weight:800;margin:0 0 14px}
h1,h2,h3{line-height:1.05;margin:0;color:var(--ink)}
h1,h2{font-family:"Playfair Display",serif;font-weight:700}
h1{font-size:clamp(48px,7vw,86px);letter-spacing:-.04em;max-width:780px}
h2{font-size:clamp(34px,4.5vw,58px);letter-spacing:-.03em;max-width:880px}
h3{font-size:19px;margin-bottom:10px}
.lead{font-size:clamp(18px,2.1vw,24px);color:var(--muted);max-width:680px;margin:28px 0}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.button{display:inline-flex;align-items:center;justify-content:center;border-radius:999px;padding:14px 22px;font-weight:800;border:1px solid var(--line);transition:.2s ease}
.button.primary{background:var(--ink);color:white;border-color:var(--ink)}
.button.primary:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(38,37,31,.18)}
.button.secondary{background:#fff;color:var(--ink)}
.button.secondary:hover{border-color:var(--rose);color:var(--rose-dark)}
.hero-image-card{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);background:var(--cream)}
.hero-image-card img{width:100%;height:min(72vh,760px);object-fit:cover;object-position:center top}
.belief-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.belief-strip p{margin:0;background:var(--cream);padding:28px clamp(18px,4vw,56px);font-family:"Playfair Display",serif;font-size:clamp(22px,2.6vw,36px);line-height:1.1}
.two-col{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(36px,6vw,78px);align-items:center}
.about p:not(.eyebrow),.lab p,.resources p{color:var(--muted);font-size:17px;max-width:720px}
.portrait-card,.lab-image{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);background:var(--cream)}
.quote-section{background:var(--ink);color:#fff}
.quote-section blockquote{font-family:"Playfair Display",serif;font-size:clamp(32px,4.8vw,68px);line-height:1.08;letter-spacing:-.035em;margin:0;max-width:1100px}
.reclaim{background:linear-gradient(180deg,#fff,var(--cream))}
.method-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:14px;margin-top:38px}
.method-grid article{background:#fff;border:1px solid var(--line);border-radius:22px;padding:22px;min-height:210px}
.method-grid span{display:inline-grid;place-items:center;width:42px;height:42px;border-radius:50%;background:var(--blush);color:var(--rose-dark);font-weight:900;margin-bottom:18px}
.method-grid p,.cards p{color:var(--muted);font-size:15px;margin:0}
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:38px}
.cards article{border:1px solid var(--line);border-radius:24px;padding:26px;background:#fff;box-shadow:0 12px 40px rgba(38,37,31,.06)}
.lab{background:var(--cream)}
.lab .button{margin-top:12px}
.resources{display:grid;grid-template-columns:1fr 340px;gap:48px;align-items:center;border-bottom:1px solid var(--line)}
.resources img{border-radius:999px;aspect-ratio:1;object-fit:cover;box-shadow:var(--shadow)}
.contact{text-align:center;background:linear-gradient(135deg,var(--blush),#fff5e8)}
.contact h2{margin-left:auto;margin-right:auto}
.contact-grid{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;margin-top:32px}
.contact-grid a{background:#fff;border:1px solid var(--line);border-radius:999px;padding:14px 22px;font-weight:800}
.footer{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;padding:26px clamp(20px,5vw,72px);font-size:14px;color:var(--muted);background:#fff}
@media(max-width:1100px){.method-grid{grid-template-columns:repeat(2,1fr)}.cards{grid-template-columns:repeat(2,1fr)}}
@media(max-width:840px){
  .nav{display:none}.hero,.two-col,.resources{grid-template-columns:1fr}.hero{min-height:auto}.hero-image-card{order:-1}.hero-image-card img{height:520px}.belief-strip{grid-template-columns:1fr}.method-grid,.cards{grid-template-columns:1fr}.resources img{width:280px}.footer{display:block}.site-header{position:relative}
}
@media(max-width:520px){.hero-image-card img{height:440px}.section-pad{padding:54px 18px}h1{font-size:43px}.lead{font-size:18px}.button{width:100%}}
