/* ============================================================
   Scout & Willow — Main Stylesheet v3
   Font: Montserrat
   Colors: #F0EFE9 cream | #08232A teal | #A69385 taupe | #212121 black
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --cream:        #F0EFE9;
    --teal:         #08232A;
    --dark:         #08232A;
    --taupe:        #A69385;
    --black:        #212121;
    --white:        #ffffff;
    --border:       rgba(33,33,33,0.12);
    --border-light: rgba(240,239,233,0.15);
    --muted:        rgba(33,33,33,0.5);
    --muted-light:  rgba(240,239,233,0.6);
    --bg-secondary: rgba(240,239,233,0.6);
    --font-sans:    'Montserrat', sans-serif;
}

html { font-size: 20px; scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-sans); }
p { margin-bottom: 0; }

/* ----------------------------------------------------------
   LAYOUT
---------------------------------------------------------- */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* ----------------------------------------------------------
   FULL-BLEED SECTIONS
---------------------------------------------------------- */
.section-dark {
    background: var(--teal);
    padding: 6rem 0;
}

.section-light {
    background: var(--cream);
    padding: 6rem 0;
}

.section-light + .section-light { padding-top: 0; }

/* ----------------------------------------------------------
   NAV
---------------------------------------------------------- */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--teal);
    z-index: 100;
    transition: box-shadow 0.2s;
}

.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.25); }

.nav-logo {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-light);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links li a:hover,
.nav-links li.active a { color: var(--taupe); }

/* ----------------------------------------------------------
   DROPDOWN MENUS
---------------------------------------------------------- */
.nav-links li.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

/* Arrow button — desktop: hidden visually but allows :focus-within */
.nav-drop-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 4px 2px;
    cursor: pointer;
    color: var(--muted-light);
    transition: color 0.2s;
    line-height: 1;
}
.nav-drop-btn:hover,
.has-dropdown:hover .nav-drop-btn { color: var(--taupe); }

.nav-drop-arrow {
    display: block;
    transition: transform 0.2s;
}
.has-dropdown.open .nav-drop-arrow { transform: rotate(180deg); }

/* Submenu */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: #0a2b34;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    /* Invisible top padding bridges the gap so hover never drops */
    padding: 18px 0 0.5rem;
    list-style: none;
    min-width: 230px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

/* Small top notch — sits inside the padding bridge */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #0a2b34;
    border-left: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
    rotate: 45deg;
}

/* Show on hover (desktop) */
.nav-links li.has-dropdown:hover .nav-dropdown,
.nav-links li.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
    display: block;
    padding: 0.55rem 1.25rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-light);
    white-space: nowrap;
    transition: color 0.15s, background 0.15s;
}
.nav-dropdown li a:hover { color: var(--cream); background: rgba(255,255,255,0.05); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    background: none;
    border: none;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.25s;
}

/* ----------------------------------------------------------
   SHARED COMPONENTS
---------------------------------------------------------- */
.eyebrow {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--taupe);
    flex-shrink: 0;
}

.display-headline {
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--black);
}

.section-dark .display-headline { color: var(--cream); }

.display-headline .accent { color: var(--taupe); }

.body-text {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted);
}
.body-text strong { font-weight: 600; color: var(--black); }

.section-dark .body-text {
    color: var(--muted-light);
}
.section-dark .body-text strong { color: var(--cream); }

.section-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--taupe);
    flex-shrink: 0;
}

.divider {
    width: 48px;
    height: 2px;
    background: var(--taupe);
    margin: 3rem 0;
}
.divider-full {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 0;
}
.section-dark .divider-full { background: var(--border-light); }

.section { margin-bottom: 5rem; }

/* Buttons */
.btn-primary {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--taupe);
    color: var(--teal);
    border: none;
    padding: 16px 36px;
    border-radius: 2px;
    transition: opacity 0.2s;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}
.btn-primary:hover { opacity: 0.85; }

.btn-outline {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(240,239,233,0.4);
    padding: 14px 34px;
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}
.btn-outline:hover { border-color: var(--taupe); color: var(--taupe); }

.btn-ghost {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-light);
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    text-decoration: none;
    transition: color 0.2s;
}
.btn-ghost:hover { color: var(--taupe); }
.btn-ghost .arr {
    display: inline-block;
    width: 24px;
    height: 1px;
    background: currentColor;
    position: relative;
    transition: width 0.25s;
}
.btn-ghost:hover .arr { width: 36px; }
.btn-ghost .arr::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-top: 1.5px solid currentColor;
    transform: rotate(45deg);
}

/* ----------------------------------------------------------
   DARK SECTION CARDS (light-on-dark variants)
---------------------------------------------------------- */
.dark-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 1.5rem;
}

.dark-card-taupe {
    background: rgba(166,147,133,0.12);
    border: 1px solid rgba(166,147,133,0.3);
    border-radius: 4px;
    padding: 1.5rem;
}

/* Proof/stat cards in dark context */
.proof-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.proof-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 1.25rem;
}
.proof-wide {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 1.25rem;
}
.proof-number {
    font-family: var(--font-sans);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--taupe);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.proof-label {
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--muted-light);
}

.truth-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(166,147,133,0.3);
    border-radius: 4px;
    padding: 2rem;
    border-left: 3px solid var(--taupe);
}
.truth-card-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 1rem;
    display: block;
}
.truth-card-text {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--muted-light);
}
.truth-card-text strong { color: var(--cream); font-weight: 600; }

.diff-card {
    background: rgba(166,147,133,0.1);
    border: 1px solid rgba(166,147,133,0.25);
    border-radius: 4px;
    padding: 1.25rem;
}
.diff-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.5rem;
    display: block;
}
.diff-text { font-size: 0.82rem; font-weight: 300; line-height: 1.7; color: var(--muted-light); }
.diff-text strong { font-weight: 600; color: var(--cream); }

/* ----------------------------------------------------------
   LIGHT SECTION CARDS
---------------------------------------------------------- */
.light-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.75rem;
}

/* Problem block (light sections) */
.problem-block {
    background: var(--bg-secondary);
    border-left: 3px solid var(--taupe);
    border-radius: 0 4px 4px 0;
    padding: 2rem 2.25rem;
    border: 0.5px solid var(--border);
    border-left: 3px solid var(--taupe);
}
.problem-block .pb-headline {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--black);
    margin-bottom: 1rem;
}

/* Solution block (dark sections — sits inside section-dark) */
.solution-content .sol-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 1rem;
    display: block;
}
.solution-content .sol-headline {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--cream);
    margin-bottom: 1rem;
}
.solution-content .sol-headline .accent { color: var(--taupe); }
.solution-content .sol-body {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted-light);
}
.solution-content .sol-body strong { color: var(--cream); font-weight: 500; }

/* Honest block */
.honest-block {
    border: 1px solid var(--border);
    border-left: 3px solid var(--taupe);
    border-radius: 0 4px 4px 0;
    padding: 1.75rem 2rem;
    margin-bottom: 4rem;
    background: var(--bg-secondary);
}
.honest-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.6rem;
}
.honest-text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--black);
    margin-bottom: 0.6rem;
}

/* Service cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.service-card {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.75rem;
    background: var(--white);
}
.service-card.anchor { background: var(--bg-secondary); border-color: rgba(166,147,133,0.35); }
.sc-outcome {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.35rem;
}
.sc-name {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 0.6rem;
}
.sc-name .accent { color: var(--taupe); }
.sc-desc {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 1rem;
}
.sc-divider { height: 1px; background: var(--border); margin-bottom: 1rem; }
.sc-items { list-style: none; }
.sc-items li {
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--muted);
    padding: 0.3rem 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 0.5px solid var(--border);
}
.sc-items li:last-child { border-bottom: none; }
.sc-items li::before { content: '—'; color: var(--taupe); flex-shrink: 0; font-size: 0.6rem; margin-top: 3px; }

/* Deliverables */
.deliverables {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.deliverable {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.25rem;
    background: var(--white);
}
.del-title { font-size: 0.82rem; font-weight: 700; color: var(--black); margin-bottom: 0.4rem; }
.del-body { font-size: 0.75rem; font-weight: 300; line-height: 1.7; color: var(--muted); }

/* Deliverable card accent */
.deliverable {
    border-left: 3px solid var(--taupe);
}

/* Reviews — 2 col for service pages */
.reviews-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

/* Conversation block */
.conversation-block {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 3rem;
    text-align: center;
    background: var(--white);
}
.conv-headline {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}
.conv-body {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 1.75rem;
}

/* Bundle note */
.bundle-note {
    background: var(--bg-secondary);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
    border: 1px solid var(--border);
}
.bundle-note strong { font-weight: 600; color: var(--black); }

/* Disclaimer */
.disclaimer {
    font-size: 0.7rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted);
    font-style: italic;
    padding: 1rem 1.25rem;
    background: var(--bg-secondary);
    border-radius: 4px;
    border: 1px solid var(--border);
}

/* ----------------------------------------------------------
   DIFF QUESTION — full-width centered question callout
---------------------------------------------------------- */
.diff-question {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.dq-text {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--black);
}
.dq-text .accent { color: var(--taupe); }

.dq-caveat {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted);
    max-width: 560px;
    font-style: italic;
}

/* ----------------------------------------------------------
   BEFORE / AFTER CARDS (combined problem + solution)
---------------------------------------------------------- */
.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
    align-items: stretch;
}

.ba-card {
    border-radius: 6px;
    padding: 2rem 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Left card — the old way */
.ba-card--old {
    background: var(--white);
    border: 1px solid var(--border);
}

.ba-tag {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ba-card--old .ba-tag { color: var(--muted); }
.ba-card--new .ba-tag { color: var(--taupe); }

/* Left list — muted, faded */
.ba-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.ba-list li {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.65;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.ba-list--old li {
    color: var(--muted);
    text-decoration-color: transparent;
}
.ba-list--old li::before {
    content: '✕';
    font-size: 0.58rem;
    color: var(--muted);
    opacity: 0.4;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Right card — Scout & Willow way */
.ba-card--new {
    background: var(--teal);
    border: 1px solid var(--teal);
}

.ba-list--new li { color: var(--muted-light); }
.ba-list--new li::before {
    content: '→';
    font-size: 0.78rem;
    color: var(--taupe);
    flex-shrink: 0;
    margin-top: 2px;
}

/* 25% stat callout */
.ba-stat {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(166,147,133,0.12);
    border-radius: 4px;
    border-left: 3px solid var(--taupe);
}

.ba-stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--taupe);
    line-height: 1;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.ba-stat-headline {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.ba-stat-sub {
    font-size: 0.72rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--muted-light);
}

/* Footer line */
.ba-footer {
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    letter-spacing: -0.01em;
}
.ba-footer .accent { color: var(--taupe); }

@media (max-width: 700px) {
    .ba-grid { grid-template-columns: 1fr; }
    .ba-stat { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* ----------------------------------------------------------
   SOLUTION WRAP — 2-col with sidebar stat cards
---------------------------------------------------------- */
.solution-wrap {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.solution-left { display: flex; flex-direction: column; gap: 2rem; }

.stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 1.75rem;
    margin-bottom: 1rem;
}
.stat-card:last-child { margin-bottom: 0; }

.stat-card-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--taupe);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat-card-symbol {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--taupe);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.stat-card-sub {
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted-light);
}

@media (max-width: 900px) {
    .solution-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
    .solution-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat-card { margin-bottom: 0; }
}

@media (max-width: 580px) {
    .solution-right { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   VALUE COMMITMENT (marketing page)
---------------------------------------------------------- */
.value-commitment {
    border-radius: 4px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-light);
}
.vc-divider { background: rgba(166,147,133,0.25); height: 100%; min-height: 80px; }
.vc-col { text-align: center; }
.vc-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--taupe);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.vc-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 0.5rem;
}
.vc-sub { font-size: 0.75rem; font-weight: 300; line-height: 1.65; color: var(--muted-light); }

/* Value statement (in dark section) */
.value-statement {
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--taupe);
    border-radius: 0 4px 4px 0;
    padding: 1.75rem 2rem;
    background: rgba(255,255,255,0.04);
    margin-bottom: 1.5rem;
}
.vs-headline {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--cream);
    margin-bottom: 0.75rem;
}
.vs-body { font-size: 0.82rem; font-weight: 300; line-height: 1.8; color: var(--muted-light); }
.vs-body strong { font-weight: 600; color: var(--cream); }

/* Disclaimer in dark context */
.dark-disclaimer {
    font-size: 0.7rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(166,147,133,0.6);
    font-style: italic;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

/* ----------------------------------------------------------
   AI ENABLEMENT CARDS
---------------------------------------------------------- */
.p4-inset {
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(166,147,133,0.3);
    border-left: 3px solid var(--taupe);
}
.p4-inset-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.6rem;
    display: block;
}
.p4-inset-text {
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--muted-light);
}
.p4-inset-text .accent { color: var(--taupe); }

.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1.75rem; }
.who-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 1rem 1.25rem;
}
.who-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.4rem;
    display: block;
}
.who-text { font-size: 0.78rem; font-weight: 300; line-height: 1.65; color: var(--muted-light); }

/* Tags */
.tags-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.75rem; }
.tag {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border: 1px solid var(--taupe);
    color: var(--taupe);
    border-radius: 40px;
}

/* AI inset */
.ai-inset {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--bg-secondary);
    border-radius: 4px;
    border-left: 2px solid var(--taupe);
}
.ai-tag {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--taupe);
    display: block;
    margin-bottom: 0.4rem;
}

/* ----------------------------------------------------------
   CTA BAR (always inside section-dark)
---------------------------------------------------------- */
.cta-bar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 4rem;
    margin-top: 2rem;
}
.cta-bar .cb-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.5rem;
}
.cta-bar .cb-headline {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--cream);
}
.cta-bar .cb-headline .accent { color: var(--taupe); }

/* On light backgrounds the headline needs to be dark */
.section-light .cta-bar .cb-headline { color: var(--dark); }

/* ----------------------------------------------------------
   HOMEPAGE
---------------------------------------------------------- */

/* Hero */
.hero-inner {
    max-width: 760px;
    padding: 6rem 0 5rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-inner .eyebrow::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--taupe);
    flex-shrink: 0;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--cream);
    margin-bottom: 1.5rem;
}
.hero-headline .accent { color: var(--taupe); }

.hero-sub {
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--muted-light);
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.25rem;
    border-left: none;
    border-top: 1px solid rgba(166,147,133,0.4);
    border-bottom: 1px solid rgba(166,147,133,0.4);
    max-width: 520px;
    text-align: center;
}

.hero-body {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted-light);
    max-width: 580px;
    margin-bottom: 2.5rem;
    text-align: center;
}
.hero-body strong { font-weight: 600; color: var(--cream); }

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }

/* Trust bar */
.trust-bar {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}
.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.trust-stat {
    padding: 0 1rem;
    border-right: 1px solid var(--border);
}
.trust-stat:last-child { border-right: none; }
.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--taupe);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--muted);
    line-height: 1.4;
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-headline {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-top: 0.5rem;
}
.section-headline .accent { color: var(--taupe); }
.section-sub {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted);
    max-width: 480px;
    margin: 0.75rem auto 0;
}

/* Pillar cards grid (homepage) */
.pillar-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.pillar-card {
    border-radius: 4px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}
.pillar-card:hover { box-shadow: 0 6px 24px rgba(8,35,42,0.12); }

/* Card color variants */
.pillar-card--teal {
    background: var(--teal);
    border: 1px solid var(--teal);
}
.pillar-card--teal .pillar-card-num { color: var(--taupe); }
.pillar-card--teal .pillar-card-title { color: var(--cream); }
.pillar-card--teal .pillar-card-title .accent { color: var(--taupe); }
.pillar-card--teal .pillar-card-desc { color: var(--muted-light); }
.pillar-card--teal .pillar-card-link { color: var(--taupe); }
.pillar-card--teal .pillar-card-link:hover { color: var(--cream); }

.pillar-card--taupe {
    background: var(--taupe);
    border: 1px solid var(--taupe);
}
.pillar-card--taupe .pillar-card-num { color: var(--teal); }
.pillar-card--taupe .pillar-card-title { color: var(--teal); }
.pillar-card--taupe .pillar-card-title .accent { color: var(--white); }
.pillar-card--taupe .pillar-card-desc { color: rgba(8,35,42,0.7); }
.pillar-card--taupe .pillar-card-link { color: var(--teal); }
.pillar-card--taupe .pillar-card-link:hover { color: var(--white); }

.pillar-card--cream {
    background: var(--cream);
    border: 1px solid var(--border);
}
.pillar-card--cream .pillar-card-num { color: var(--taupe); }
.pillar-card--cream .pillar-card-title { color: var(--black); }
.pillar-card--cream .pillar-card-title .accent { color: var(--taupe); }
.pillar-card--cream .pillar-card-desc { color: var(--muted); }
.pillar-card--cream .pillar-card-link { color: var(--teal); }
.pillar-card--cream .pillar-card-link:hover { color: var(--taupe); }

.pillar-card--white {
    background: var(--white);
    border: 1px solid var(--border);
}
.pillar-card--white .pillar-card-num { color: var(--taupe); }
.pillar-card--white .pillar-card-title { color: var(--black); }
.pillar-card--white .pillar-card-title .accent { color: var(--taupe); }
.pillar-card--white .pillar-card-desc { color: var(--muted); }
.pillar-card--white .pillar-card-link { color: var(--teal); }
.pillar-card--white .pillar-card-link:hover { color: var(--taupe); }

.pillar-card-num {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 0.75rem;
    display: block;
}
.pillar-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.pillar-card-desc {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.5rem;
}
.pillar-card-link {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, gap 0.2s;
}
.pillar-card-link:hover { gap: 12px; }

.home-hero {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 5rem;
    align-items: start;
    padding: 5rem 0 4rem;
}
.home-hero-headline {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 1.5rem;
}
.home-hero-headline .accent { color: var(--taupe); }

.home-hero-bridge {
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--muted-light);
    margin-bottom: 1.25rem;
    max-width: 440px;
    border-left: 2px solid var(--taupe);
    padding-left: 1.25rem;
}

.home-hero-body {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted-light);
    max-width: 460px;
    margin-bottom: 2.5rem;
}
.home-hero-body strong { font-weight: 600; color: var(--cream); }

.home-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.hero-right { padding-top: 1rem; display: flex; flex-direction: column; gap: 1rem; }

/* Pillars preview (light section) */
.pillars-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.preview-card {
    border-top: 2px solid var(--taupe);
    padding-top: 1.5rem;
}
.preview-num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--taupe);
    margin-bottom: 0.75rem;
    display: block;
}
.preview-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 0.75rem;
}
.preview-title .accent { color: var(--taupe); }
.preview-body {
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 1.25rem;
}
.preview-link {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--taupe);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: gap 0.2s;
}
.preview-link:hover { gap: 10px; }
.preview-arr {
    display: inline-block;
    width: 18px;
    height: 1px;
    background: var(--taupe);
    position: relative;
    transition: width 0.25s;
}
.preview-link:hover .preview-arr { width: 28px; }
.preview-arr::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid var(--taupe);
    border-top: 1.5px solid var(--taupe);
    transform: rotate(45deg);
}

/* ----------------------------------------------------------
   REVIEWS (homepage section)
---------------------------------------------------------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
}
.review-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.review-stars {
    font-size: 0.85rem;
    color: var(--taupe);
    letter-spacing: 3px;
}
.review-text {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted-light);
    flex: 1;
    font-style: italic;
}
.review-author {
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}
.review-author-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.2rem;
}
.review-author-title {
    font-size: 0.68rem;
    font-weight: 400;
    color: var(--taupe);
    letter-spacing: 0.06em;
}

/* ----------------------------------------------------------
   WHO WE ARE (homepage section)
---------------------------------------------------------- */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 5rem;
    align-items: start;
}
.about-preview-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--black);
    margin: 0.5rem 0 1.75rem;
}
.about-preview-content h2 .accent { color: var(--taupe); }
.about-preview-p {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 1.25rem;
}
.about-preview-p strong { font-weight: 600; color: var(--black); }
.about-preview-card {
    background: var(--teal);
    border-radius: 4px;
    padding: 2.25rem;
    position: sticky;
    top: 100px;
}
.about-preview-card-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 1.25rem;
    display: block;
}
.about-preview-card-headline {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--cream);
    margin-bottom: 1.5rem;
}
.about-preview-card-headline .accent { color: var(--taupe); }
.about-preview-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.about-preview-list li {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--muted-light);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.about-preview-list li:last-child { border-bottom: none; }
.about-preview-list li::before {
    content: '→';
    color: var(--taupe);
    flex-shrink: 0;
    font-size: 0.75rem;
    margin-top: 1px;
}

/* ----------------------------------------------------------
   ABOUT PAGE
---------------------------------------------------------- */
.about-opening {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
    padding: 5rem 0 4rem;
}
.about-headline {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--cream);
}
.about-headline .accent { color: var(--taupe); }
.about-intro-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted-light);
}

.story-wrap { max-width: 720px; margin: 0 auto; }
.story-drop {
    font-size: 5rem;
    font-weight: 700;
    color: var(--taupe);
    line-height: 0.85;
    float: left;
    margin: 0.05em 0.08em 0 0;
}
.story-lead {
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.65;
    color: var(--black);
    margin-bottom: 2rem;
}
.story-p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 1.75rem;
}
.story-p strong { font-weight: 600; color: var(--black); }

.pull-quote {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
    margin: 3rem 0;
    text-align: center;
}
.pull-quote p {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--black);
    max-width: 520px;
    margin: 0 auto;
}
.pull-quote .accent { color: var(--taupe); }

.fish-block {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-left: 3px solid var(--taupe);
    border-radius: 0 4px 4px 0;
    padding: 2rem 2.25rem;
    margin: 2.5rem 0;
}
.fish-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.75rem;
    display: block;
}
.fish-headline {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--black);
    margin-bottom: 1rem;
}
.fish-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1rem; }
.fish-tag {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border: 1px solid var(--taupe);
    color: var(--taupe);
    border-radius: 40px;
}

/* Mission block (sits inside section-dark) */
.mission-content .mission-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 1.5rem;
    display: block;
}
.mission-content .mission-text {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--cream);
    margin-bottom: 1.25rem;
}
.mission-content .mission-text .accent { color: var(--taupe); }
.mission-content .mission-sub {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted-light);
    max-width: 560px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.value-card { border-top: 2px solid var(--taupe); padding-top: 1.5rem; }
.value-num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--taupe);
    margin-bottom: 0.6rem;
    display: block;
}
.value-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--black);
}
.value-title .accent { color: var(--taupe); }
.value-body { font-size: 0.82rem; font-weight: 300; line-height: 1.75; color: var(--muted); }

/* ----------------------------------------------------------
   SERVICES OVERVIEW
---------------------------------------------------------- */
.services-hero { padding: 5rem 0 4rem; }
.services-headline {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 640px;
    margin-bottom: 1.25rem;
    color: var(--cream);
}
.services-headline .accent { color: var(--taupe); }

.pillars-list { display: grid; grid-template-columns: 1fr; gap: 0; }
.pillar {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    align-items: start;
}
.pillar:last-child { border-bottom: 1px solid var(--border); }
.pillar-num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--taupe);
    margin-bottom: 1rem;
    display: block;
}
.pillar-name {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.4rem;
    color: var(--black);
}
.pillar-name .accent { color: var(--taupe); }
.pillar-tag {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.pillar-lead {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--black);
    margin-bottom: 1rem;
}
.pillar-body {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 0.85rem;
}
.pillar-body strong { font-weight: 600; color: var(--black); }

.pillar-learn {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color 0.2s;
}
.pillar-learn:hover { color: var(--taupe); }
.pl-arr {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: currentColor;
    position: relative;
    transition: width 0.25s;
}
.pillar-learn:hover .pl-arr { width: 40px; }
.pl-arr::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-top: 1.5px solid currentColor;
    transform: rotate(45deg);
}

/* ----------------------------------------------------------
   SERVICE PAGES
---------------------------------------------------------- */
.sp-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    padding: 5rem 0 4rem;
}
.sp-headline {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--cream);
}
.sp-headline .accent { color: var(--taupe); }

/* ----------------------------------------------------------
   CONTACT PAGE
---------------------------------------------------------- */
.contact-wrap { max-width: 640px; margin: 0 auto; padding: 5rem 0; }

.contact-hero-headline {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 1.5rem;
}
.contact-hero-headline .accent { color: var(--taupe); }

.contact-expect {
    border-radius: 4px;
    padding: 0;
    margin-bottom: 0;
}
.contact-expect-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 1.5rem;
    display: block;
}
.contact-expect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-expect-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.4rem;
}
.contact-expect-item-body {
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--muted-light);
}

.contact-cta-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem;
    text-align: center;
}
.contact-cta-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

/* ----------------------------------------------------------
   LOCATION PAGES
---------------------------------------------------------- */
.loc-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.loc-hero-content { display: flex; flex-direction: column; gap: 0; }

.loc-map {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    min-height: 340px;
}

.loc-map iframe { display: block; min-height: 340px; }

/* Location split statement */
.loc-split-statement {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 4rem;
    align-items: start;
    padding: 1rem 0;
}

.lss-divider {
    background: var(--border);
    height: 100%;
    min-height: 180px;
}

.lss-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.75rem;
}

.lss-headline {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.lss-headline .accent { color: var(--taupe); }

.lss-body {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted);
}

@media (max-width: 768px) {
    .loc-split-statement {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .lss-divider { display: none; }
}

.lss-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 4rem;
}

.lss-service {
    background: rgba(255,255,255,0.04);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: background 0.2s;
}
.lss-service:hover { background: rgba(255,255,255,0.07); }

.lss-service-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
}

.lss-service-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.lss-service-body {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted-light);
    flex: 1;
}

.lss-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-top: 1px solid var(--border-light);
    padding-top: 0.85rem;
    margin-top: 0.25rem;
    flex: 1;
}

.lss-bullets li {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--muted-light);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.lss-bullets li::before {
    content: '—';
    color: var(--taupe);
    font-size: 0.55rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.lss-service-link {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
    text-decoration: none;
    margin-top: 0.5rem;
    transition: color 0.2s;
}
.lss-service-link:hover { color: var(--cream); }

@media (max-width: 900px) {
    .lss-services { grid-template-columns: 1fr; }
}

.loc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.loc-tag {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
    border: 1px solid rgba(166,147,133,0.35);
    border-radius: 40px;
    padding: 4px 12px;
}

@media (max-width: 900px) {
    .loc-hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0; }
    .loc-map { min-height: 280px; }
    .loc-map iframe { min-height: 280px; }
}


.loc-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
}

.loc-service {
    background: rgba(255,255,255,0.04);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: background 0.2s;
}

.loc-service:hover { background: rgba(255,255,255,0.07); }

.loc-service-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.01em;
}

.loc-service-body {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted-light);
}

@media (max-width: 900px) {
    .loc-services { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
    .loc-services { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   AI TECH STACK
---------------------------------------------------------- */

/* Hero */
.stack-hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 5rem;
    align-items: center;
    padding: 3.5rem 0;
}
.stack-hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.shs-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.shs-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.02em;
    line-height: 1;
}
.shs-label {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--taupe);
}
.shs-divider {
    width: 1px;
    height: 32px;
    background: rgba(240,239,233,0.15);
}
.stack-hero-free {
    background: rgba(240,239,233,0.05);
    border: 1px solid rgba(240,239,233,0.12);
    border-radius: 8px;
    padding: 1.75rem;
}
.shf-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.4rem;
}
.shf-sub {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--muted-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.shf-list { display: flex; flex-direction: column; gap: 0; }
.shf-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(240,239,233,0.08);
}
.shf-item:last-child { border-bottom: none; }
.shf-cat {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--taupe);
}
.shf-tool {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cream);
}
@media (max-width: 960px) {
    .stack-hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 2rem 0; }
}

/* Sticky nav bar */
.stack-nav-section {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.stack-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.4rem 0;
    flex-wrap: wrap;
}
.stack-jump-nav {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}
.sjn-link {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 40px;
    transition: all 0.2s;
}
.sjn-link:hover { color: var(--black); }
.sjn-link.active {
    background: var(--teal);
    color: var(--cream);
}

/* Tool cards */

.tool-card-top { display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.tool-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.tool-badges { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }

.sw-pick-badge {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 40px;
    background: var(--taupe);
    color: var(--cream);
    white-space: nowrap;
}

.tool-price {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--taupe);
    letter-spacing: 0.02em;
}
.tool-price--dark { color: var(--taupe); }

.tool-watchout {
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--muted-light);
}
.tool-watchout--dark { color: var(--muted); }
.tool-watchout strong { font-weight: 600; }

.stack-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.stack-meta-item {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
}
.stack-meta-divider { color: var(--taupe); opacity: 0.4; }

.stack-intro { display: flex; flex-direction: column; gap: 1.25rem; }
.stack-intro-head {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.01em;
}
.stack-badges-legend {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
.legend-label {
    font-size: 0.7rem;
    color: var(--muted);
    margin-right: 1rem;
}

.tool-category-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.tool-category-num {
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(240,239,233,0.08);
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -0.04em;
    margin-top: -0.25rem;
}
.tool-category-num--light {
    color: rgba(33,33,33,0.07);
}
.tool-category-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.5rem;
}
.tool-category-label--light { color: var(--taupe); }
.tool-category-desc {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted-light);
    max-width: 560px;
}
.tool-category-desc--light { color: var(--muted); }

.tool-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 0.5rem;
}
@media (max-width: 768px) {
    .tool-grid { grid-template-columns: 1fr; }
}

.tool-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 1px 4px rgba(33,33,33,0.06);
    transition: box-shadow 0.2s, border-color 0.2s;
}
.tool-card:hover {
    box-shadow: 0 4px 16px rgba(33,33,33,0.1);
    border-color: var(--taupe);
}
.tool-card--dark {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(240,239,233,0.14);
    box-shadow: none;
}
.tool-card--dark:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--taupe);
    box-shadow: none;
}
.tool-card--pick { position: relative; }
.tool-card--pick::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--taupe);
    border-radius: 8px 8px 0 0;
}

.tool-card-top { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }

.tool-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.tool-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.01em;
}
.tool-name--dark { color: var(--black); }

.tool-badge {
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 40px;
    white-space: nowrap;
    flex-shrink: 0;
}
.tool-badge--free     { background: rgba(166,147,133,0.15); color: var(--taupe); border: 1px solid rgba(166,147,133,0.3); }
.tool-badge--freemium { background: rgba(240,239,233,0.08); color: var(--cream); border: 1px solid rgba(240,239,233,0.2); }
.tool-badge--paid     { background: rgba(240,239,233,0.05); color: rgba(240,239,233,0.5); border: 1px solid rgba(240,239,233,0.12); }

.tool-desc {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted-light);
}
.tool-desc--dark { color: var(--muted); }

.tool-best-for {
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--muted-light);
}
.tool-best-for--dark { color: var(--muted); }
.tool-best-for strong { font-weight: 600; }

.tool-honest {
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--taupe);
    border-top: 1px solid rgba(240,239,233,0.1);
    padding-top: 0.85rem;
    font-style: italic;
}
.tool-honest--dark {
    color: var(--muted);
    border-top-color: var(--border);
}

.stack-closing { max-width: 720px; }

.free-stack-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}
.free-stack-headline {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0.75rem 0 0.5rem;
}
.free-stack-sub {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted-light);
    line-height: 1.75;
}
.free-stack-tools {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(240,239,233,0.1);
    border: 1px solid rgba(240,239,233,0.1);
    border-radius: 6px;
    overflow: hidden;
}
.free-stack-tool {
    background: rgba(255,255,255,0.03);
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.fst-cat {
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe);
}
.fst-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cream);
}
@media (max-width: 768px) {
    .free-stack-bar { grid-template-columns: 1fr; gap: 2rem; }
    .free-stack-tools { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .free-stack-tools { grid-template-columns: repeat(2, 1fr); }
}

.stack-filter-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.stack-filter-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.stack-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.stack-filter {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 40px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
}
.stack-filter:hover {
    border-color: var(--taupe);
    color: var(--black);
}
.stack-filter.active {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--cream);
}

/* ----------------------------------------------------------
   AI PROMPT LIBRARY
---------------------------------------------------------- */
.prompt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 0.5rem;
}
@media (max-width: 768px) { .prompt-grid { grid-template-columns: 1fr; } }

.prompt-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    box-shadow: 0 1px 4px rgba(33,33,33,0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.prompt-card:hover { border-color: var(--taupe); box-shadow: 0 4px 16px rgba(33,33,33,0.1); }
.prompt-card--dark {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(240,239,233,0.14);
    box-shadow: none;
}
.prompt-card--dark:hover { background: rgba(255,255,255,0.08); border-color: var(--taupe); }

.prompt-card-top { display: flex; flex-direction: column; gap: 0.5rem; }

.prompt-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe);
}
.prompt-label--dark { color: var(--taupe); }

.prompt-desc {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted-light);
}
.prompt-desc--dark { color: var(--muted); }

.prompt-box {
    background: rgba(240,239,233,0.5);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.1rem 1.25rem;
    flex: 1;
}
.prompt-box--dark {
    background: rgba(0,0,0,0.2);
    border-color: rgba(240,239,233,0.1);
}
.prompt-text {
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--muted-light);
    font-family: inherit;
}
.prompt-text--dark { color: var(--muted); }

.copy-btn {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 40px;
    border: 1px solid rgba(240,239,233,0.3);
    background: transparent;
    color: var(--taupe);
    cursor: pointer;
    transition: all 0.2s;
    align-self: flex-start;
}
.copy-btn:hover { background: var(--taupe); color: var(--cream); border-color: var(--taupe); }
.copy-btn--dark { border-color: var(--border); color: var(--taupe); }
.copy-btn--dark:hover { background: var(--taupe); color: var(--cream); border-color: var(--taupe); }
.copy-btn--copied { background: var(--taupe); color: var(--cream); border-color: var(--taupe); }

/* ----------------------------------------------------------
   RESOURCE LIBRARY
---------------------------------------------------------- */
.resources-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
}
@media (max-width: 768px) {
    .resources-hero { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 0; }
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.resource-grid--single {
    grid-template-columns: 1fr;
    max-width: 580px;
}
@media (max-width: 768px) {
    .resource-grid { grid-template-columns: 1fr; }
}

.resource-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    transition: border-color 0.2s;
}
.resource-card:hover { border-color: var(--taupe); }

.resource-card--dark {
    background: rgba(255,255,255,0.04);
    border-color: rgba(240,239,233,0.12);
}
.resource-card--dark:hover { border-color: var(--taupe); }

.resource-card-top { display: flex; flex-direction: column; gap: 0.75rem; }

.resource-badge {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 40px;
    width: fit-content;
}
.resource-badge--guide    { background: rgba(8,35,42,0.1);    color: var(--teal);  border: 1px solid rgba(8,35,42,0.2); }
.resource-badge--course   { background: rgba(166,147,133,0.15); color: var(--taupe); border: 1px solid rgba(166,147,133,0.3); }
.resource-badge--prompts  { background: rgba(166,147,133,0.12); color: var(--taupe); border: 1px solid rgba(166,147,133,0.25); }
.resource-badge--template { background: rgba(8,35,42,0.1);    color: var(--teal);  border: 1px solid rgba(8,35,42,0.2); }
.resource-badge--tool     { background: rgba(166,147,133,0.18); color: var(--taupe); border: 1px solid rgba(166,147,133,0.35); }

.resource-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.resource-body {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
}
.resource-link {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
    text-decoration: none;
    transition: color 0.2s;
}
.resource-link:hover { color: var(--black); }
.resource-link--light { color: var(--taupe); }
.resource-link--light:hover { color: var(--cream); }

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
.footer {
    border-top: 1px solid var(--border);
    background: var(--teal);
    padding: 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
}
.footer-brand { max-width: 260px; }
.footer-logo {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 0.35rem;
}
.footer-sub { font-size: 0.68rem; font-weight: 300; color: var(--muted-light); line-height: 1.6; }
.footer-cols {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 2.5rem;
    align-items: start;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.footer-col-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.35rem;
}
.footer-col a {
    font-size: 0.68rem;
    font-weight: 300;
    color: var(--muted-light);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.4;
}
.footer-col a:hover { color: var(--cream); }

@media (max-width: 1100px) {
    .footer-cols { grid-template-columns: repeat(2, auto); gap: 2rem; }
}
@media (max-width: 900px) {
    .footer { grid-template-columns: 1fr; gap: 1.75rem; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 580px) {
    .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ----------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 900px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-grid-2 { grid-template-columns: 1fr; }
    .about-preview { grid-template-columns: 1fr; gap: 3rem; }
    .about-preview-card { position: static; }
    .trust-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-headline { font-size: 3rem; }
    .home-hero { grid-template-columns: 1fr; gap: 3rem; }
    .hero-right { padding-top: 0; }
    .pillars-preview { grid-template-columns: repeat(2, 1fr); }
    .about-opening { grid-template-columns: 1fr; gap: 2rem; }
    .sp-hero { grid-template-columns: 1fr; gap: 2rem; }
    .pillar { grid-template-columns: 1fr; gap: 1.5rem; }
    .service-cards { grid-template-columns: 1fr; }
    .deliverables { grid-template-columns: 1fr; }
    .value-commitment { grid-template-columns: 1fr; }
    .vc-divider { display: none; }
    .cta-bar { grid-template-columns: 1fr; }
    .home-hero-headline { font-size: 2.8rem; }
    .contact-expect-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .pillar-cards { grid-template-columns: 1fr; }
    .nav { padding: 1.25rem 1.5rem; }
    .container { padding: 0 1.5rem; }
    .section-dark, .section-light { padding: 4rem 0; }
    .nav-links { display: none; flex-direction: column; gap: 0; }
    .nav-links.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--teal);
        padding: 1rem 1.5rem 1.5rem;
        border-bottom: 1px solid var(--border-light);
    }
    .nav-links > li { padding: 0.6rem 0; border-bottom: 1px solid var(--border-light); }
    .nav-links > li:last-child { border-bottom: none; }
    .nav-toggle { display: flex; }

    /* Mobile dropdowns */
    .nav-links li.has-dropdown { flex-wrap: wrap; align-items: center; }
    .nav-links li.has-dropdown > a { flex: 1; }
    .nav-drop-btn { padding: 4px 8px; }
    .nav-dropdown {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        background: rgba(0,0,0,0.15);
        border: none;
        border-radius: 3px;
        box-shadow: none;
        padding: 0.25rem 0;
        width: 100%;
        flex-basis: 100%;
        display: none;
    }
    .nav-dropdown::before { display: none; }
    .has-dropdown.open .nav-dropdown { display: block; }
    .nav-dropdown li a { padding: 0.45rem 1rem; font-size: 0.6rem; }
    /* Disable CSS hover on mobile */
    .nav-links li.has-dropdown:hover .nav-dropdown,
    .nav-links li.has-dropdown:focus-within .nav-dropdown {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
    .pillars-preview { grid-template-columns: 1fr; }
    .proof-row { grid-template-columns: 1fr; }
    .hero-headline { font-size: 2.2rem; }
    .trust-stats { grid-template-columns: repeat(2, 1fr); }
    .home-hero-headline { font-size: 2.2rem; }
    .about-headline { font-size: 2.4rem; }
    .services-headline { font-size: 2rem; }
    .sp-headline { font-size: 2rem; }
    .contact-hero-headline { font-size: 2rem; }
    .cta-bar { flex-direction: column; }
    .footer { grid-template-columns: 1fr; }
    .contact-wrap { padding: 3rem 0; }
}

/* ----------------------------------------------------------
   SAVINGS GRID — where the savings come from
---------------------------------------------------------- */
.savings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--border-light);
    padding-top: 2.5rem;
}

.savings-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sav-num {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--taupe);
    text-transform: uppercase;
}

.sav-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.sav-body {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted-light);
}

@media (max-width: 900px) {
    .savings-grid { grid-template-columns: 1fr; gap: 2rem; }
    .savings-item { padding-bottom: 2rem; border-bottom: 1px solid var(--border-light); }
    .savings-item:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ----------------------------------------------------------
   PROCESS V2 — Ghost number cards (Marketing & Brand)
---------------------------------------------------------- */
.process-v2 {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    margin-top: 2.5rem;
}

.pv2-step {
    background: var(--teal);
    border-radius: 6px;
    padding: 2rem 1.75rem 2.25rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-self: stretch;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pv2-step:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(8,35,42,0.2);
    z-index: 1;
}

.pv2-ghost {
    position: absolute;
    bottom: -1.25rem;
    right: -0.25rem;
    font-size: 9rem;
    font-weight: 700;
    color: var(--cream);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
}

.pv2-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    display: block;
    margin-bottom: 0.5rem;
}

.pv2-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.pv2-body {
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted-light);
    margin-top: 0.25rem;
}

.pv2-connector {
    color: var(--taupe);
    font-size: 1.1rem;
    padding: 0 0.9rem;
    opacity: 0.5;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .process-v2 {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .pv2-connector { display: none; }
    .pv2-step { min-height: 160px; }
}

@media (max-width: 580px) {
    .process-v2 { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   DARK SERVICE CARDS (What We Do on dark bg)
---------------------------------------------------------- */
.service-card--dark {
    background: rgba(255,255,255,0.04);
    border-color: var(--border-light);
}
.service-card--dark .sc-outcome { color: var(--taupe); }
.service-card--dark .sc-name { color: var(--cream); }
.service-card--dark .sc-name .accent { color: var(--taupe); }
.service-card--dark .sc-desc { color: var(--muted-light); }
.service-card--dark .sc-divider { background: var(--border-light); }
.service-card--dark .sc-items li { color: var(--muted-light); border-color: var(--border-light); }
.service-card--dark .sc-items li::before { color: var(--taupe); }
.service-card--dark.anchor { border-top: 2px solid var(--taupe); }

.bundle-note--dark {
    background: rgba(255,255,255,0.04);
    border-color: var(--border-light);
    color: var(--muted-light);
}
.bundle-note--dark strong { color: var(--cream); }

/* ----------------------------------------------------------
   LIGHT REVIEW CARDS (reviews on cream/light bg)
---------------------------------------------------------- */
.review-card--light {
    background: var(--white);
    border-color: var(--border);
}
.review-card--light .review-author { border-color: var(--border); }

/* ----------------------------------------------------------
   SERVICE MINI CARDS (3x2 floating grid, Marketing & Brand)
---------------------------------------------------------- */
.svc-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.svc-mini {
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.svc-mini-tag {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
}

.svc-mini-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.svc-mini-name .accent { color: var(--taupe); }

@media (max-width: 900px) {
    .svc-mini-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
    .svc-mini-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   INTRO TO AI — SERIES LANDING PAGE
---------------------------------------------------------- */
.series-hero {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
}

.series-hero-card {
    background: rgba(240,239,233,0.07);
    border: 1px solid rgba(240,239,233,0.16);
    border-radius: 10px;
    padding: 2rem;
}

.shf-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
}

.shf-list { display: flex; flex-direction: column; gap: 0.85rem; }

.shf-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.shf-cat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--taupe);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.shf-tool {
    font-size: 0.85rem;
    color: var(--cream);
    line-height: 1.4;
}

/* Hero stats row */
.stack-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
}

.shs-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem;
}

.shs-stat:first-child { padding-left: 0; }

.shs-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cream);
    letter-spacing: -0.02em;
}

.shs-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-light);
    margin-top: 0.1rem;
}

.shs-divider {
    width: 1px;
    height: 2rem;
    background: var(--border-light);
}

/* Module grid */
.module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.module-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 1px 4px rgba(33,33,33,0.06);
    transition: box-shadow 0.2s, border-color 0.2s;
    color: var(--black);
    text-decoration: none;
}

.module-card:hover {
    box-shadow: 0 4px 16px rgba(33,33,33,0.1);
    border-color: var(--taupe);
    color: var(--black);
}

.module-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.module-num {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--taupe);
    text-transform: uppercase;
}

.module-badge {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}

.module-badge--free {
    background: rgba(8,35,42,0.08);
    color: var(--teal);
}

.module-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.module-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
}

.module-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.module-topic {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(33,33,33,0.05);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 0.2rem 0.45rem;
}

.module-time {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--taupe);
    letter-spacing: 0.06em;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

/* ----------------------------------------------------------
   INTRO TO AI — MODULE PAGES
---------------------------------------------------------- */
.module-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.module-breadcrumb a {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-light);
    text-decoration: none;
    transition: color 0.15s;
}

.module-breadcrumb a:hover { color: var(--cream); }

.module-breadcrumb-sep {
    font-size: 0.65rem;
    color: var(--muted-light);
}

.module-breadcrumb-current {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
}

.module-hero-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
}

.module-hero-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240,239,233,0.88);
}

.module-hero-tag span {
    color: var(--taupe);
    margin-right: 0.3rem;
}

/* Content sections */
.module-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3.5rem;
    align-items: start;
}

.module-body h2 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.module-body h2.light-heading { color: var(--cream); }

.module-body p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.module-body p.light-body { color: var(--muted-light); }

/* strong text: make it stand out from body copy in all contexts */
.module-body p strong { color: var(--black); }
.module-body p.light-body strong { color: var(--cream); }

.module-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.module-body ul li {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    padding-left: 1.2rem;
    position: relative;
}

.module-body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--taupe);
    font-size: 0.8rem;
}

.module-body ul.light-list li { color: var(--muted-light); }
.module-body ul.light-list li::before { color: var(--taupe); }

/* strong in lists */
.module-body ul li strong { color: var(--black); }
.module-body ul.light-list li strong { color: var(--cream); }

/* Sidebar / key takeaways */
.module-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 5rem;
}

.module-sidebar-card {
    background: rgba(240,239,233,0.06);
    border: 1px solid rgba(240,239,233,0.14);
    border-radius: 8px;
    padding: 1.5rem;
}

.module-sidebar-card--light {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(33,33,33,0.06);
}

.module-sidebar-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.9rem;
}

.module-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.module-sidebar-list li {
    font-size: 0.78rem;
    color: rgba(240,239,233,0.88);
    line-height: 1.45;
    padding-left: 1rem;
    position: relative;
    list-style: none;
}

.module-sidebar-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--taupe);
    font-size: 0.72rem;
}

.module-sidebar-list--dark li { color: var(--muted); }
.module-sidebar-list--dark li::before { color: var(--taupe); }
.module-sidebar-list--dark li strong { color: var(--black); }

/* Try it now / prompt boxes */
.try-it-box {
    background: rgba(240,239,233,0.05);
    border: 1px solid rgba(240,239,233,0.16);
    border-left: 3px solid var(--taupe);
    border-radius: 6px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.try-it-box--light {
    background: rgba(8,35,42,0.04);
    border: 1px solid var(--border);
    border-left: 3px solid var(--taupe);
}

.try-it-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.6rem;
}

.try-it-prompt {
    font-size: 0.82rem;
    font-style: italic;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 0;
}

.try-it-prompt--light { color: var(--muted); }

/* Callout / highlight box */
.module-callout {
    background: rgba(166,147,133,0.15);
    border: 1px solid rgba(166,147,133,0.3);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 1.25rem 0;
}

.module-callout--light {
    background: rgba(166,147,133,0.08);
    border: 1px solid rgba(166,147,133,0.2);
}

.module-callout p {
    font-size: 0.85rem;
    color: rgba(240,239,233,0.9);
    margin-bottom: 0;
    line-height: 1.6;
}

/* strong in callouts — dark callout (on dark bg) → cream; light callout (on light bg) → black */
.module-callout p strong { color: var(--cream); }

.module-callout--light p { color: var(--muted); }
.module-callout--light p strong { color: var(--black); }

/* Prev / Next navigation */
.module-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    margin-top: 2rem;
}

.module-nav-link {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-decoration: none;
    transition: opacity 0.15s;
}

.module-nav-link:hover { opacity: 0.7; }

.module-nav-dir {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-light);
}

.module-nav-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--cream);
}

.module-nav-link--next { text-align: right; }

.module-nav-link--prev .module-nav-dir::before { content: '← '; }
.module-nav-link--next .module-nav-dir::after { content: ' →'; }

@media (max-width: 900px) {
    .series-hero { grid-template-columns: 1fr; }
    .series-hero-card { display: none; }
    .module-grid { grid-template-columns: repeat(2, 1fr); }
    .module-content { grid-template-columns: 1fr; }
    .module-sidebar { position: static; }
}

@media (max-width: 580px) {
    .module-grid { grid-template-columns: 1fr; }
    .stack-hero-stats { gap: 0; }
    .shs-stat { padding: 0 1rem; }
}

/* ----------------------------------------------------------
   EDITABLE CONTENT AREA (.sw-content)
   Styles standard WordPress / Gutenberg block output to
   match the design system. Used on all editable pages.
---------------------------------------------------------- */

.sw-content { max-width: 760px; }

.sw-content h2 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    margin-top: 2.5rem;
    line-height: 1.25;
}

.sw-content > h2:first-child,
.sw-content > *:first-child h2 { margin-top: 0; }
.sw-content h2:first-child { margin-top: 0; }

.sw-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.015em;
    margin-bottom: 0.5rem;
    margin-top: 1.75rem;
    line-height: 1.3;
}

.sw-content p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.sw-content ul,
.sw-content ol {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    padding: 0;
}

.sw-content ul li {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    padding-left: 1.2rem;
    position: relative;
}

.sw-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--taupe);
    font-size: 0.8rem;
    top: 0.1rem;
}

.sw-content ol { counter-reset: sw-ol; }

.sw-content ol li {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
    counter-increment: sw-ol;
}

.sw-content ol li::before {
    content: counter(sw-ol) '.';
    position: absolute;
    left: 0;
    color: var(--taupe);
    font-weight: 700;
    font-size: 0.8rem;
}

.sw-content strong { color: var(--black); }
.sw-content em { font-style: italic; }

.sw-content a {
    color: var(--taupe);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s;
}

.sw-content a:hover { color: var(--black); }

.sw-content blockquote {
    background: rgba(166,147,133,0.08);
    border: 1px solid rgba(166,147,133,0.2);
    border-left: 3px solid var(--taupe);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 1.25rem 0;
}

.sw-content blockquote p { margin-bottom: 0; font-style: italic; }

.sw-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2.5rem 0;
}

.sw-content img {
    border-radius: 6px;
    margin: 1.5rem 0;
    max-width: 100%;
}

/* Big question banner — <div class="sw-big-question"><p class="sw-bq-text">Question?</p><p class="sw-bq-caveat">Caveat text</p></div> */
.sw-big-question {
    background: var(--teal);
    border-radius: 10px;
    padding: 3rem 2.5rem;
    margin: 2rem 0;
    text-align: center;
}

.sw-bq-text {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem) !important;
    font-weight: 800 !important;
    color: var(--cream) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.025em !important;
    margin-bottom: 1rem !important;
}

.sw-bq-caveat {
    font-size: 0.75rem !important;
    color: rgba(240,239,233,0.55) !important;
    font-style: normal !important;
    max-width: 480px;
    margin: 0 auto !important;
    line-height: 1.5 !important;
}

/* Callout box — HTML block: <div class="sw-callout"><p>text</p></div> */
.sw-callout {
    background: rgba(166,147,133,0.08);
    border: 1px solid rgba(166,147,133,0.2);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 1.25rem 0;
}

.sw-callout p {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0 !important;
    line-height: 1.6;
}

.sw-callout p strong { color: var(--black); }
.sw-callout a { color: var(--taupe); text-decoration: underline; }

/* Review card — <div class="sw-review"><div class="sw-review-stars">★★★★★</div><blockquote><p>"Quote"</p></blockquote><div class="sw-review-meta"><span class="sw-review-name">Name</span><span class="sw-review-title">Title</span></div></div> */
.sw-review {
    background: rgba(166,147,133,0.08);
    border: 1px solid rgba(166,147,133,0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.25rem 0;
}

.sw-review blockquote {
    background: none !important;
    border: none !important;
    border-left: none !important;
    padding: 0.5rem 0 !important;
    margin: 0.5rem 0 !important;
}

.sw-review-stars {
    color: var(--taupe);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.sw-review-meta {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    border-top: 1px solid rgba(166,147,133,0.2);
    padding-top: 0.75rem;
}

.sw-review-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.02em;
}

.sw-review-title {
    font-size: 0.65rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Try It box — HTML block: <div class="sw-try-it"><p class="sw-try-it-label">Label</p><p>Prompt text</p></div> */
.sw-try-it {
    background: rgba(8,35,42,0.04);
    border: 1px solid var(--border);
    border-left: 3px solid var(--taupe);
    border-radius: 6px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.sw-try-it-label {
    font-size: 0.58rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--taupe) !important;
    margin-bottom: 0.6rem !important;
    font-style: normal !important;
    line-height: 1.4 !important;
}

.sw-try-it p:not(.sw-try-it-label) {
    font-size: 0.82rem;
    font-style: italic;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0 !important;
}

/* ----------------------------------------------------------
   BLOG — LIST PAGE
---------------------------------------------------------- */
.blog-hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.blog-hero-meta span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-light);
}

.blog-hero-meta span strong {
    color: var(--taupe);
    font-weight: 700;
}

/* Filter / category bar */
.blog-filter-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.blog-filter-btn {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.15s;
    font-family: var(--font-sans);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: var(--teal);
    color: var(--cream);
    border-color: var(--teal);
}

/* Post grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 4px rgba(33,33,33,0.06);
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    text-decoration: none;
    color: var(--black);
}

.blog-card:hover {
    box-shadow: 0 6px 24px rgba(33,33,33,0.1);
    border-color: var(--taupe);
    transform: translateY(-2px);
    color: var(--black);
}

.blog-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: var(--teal);
}

/* Placeholder when no image */
.blog-card-img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--teal) 0%, #0d3542 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-card-img-placeholder span {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(240,239,233,0.4);
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.blog-card-cat {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--taupe);
}

.blog-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.blog-card-excerpt {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px solid var(--border);
}

.blog-card-date {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.05em;
}

.blog-card-read {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
    transition: color 0.15s;
}

.blog-card:hover .blog-card-read { color: var(--teal); }

/* Featured / large first post */
.blog-card--featured {
    grid-column: 1 / -1;
    flex-direction: row;
}

.blog-card--featured .blog-card-img,
.blog-card--featured .blog-card-img-placeholder {
    width: 480px;
    min-width: 480px;
    aspect-ratio: auto;
    height: auto;
    border-radius: 0;
}

.blog-card--featured .blog-card-body {
    padding: 2rem 2.25rem;
    justify-content: center;
}

.blog-card--featured .blog-card-title {
    font-size: 1.2rem;
}

.blog-card--featured .blog-card-excerpt {
    font-size: 0.85rem;
    max-width: 520px;
}

/* Empty state */
.blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 0;
}

.blog-empty p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

/* Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 3.5rem;
}

.blog-pagination a,
.blog-pagination span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.15s;
    background: #fff;
}

.blog-pagination a:hover { border-color: var(--taupe); color: var(--teal); }

.blog-pagination .current {
    background: var(--teal);
    color: var(--cream);
    border-color: var(--teal);
}

@media (max-width: 900px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-card--featured { flex-direction: column; }
    .blog-card--featured .blog-card-img,
    .blog-card--featured .blog-card-img-placeholder {
        width: 100%;
        min-width: 0;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 580px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   BLOG — SINGLE POST
---------------------------------------------------------- */
/* Centered content column */
.sp-content-wrap {
    max-width: 780px;
    margin: 0 auto;
}

/* Below-content wrapper */
.sp-below-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 3rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Author card */
.sp-author-card {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.75rem 2rem;
    background: var(--bg-secondary);
}
.sp-author-inner {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.sp-author-logo {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--taupe);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-author-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.2rem;
}
.sp-author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.sp-author-bio {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.sp-author-link {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
    transition: color 0.2s;
}
.sp-author-link:hover { color: var(--dark); }

/* Related posts */
.sp-related-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 1.25rem;
}
.sp-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.sp-related-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 5px;
    overflow: hidden;
    background: var(--white);
    transition: border-color 0.2s, transform 0.2s;
}
.sp-related-card:hover {
    border-color: var(--taupe);
    transform: translateY(-2px);
}
.sp-related-img img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}
.sp-related-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}
.sp-related-date {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
}
.sp-related-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    flex: 1;
}
.sp-related-read {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-top: 0.35rem;
}

@media (max-width: 680px) {
    .sp-related-grid { grid-template-columns: 1fr; }
    .sp-author-inner { flex-direction: column; gap: 1rem; }
}

/* Post body content styles */
.post-content h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 2.5rem 0 0.85rem;
}

.post-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.01em;
    margin: 1.75rem 0 0.6rem;
}

.post-content p {
    font-size: 1.05rem;
    color: #2a2a2a;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.post-content p strong { color: var(--dark); }

.post-content ul,
.post-content ol {
    margin: 0.75rem 0 1.25rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.post-content ul li,
.post-content ol li {
    font-size: 1.05rem;
    color: #2a2a2a;
    line-height: 1.8;
}

.post-content ul li strong,
.post-content ol li strong { color: var(--dark); }

.post-content a {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-content a:hover { color: var(--taupe); }

.post-content blockquote {
    border-left: 3px solid var(--taupe);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    background: rgba(166,147,133,0.07);
    border-radius: 0 6px 6px 0;
}

.post-content blockquote p {
    font-style: italic;
    color: var(--muted);
    margin-bottom: 0;
}

.post-content img {
    width: 100%;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.post-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2.5rem 0;
}

/* ── Post intro ─────────────────────────────────────────────── */
.post-intro {
    font-size: 1.15rem !important;
    color: #1a1a1a !important;
    font-weight: 500;
    line-height: 1.75 !important;
    border-left: 3px solid var(--taupe);
    padding-left: 1.25rem;
    margin-bottom: 1.75rem !important;
}

/* ── Table of contents ───────────────────────────────────────── */
.post-toc {
    background: #f0ede7;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0 2.5rem;
}
.post-toc-label {
    font-size: 0.68rem !important;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--taupe) !important;
    margin: 0 0 0.65rem !important;
}
.post-toc-list {
    margin: 0 0 0 1.2rem !important;
    gap: 0.35rem !important;
}
.post-toc-list li {
    font-size: 0.9rem !important;
    color: var(--dark) !important;
}
.post-toc-list li a {
    color: var(--dark) !important;
    text-decoration: none !important;
    font-weight: 600;
}
.post-toc-list li a:hover { color: var(--taupe) !important; }

/* ── Chokepoint blocks ───────────────────────────────────────── */
.cp-block {
    margin: 3rem 0;
    border: 1px solid var(--border);
    border-radius: 5px;
    overflow: hidden;
}
.cp-block-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--dark);
    padding: 1.25rem 1.5rem;
}
.cp-block-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--taupe);
    line-height: 1;
    letter-spacing: -0.03em;
    flex-shrink: 0;
    opacity: 0.7;
}
.cp-block-label {
    font-size: 0.65rem !important;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe) !important;
    margin: 0 0 0.2rem !important;
    line-height: 1 !important;
}
.cp-block-title {
    font-size: 1.35rem !important;
    font-weight: 700;
    color: var(--cream) !important;
    margin: 0 !important;
    letter-spacing: -0.02em;
    line-height: 1.2 !important;
}
.cp-block-body {
    padding: 1.75rem 1.75rem 1.5rem;
}
.cp-block-body > p:first-child { margin-top: 0; }
.cp-block-body h3 {
    font-size: 1rem !important;
    font-weight: 700;
    color: var(--dark) !important;
    margin: 1.5rem 0 0.5rem !important;
}

/* ── Stat callout row ────────────────────────────────────────── */
.post-stat-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #f0ede7;
    border-left: 3px solid var(--taupe);
    border-radius: 3px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0 1.5rem;
}
.post-stat-row--accent { border-left-color: var(--dark); background: #e8f0ed; }
.post-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    min-width: 80px;
}
.post-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    letter-spacing: -0.03em;
}
.post-stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-top: 0.2rem;
}
.post-stat-text {
    font-size: 0.88rem !important;
    color: #333 !important;
    line-height: 1.6;
    border-left: 1px solid var(--border);
    padding-left: 1.25rem;
}

/* ── Action box ──────────────────────────────────────────────── */
.cp-actions,
.post-content .cp-actions {
    background: var(--dark) !important;
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
}
.cp-actions-label {
    font-size: 0.65rem !important;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe) !important;
    margin: 0 0 0.85rem !important;
}
.cp-actions ul {
    margin: 0 0 0 1.2rem !important;
    gap: 0.6rem !important;
}
.cp-actions ul li {
    font-size: 0.92rem !important;
    color: rgba(240,239,233,0.88) !important;
    line-height: 1.65;
}
.cp-actions ul li strong { color: var(--cream) !important; }

/* ── Closing CTA block ───────────────────────────────────────── */
.post-cta-block {
    background: #f0ede7;
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 2rem 2rem 1.75rem;
    margin-top: 3rem;
    text-align: center;
}
.post-cta-block h2 {
    font-size: 1.5rem !important;
    color: var(--dark) !important;
    margin: 0 0 0.75rem !important;
}
.post-cta-block p {
    max-width: 560px;
    margin-left: auto !important;
    margin-right: auto !important;
    color: #333 !important;
}

/* Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.post-tag {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(33,33,33,0.05);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 0.2rem 0.5rem;
}

/* Sidebar cards */
.single-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 5rem;
}

.post-sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 1px 4px rgba(33,33,33,0.06);
}

.post-sidebar-card--cta {
    background: var(--teal);
    border-color: var(--teal);
}

.post-sidebar-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.6rem;
}

.post-sidebar-card--cta .post-sidebar-label {
    color: rgba(240,239,233,0.6);
}

.post-sidebar-author {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.01em;
    margin-bottom: 0.4rem;
}

.post-sidebar-bio {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.post-sidebar-link {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--taupe);
    text-decoration: none;
}

.post-sidebar-link:hover { color: var(--teal); }

.post-sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.post-sidebar-list li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.post-sidebar-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.post-sidebar-list li a {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.15s;
}

.post-sidebar-list li a:hover { color: var(--taupe); }

.post-sidebar-list li span {
    font-size: 0.6rem;
    color: var(--muted);
    font-weight: 500;
}

/* ── Accessibility ──────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: var(--teal);
    color: var(--cream);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── Archive / Blog heading ─────────────────────────────────── */
.archive-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 2rem;
}

/* ── Footer bottom bar ──────────────────────────────────────── */
.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    border-top: 1px solid rgba(240,239,233,0.12);
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    font-size: 0.72rem;
    color: var(--muted-light);
    text-align: center;
}
.footer-legal-link {
    color: var(--muted-light);
    text-decoration: none;
    transition: color 0.15s;
}
.footer-legal-link:hover { color: var(--cream); }

.post-sidebar-cta-text {
    font-size: 0.8rem;
    color: var(--muted-light);
    line-height: 1.55;
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .single-post-layout {
        grid-template-columns: 1fr;
    }
    .single-post-sidebar { position: static; }
}

/* ── FAQ component (service pages) ──────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.faq-item {
    padding: 1.5rem 1.75rem;
    background: var(--white);
    border: 0.5px solid var(--border);
    border-left: 3px solid var(--taupe);
}
.faq-q { font-size: 1rem; font-weight: 700; color: var(--black); margin: 0 0 0.5rem; }
.faq-a { font-size: 0.85rem; font-weight: 300; line-height: 1.75; color: var(--muted); margin: 0; }

/* Deliverable titles are now <h3> on the service pages — cancel the
   browser default top margin so the cards keep their original spacing. */
.del-title { margin-top: 0; }

/* ── Prose / legal pages ─────────────────────────────────────── */
.prose-block {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--black);
}
.prose-block p { margin: 0 0 1.25rem; }
.prose-block h2 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin: 2.5rem 0 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.prose-block h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1.5rem 0 0.5rem;
}
.prose-block ul {
    margin: 0 0 1.25rem 1.5rem;
    padding: 0;
}
.prose-block ul li { margin-bottom: 0.4rem; }
.prose-block a { color: var(--taupe); text-decoration: underline; }
.prose-block a:hover { color: var(--dark); }

/* ═══════════════════════════════════════════════════════════════
   Five Chokepoints — calculator page
   ═══════════════════════════════════════════════════════════════ */

/* ── Baseline inputs ─────────────────────────────────────────── */
.cp-baseline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 640px;
    margin: 0 auto 3rem;
}
@media (max-width: 500px) { .cp-baseline { grid-template-columns: 1fr; } }

.cp-baseline-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.cp-baseline-input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: inherit;
    color: var(--dark);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 3px;
    box-sizing: border-box;
    transition: border-color 0.15s;
}
.cp-baseline-input:focus { outline: none; border-color: var(--taupe); }
.cp-prefix-wrap { position: relative; }
.cp-prefix {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    font-weight: 700;
    color: var(--muted);
    pointer-events: none;
}
.cp-baseline-input--dollar { padding-left: 1.6rem; }
.cp-baseline-hint { font-size: 0.78rem; color: var(--muted); margin: 0.4rem 0 0; }

/* ── Two-column layout ───────────────────────────────────────── */
.cp-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 960px) { .cp-layout { grid-template-columns: 1fr; } }

/* ── Stages / sliders ────────────────────────────────────────── */
.cp-sliders { display: flex; flex-direction: column; gap: 0; }

.cp-stage {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}
.cp-stage:first-child { padding-top: 0; }

.cp-stage-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.cp-stage-info { flex: 1; }
.cp-stage-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--taupe);
    display: block;
    margin-bottom: 0.25rem;
}
.cp-stage-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.3rem;
    letter-spacing: -0.01em;
}
.cp-stage-desc {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}

/* Badge */
.cp-badge {
    display: inline-block;
    padding: 0.3rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}
.cp-badge--low  { background: #fdecea; color: #c0392b; }
.cp-badge--good { background: #eaf7ee; color: #1e7d3a; }
.cp-badge--high { background: #e8f2fb; color: #1a6fa8; }

/* Slider track */
.cp-slider-group { position: relative; }
.cp-track-wrap {
    position: relative;
    height: 32px;
    display: flex;
    align-items: center;
    margin-top: 24px; /* space above for the industry average label */
    margin-bottom: 0.4rem;
    overflow: visible;
}
.cp-track-bg {
    position: absolute;
    left: 0; right: 0;
    height: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #dedad4;
    border-radius: 3px;
    pointer-events: none;
}
.cp-avg-band {
    position: absolute;
    height: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--taupe);
    opacity: 0.55;
    border-radius: 7px;
    pointer-events: none;
}
/* "Target range" label that sits above the avg band */
.cp-avg-band::before {
    content: 'industry average';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--taupe);
    white-space: nowrap;
    pointer-events: none;
}
.cp-slider {
    position: relative;
    z-index: 2;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    background: transparent;
    cursor: pointer;
    margin: 0;
}
.cp-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--dark);
    border: 3px solid var(--white);
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: transform 0.1s;
}
.cp-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.cp-slider::-moz-range-thumb {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--dark);
    border: 3px solid var(--white);
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
    cursor: pointer;
}
.cp-slider-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cp-avg-text  { font-size: 0.75rem; color: var(--muted); }
.cp-cur-val   { font-size: 1rem; font-weight: 700; color: var(--dark); letter-spacing: -0.01em; }

/* Fix text */
.cp-fix {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.cp-fix--visible { max-height: 200px; padding-top: 1rem; }
.cp-fix--low  { border-left: 3px solid #c0392b; padding-left: 0.85rem; }
.cp-fix--good { border-left: 3px solid #1e7d3a; padding-left: 0.85rem; }
.cp-fix--high { border-left: 3px solid #1a6fa8; padding-left: 0.85rem; }
.cp-fix-text  { font-size: 0.85rem; line-height: 1.7; color: var(--dark); margin: 0; }

/* ── Results column ──────────────────────────────────────────── */
.cp-results-col {
    min-width: 0;
    align-self: stretch; /* stretch to sliders column height so sticky has room to travel */
}
.cp-results-sticky {
    position: sticky;
    top: 5rem;
}
.cp-results-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--taupe);
    margin: 0 0 1rem;
}

/* Funnel bars */
.cp-funnel { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.cp-funnel-row {
    display: grid;
    grid-template-columns: 72px 1fr 52px;
    align-items: center;
    gap: 0.5rem;
}
.cp-funnel-label { font-size: 0.72rem; color: var(--muted); font-weight: 600; }
.cp-funnel-bar-track {
    background: #e8e5de;
    border-radius: 2px;
    height: 10px;
    overflow: hidden;
}
.cp-funnel-bar {
    height: 100%;
    border-radius: 2px;
    background: var(--taupe);
    transition: width 0.25s ease;
    min-width: 3px;
}
.cp-funnel-bar--low  { background: #e07068; }
.cp-funnel-bar--good { background: var(--taupe); }
.cp-funnel-bar--high { background: #5b9fd4; }
.cp-funnel-num { font-size: 0.72rem; font-weight: 700; color: var(--dark); text-align: right; }

/* Output rows */
.cp-output { background: var(--white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.cp-output-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
}
.cp-output-row--target { background: #f8f7f3; }
.cp-output-label { font-size: 0.78rem; color: var(--muted); }
.cp-output-val   { font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.cp-gap-bar {
    background: #08232A;
    border-top: 3px solid var(--taupe);
    padding: 1.25rem 1rem 1.35rem;
    text-align: center;
}
.cp-gap-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--taupe);
    margin: 0 0 0.35rem;
}
.cp-gap-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 0;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* ── Report form ─────────────────────────────────────────────── */
.cp-report {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    padding: 1rem 0;
}
@media (max-width: 760px) { .cp-report { grid-template-columns: 1fr; } }

.cp-input {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--cream);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 3px;
    box-sizing: border-box;
    margin-bottom: 0.75rem;
    transition: border-color 0.15s;
}
.cp-input::placeholder { color: rgba(166,147,133,0.6); }
.cp-input:focus { outline: none; border-color: var(--taupe); background: rgba(255,255,255,0.1); }

.cp-form-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.25rem; }

/* Standalone download button below funnel panel */
.cp-download-btn {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.6rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 3px;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--muted);
    cursor: pointer;
    text-align: center;
    transition: border-color 0.15s, color 0.15s;
}
/* ── Ad spend efficiency block ───────────────────────────────── */
.cp-spend-block {
    display: none;
    background: #f0ede7;
    border: 1px solid var(--border);
    border-left: 3px solid var(--taupe);
    border-radius: 3px;
    padding: 0.9rem 1.1rem;
    margin-bottom: 1rem;
}
.cp-spend-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--dark);
    margin: 0 0 0.65rem;
}
.cp-spend-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(33,33,33,0.08);
}
.cp-spend-row:last-child { border-bottom: none; }
.cp-spend-label { font-size: 0.8rem; color: rgba(33,33,33,0.7); }
.cp-spend-compare {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: flex-end;
    white-space: nowrap;
}
.cp-spend-now       { font-size: 0.92rem; font-weight: 700; color: var(--dark); min-width: 3rem; text-align: right; }
.cp-spend-sep       { font-size: 0.8rem; color: rgba(33,33,33,0.3); }
.cp-spend-tgt       { font-size: 0.92rem; font-weight: 700; color: #2e7d32; min-width: 3rem; text-align: right; }
.cp-spend-tgt-label { font-size: 0.74rem; color: rgba(33,33,33,0.5); }

.cp-download-btn:hover { border-color: var(--taupe); color: var(--dark); }
.cp-download-hint {
    display: none;
    font-size: 0.78rem;
    color: var(--taupe);
    text-align: center;
    margin: 0.5rem 0 0;
    line-height: 1.4;
}
.cp-form-msg { font-size: 0.82rem; margin: 0.75rem 0 0; min-height: 1.2em; }
.cp-form-msg--success { color: #7ec89a; }
.cp-form-msg--error   { color: #e07068; }

/* ── Print / PDF report section ──────────────────────────────── */
/* Hidden on screen; made visible by JS (off-screen) for html2canvas capture */
.cp-print-only {
    display: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    color: #212121;
    background: #ffffff;
    width: 794px;
    padding: 56px 64px;
    box-sizing: border-box;
    line-height: 1.5;
}

/* Report header */
.cp-print-header { border-bottom: 3px solid #08232A; padding-bottom: 16px; margin-bottom: 24px; }
.cp-print-brand  { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #A69385; margin: 0 0 6px; }
.cp-print-title  { font-size: 28px; font-weight: 700; color: #08232A; margin: 0 0 4px; letter-spacing: -0.02em; }
.cp-print-date   { font-size: 11px; color: #999; margin: 0; }
.cp-print-body   { margin: 24px 0; }

/* Summary stats grid */
.cp-pr-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.cp-pr-stat { background: #f8f7f3; border: 1px solid #dedad4; padding: 10px 14px; border-radius: 3px; }
.cp-pr-stat span   { display: block; font-size: 10px; color: #999; margin-bottom: 3px; }
.cp-pr-stat strong { display: block; font-size: 16px; font-weight: 700; color: #08232A; }
.cp-pr-stat--gap   { background: #08232A; border-color: #08232A; }
.cp-pr-stat--gap span   { color: rgba(166,147,133,0.7); }
.cp-pr-stat--gap strong { color: #A69385; }

/* Intro */
.cp-pr-intro { background: #f0ede7; border-left: 4px solid #08232A; padding: 10px 16px; margin-bottom: 20px; }
.cp-pr-intro p { font-size: 12px; line-height: 1.6; color: #333; margin: 0; }

/* Section dividers */
.cp-pr-section-divider {
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: #fff; background: #08232A; padding: 7px 14px; margin: 20px 0 12px;
}

/* Stage cards */
.cp-pr-stage { border-left: 4px solid #c0392b; padding: 14px 16px; margin-bottom: 14px; background: #fff9f8; }
.cp-pr-stage-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4px; }
.cp-pr-stage-num  { font-size: 10px; font-weight: 700; color: #A69385; margin-right: 7px; letter-spacing: 0.05em; }
.cp-pr-stage-head strong { font-size: 14px; color: #08232A; }
.cp-pr-status-badge {
    font-size: 9px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
    padding: 2px 8px; border-radius: 2px; white-space: nowrap; flex-shrink: 0; margin-left: 12px;
}
.cp-pr-status-badge--low { background: #fde8e6; color: #c0392b; }
.cp-pr-rate { font-size: 11px; color: #888; margin: 0 0 12px; }

/* Content sections inside a card */
.cp-pr-section { margin-bottom: 12px; }
.cp-pr-section:last-child { margin-bottom: 0; }
.cp-pr-section-label {
    font-size: 9px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
    color: #A69385; margin: 0 0 5px; border-bottom: 1px solid #e2ddd8; padding-bottom: 3px;
}
.cp-pr-text { font-size: 12px; line-height: 1.65; color: #333; margin: 0; }

/* Action list */
.cp-pr-actions { margin: 0; padding-left: 20px; list-style: decimal; }
.cp-pr-actions li { font-size: 12px; line-height: 1.65; color: #222; margin-bottom: 8px; padding-left: 3px; }
.cp-pr-actions li:last-child { margin-bottom: 0; }

/* Footer */
.cp-print-footer { font-size: 11px; color: #999; border-top: 1px solid #dedad4; padding-top: 12px; margin-top: 24px; }

/* When printing via Ctrl+P */
@media print {
    .nav, .footer, section, .skip-link { display: none !important; }
    .cp-print-only { display: block !important; width: auto; padding: 1.5cm 2cm; }
}

/* ============================================================
   RESOURCES PAGE — rs-* components
============================================================ */

/* Quick-nav chips */
.rs-quicknav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.rs-chip {
    display: inline-block;
    padding: 0.45rem 1rem;
    border: 1px solid rgba(240,239,233,0.3);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cream);
    background: rgba(240,239,233,0.08);
    transition: background 0.18s, border-color 0.18s;
}

.rs-chip:hover {
    background: rgba(240,239,233,0.18);
    border-color: rgba(240,239,233,0.5);
    color: var(--cream);
}

/* Section scroll targets */
.rs-section {
    scroll-margin-top: 80px;
}

/* Section header row */
.rs-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.rs-section-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--dark);
    margin-top: 0.35rem;
    line-height: 1.2;
}

/* AI Learning Series — lesson grid */
.rs-lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.rs-lesson {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    background: rgba(240,239,233,0.06);
    transition: background 0.18s, border-color 0.18s;
    text-decoration: none;
}

.rs-lesson:hover {
    background: rgba(240,239,233,0.12);
    border-color: rgba(240,239,233,0.25);
}

.rs-lesson-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--taupe);
    opacity: 0.6;
    line-height: 1;
    flex-shrink: 0;
    min-width: 2rem;
}

.rs-lesson-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.rs-lesson-desc {
    font-size: 0.78rem;
    color: var(--muted-light);
    line-height: 1.55;
    margin: 0;
}

/* Featured resource card */
.resource-card--featured {
    grid-column: 1 / -1;
    border-left: 4px solid var(--taupe);
}

/* Wide card — spans full grid, splits content left/right */
.resource-card--wide {
    grid-column: 1 / -1;
}
.resource-card-wide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.resource-card-wide-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media (max-width: 700px) {
    .resource-card-wide-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Feature bullet list inside a resource card */
.resource-feature-list {
    margin: 1rem 0 0 0;
    padding-left: 1.25rem;
    list-style: disc;
}

.resource-feature-list li {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

.resource-feature-list li:last-child {
    margin-bottom: 0;
}

/* Badge inside dark card — ensure legibility */
.resource-card--dark .resource-badge {
    background: rgba(240,239,233,0.1);
    color: var(--cream);
    border-color: rgba(240,239,233,0.2);
}

/* ── Responsive tweaks ─── */
@media (max-width: 640px) {
    .rs-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .rs-lessons-grid {
        grid-template-columns: 1fr;
    }
    .resource-card--featured {
        grid-column: auto;
    }
    .rs-quicknav {
        gap: 0.4rem;
    }
    .rs-chip {
        font-size: 0.68rem;
        padding: 0.4rem 0.85rem;
    }
}
