:root {
    color-scheme: dark;
    --ink: #0a0a0c;
    --ink-2: #131318;
    --ink-3: #171511;
    --paper: #f7f2e8;
    --paper-2: #fffaf0;
    --text: #e9e7e2;
    --muted: #d4d1c9;
    --faint: #9a988f;
    --blue: #a8854c;
    --blue-soft: #ecd9ad;
    --gold: #cfae6d;
    --gold-soft: #ecd9ad;
    --line: rgba(207, 174, 109, .20);
    --line-strong: rgba(207, 174, 109, .40);
    --shadow: 0 28px 90px rgba(0, 0, 0, .34);
}

html.light {
    color-scheme: light;
    --ink: #f8f6f1;
    --ink-2: #fffdf8;
    --ink-3: #f0e7d8;
    --paper: #141313;
    --paper-2: #211f1a;
    --text: #201d17;
    --muted: #5f5a4e;
    --faint: #6d6253;
    --blue: #211d16;
    --blue-soft: #8d6939;
    --gold: #8a6639;
    --gold-soft: #624620;
    --line: rgba(111, 81, 42, .22);
    --line-strong: rgba(111, 81, 42, .42);
    --shadow: 0 28px 80px rgba(100, 77, 42, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(70% 48% at 50% -8%, rgba(207, 174, 109, .14), transparent 72%),
        radial-gradient(40% 40% at 88% 10%, rgba(236, 217, 173, .08), transparent 70%),
        radial-gradient(42% 44% at 5% 62%, rgba(168, 133, 76, .10), transparent 76%),
        var(--ink);
    color: var(--text);
    font-family: Inter, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
::selection { background: rgba(207, 174, 109, .35); color: #fff; }
::-moz-selection { background: rgba(207, 174, 109, .35); color: #fff; }
.light ::selection { background: rgba(138, 102, 57, .32); color: #211d16; }
.light ::-moz-selection { background: rgba(138, 102, 57, .32); color: #211d16; }
.light body { background: var(--ink); }
a { color: inherit; }
img { max-width: 100%; }
html.light .brand img, html.light .auth-brand img { content: url(presencive-logo-light.svg); }
.display { font-family: Lora, Georgia, serif; }
.shell { width: min(100% - 44px, 1120px); margin-inline: auto; }
.narrow { width: min(100% - 44px, 760px); margin-inline: auto; }
.rule { height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
.gold { color: var(--gold); }
.blue { color: var(--blue-soft); }

.site-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 40;
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--ink) 88%, transparent);
    backdrop-filter: blur(18px);
}
.nav-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; font-size: 17px; font-weight: 760; letter-spacing: .02em; }
.brand img { width: 24px; height: 24px; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; font-size: 13.5px; font-weight: 500; text-transform: capitalize; letter-spacing: .01em; color: var(--muted); }
.nav-links a { text-decoration: none; transition: color .2s ease; }
.nav-links a:hover { color: var(--text); }
html.light .nav-links { color: #463f35; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.is-disabled { pointer-events: none; cursor: default; opacity: .56; }
.nav-links .is-disabled, .mobile-menu nav .is-disabled { color: var(--gold-soft); }
.btn.is-disabled:hover { transform: none; }
.icon-btn { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: var(--text); align-items: center; justify-content: center; cursor: pointer; }

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 21px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 560;
    text-decoration: none;
    transition: border-color .22s ease, background .22s ease, color .22s ease;
}
.btn-primary { color: #0d0903; background: linear-gradient(135deg, var(--gold), var(--blue)); }
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); }
.light .btn-primary { color: #fffdf8; background: #211d16; }
.light .btn-primary:hover { background: #2c2720; }
.btn-quiet { color: var(--gold-soft); border-color: var(--line-strong); background: linear-gradient(180deg, rgba(201, 173, 106, .08), rgba(201, 173, 106, .025)); }
.btn-quiet:hover { border-color: var(--gold); background: linear-gradient(180deg, rgba(201, 173, 106, .14), rgba(201, 173, 106, .05)); }
.light .btn-quiet { color: #5b4022; border-color: rgba(111, 81, 42, .5); background: rgba(255, 253, 248, .75); }
.light .btn-quiet:hover { color: #4a3318; border-color: #8a6639; background: #fffdf8; }
.btn-sm { min-height: 36px; padding: 0 15px; font-size: 12px; }

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: color-mix(in srgb, var(--ink) 55%, transparent);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(85vw, 340px);
    display: flex;
    flex-direction: column;
    background: var(--ink);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.32, .72, 0, 1);
}
.mobile-menu.open .mobile-panel { transform: translateX(0); }
.mobile-menu-head { height: 64px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.mobile-panel nav { display: flex; flex-direction: column; padding: 14px 10px; gap: 2px; }
.mobile-panel nav a { padding: 13px 16px; border-radius: 12px; text-decoration: none; font-size: 16px; color: var(--muted); transition: background .2s ease, color .2s ease; }
.mobile-panel nav a:hover { background: color-mix(in srgb, var(--gold) 10%, transparent); color: var(--text); }
.mobile-actions { margin-top: auto; padding: 16px 20px 22px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--line); }
.mobile-actions .btn { width: 100%; }

.hero { min-height: 100vh; display: grid; align-items: center; padding: 96px 0 32px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .74fr); gap: 78px; align-items: center; }
.hero-copy { display: flex; flex-direction: column; gap: clamp(24px, 2.5vw, 32px); }
.hero-copy .lede, .hero-copy .signature-row, .hero-copy .hero-actions { margin-top: 0; }
.eyebrow { margin: 0 0 22px; color: var(--gold); font-size: 12px; text-transform: capitalize; letter-spacing: .14em; font-weight: 760; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; font-family: Lora, Georgia, serif; font-size: clamp(42px, 4.7vw, 64px); line-height: .99; letter-spacing: -.025em; font-weight: 500; }
h2 { margin: 0; font-family: Lora, Georgia, serif; font-size: clamp(34px, 4vw, 54px); line-height: 1.06; letter-spacing: -.025em; font-weight: 500; }
h3 { margin: 0; font-family: Lora, Georgia, serif; font-size: 25px; line-height: 1.16; font-weight: 500; }
.lede { margin: 24px 0 0; max-width: 540px; color: var(--muted); font-family: Lora, Georgia, serif; font-size: clamp(18px, 1.8vw, 22px); line-height: 1.42; }
.copy { color: var(--muted); font-size: 17px; line-height: 1.78; font-weight: 360; }
.hero-side { display: grid; gap: 20px; width: 100%; max-width: 400px; justify-self: end; }
.hero-visual-frame { margin: 0; border-radius: 28px; overflow: hidden; border: 1px solid var(--line); background: var(--ink-2); }
.hero-visual { display: block; width: 100%; height: auto; }
html.light .hero-visual { content: url(hero-visual-light.svg); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.signature-row { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 2px; }
.signature-row div { min-width: 118px; }
.signature-row strong { display: block; color: var(--gold-soft); font-family: Lora, Georgia, serif; font-size: 29px; font-weight: 500; }
.signature-row span { display: block; margin-top: 5px; color: var(--faint); font-size: 11px; text-transform: uppercase; letter-spacing: .18em; }

.presence-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.02)),
        var(--ink-2);
    box-shadow: var(--shadow);
}
.presence-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 173, 106, .10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 173, 106, .10) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.75), transparent 82%);
}
.presence-inner { position: relative; padding: 18px; display: grid; gap: 14px; }
.light .card-icon { background: rgba(111, 81, 42, .075); border-color: rgba(111, 81, 42, .24); }
.abs-bar { display: flex; align-items: center; gap: 7px; }
.abs-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(207, 174, 109, .45); }
.abs-dot:nth-child(2) { background: rgba(207, 174, 109, .30); }
.abs-dot:nth-child(3) { background: rgba(207, 174, 109, .18); }
.abs-url { flex: 1; height: 13px; margin-left: 8px; border-radius: 999px; background: rgba(255, 255, 255, .07); border: 1px solid var(--line); }
.light .abs-url { background: rgba(111, 81, 42, .06); }
.abs-canvas { padding: 16px; border: 1px solid var(--line); border-radius: 20px; background: rgba(8, 10, 15, .42); display: grid; gap: 16px; }
.light .abs-canvas { background: rgba(111, 81, 42, .05); }
.abs-nav { display: flex; align-items: center; justify-content: space-between; }
.abs-logo { width: 32px; height: 10px; border-radius: 999px; background: linear-gradient(90deg, var(--gold), transparent); }
.abs-links { display: flex; gap: 8px; }
.abs-links span { width: 22px; height: 7px; border-radius: 999px; background: rgba(255, 255, 255, .14); }
.light .abs-links span { background: rgba(111, 81, 42, .18); }
.abs-hero { display: flex; align-items: center; gap: 14px; }
.abs-avatar { width: 52px; height: 52px; border-radius: 16px; flex: 0 0 auto; background: linear-gradient(135deg, var(--gold), var(--blue)); }
.abs-hlines { display: grid; gap: 9px; flex: 1; }
.abs-hlines span { height: 11px; border-radius: 999px; background: rgba(255, 255, 255, .16); }
.abs-hlines span:first-child { width: 78%; background: linear-gradient(90deg, var(--gold-soft), transparent); }
.abs-hlines span:last-child { width: 52%; }
.light .abs-hlines span { background: rgba(111, 81, 42, .2); }
.abs-band { height: 84px; border-radius: 16px; background: linear-gradient(135deg, rgba(207, 174, 109, .34), rgba(168, 133, 76, .14)); }
.abs-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.abs-cards span { height: 52px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255, 255, 255, .04); }
.light .abs-cards span { background: rgba(111, 81, 42, .04); }

.section { padding: 112px 0; }
.section-head { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr); gap: 64px; align-items: center; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.06; }
.section-head .copy { margin: 0; }
.method-head { max-width: 760px; margin-bottom: 52px; display: grid; gap: 14px; }
.method-head .eyebrow { margin: 0; }
.method-head h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.06; max-width: 18ch; }
.philosophy { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1fr); gap: 60px; align-items: stretch; }
.quote-panel { border: 1px solid var(--line); border-radius: 28px; padding: 34px; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.quote-sign { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: .22em; font-weight: 760; }
.eyebrow.eyebrow-cap { text-transform: none; letter-spacing: .14em; }
.philosophy-statement { min-height: 100vh; display: grid; place-items: center; padding: 100px 0; }
.ps-inner { width: min(100% - 44px, 820px); margin-inline: auto; text-align: center; display: grid; justify-items: center; gap: 30px; }
.ps-inner .eyebrow { margin: 0; }
.ps-quote { margin: 0; font-family: Lora, Georgia, serif; font-size: clamp(34px, 4vw, 54px); line-height: 1.06; letter-spacing: -.02em; font-weight: 500; color: var(--text); max-width: 20ch; }
.ps-rule { width: 54px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.ps-lines { display: grid; gap: 16px; max-width: 600px; }
.ps-lines .copy { margin: 0; font-size: clamp(17px, 1.7vw, 20px); line-height: 1.62; }
.quote-panel p { margin: 0; color: var(--gold-soft); font-family: Lora, Georgia, serif; font-size: clamp(28px, 4vw, 48px); line-height: 1.08; }
.text-stack { display: grid; gap: 22px; }
.text-stack p { margin: 0; }

.capability-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.capability-card, .fit-card, .step-card, .form-panel, .legal-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
}
.capability-card { min-height: 210px; padding: 28px; transition: border-color .25s ease, transform .25s ease; }
.capability-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.card-icon { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; color: var(--gold-soft); background: rgba(207, 174, 109, .10); border: 1px solid rgba(207, 174, 109, .20); margin-bottom: 24px; }
.capability-card p, .fit-card p, .step-card p { margin: 14px 0 0; color: var(--muted); line-height: 1.68; font-size: 15px; }

.fit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.fit-card { padding: 26px; }
.fit-number { color: var(--gold-soft); font-family: Lora, Georgia, serif; font-size: 42px; line-height: 1; }
.fit-card h3 { margin: 16px 0 0; font-size: 20px; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.step-card { padding: 24px; }
.step-card strong { color: var(--gold); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }
.invite { text-align: center; padding-bottom: 132px; }
.invite h2 { margin-inline: auto; max-width: 760px; }
.invite .copy { margin: 26px auto 0; max-width: 660px; }
.invite .hero-actions { margin-top: 34px; }

.founder { min-height: 100vh; display: grid; align-items: center; padding: 120px 0 80px; }
.founder-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1fr); gap: 60px; align-items: center; }
.founder-portrait { position: relative; }
.founder-portrait::before { content: ""; position: absolute; inset: -20px; border-radius: 34px; background: radial-gradient(52% 50% at 50% 36%, rgba(207, 174, 109, .18), transparent 72%); pointer-events: none; }
.founder-portrait img { position: relative; width: 100%; border-radius: 24px; border: 1px solid var(--line); display: block; box-shadow: var(--shadow); }
.founder-bio { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.founder-bio .eyebrow { margin: 0; }
.founder-bio h1 { font-size: clamp(38px, 4.4vw, 56px); }
.founder-bio .lede { margin: 0; }
.founder-bio .copy { margin: 0; max-width: 560px; }
.founder-bio .signature-row { margin-top: 4px; }
.founder-bio .hero-actions { margin-top: 6px; }

.page-hero { padding: 142px 0 76px; }
.page-hero .copy { max-width: 660px; }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr); gap: 52px; align-items: start; padding-bottom: 110px; }
.contact-entry, .apply-entry { padding-top: 138px; }
.contact-entry .eyebrow, .apply-entry .eyebrow { margin-bottom: 18px; }
.contact-entry h1, .apply-entry h1 { max-width: 660px; font-size: clamp(42px, 4.8vw, 62px); }
.contact-entry .copy, .apply-entry .copy { max-width: 590px; }
.entry-note { max-width: 560px; margin-top: 8px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; gap: 14px; color: var(--muted); line-height: 1.72; }
.entry-note p { margin: 0; }
.form-panel { padding: 32px; }
.field-group { display: grid; gap: 9px; margin-bottom: 18px; }
.field-group label { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .18em; font-weight: 600; }
.field, textarea, select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.045);
    color: var(--text);
    padding: 15px 16px;
    font: inherit;
    outline: none;
    transition: border-color .2s ease, background .2s ease;
}
.field::placeholder, textarea::placeholder { color: var(--faint); opacity: .62; }
.field:focus, textarea:focus, select:focus { border-color: var(--line-strong); }
.light .field:focus, .light textarea:focus, .light select:focus { border-color: var(--line-strong); }
textarea { min-height: 130px; resize: vertical; }
.form-note { color: var(--faint); font-size: 12px; line-height: 1.6; text-align: center; margin: 14px 0 0; }
.auth-main { min-height: calc(100svh - 92px); display: grid; place-items: center; padding: 110px 22px 54px; }
.auth-wrap { width: min(100%, 384px); }
.auth-panel { border: 1px solid var(--line); border-radius: 24px; padding: 32px; background: var(--ink-2); }
.light .auth-panel { background: rgba(255,255,255,.72); }
.auth-brand { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: var(--text); text-decoration: none; font-size: 18px; font-weight: 760; margin-bottom: 28px; }
.auth-brand img { width: 28px; height: 28px; }
.auth-head { text-align: center; margin-bottom: 22px; }
.auth-head h1 { font-size: clamp(18px, 2vw, 20px); line-height: 1.18; letter-spacing: 0; }
.auth-head p, .auth-copy { margin: 12px 0 0; color: var(--muted); line-height: 1.65; font-size: 15px; }
.auth-copy { text-align: center; margin-bottom: 22px; }
.auth-copy a, .auth-foot a, .field-row a { color: var(--gold-soft); text-decoration: none; font-weight: 720; }
.auth-copy a:hover, .auth-foot a:hover, .field-row a:hover { color: var(--text); }
.field-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 9px; }
.field-row label { margin: 0; }
.password-field { position: relative; }
.password-field .field { padding-right: 48px; }
.password-toggle { position: absolute; inset: 0 0 0 auto; width: 46px; border: 0; background: transparent; color: var(--faint); display: grid; place-items: center; cursor: pointer; }
.password-toggle:hover { color: var(--text); }
.auth-divider { display: flex; align-items: center; gap: 14px; margin: 24px 0; color: var(--faint); font-size: 10px; text-transform: uppercase; letter-spacing: .24em; }
.auth-divider::before, .auth-divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.social-btn { width: 100%; min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; border: 1px solid var(--line-strong); color: var(--text); background: rgba(255,255,255,.035); text-decoration: none; font-size: 14px; font-weight: 720; }
.light .social-btn { background: rgba(255,255,255,.64); }
.google-mark { width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; color: #4285f4; background: #fff; font-family: Inter, system-ui, sans-serif; font-size: 13px; font-weight: 800; }
.auth-foot { margin: 24px 0 0; color: var(--muted); text-align: center; font-size: 14px; line-height: 1.6; }
.auth-footer { padding: 0 22px 28px; }
.auth-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; color: var(--faint); font-size: 12px; }
.auth-footer a { text-decoration: none; }
.auth-footer a:hover { color: var(--text); }
.auth-success { text-align: center; }
.auth-success[hidden] { display: none; }
.success-mark { width: 58px; height: 58px; margin: 0 auto 20px; border-radius: 50%; border: 1px solid var(--line); background: rgba(207,174,109,.10); color: var(--gold-soft); display: grid; place-items: center; }
.legal-card { padding: 34px; margin-bottom: 18px; }
.legal-card h2 { font-size: 30px; }
.legal-card p, .legal-card li { color: var(--muted); line-height: 1.75; }
.legal-card ul { padding-left: 20px; }

.footer { border-top: 1px solid var(--line); }
.footer-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 22px; color: var(--faint); font-size: 13px; letter-spacing: .02em; }
.footer-links { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.footer-links a { text-decoration: none; transition: color .2s ease; }
.footer-links a:hover { color: var(--text); }
.footer-links a + a::before { content: "\2022"; margin-right: 14px; color: var(--faint); opacity: .55; }

.theme-fab { position: fixed; right: 20px; bottom: 20px; z-index: 70; }
.theme-toggle { width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.04); color: var(--gold-soft); display: grid; place-items: center; cursor: pointer; backdrop-filter: blur(10px); transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.theme-toggle:hover { border-color: var(--line-strong); transform: translateY(-1px); }
.light .theme-toggle { background: rgba(255,255,255,.82); }
.theme-menu { position: absolute; right: 0; bottom: calc(100% + 10px); min-width: 152px; padding: 6px; border: 1px solid var(--line); border-radius: 16px; background: rgba(15,15,24,.92); box-shadow: var(--shadow); backdrop-filter: blur(14px); opacity: 0; visibility: hidden; transform: translateY(8px) scale(.98); transform-origin: bottom right; transition: opacity .22s ease, transform .22s ease, visibility .22s ease; }
.light .theme-menu { background: rgba(255,255,255,.96); }
.theme-fab.open .theme-menu { opacity: 1; visibility: visible; transform: none; }
.theme-menu button { width: 100%; min-height: 38px; display: flex; align-items: center; gap: 10px; border: 0; border-radius: 10px; background: transparent; color: var(--muted); padding: 8px 11px; text-align: left; cursor: pointer; font: inherit; font-size: 13px; }
.theme-menu button:hover { background: rgba(207,174,109,.12); color: var(--text); }
.theme-menu button.active { color: var(--gold-soft); }
.theme-menu svg { width: 16px; height: 16px; stroke-width: 1.8; flex: 0 0 auto; }
.theme-menu .check { margin-left: auto; width: 14px; height: 14px; opacity: 0; }
.theme-menu button.active .check { opacity: 1; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
    .nav-links, .nav-actions { display: none; }
    .icon-btn { display: inline-flex; }
    .hero-grid, .section-head, .philosophy, .two-col, .founder-grid { grid-template-columns: 1fr; gap: 34px; }
    .hero-side { justify-self: center; }
    .hero, .philosophy-statement, .founder { min-height: auto; }
    .hero-copy { align-items: center; text-align: center; }
    .founder-portrait { max-width: 380px; margin-inline: auto; }
    .capability-grid, .fit-grid, .steps { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 82px 0; }
    .page-hero { padding-top: 124px; }
}

@media (max-width: 560px) {
    .shell, .narrow { width: min(100% - 32px, 1120px); }
    .nav-inner { height: 64px; }
    .hero { padding-top: 96px; padding-bottom: 52px; }
    .capability-grid, .fit-grid, .steps { grid-template-columns: 1fr; }
    h1 { font-size: 46px; line-height: .96; }
    .lede { margin-top: 22px; font-size: 19px; line-height: 1.34; }
    .hero-actions { margin-top: 28px; }
    .hero-side .hero-actions { margin-top: 0; }
    .signature-row { margin-top: 34px; gap: 20px; }
    .presence-inner, .form-panel, .quote-panel, .legal-card { padding: 22px; }
    .floating-note { left: 22px; right: 22px; width: auto; }
    .footer-inner { flex-direction: column; align-items: flex-start; justify-content: center; text-align: left; }
    .footer-links { justify-content: flex-start; gap: 14px; }
}

/* Server-rendered form states (CI4 marketing port) */
.field-error { color: #e2786a; font-size: 12.5px; line-height: 1.5; }
.light .field-error { color: #b4452f; }
.field.has-error, textarea.has-error, select.has-error { border-color: rgba(226, 120, 106, .55); }
.form-alert {
    margin: 0 0 18px;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1px solid rgba(226, 120, 106, .42);
    background: rgba(226, 120, 106, .10);
    color: #e9b8b0;
    font-size: 14px;
    line-height: 1.55;
}
.light .form-alert { color: #8c3526; background: rgba(180, 69, 47, .08); }
.form-success { text-align: center; display: grid; gap: 14px; justify-items: center; padding: 14px 0; }
.form-success .success-mark {
    width: 56px; height: 56px; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(207, 174, 109, .14); color: var(--gold);
    border: 1px solid var(--line-strong);
}
.form-success h2 { margin: 0; font-size: 24px; }
.form-success p { margin: 0; color: var(--muted); line-height: 1.7; max-width: 420px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }