:root{
  --bg:#ece3d7;
  --surface:#fffdf9;
  --surface-alt:#f3eadf;
  --ink:#111111;
  --muted:#4f4841;
  --line:rgba(17,17,17,.14);
  --accent:#d84f2a;
  --accent-soft:#f2d9cf;
  --deep:#16110d;
  --gold:#b58963;
  --max:1240px;
  --content-max:980px;
  --radius:28px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Manrope",system-ui,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216,79,42,.1), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(181,137,99,.14), transparent 18%),
    linear-gradient(180deg, #f6f0e8 0%, var(--bg) 100%);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
h1,h2,h3{margin:0}
p{margin:0}
.page{
  width:min(calc(100% - 32px), var(--max));
  margin:0 auto;
  padding:20px 0 56px;
}
.page.page-narrow{max-width:var(--content-max)}
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 18px;
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,250,244,.94);
  border:1px solid rgba(17,17,17,.08);
  border-radius:24px;
  box-shadow:0 10px 28px rgba(17,17,17,.06);
  margin-bottom:18px;
}
.brand{
  display:grid;
  gap:6px;
  min-width:max-content;
}
.brand-lockup{
  display:grid;
  grid-template-columns:auto auto;
  align-items:start;
  gap:10px;
}
.brand-wordmark{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(2.2rem, 3.2vw, 3rem);
  font-weight:700;
  font-style:italic;
  line-height:.72;
  letter-spacing:-.075em;
  text-transform:lowercase;
}
.brand-meta{
  padding-top:6px;
  font-size:.72rem;
  line-height:1.05;
  font-weight:800;
  letter-spacing:.02em;
  text-transform:lowercase;
}
.brand-sub{
  padding-left:4px;
  color:var(--muted);
  font-size:.66rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.nav{
  display:flex;
  gap:24px;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:.95rem;
  padding:10px 12px 10px 20px;
  border:1px solid rgba(17,17,17,.08);
  border-radius:999px;
  background:rgba(255,255,255,.84);
  box-shadow:none;
}
.nav a{transition:color .2s ease}
.nav a:hover{color:var(--ink)}
.button,
.button-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
  border:0;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.button{
  background:var(--ink);
  color:#fff;
  box-shadow:0 16px 34px rgba(17,17,17,.14);
}
.button-secondary{
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
}
.button:hover,
.button-secondary:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(17,17,17,.08);
}
.hero,
.article,
.content,
.hero-copy,
.hero-side,
.card,
.panel,
.cta,
.impact-card,
.impact-list{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
}
.hero{
  display:grid;
  gap:24px;
  padding:32px;
  background:
    radial-gradient(circle at top right, rgba(216,79,42,.08), transparent 22%),
    linear-gradient(180deg, #fffdfa, #f7efe4);
  box-shadow:0 24px 48px rgba(17,17,17,.08);
}
.hero-copy,
.hero-side{padding:32px}
.hero-side{
  display:grid;
  gap:16px;
  background:linear-gradient(135deg, rgba(216,79,42,.08), rgba(255,255,255,.96));
}
.hero-side div{
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(17,17,17,.08);
}
.hero-side > strong,
.number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  aspect-ratio:1;
  border-radius:50%;
  background:var(--accent-soft);
  color:#8a361e;
  font-family:"Archivo",sans-serif;
}
.hero-side div > strong:not(.number){
  display:block;
  width:auto;
  aspect-ratio:auto;
  border-radius:0;
  background:transparent;
  color:var(--ink);
  font-family:"Manrope",system-ui,sans-serif;
  line-height:1.35;
}
.hero-dark .hero-side{
  background:linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
}
.hero-dark .hero-side div{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.08);
}
.hero.hero-dark{
  background:
    radial-gradient(circle at 82% 18%, rgba(216,79,42,.22), transparent 22%),
    radial-gradient(circle at 10% 90%, rgba(181,137,99,.16), transparent 28%),
    linear-gradient(145deg, #1f1915 0%, #120f0d 58%, #2b2018 100%);
  color:#f6efe5;
}
.hero.hero-dark .hero-copy{
  background:transparent;
  border:0;
  box-shadow:none;
  color:#f6efe5;
}
.hero.hero-dark .hero-copy,
.hero.hero-dark .hero-side{
  align-content:start;
}
.hero.hero-dark > :not(.panel) h1,
.hero.hero-dark > :not(.panel) h2,
.hero.hero-dark > :not(.panel) h3,
.hero.hero-dark .hero-copy h1,
.hero.hero-dark .hero-copy h2,
.hero.hero-dark .hero-copy h3,
.hero.hero-dark .hero-side > h3{color:#fff8ef}
.hero.hero-dark > :not(.panel) p,
.hero.hero-dark > :not(.panel) .note,
.hero.hero-dark > :not(.panel) .small,
.hero.hero-dark > :not(.panel) li,
.hero.hero-dark .hero-copy p,
.hero.hero-dark .hero-copy span,
.hero.hero-dark .hero-side p,
.hero.hero-dark .hero-side li{color:rgba(255,245,232,.76)}
.hero.hero-dark .panel,
.hero.hero-dark .panel h3{color:var(--ink)}
.hero.hero-dark .panel p,
.hero.hero-dark .panel .small{color:var(--muted)}
.hero.hero-dark .button{background:#fff7ee;color:#111}
.hero.hero-dark .button-secondary{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.14);color:#fff8ef}
.hero.hero-dark .hero-copy .button-secondary:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.24);
}
.hero h1,
.section-head h2,
.article h1,
.content h1,
.article h2,
.content h2,
.cta h2,
.impact-card h3,
.strip-copy h3,
.price,
h3{
  font-family:"Archivo",sans-serif;
  text-transform:uppercase;
  letter-spacing:-.025em;
  color:var(--ink);
}
.hero h1,
.section-head h2,
.article h1,
.content h1,
.cta h2{
  line-height:.96;
  text-wrap:pretty;
}
.hero h1{
  font-size:clamp(2.4rem, 4.3vw, 4rem);
  max-width:11ch;
  margin:18px 0 14px;
}
.section-head h2,
.cta h2{
  font-size:clamp(1.9rem, 3.4vw, 3rem);
  max-width:15ch;
}
.article h1,
.content h1{
  font-size:clamp(2.25rem, 5vw, 4rem);
  max-width:13ch;
  margin:18px 0 16px;
}
.article h2,
.content h2{
  font-size:1.3rem;
  margin:28px 0 10px;
}
.eyebrow,
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:.82rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.14em;
}
.eyebrow::before,
.section-kicker::before{
  content:"";
  width:30px;
  height:2px;
  background:var(--accent);
}
.hero p,
.section-head p,
.card p,
.panel p,
.hero-side p,
.article p,
.content p,
.cta p,
.note,
.small,
li{
  color:var(--muted);
  line-height:1.75;
}
.hero.hero-dark .eyebrow,
.hero.hero-dark .section-kicker{color:rgba(255,244,232,.72)}
.hero.hero-dark .eyebrow::before,
.hero.hero-dark .section-kicker::before{background:var(--gold)}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:28px}
.hero-notes{display:grid;gap:14px;margin-top:24px}
.hero-notes div{padding-top:12px;border-top:1px solid var(--line)}
.hero-notes strong + span,
.hero-notes strong + p{margin-left:.35em}
.hero.hero-dark .hero-notes div{border-top-color:rgba(255,255,255,.1)}
.panel .hero-notes div{border-top-color:var(--line)}
.section{margin-top:56px}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:18px;
  margin-bottom:20px;
}
.section-head p{max-width:32rem}
.grid-2,
.grid-3,
.process,
.pricing-grid,
.addons,
.form-grid{
  display:grid;
  gap:18px;
}
.grid-2{grid-template-columns:repeat(2, minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3, minmax(0,1fr))}
.process{grid-template-columns:repeat(4, minmax(0,1fr))}
.pricing-grid,
.addons{grid-template-columns:repeat(4, minmax(0,1fr))}
.form-grid{margin-top:56px}
.card,
.panel,
.article,
.content,
.impact-card,
.impact-list,
.cta{padding:30px}
.card,
.panel{
  box-shadow:0 14px 32px rgba(17,17,17,.06);
  background:#fff;
}
.card{
  display:grid;
  align-content:start;
  gap:12px;
}
.card h3,
.panel h3{line-height:1.08}
.card ul{
  margin:4px 0 0;
  padding-left:18px;
}
.card .button,
.card .button-secondary{margin-top:8px}
.pricing-grid .card{
  min-height:100%;
  grid-template-rows:auto auto auto 1fr auto;
}
.pricing-grid .button,
.pricing-grid .button-secondary{
  align-self:end;
  width:100%;
}
.article,
.content{
  background:
    linear-gradient(180deg, #fffdfa, #f8f0e6);
  box-shadow:0 18px 40px rgba(17,17,17,.06);
}
.featured{
  background:linear-gradient(180deg, #fff, #fbf4ef);
  box-shadow:0 14px 40px rgba(17,17,17,.08);
}
.tag{
  display:inline-flex;
  width:max-content;
  padding:8px 12px;
  border-radius:999px;
  background:var(--accent-soft);
  color:#8a361e;
  font-size:.78rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.price{
  font-size:2rem;
  line-height:1;
  margin:18px 0 12px;
}
.meta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:.92rem;
  margin-bottom:18px;
}
.cta{
  margin-top:56px;
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  background:
    radial-gradient(circle at top right, rgba(216,79,42,.22), transparent 28%),
    linear-gradient(135deg, #111111, #2b2b2b);
  color:#fff;
  box-shadow:0 30px 56px rgba(17,17,17,.16);
}
.cta p{color:rgba(255,255,255,.74)}
.cta .button{background:#fff;color:#111}
input,
select,
textarea{
  width:100%;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fbf7f2;
  color:var(--ink);
  font:inherit;
}
textarea{min-height:160px;resize:vertical}
input:focus,
select:focus,
textarea:focus{
  outline:2px solid rgba(216,79,42,.18);
  border-color:var(--accent);
}
.field{display:grid;gap:8px}
.field label{font-weight:700;font-size:.92rem}
footer{
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:#5f564d;
  font-size:.92rem;
  padding-top:20px;
}
@media (max-width:1100px){
  .pricing-grid,
  .addons{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:980px){
  .hero,
  .grid-3,
  .grid-2,
  .process,
  .pricing-grid,
  .addons,
  .form-grid,
  .cta{grid-template-columns:1fr;display:grid}
  .topbar{
    align-items:flex-start;
    flex-wrap:wrap;
  }
  .nav{
    width:100%;
    justify-content:flex-start;
  }
}
@media (max-width:760px){
  .page{width:min(calc(100% - 20px), var(--max))}
  .nav a:not(.button):not(.button-secondary){display:none}
  .topbar{padding:12px}
  .nav{
    padding:8px;
    gap:8px;
  }
  .nav .button,
  .nav .button-secondary{
    min-height:42px;
    padding:0 14px;
    font-size:.84rem;
  }
  .hero,
  .hero-copy,
  .hero-side,
  .card,
  .panel,
  .article,
  .content,
  .impact-card,
  .impact-list,
  .cta{padding:22px}
  .section-head,
  footer{display:grid}
  .brand-wordmark{font-size:2.1rem}
  .brand-sub{font-size:.6rem}
}
@media (max-width:560px){
  .topbar{
    padding:12px;
    background:rgba(255,250,244,.9);
  }
  .brand{padding-left:4px}
  .brand-wordmark{font-size:2.02rem}
  .brand-meta{font-size:.66rem}
  .brand-sub{font-size:.58rem;letter-spacing:.15em}
  .hero h1,
  .article h1,
  .content h1{
    font-size:clamp(2rem, 9vw, 2.35rem);
    max-width:100%;
    overflow-wrap:normal;
    word-break:normal;
  }
}
@media (max-width:480px){
  .page{width:min(calc(100% - 16px), var(--max));padding-top:12px}
  .brand-wordmark{font-size:1.95rem}
  .brand-meta{font-size:.62rem}
  .brand-sub{font-size:.55rem;letter-spacing:.14em}
  .hero h1,
  .article h1,
  .content h1{
    font-size:clamp(1.9rem, 9.6vw, 2.28rem);
    max-width:100%;
    overflow-wrap:normal;
    word-break:normal;
  }
  .hero p,
  .article p,
  .content p{font-size:1rem}
  .section{margin-top:42px}
  .cta{margin-top:42px}
}
