/* ============================================================
   Practiced Path Advisory — Design System
   BRAND (from practiced-path-brand-reference, sourced from the
   live site stylesheet):
     ink #1A1A18 · charcoal #2E2E2B · mid #5A5A55
     sage #5C6B50 · sage-light #8A9B7A · sage-pale #DDE5D8
     cream #F4F1EB · off-white #F9F7F3 · warm-gray #ECEAE3 · white #FDFCF9
   Type: Cormorant Garamond (display) · DM Sans (body)
   Feel: warm, editorial, grounded. Cream base, sage accents,
   near-black ink for nav and feature bands. 3px radius.
   ============================================================ */

:root {
  --ink:        #1A1A18;
  --charcoal:   #2E2E2B;
  --mid:        #5A5A55;
  --sage:       #5C6B50;
  --sage-light: #8A9B7A;
  --sage-pale:  #DDE5D8;
  --cream:      #F4F1EB;
  --off-white:  #F9F7F3;
  --warm-gray:  #ECEAE3;
  --white:      #FDFCF9;

  --line:       #ECEAE3;
  --line-strong:#DEDBD1;

  --shadow-sm: 0 1px 2px rgba(26,26,24,.04);
  --shadow-md: 0 6px 22px rgba(26,26,24,.07);
  --shadow-lg: 0 18px 50px rgba(26,26,24,.10);

  --radius: 3px;
  --radius-lg: 6px;
  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 56px);
  --ease: cubic-bezier(.25,.46,.45,.94);
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body: "DM Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-weight: 400;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.62;
  font-size: clamp(15.5px, 1vw, 17px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage); text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color .2s var(--ease); }
a:hover { color: var(--sage-light); }

:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }
.skip-link { position: absolute; left: 12px; top: -60px; background: var(--sage); color: var(--white); padding: 10px 16px; border-radius: var(--radius); z-index: 200; font-weight: 500; transition: top .2s var(--ease); }
.skip-link:focus { top: 12px; }
.visually-hidden { position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Layout */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 820px; }
.section { padding-block: clamp(56px, 8vw, 112px); }
.section--off { background: var(--off-white); }
.section--sage { background: var(--sage-pale); }
.section--ink { background: var(--ink); color: var(--cream); }

/* Typography */
h1,h2,h3,h4 { font-family: var(--display); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.7rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.3rem); color: var(--mid); line-height: 1.58; font-weight: 400; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink .lead, .section--ink p { color: var(--sage-pale); }
.serif-em { font-style: italic; }
p + p { margin-top: 1rem; }

.eyebrow {
  font-family: var(--body); font-size: .73rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--sage);
  display: inline-block; margin-bottom: 1.1rem;
}
.eyebrow--ruled { border-top: 2px solid var(--sage); padding-top: 10px; }
.section--ink .eyebrow { color: var(--sage-light); }

/* Buttons — editorial, 3px radius */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--body); font-weight: 500; font-size: .95rem; letter-spacing: .01em;
  padding: .85em 1.5em; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--sage); color: var(--white); }
.btn--primary:hover { background: var(--sage-light); color: var(--white); }
.btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--sage); color: var(--sage); }
.section--ink .btn--ghost { color: var(--cream); border-color: rgba(244,241,235,.3); }
.section--ink .btn--ghost:hover { border-color: var(--sage-light); color: var(--sage-light); }
.btn--lg { font-size: 1.02rem; padding: 1em 1.8em; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }

/* Header / Nav — ink bar */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--ink); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark { width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--display); font-weight: 600; font-size: 1.2rem; color: var(--cream); letter-spacing: 0; }
.brand__loc { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-light); font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; padding: 0; }
.nav__links a { font-weight: 400; color: var(--sage-pale); text-decoration: none; padding: 9px 14px; border-radius: var(--radius); font-size: .95rem; transition: color .2s var(--ease), background .2s var(--ease); }
.nav__links a:hover { color: var(--white); background: rgba(244,241,235,.07); }
.nav__links a[aria-current="page"] { color: var(--white); }
.nav__cta { margin-left: 8px; }

.nav__toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(244,241,235,.25); background: transparent; border-radius: var(--radius); cursor: pointer; padding: 0; position: relative; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content:""; position:absolute; left:50%; width:20px; height:2px; background: var(--cream); transform: translateX(-50%); transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav__toggle span { top:50%; margin-top:-1px; }
.nav__toggle span::before { top:-7px; } .nav__toggle span::after { top:7px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateX(-50%) translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translateX(-50%) translateY(-7px) rotate(-45deg); }
@media (max-width: 860px) {
  .nav__toggle { display:block; }
  .nav__links { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px; background: var(--ink); padding: 14px var(--gutter) 26px; box-shadow: var(--shadow-md); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .3s var(--ease), opacity .3s var(--ease); }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 13px 12px; font-size: 1.05rem; }
  .nav__cta { margin: 8px 0 0; } .nav__cta .btn { width: 100%; }
}

/* Hero */
.hero { padding-block: clamp(52px, 8vw, 104px); }
.hero__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.hero h1 { margin-bottom: 1.3rem; }
.hero .lead { max-width: 46ch; margin-bottom: 1.9rem; }
.hero__actions { margin-bottom: 1.5rem; }
.hero__note { font-size: .88rem; color: var(--mid); display: flex; align-items: center; gap: 8px; }
.hero__note svg { color: var(--sage); flex:0 0 auto; }
.hero__panel { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; border: 1px solid var(--line); }
.hero__panel img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge { position: absolute; left: 16px; bottom: 16px; right: 16px; background: rgba(253,252,249,.95); backdrop-filter: blur(4px); border-radius: var(--radius); padding: 13px 16px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 11px; }
.hero__badge strong { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--ink); display:block; }
.hero__badge p { font-size: .82rem; color: var(--mid); line-height: 1.4; margin:0; }
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__panel { aspect-ratio: 3/3.3; max-width: 440px; }
}

/* Statement / manifesto (ink band) */
.statement { max-width: 880px; }
.statement .big { font-family: var(--display); font-weight: 500; font-size: clamp(1.9rem, 4.4vw, 3.3rem); line-height: 1.14; color: var(--white); letter-spacing: -.01em; }
.statement .big em { font-style: italic; color: var(--sage-light); }
.statement p { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--sage-pale); max-width: 64ch; margin-top: 1.5rem; }

/* Section head */
.section-head { max-width: 680px; margin-bottom: clamp(36px, 4.5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: .9rem; }

/* Pillars */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 36px); }
.pillar { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3.2vw, 40px); transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.pillar:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pillar__num { font-family: var(--display); font-size: 2.2rem; font-weight: 500; line-height: 1; color: var(--sage); }
.pillar h3 { margin: .3rem 0 .7rem; }
.pillar > p { color: var(--mid); }
.pillar ul { list-style: none; padding: 0; margin-top: 1.1rem; display: grid; gap: 9px; }
.pillar li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--charcoal); }
.pillar li::before { content:""; flex:0 0 auto; width: 6px; height: 6px; margin-top: .55em; border-radius: 50%; background: var(--sage); }
@media (max-width: 760px) { .pillars { grid-template-columns: 1fr; } }

/* The Path (funnel ladder) */
.path { max-width: 860px; margin-inline: auto; display: grid; gap: 0; }
.rung { display: grid; grid-template-columns: 56px 1fr auto; gap: clamp(14px,2.5vw,26px); align-items: center; padding: 22px clamp(18px,2.5vw,30px); background: var(--white); border: 1px solid var(--line); border-bottom: none; transition: background .25s var(--ease); position: relative; }
.rung:first-child { border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); }
.rung:last-child { border-bottom: 1px solid var(--line); border-bottom-left-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg); }
.rung--free { background: var(--sage-pale); border-color: var(--sage-pale); }
.rung--exit { background: var(--ink); border-color: var(--ink); }
.rung--exit .rung__name, .rung--exit .rung__line { color: var(--white); }
.rung--exit .rung__step { color: var(--sage-light); border-color: var(--sage-light); }
.rung--exit .rung__price { color: var(--sage-light); }
.rung:hover { background: var(--off-white); }
.rung--exit:hover { background: #232320; }
.rung--free:hover { background: #d3ddcc; }
.rung__step { font-family: var(--display); font-weight: 600; font-size: 1rem; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--sage); color: var(--sage); display: grid; place-items: center; }
.rung__name { font-family: var(--display); font-size: 1.35rem; font-weight: 600; color: var(--ink); line-height: 1.1; }
.rung__line { font-size: .92rem; color: var(--mid); margin-top: 2px; }
.rung--free .rung__line { color: #4a5543; }
.rung__price { font-family: var(--body); font-weight: 600; font-size: 1.05rem; color: var(--sage); text-align: right; white-space: nowrap; }
.rung__price small { display:block; font-weight:400; font-size:.74rem; color: var(--mid); }
.path__tail { text-align: center; margin-top: 26px; }
@media (max-width: 620px) {
  .rung { grid-template-columns: 44px 1fr; row-gap: 6px; }
  .rung__price { grid-column: 2; text-align: left; }
}

/* Service cards (services page) */
.services-list { display: grid; gap: 18px; }
.service { display: grid; grid-template-columns: 52px 1fr auto; gap: clamp(16px,3vw,38px); align-items: start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px,3vw,38px); transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.service:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service--exit { background: var(--ink); border-color: var(--ink); }
.service--exit h3, .service--exit .service__quote { color: var(--white); }
.service--exit .service__body, .service--exit .service__deliver li { color: var(--sage-pale); }
.service--exit .service__num { color: var(--sage-light); }
.service--exit .service__tag { color: var(--sage-light); }
.service--exit .service__deliver li svg { color: var(--sage-light); }
.service--exit .service__price .amount { color: var(--white); }
.service--exit .service__price .note { color: var(--sage-pale); }
.service__num { font-family: var(--display); font-size: 1.7rem; font-weight: 500; line-height: 1; color: var(--sage); }
.service__tag { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin-bottom: .45rem; }
.service__quote { font-family: var(--display); font-style: italic; font-size: 1.25rem; color: var(--ink); margin: .2rem 0 .8rem; line-height: 1.3; }
.service__body { color: var(--mid); }
.service__deliver { list-style: none; padding: 0; margin-top: .9rem; display: grid; gap: 7px; }
.service__deliver li { display: flex; gap: 9px; font-size: .92rem; color: var(--charcoal); }
.service__deliver li svg { flex:0 0 auto; color: var(--sage); margin-top: 3px; }
.service__price { text-align: right; min-width: 140px; }
.service__price .amount { font-family: var(--display); font-size: 1.8rem; font-weight: 600; color: var(--ink); display: block; }
.service__price .note { font-size: .78rem; color: var(--mid); display: block; margin-top: 2px; }
.service__price .btn { margin-top: 12px; }
@media (max-width: 800px) { .service { grid-template-columns: 1fr; gap: 12px; } .service__price { text-align: left; } .service__price .btn { width: 100%; } }

/* Free conversation band */
.freebar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.freebar .tagline { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-light); font-weight: 600; margin-bottom: .55rem; }

/* Add-ons */
.addons { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.addon { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 19px 21px; }
.addon h4 { font-family: var(--body); font-weight: 600; font-size: .98rem; margin-bottom: 4px; color: var(--ink); }
.addon p { font-size: .88rem; color: var(--mid); }
@media (max-width: 760px) { .addons { grid-template-columns: 1fr; } }

/* About */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px,5vw,68px); align-items: start; }
.about-portrait { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--white); aspect-ratio: 4/5; position: sticky; top: 98px; border: 1px solid var(--line); }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.prose p { margin-bottom: 1.05rem; color: var(--charcoal); }
.prose p:first-of-type { font-size: 1.22rem; color: var(--ink); font-family: var(--display); line-height: 1.45; }
.prose h3 { margin: 1.8rem 0 .55rem; }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 1.4rem; }
.value { display: flex; gap: 11px; }
.value svg { flex:0 0 auto; color: var(--sage); margin-top: 2px; }
.value strong { display: block; font-family: var(--display); font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.value span { font-size: .9rem; color: var(--mid); }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } .about-portrait { position: relative; top: 0; max-width: 360px; } .values { grid-template-columns: 1fr; } }

/* Contact / form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,60px); align-items: start; }
.contact-aside h2 { margin-bottom: .9rem; }
.contact-aside .lead { margin-bottom: 1.8rem; }
.contact-detail { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 16px; }
.contact-detail svg { flex:0 0 auto; color: var(--sage); margin-top: 3px; }
.contact-detail a, .contact-detail strong { color: var(--ink); font-weight: 500; text-decoration: none; }
.contact-detail a:hover { color: var(--sage); }
.contact-detail span { display: block; font-size: .84rem; color: var(--mid); font-weight: 400; }
.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px,3.4vw,38px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 17px; }
.field label { display: block; font-weight: 500; font-size: .9rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; font-family: var(--body); font-size: 1rem; color: var(--charcoal); background: var(--off-white); border: 1.5px solid var(--line-strong); border-radius: var(--radius); padding: 12px 14px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.field input::placeholder, .field textarea::placeholder { color: #9b988f; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(92,107,80,.14); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%235C6B50' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; }
.field textarea { resize: vertical; min-height: 128px; }
.form .btn { width: 100%; margin-top: 4px; }
.form__status { margin-top: 15px; font-size: .94rem; border-radius: var(--radius); padding: 0; max-height: 0; overflow: hidden; transition: max-height .3s var(--ease), padding .3s var(--ease); }
.form__status.show { padding: 13px 15px; max-height: 220px; }
.form__status.ok { background: var(--sage-pale); color: #2f3a28; }
.form__status.err { background: #f0e0d8; color: #6b3320; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq { display: grid; gap: 0; max-width: 800px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line-strong); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-family: var(--display); font-size: 1.25rem; font-weight: 600; display: flex; justify-content: space-between; gap: 16px; align-items: center; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content:"+"; font-family: var(--body); font-weight: 300; font-size: 1.5rem; color: var(--sage); transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; color: var(--mid); max-width: 70ch; }

/* Footer */
.site-footer { background: var(--ink); color: var(--cream); padding-block: clamp(46px,6vw,76px) 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand { display: inline-flex; align-items: center; gap: 11px; }
.footer-brand img { width: 38px; height: 38px; border-radius: 50%; }
.site-footer .brand__name { color: var(--cream); }
.site-footer .brand__loc { color: var(--sage-light); }
.site-footer p { color: var(--sage-pale); font-size: .92rem; max-width: 34ch; margin-top: 13px; }
.footer-col h4 { font-family: var(--body); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 15px; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: var(--sage-pale); text-decoration: none; font-size: .93rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(244,241,235,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .82rem; color: var(--sage-light); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .07s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .21s; }
.reveal[data-delay="4"] { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) { * { animation:none!important; transition:none!important; scroll-behavior:auto!important; } .reveal { opacity:1; transform:none; } }

.text-center { text-align: center; }

/* ============ TESTIMONIALS ============ */
.testimonials { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
@media (max-width:860px){ .testimonials { grid-template-columns:1fr; gap:1.25rem; } }
.testimonial { position:relative; background:var(--off-white); border:1px solid var(--warm-gray); border-radius:3px; padding:2.2rem 1.75rem 1.6rem; box-shadow:0 1px 0 rgba(0,0,0,.02); }
.testimonial__mark { position:absolute; top:-.45rem; left:1.2rem; font-family:var(--display); font-size:5.5rem; line-height:1; color:var(--sage); opacity:.65; user-select:none; pointer-events:none; }
.testimonial__quote { font-family:var(--display); font-size:1.18rem; font-style:italic; line-height:1.5; color:var(--ink); margin:0 0 1.1rem; }
.testimonial__cite { display:block; font-family:var(--body); font-size:.74rem; letter-spacing:.18em; text-transform:uppercase; color:var(--sage-deep,#4a5740); font-style:normal; }

/* ============ LEAD MAGNET ============ */
.leadmagnet { display:grid; grid-template-columns:1.05fr .95fr; gap:3rem; align-items:center; padding:.5rem 0; }
@media (max-width:860px){ .leadmagnet { grid-template-columns:1fr; gap:1.75rem; } }
.leadmagnet__copy h2 { margin:.4rem 0 .75rem; }
.leadmagnet__copy .lead { margin-bottom:1rem; }
.leadmagnet__note { font-size:.84rem; color:var(--mid); margin:.25rem 0 0; }
.leadmagnet__note a { color:var(--sage); text-decoration:underline; }
.leadmagnet__form { background:var(--off-white); border:1px solid var(--warm-gray); border-left:3px solid var(--sage); border-radius:3px; padding:1.75rem 1.5rem 1.5rem; }
.leadmagnet__form .field { margin-bottom:.85rem; }
.leadmagnet__form input[type="email"] { width:100%; padding:.85rem 1rem; font-family:var(--body); font-size:1rem; color:var(--ink); background:var(--white); border:1px solid var(--warm-gray); border-radius:3px; outline:none; transition:border-color .15s ease, box-shadow .15s ease; }
.leadmagnet__form input[type="email"]:focus { border-color:var(--sage); box-shadow:0 0 0 3px rgba(92,107,80,.15); }
.leadmagnet__form .btn { width:100%; justify-content:center; }
.leadmagnet__status { font-size:.92rem; margin:.85rem 0 0; min-height:1.2em; }
.leadmagnet__status.ok { color:#4a5740; }
.leadmagnet__status.err { color:#b45d3a; }
.leadmagnet__status a { color:var(--sage); font-weight:500; text-decoration:underline; }
.hp { position:absolute; left:-9999px; height:0; overflow:hidden; }
.visually-hidden { position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
