:root {
  --brand: #1E6F5C;
  --brand-strong: #1E6F5C;
  --accent: #B8583E;
  --text: #2B2B2B;
  --text-muted: #5C5C5C;
  --surface: #FFFFFF;
  --bg: #F7F5F2;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --font-heading: Source Serif 4, system-ui, sans-serif;
  --font-body: Source Sans 3, system-ui, sans-serif;
  --base-size: 16px;
  --line-height: 1.6;
}

*{box-sizing:border-box;margin:0}
html{font-size:var(--base-size);line-height:var(--line-height);color:var(--text);background:var(--bg);font-family:var(--font-body)}
body{min-height:100vh;display:flex;flex-direction:column}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;height:auto;display:block}

/* Layout */
.site-header{background:var(--surface);border-bottom:1px solid rgba(0,0,0,.06);padding:1rem 1.5rem;display:flex;align-items:center;justify-between:space-between;gap:1rem}
.site-logo{font-family:var(--font-heading);font-weight:700;font-size:1.25rem;color:var(--text)}
.site-nav{display:flex;gap:1.5rem;flex-wrap:wrap}
.site-nav a{font-size:.875rem;font-weight:500;color:var(--text);padding:.375rem .75rem;border-radius:var(--radius-md);transition:background .15s}
.site-nav a:hover{background:rgba(0,0,0,.04);text-decoration:none}
.site-nav a.active{background:var(--brand);color:#fff}
.site-main{flex:1}
.site-footer{background:var(--surface);border-top:1px solid rgba(0,0,0,.06);padding:2rem 1.5rem;text-align:center;color:var(--text-muted);font-size:.875rem}

/* Accessibility */
.skip-link{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.skip-link:focus{position:fixed;top:1rem;left:1rem;width:auto;height:auto;padding:1rem;margin:0;overflow:visible;clip:auto;white-space:normal;background:var(--brand);color:#fff;z-index:1000;border-radius:var(--radius-md);box-shadow:0 4px 12px rgba(0,0,0,.15)}

/* Container */
.container{width:100%;max-width:1152px;margin:0 auto;padding:0 1.5rem}
.section{padding:4rem 0}
.section-alt{background:rgba(0,0,0,.02)}

/* Typography */
h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);font-weight:700;line-height:1.2;color:var(--text)}
h1{font-size:2.5rem}h2{font-size:2rem}h3{font-size:1.5rem}h4{font-size:1.25rem}
.text-center{text-align:center}
.text-muted{color:var(--text-muted)}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;padding:.75rem 1.5rem;font-size:.875rem;font-weight:600;border-radius:var(--radius-md);border:none;cursor:pointer;transition:opacity .15s;background:var(--brand);color:#fff}
.btn:hover{opacity:.9;text-decoration:none}
.btn-outline{background:transparent;color:var(--brand);border:1.5px solid var(--brand)}

/* Grid */
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
@media(max-width:768px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}}

/* Cards */
.card{background:var(--surface);border:1px solid rgba(0,0,0,.06);border-radius:var(--radius-lg);padding:1.5rem}

/* Forms */
.form-group{margin-bottom:1rem}
.form-label{display:block;font-size:.875rem;font-weight:500;margin-bottom:.375rem}
.form-input,.form-textarea{width:100%;padding:.625rem .875rem;font-size:.875rem;border:1px solid rgba(0,0,0,.12);border-radius:var(--radius-md);background:var(--surface);color:var(--text)}
.form-input:focus,.form-textarea:focus{outline:none;border-color:var(--brand)}
.form-textarea{min-height:120px;resize:vertical}
.form-check{display:flex;align-items:flex-start;gap:.5rem;font-size:.875rem}
.form-check input{margin-top:.15rem}

/* Utility */
.gap-1{gap:.5rem}.gap-2{gap:1rem}.gap-3{gap:1.5rem}
.flex{display:flex}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-between{justify-content:space-between}.justify-center{justify-content:center}
.space-y > * + *{margin-top:1rem}
.py-4{padding-top:2rem;padding-bottom:2rem}
.px-4{padding-left:1.5rem;padding-right:1.5rem}
.rounded{border-radius:var(--radius-lg)}
.rounded-full{border-radius:50%}
.bg-surface{background:var(--surface)}

/* Width helpers */
.w-full{width:100%}
.max-w-prose{max-width:768px;margin-left:auto;margin-right:auto}
.max-w-narrow{max-width:640px;margin-left:auto;margin-right:auto}
.mx-auto{margin-left:auto;margin-right:auto}

/* Text helpers */
.text-brand{color:var(--brand)}
.text-lg{font-size:1.125rem}
.text-xl{font-size:1.25rem}
.text-3xl{font-size:2rem}
.text-4xl{font-size:2.5rem}
.font-semibold{font-weight:600}
.font-bold{font-weight:700}
.italic{font-style:italic}
.list-none{list-style:none}

/* Image helpers */
.object-cover{object-fit:cover}
.aspect-4-3{aspect-ratio:4/3}

/* Component: Hero */
.hero-subline{font-size:1.125rem;max-width:640px}
.hero-subline-centered{margin-left:auto;margin-right:auto}
.hero-img{width:100%;object-fit:cover;aspect-ratio:4/3}
.hero-img-desktop{width:100%;object-fit:cover;aspect-ratio:4/3}
@media(min-width:769px){.hero-img-desktop{width:100%}}

/* Component: Testimonial */
.testimonial-quote{font-size:1.25rem;font-style:italic;margin-bottom:1.5rem}

/* Component: Stats */
.stats-value{font-size:2.5rem;font-weight:700;color:var(--brand)}

/* Component: Pricing */
.pricing-price{font-size:2rem;font-weight:700;color:var(--brand)}
.pricing-period{font-size:1rem;color:var(--text-muted)}
.pricing-features-list{margin:1rem 0;padding:0;list-style:none}
.pricing-feature-item{padding:.375rem 0;border-bottom:1px solid rgba(0,0,0,.04)}
.card.pricing-featured{border-color:var(--brand);transform:scale(1.02)}

/* Component: FAQ */
.faq-item{border-bottom:1px solid rgba(0,0,0,.06);padding:1rem 0}
.faq-question{font-weight:600;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center}
.faq-toggle{color:var(--brand);font-size:1.25rem}
.faq-answer{padding-top:.75rem;color:var(--text-muted)}

/* Component: Team */
.team-photo{width:96px;height:96px;border-radius:50%;object-fit:cover;margin:0 auto 1rem;display:block}

/* Component: Gallery */
.gallery-img{width:100%;height:220px;object-fit:cover;border-radius:var(--radius-md)}

/* Component: Image */
.img-full{width:100%;max-height:560px;object-fit:cover}
.caption-text{font-size:.875rem}

/* Component: Form */
.form-success{display:none;padding:2rem;text-align:center;background:rgba(0,132,255,.06);border-radius:var(--radius-lg)}
.form-success-message{font-weight:600}
.submit-btn-full{width:100%}
.hcaptcha-container{margin-bottom:1.5rem}
.honeypot{display:none!important}

/* Component: Funnel Nav */
.funnel-header{justify-content:center}
.funnel-steps{display:flex;align-items:center;gap:1rem;flex-wrap:wrap}
.funnel-step{display:flex;align-items:center;gap:.5rem}
.funnel-step-num{width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700}
.funnel-step-num-current{background:var(--brand);color:#fff}
.funnel-step-num-past{background:var(--brand-strong);color:#fff}
.funnel-step-num-future{background:rgba(0,0,0,.06);color:var(--text-muted)}
.funnel-step-label{font-size:.75rem;font-weight:500}
.funnel-step-label-current{color:var(--text)}
.funnel-step-label-other{color:var(--text-muted)}
.funnel-arrow{color:var(--text-muted)}
