/* ================================================================
   METAMORPH — DESIGN SYSTEM
   Palette: Midnight & Terracotta
   Typography: Satoshi + JetBrains Mono
   ================================================================ */

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

:root {
    /* === Color tokens === */
    --midnight: #1B2B3A;
    --midnight-deep: #131E29;
    --navy: #0B4472;
    --terracotta: #C45D3E;
    --terracotta-dark: #A84A30;
    --terracotta-light: #E8A48E;
    --terracotta-bg: rgba(196, 93, 62, 0.08);
    --brass: #D4A574;
    --brass-light: #E8C79E;
    --paper: #F6F4F0;
    --warm-white: #FFFEFA;
    --ink: #1A1816;
    --ink-light: #3A3835;
    --warm-grey: #3A3835;
    --stone: #8A8580;
    --divider: #D6D2CC;
    --divider-light: #E8E5DF;

    /* === Shadows === */
    --shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.04);
    --shadow: 0 4px 14px rgba(10, 10, 10, 0.06);
    --shadow-md: 0 8px 28px rgba(10, 10, 10, 0.08);
    --shadow-lg: 0 16px 48px rgba(10, 10, 10, 0.12);
    --shadow-accent: 0 4px 20px rgba(196, 93, 62, 0.25);

    /* === Radii === */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-pill: 999px;

    /* === Layout === */
    --max-w: 1180px;
    --max-w-narrow: 860px;
    --max-w-wide: 1320px;

    /* === Timing === */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    background: var(--paper);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

/* Paper grain overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: multiply;
}

h1, h2, h3, h4, h5, .display {
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--ink);
}

h1 { font-size: clamp(2.75rem, 6vw, 5.25rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.025em; line-height: 1.1; }
h4 { font-size: 1.2rem; letter-spacing: -0.015em; font-weight: 700; line-height: 1.2; }

.eyebrow {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 500;
    display: inline-block;
}

.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: var(--ink-light);
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: -0.01em;
    max-width: 58ch;
}

p { line-height: 1.65; color: var(--ink-light); }
p strong, body strong { color: var(--ink); font-weight: 700; }

.mono {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 0.88rem;
    letter-spacing: -0.01em;
}

.accent { color: var(--terracotta); }

a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 2px;
    border-radius: 2px;
}

::selection {
    background: var(--terracotta);
    color: var(--warm-white);
}

/* ================================================================
   LAYOUT
   ================================================================ */

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.container.narrow { max-width: var(--max-w-narrow); }
.container.wide { max-width: var(--max-w-wide); }

section { position: relative; }

/* ================================================================
   NAV
   ================================================================ */

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(246, 244, 240, 0.9);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, padding 0.3s;
    padding: 1.15rem 0;
}
.site-nav.scrolled {
    border-bottom-color: var(--divider);
    padding: 0.85rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    color: var(--ink);
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
}
.brand .dot { color: var(--terracotta); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-light);
    letter-spacing: -0.005em;
    transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--terracotta); }

.nav-cta {
    background: var(--terracotta);
    color: var(--warm-white) !important;
    padding: 0.6rem 1.15rem;
    border-radius: var(--r-sm);
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.005em;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-accent);
}
.nav-cta:hover { background: var(--terracotta-dark); transform: translateY(-1px); color: var(--warm-white) !important; }

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--paper);
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 99;
    overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.mobile-menu .nav-cta {
    font-size: 1rem !important;
    padding: 1rem 1.5rem;
    text-align: center;
    margin-top: auto;
}

@media (max-width: 800px) {
    .nav-links { display: none; }
    .nav-toggle { display: inline-flex; align-items: center; }
    .nav-cta.desktop-only { display: none; }
}

/* Sticky mobile CTA bar */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 0.85rem 1rem;
    z-index: 95;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-cta-bar a {
    display: block;
    text-align: center;
    background: var(--terracotta);
    color: var(--warm-white);
    padding: 0.85rem;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.005em;
}
@media (max-width: 800px) {
    .mobile-cta-bar { display: block; }
    body { padding-bottom: 70px; }
}

/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.005em;
    padding: 1rem 1.75rem;
    border-radius: var(--r-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--warm-white);
    box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(196, 93, 62, 0.35);
    color: var(--warm-white);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--warm-white); }

.btn-on-dark {
    background: var(--warm-white);
    color: var(--ink);
}
.btn-on-dark:hover { background: var(--paper); transform: translateY(-1px); color: var(--ink); }

.btn-ghost-dark {
    background: transparent;
    color: var(--warm-white);
    border: 1.5px solid rgba(255, 254, 250, 0.3);
}
.btn-ghost-dark:hover { border-color: var(--warm-white); background: rgba(255, 254, 250, 0.08); color: var(--warm-white); }

.btn-lg { padding: 1.15rem 2rem; font-size: 1rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* ================================================================
   SECTION HELPERS
   ================================================================ */

.section {
    padding: clamp(4rem, 9vw, 7rem) 0;
    position: relative;
}

.section-dark {
    background: var(--midnight);
    color: var(--paper);
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 20%, rgba(196, 93, 62, 0.12), transparent 60%),
        radial-gradient(ellipse 60% 40% at 85% 75%, rgba(212, 165, 116, 0.08), transparent 60%);
    pointer-events: none;
}
.section-dark > .container { position: relative; z-index: 1; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--paper); }
.section-dark .lead, .section-dark p { color: rgba(246, 244, 240, 0.75); }
.section-dark p strong, .section-dark .lead strong { color: var(--paper); }
.section-dark .eyebrow { color: var(--terracotta-light); }

.section-header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    max-width: 780px;
}
.section-header .eyebrow { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1.25rem; max-width: 22ch; }

/* Divider */
.rule {
    height: 1px;
    background: var(--divider);
    border: none;
    margin: 0;
}

/* ================================================================
   CARDS
   ================================================================ */

.card {
    background: var(--warm-white);
    border: 1px solid var(--divider);
    border-radius: var(--r-lg);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-accent {
    border-left: 4px solid var(--terracotta);
    border-radius: var(--r-lg);
}
.card-navy { border-left-color: var(--navy); }
.card-brass { border-left-color: var(--brass); }
.card-midnight { border-left-color: var(--midnight); }

.card h3 { margin-bottom: 0.75rem; }
.card p { font-size: 1rem; }

/* ================================================================
   TRUST ROW / BADGES
   ================================================================ */

.trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--divider);
    font-size: 0.9rem;
}
.trust-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
}
.trust-item {
    font-weight: 600;
    color: var(--ink-light);
    letter-spacing: -0.005em;
}
.trust-dot { width: 3px; height: 3px; background: var(--divider); border-radius: 50%; }

.trust-row-logos { gap: 0.875rem 1.5rem; flex-wrap: nowrap; }
.trust-logo-item { height: 1.5rem; max-width: 7rem; flex-shrink: 1; min-width: 0; }
@media (max-width: 720px) { .trust-row-logos { flex-wrap: wrap; } }
@media (max-width: 600px) { .trust-logo-item { height: 1.35rem; max-width: 6rem; } }

.badge {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 500;
    background: var(--terracotta-bg);
    padding: 0.35rem 0.85rem;
    border-radius: var(--r-pill);
    border: 1px solid rgba(196, 93, 62, 0.2);
}

.stat {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}
.stat-value {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--ink);
}
.stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
}
.section-dark .stat-value { color: var(--paper); }
.section-dark .stat-label { color: var(--brass); }

/* ================================================================
   PULL QUOTE
   ================================================================ */

.pull-quote {
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
    letter-spacing: -0.02em;
    border-left: 3px solid var(--terracotta);
    padding-left: 1.5rem;
    margin: 2rem 0;
    max-width: 40ch;
}
.pull-quote footer {
    font-size: 0.82rem;
    color: var(--stone);
    font-weight: 500;
    margin-top: 0.75rem;
    letter-spacing: 0.02em;
}
.section-dark .pull-quote { color: var(--brass); border-left-color: var(--brass); }
.section-dark .pull-quote footer { color: rgba(246, 244, 240, 0.6); }

/* ================================================================
   TYPEFORM / CALENDLY EMBED STYLING
   ================================================================ */

.embed-frame {
    background: var(--warm-white);
    border: 1px solid var(--divider);
    border-radius: var(--r-lg);
    padding: 2rem;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
}
.embed-frame.placeholder { border: 2px dashed var(--divider); background: repeating-linear-gradient(135deg, var(--paper), var(--paper) 12px, var(--warm-white) 12px, var(--warm-white) 24px); }

/* ================================================================
   FOOTER
   ================================================================ */

.site-footer {
    background: var(--ink);
    color: rgba(246, 244, 240, 0.75);
    padding: clamp(3rem, 6vw, 5rem) 0 2rem;
    margin-top: 0;
}
.site-footer a { color: rgba(246, 244, 240, 0.75); transition: color 0.2s; }
.site-footer a:hover { color: var(--terracotta-light); }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(246, 244, 240, 0.1);
}
.footer-brand .brand { color: var(--paper); font-size: 1.8rem; margin-bottom: 1rem; display: inline-flex; }
.footer-brand p { color: rgba(246, 244, 240, 0.6); font-size: 0.95rem; max-width: 40ch; line-height: 1.55; }
.footer-brand p.footer-tagline {
    color: var(--terracotta-light);
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 500;
    margin: -0.5rem 0 0.85rem;
    line-height: 1.4;
    max-width: none;
}

.footer-col h4 {
    color: var(--paper);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-family: 'JetBrains Mono', monospace;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.92rem; }

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.78rem;
    color: rgba(246, 244, 240, 0.45);
    letter-spacing: 0.02em;
}
.footer-bottom .legal { display: flex; gap: 1.5rem; }

@media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   REVEAL ANIMATION (fallback if GSAP unavailable)
   ================================================================ */

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ================================================================
   UTILITIES
   ================================================================ */

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .grid-2 { grid-template-columns: 1fr; }
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: 0.5rem; }
.mt-md { margin-top: 1rem; }
.mt-lg { margin-top: 2rem; }
.mt-xl { margin-top: 3rem; }
.mb-sm { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1rem; }
.mb-lg { margin-bottom: 2rem; }
.mb-xl { margin-bottom: 3rem; }

/* ================================================================
   HOMEPAGE — Hero
   ================================================================ */

.hero {
    padding: clamp(2rem, 4.5vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
}

/* Hero variant: full-bleed animated background, copy stays in original column */
.hero--bg-animated .hero-copy { position: relative; z-index: 2; }

.hero-bg-animation {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.55;
}
.hero-bg-animation svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Central node — soft breathing pulse */
.hero-bg-animation .node-central {
    transform-origin: center;
    transform-box: fill-box;
    animation: node-breathe 4s ease-in-out infinite;
}
@keyframes node-breathe {
    0%, 100% { transform: scale(1); opacity: 0.95; }
    50% { transform: scale(1.05); opacity: 1; }
}

/* Satellite node subtle pulse, varied delays */
.hero-bg-animation .node-sat {
    transform-origin: center;
    transform-box: fill-box;
    animation: sat-pulse 6s ease-in-out infinite;
}
.hero-bg-animation .node-sat:nth-of-type(2n) { animation-duration: 7.5s; animation-delay: -1.2s; }
.hero-bg-animation .node-sat:nth-of-type(3n) { animation-duration: 9s; animation-delay: -2.8s; }
@keyframes sat-pulse {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 0.95; }
}

/* Particles fade in cleanly */
.hero-bg-animation .particle {
    animation: particle-fade 600ms 200ms forwards;
    opacity: 0;
}
@keyframes particle-fade { to { opacity: 1; } }

/* No focal-area anchor — animation spans full hero behind copy */

/* Mobile + reduced motion — strip particles for perf / accessibility */
@media (max-width: 700px) {
    .hero-bg-animation .particle { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-bg-animation .particle,
    .hero-bg-animation .node-central,
    .hero-bg-animation .node-sat {
        animation: none !important;
    }
}

.hero-copy .eyebrow { margin-bottom: 1rem; }

.hero-headline {
    font-size: clamp(2.5rem, 6.3vw, 5rem);
    line-height: 1.02;
    margin-bottom: 1.25rem;
    max-width: 14ch;
    opacity: 0;
    animation: hero-ready 0.1s 1.3s forwards;
}
@keyframes hero-ready { to { opacity: 1; } }

/* Word split helpers (JS fills these) */
.hero-headline .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    padding: 0.25em 0.08em 0.45em;
    margin: -0.25em -0.08em -0.45em;
}
.hero-headline .inner { display: inline-block; }

.hero-sub { margin-bottom: 1.5rem; max-width: 54ch; }

.hero .cta-row { margin-bottom: 1.5rem; }

/* Peter placeholder */
.peter-placeholder {
    aspect-ratio: 4 / 5;
    background: linear-gradient(145deg, var(--midnight), var(--midnight-deep));
    border-radius: var(--r-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.peter-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 25%, rgba(212, 165, 116, 0.22), transparent 55%),
        radial-gradient(ellipse at 70% 75%, rgba(196, 93, 62, 0.18), transparent 55%);
}
.placeholder-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    color: rgba(246, 244, 240, 0.85);
}
.placeholder-label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.24em;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--brass);
}
.placeholder-sub {
    display: block;
    font-size: 0.8rem;
    color: rgba(246, 244, 240, 0.55);
    letter-spacing: 0.02em;
}
.peter-placeholder--small { aspect-ratio: 4 / 5; max-width: 480px; }

/* Peter photo (real headshot) */
.peter-photo {
    aspect-ratio: 4 / 5;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    margin: 0;
    background: var(--midnight);
}
.peter-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.peter-photo--small { max-width: 480px; }

/* ================================================================
   HOMEPAGE — Problem agitation
   ================================================================ */

.section-problem { padding: clamp(4rem, 8vw, 6.5rem) 0; }

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.75rem, 4vw, 3rem);
    margin: 2.5rem 0 1rem;
}
@media (max-width: 700px) {
    .problem-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.problem-col {
    background: #FEFAF0;
    background-image:
        linear-gradient(to bottom, transparent 0, transparent calc(1.75rem - 1px), rgba(27, 43, 58, 0.07) calc(1.75rem - 1px), rgba(27, 43, 58, 0.07) 1.75rem),
        url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/></svg>");
    background-size: 100% 1.75rem, 260px 260px;
    background-position: 0 1.4rem, 0 0;
    border: none;
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    position: relative;
    overflow: hidden;
    filter:
        drop-shadow(0 0 1px rgba(85, 50, 25, 0.4))
        drop-shadow(0 2px 3px rgba(20, 20, 20, 0.10))
        drop-shadow(0 16px 28px rgba(20, 20, 20, 0.14));
    transition: filter 0.4s ease;
    transform-origin: 50% 0%;
}

/* Jagged torn edges — two halves of one page, mirrored */
.problem-col--winning {
    clip-path: polygon(
        0 0,
        100% 0,
        91% 4%, 100% 8%, 88% 12%, 98% 16%,
        89% 20%, 100% 24%, 87% 28%, 97% 32%,
        90% 36%, 100% 40%, 88% 44%, 96% 48%,
        89% 52%, 100% 56%, 87% 60%, 98% 64%,
        90% 68%, 100% 72%, 88% 76%, 97% 80%,
        89% 84%, 100% 88%, 87% 92%, 99% 96%,
        100% 100%,
        0 100%
    );
    transform: rotate(-0.55deg);
    padding-right: clamp(3.25rem, 6vw, 4.5rem);
}
.problem-col--losing {
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        0 100%,
        1% 96%, 13% 92%, 0 88%, 11% 84%, 3% 80%, 12% 76%,
        0 72%, 10% 68%, 2% 64%, 13% 60%, 0 56%, 11% 52%,
        4% 48%, 12% 44%, 0 40%, 10% 36%, 3% 32%, 13% 28%,
        0 24%, 11% 20%, 2% 16%, 12% 12%, 0 8%, 9% 4%
    );
    opacity: 0.94;
    transform: rotate(0.5deg);
    padding-left: clamp(3.25rem, 6vw, 4.5rem);
}
.problem-col:hover {
    filter:
        drop-shadow(0 0 1px rgba(85, 50, 25, 0.5))
        drop-shadow(0 3px 4px rgba(20, 20, 20, 0.13))
        drop-shadow(0 22px 36px rgba(20, 20, 20, 0.18));
}

/* Torn-edge inner stain — like exposed paper fiber on the inside of the rip */
.problem-col--winning::after,
.problem-col--losing::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(60px, 8vw, 100px);
    pointer-events: none;
    z-index: 1;
}
.problem-col--winning::after {
    right: 0;
    background: linear-gradient(to left,
        rgba(110, 70, 35, 0.16) 0%,
        rgba(110, 70, 35, 0.05) 40%,
        transparent 80%);
}
.problem-col--losing::after {
    left: 0;
    background: linear-gradient(to right,
        rgba(110, 70, 35, 0.16) 0%,
        rgba(110, 70, 35, 0.05) 40%,
        transparent 80%);
}

/* Accent pen-stroke on the clean (outer) edge */
.problem-col--winning::before,
.problem-col--losing::before {
    content: '';
    position: absolute;
    top: 0;
    width: 4px;
    height: 100%;
    z-index: 2;
}
.problem-col--winning::before { left: 0; background: var(--terracotta); }
.problem-col--losing::before { right: 0; background: var(--stone); }

.problem-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.problem-col--winning .problem-label { color: var(--terracotta); }

.problem-col h3 {
    font-size: 1.6rem;
    margin-bottom: 0.9rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.15em;
}
.problem-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--stone);
    opacity: 0.55;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.75s cubic-bezier(0.7, 0, 0.25, 1);
}
.problem-col--winning h3::after {
    background: var(--terracotta);
    opacity: 0.85;
    height: 2.5px;
}
.problem-col.is-written h3::after { transform: scaleX(1); }

.problem-col p { font-size: 1rem; color: var(--ink-light); }

/* Word-reveal wrappers (JS splits text into these) */
.problem-col .pen-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.25em);
    filter: blur(4px);
    will-change: opacity, transform, filter;
}

.body-lg {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    line-height: 1.55;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    max-width: 48ch;
}

/* ================================================================
   HOMEPAGE — Customer Zero teaser
   ================================================================ */

.section-cz { padding: clamp(4rem, 8vw, 6.5rem) 0; }

.cz-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}
@media (max-width: 800px) { .cz-metrics { grid-template-columns: 1fr; } }

.cz-metric {
    background: var(--warm-white);
    border: 1px solid var(--divider);
    border-left: 4px solid var(--terracotta);
    border-radius: 2px var(--r-lg) var(--r-lg) 2px;
    padding: 1.75rem;
}
.cz-metric .stat-value { font-size: clamp(2.5rem, 4.5vw, 3.4rem); margin-bottom: 0.25rem; }
.cz-metric .stat-label { font-size: 0.8rem; }

.cz-stack { text-align: left; }
.cz-stack .eyebrow { display: block; margin-bottom: 0.75rem; }
.stack-line {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.stack-line .arrow { color: var(--terracotta); margin: 0 0.35rem; }

/* CZ on dark background */
.section-dark .cz-metric {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 4px solid var(--terracotta);
}
.section-dark .stack-line {
    color: var(--paper);
}
.section-dark .cz-stack .eyebrow { color: var(--terracotta-light); }

/* ================================================================
   HOMEPAGE — Services
   ================================================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.85rem 1.85rem;
}
.service-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--stone);
    font-weight: 500;
    margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.85rem; margin-bottom: 0.65rem; }
.service-lede { font-size: 0.98rem; color: var(--ink-light); margin-bottom: 1.25rem; line-height: 1.6; }
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    border-top: 1px solid var(--divider-light);
    padding-top: 1rem;
}
.service-list li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.25rem;
    font-size: 0.92rem;
    color: var(--ink-light);
    line-height: 1.45;
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 8px;
    height: 2px;
    background: var(--terracotta);
}
.service-price {
    font-size: 0.88rem;
    color: var(--ink-light);
    margin-bottom: 1.25rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--divider);
    margin-top: auto;
}
.service-price strong { color: var(--ink); font-size: 1rem; font-weight: 700; }
.service-link {
    font-weight: 600;
    color: var(--terracotta);
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s;
}
.service-link:hover { gap: 0.6rem; }

/* ================================================================
   HOMEPAGE — Scope (6 pillars)
   ================================================================ */

.scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
@media (max-width: 1100px) { .scope-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .scope-grid { grid-template-columns: 1fr; } }

/* Scope heading — force two-line layout on desktop */
#scope-heading {
    max-width: none;
}
#scope-heading span {
    display: block;
}
@media (min-width: 900px) {
    #scope-heading span { white-space: nowrap; }
}

.scope-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.95rem 1.85rem 1.65rem;
    overflow: hidden;
    --pillar-c: var(--brass);
    --pillar-rgb: 212, 165, 116;
}
.scope-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pillar-c);
    opacity: 0.85;
    transition: opacity 0.25s var(--ease-out), height 0.25s var(--ease-out);
}
.scope-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    pointer-events: none;
    box-shadow: inset 0 0 0 1px transparent;
    transition: box-shadow 0.3s var(--ease-out);
}
.scope-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.scope-card:hover::before {
    opacity: 1;
    height: 5px;
}
.scope-card:hover::after {
    box-shadow: inset 0 0 0 1px rgba(var(--pillar-rgb), 0.4);
}

/* Per-pillar colour assignments */
.scope-card--brass      { --pillar-c: var(--brass);      --pillar-rgb: 212, 165, 116; }
.scope-card--terracotta { --pillar-c: var(--terracotta); --pillar-rgb: 196, 93, 62;   }
.scope-card--navy       { --pillar-c: var(--navy);       --pillar-rgb: 11, 68, 114;   }

.scope-card-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
}
.scope-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(var(--pillar-rgb), 0.10);
    border: 1px solid rgba(var(--pillar-rgb), 0.32);
    color: var(--pillar-c);
    flex-shrink: 0;
    transition: background 0.25s var(--ease-out),
                border-color 0.25s var(--ease-out),
                color 0.25s var(--ease-out),
                transform 0.3s var(--ease-out);
}
.scope-card:hover .scope-icon {
    background: var(--pillar-c);
    border-color: var(--pillar-c);
    color: var(--warm-white);
    transform: scale(1.06) rotate(-3deg);
}
.scope-icon svg {
    width: 19px;
    height: 19px;
    stroke-width: 1.85;
}
.scope-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--pillar-c);
    font-weight: 600;
    opacity: 0.7;
    transition: opacity 0.25s var(--ease-out);
}
.scope-card:hover .scope-num {
    opacity: 1;
}

.scope-card h3 {
    font-size: 1.42rem;
    line-height: 1.18;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}
.scope-body {
    font-size: 0.96rem;
    color: var(--ink-light);
    line-height: 1.6;
    margin-bottom: 1.35rem;
}

.scope-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px dashed var(--divider);
}
.scope-chip {
    display: inline-block;
    padding: 0.32rem 0.7rem;
    border: 1px solid var(--divider);
    border-radius: var(--r-pill);
    font-size: 0.74rem;
    color: var(--ink-light);
    background: var(--paper);
    line-height: 1.3;
    transition: border-color 0.2s var(--ease-out),
                color 0.2s var(--ease-out),
                background 0.2s var(--ease-out);
}
.scope-card:hover .scope-chip {
    border-color: rgba(var(--pillar-rgb), 0.45);
    background: rgba(var(--pillar-rgb), 0.04);
    color: var(--ink);
}

/* ================================================================
   HOMEPAGE — FAQ
   ================================================================ */

.faq-list {
    margin-top: 2.75rem;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
}

.faq-item {
    border-bottom: 1px solid var(--divider);
}
.faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    cursor: pointer;
    list-style: none;
    padding: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ''; }
.faq-q:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 4px;
    border-radius: 4px;
}

.faq-q-text {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    letter-spacing: -0.005em;
    transition: color 0.2s var(--ease-out);
}
@media (min-width: 700px) {
    .faq-q-text { font-size: 1.18rem; }
}

.faq-q:hover .faq-q-text {
    color: var(--terracotta);
}
.faq-item[open] .faq-q-text {
    color: var(--ink);
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--r-pill);
    flex-shrink: 0;
    margin-top: 0.05rem;
    color: var(--terracotta);
    background: transparent;
    border: 1px solid rgba(196, 93, 62, 0.3);
    transition: transform 0.3s var(--ease-out),
                background 0.3s var(--ease-out),
                border-color 0.3s var(--ease-out),
                color 0.3s var(--ease-out);
}
.faq-icon svg {
    width: 14px;
    height: 14px;
}
.faq-q:hover .faq-icon {
    background: rgba(196, 93, 62, 0.08);
    border-color: rgba(196, 93, 62, 0.5);
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--terracotta);
    color: var(--warm-white);
    border-color: var(--terracotta);
}

.faq-a {
    padding: 0 0 1.75rem;
    max-width: 640px;
}
.faq-a p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-light);
    margin: 0;
}

/* ================================================================
   HOMEPAGE — Stakes Fork (failure vs success)
   ================================================================ */

.fork-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0 2.5rem;
}
@media (max-width: 800px) { .fork-grid { grid-template-columns: 1fr; } }

.fork-card {
    position: relative;
    border-radius: var(--r-lg);
    padding: 2rem 1.85rem 1.85rem;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.fork-card:hover { transform: translateY(-3px); }

.fork-card--failure {
    background: rgba(255, 255, 255, 0.018);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.fork-card--success {
    background:
        linear-gradient(180deg, rgba(196, 93, 62, 0.22) 0%, rgba(196, 93, 62, 0.05) 55%, rgba(196, 93, 62, 0.02) 100%);
    border: 1px solid rgba(196, 93, 62, 0.55);
    box-shadow:
        0 0 80px -15px rgba(196, 93, 62, 0.5),
        inset 0 1px 0 rgba(232, 164, 142, 0.18);
}

.fork-card-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.fork-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--r-pill);
    flex-shrink: 0;
}
.fork-icon svg { width: 16px; height: 16px; }

.fork-card--failure .fork-icon {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.45);
}
.fork-card--success .fork-icon {
    background: var(--terracotta);
    border: 1px solid var(--terracotta);
    color: var(--warm-white);
    box-shadow: 0 0 24px rgba(196, 93, 62, 0.55);
}

.fork-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}
.fork-card--failure .fork-label { color: rgba(255, 255, 255, 0.42); }
.fork-card--success .fork-label { color: var(--terracotta-light); }

.fork-headline {
    font-size: clamp(1.2rem, 1.7vw, 1.4rem);
    line-height: 1.25;
    letter-spacing: -0.015em;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.fork-card--failure .fork-headline { color: rgba(255, 255, 255, 0.55); }
.fork-card--success .fork-headline { color: var(--warm-white); }

.fork-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.fork-list li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.95rem;
    line-height: 1.55;
}
.fork-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.fork-card--failure .fork-list li { color: rgba(255, 255, 255, 0.45); }
.fork-card--failure .fork-list li::before {
    background: rgba(255, 255, 255, 0.22);
}
.fork-card--success .fork-list li { color: rgba(255, 255, 255, 0.96); }
.fork-card--success .fork-list li::before {
    background: var(--terracotta-light);
    box-shadow: 0 0 12px rgba(232, 164, 142, 0.75);
}

/* ================================================================
   HOMEPAGE — Process steps
   ================================================================ */

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: 1fr; } }

.process-step {
    background: var(--warm-white);
    border: 1px solid var(--divider);
    border-radius: var(--r-lg);
    padding: 2rem 1.85rem 1.85rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}
.process-step:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.process-num {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--terracotta);
    background: var(--terracotta-bg);
    padding: 0.25rem 0.6rem;
    border-radius: var(--r-sm);
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(196, 93, 62, 0.2);
}
.process-body h3 { font-size: 1.85rem; margin-bottom: 0.65rem; }
.process-body p { font-size: 0.98rem; color: var(--ink-light); margin-bottom: 1.25rem; line-height: 1.6; }
.process-duration {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
}

/* ================================================================
   HOMEPAGE — Social proof
   ================================================================ */

.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}
@media (max-width: 900px) { .proof-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .proof-stats { grid-template-columns: 1fr; } }

.proof-stats .stat {
    background: var(--warm-white);
    border: 1px solid var(--divider);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    gap: 0.5rem;
}

.logo-wall {
    padding: 2.5rem;
    background: var(--warm-white);
    border: 1px solid var(--divider);
    border-radius: var(--r-lg);
    margin-bottom: 2.5rem;
}
.logo-wall-label { display: block; margin-bottom: 1.25rem; text-align: center; }
.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem 2.5rem;
    margin-bottom: 1rem;
}
.logo-item {
    height: 2.5rem;
    width: auto;
    max-width: 9rem;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
}
.logo-note {
    text-align: center;
    font-size: 0.7rem;
    color: var(--stone);
    letter-spacing: 0.04em;
    font-style: italic;
    margin-top: 1rem;
}

/* ================================================================
   HOMEPAGE — Stakes (dark)
   ================================================================ */

.section-stakes { padding: clamp(5rem, 10vw, 8rem) 0; }
.section-stakes .pull-quote { max-width: 36ch; margin-top: 3rem; margin-bottom: 3rem; }

/* ================================================================
   HOMEPAGE — Lead magnet
   ================================================================ */

.section-magnet {
    background: var(--warm-white);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
}
.magnet-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 800px) { .magnet-grid { grid-template-columns: 1fr; } }

.magnet-copy .eyebrow { margin-bottom: 1rem; }
.magnet-copy h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.magnet-list {
    list-style: none;
    padding: 0;
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
@media (max-width: 500px) { .magnet-list { grid-template-columns: 1fr; } }
.magnet-list li {
    position: relative;
    padding: 0.3rem 0 0.3rem 1.5rem;
    font-size: 0.9rem;
    color: var(--ink-light);
}
.magnet-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--terracotta);
    font-weight: 700;
}

.magnet-form {
    background: var(--paper);
    border: 1px solid var(--divider);
    border-radius: var(--r-lg);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.magnet-form input {
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    padding: 0.95rem 1rem;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--divider);
    background: var(--warm-white);
    color: var(--ink);
    transition: border-color 0.2s;
    width: 100%;
}
.magnet-form input:focus-visible {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(196, 93, 62, 0.18);
}
.magnet-form .btn { width: 100%; }
.magnet-note {
    font-size: 0.72rem;
    color: var(--stone);
    text-align: center;
    letter-spacing: 0.04em;
    margin-top: 0.25rem;
}

/* ================================================================
   HOMEPAGE — About teaser
   ================================================================ */

.section-about-teaser { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }
.about-copy .eyebrow { margin-bottom: 1rem; }
.about-copy h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 1.25rem; max-width: 24ch; }
.about-copy p { font-size: 1.02rem; line-height: 1.7; margin-bottom: 0.85rem; }
.about-visual { display: flex; justify-content: center; }

/* ================================================================
   HOMEPAGE — Final CTA
   ================================================================ */

.section-final-cta {
    background: linear-gradient(160deg, var(--terracotta-dark), var(--terracotta) 65%, #D67A5F);
    color: var(--warm-white);
    padding: clamp(5rem, 10vw, 8rem) 0;
    position: relative;
    overflow: hidden;
}
.section-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(246, 244, 240, 0.08), transparent 70%);
}
.section-final-cta > .container { position: relative; z-index: 1; }

.badge-on-dark {
    background: rgba(255, 254, 250, 0.14);
    color: var(--warm-white);
    border-color: rgba(255, 254, 250, 0.25);
    margin-bottom: 1.5rem;
}
.final-headline {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    color: var(--warm-white);
    margin-bottom: 1.25rem;
    max-width: 18ch;
    margin-inline: auto;
}
.final-headline .accent { color: var(--brass-light); }
.final-sub {
    color: rgba(255, 254, 250, 0.9);
    max-width: 52ch;
    margin: 0 auto 2rem;
    font-weight: 500;
}
.final-sub strong { color: var(--warm-white); }
.final-cta-row { justify-content: center; margin-bottom: 1.25rem; }
.final-note {
    font-size: 0.74rem;
    color: rgba(255, 254, 250, 0.72);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

