/* =============================================
   PATSERVER — GLOBAL STYLES
   Dark/Light mode + Full Mobile Support
   ============================================= */

/* ── Theme variables ─────────────────────────── */
:root {
    --gold: #c9a96e;
    --gold-light: #e0c48a;
    --gold-dim: rgba(201,169,110,0.15);
    --transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* DARK MODE (default) */
[data-theme="dark"], :root {
    --bg: #080808;
    --bg-2: #0e0e0e;
    --bg-3: #141414;
    --bg-card: #111111;
    --text: #e8e3d8;
    --text-muted: #888;
    --text-dim: #3a3a3a;
    --border: #1a1a1a;
    --border-light: #242424;
    --white: #f5f2ec;
    --shadow: rgba(0,0,0,0.4);
    --nav-bg: rgba(8,8,8,0.92);
}

/* LIGHT MODE */
[data-theme="light"] {
    --bg: #f5f0e8;
    --bg-2: #ede8de;
    --bg-3: #e4ddd2;
    --bg-card: #f9f5ef;
    --text: #1a1410;
    --text-muted: #6b5f4e;
    --text-dim: #b0a090;
    --border: #d8d0c4;
    --border-light: #c8bfb2;
    --white: #1a1410;
    --shadow: rgba(0,0,0,0.08);
    --nav-bg: rgba(245,240,232,0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    transition: var(--transition);
}
a { color: inherit; }

/* ── NAV ─────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 56px;
    background: var(--nav-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s ease, background 0.25s ease;
    gap: 16px;
}
.nav.scrolled { padding: 10px 56px; }

.nav-brand { text-decoration: none; display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-svg { height: 28px; width: auto; }

/* Logo color adapts to theme */
[data-theme="light"] .nav-logo-svg text { fill: #1a1410 !important; }
[data-theme="light"] .nav-logo-svg path:nth-child(2),
[data-theme="light"] .nav-logo-svg path:nth-child(3) { fill: #c9a96e !important; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: nowrap;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.84rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: color 0.2s;
    white-space: nowrap;
    position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
}

/* Nav right group */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-cta {
    background: var(--gold);
    color: #080808 !important;
    padding: 8px 20px;
    border-radius: 2px;
    font-weight: 500 !important;
    font-size: 0.83rem !important;
    letter-spacing: 0.04em !important;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-cta::after { display: none !important; }

/* Theme toggle */
.theme-toggle {
    background: none;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    cursor: pointer;
    width: 36px; height: 36px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }
.theme-toggle svg { width: 16px; height: 16px; }

/* Nav portal button */
.nav-divider {
    width: 1px;
    height: 20px;
    background: var(--border-light);
}
.nav-portal {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    color: var(--gold) !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.05em !important;
    border: 1px solid var(--gold-dim) !important;
    padding: 6px 12px !important;
    border-radius: 2px;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s !important;
}
.nav-portal:hover { background: var(--gold-dim) !important; border-color: var(--gold) !important; }
.nav-portal::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}
.nav-hamburger span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--text-muted);
    transition: all 0.3s ease;
    transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 56px 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 68%);
    pointer-events: none;
}
.hero-bg-text {
    position: absolute;
    top: 50%; right: -30px;
    transform: translateY(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(80px, 14vw, 240px);
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201,169,110,0.07);
    letter-spacing: -0.02em;
    pointer-events: none;
    user-select: none;
}
.hero-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 7.5vw, 108px);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 0.8s 0.35s ease forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
    max-width: 520px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s ease forwards;
}
.hero-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.65s ease forwards;
}
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: #080808;
    text-decoration: none;
    padding: 15px 34px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }
.btn-outline {
    display: inline-block;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    text-decoration: none;
    padding: 12px 28px;
    font-size: 0.85rem;
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
    margin-top: 28px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-sm {
    display: inline-block;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 22px;
    font-size: 0.82rem;
    border-radius: 2px;
    margin-top: 24px;
    transition: border-color 0.2s, color 0.2s;
}
.btn-outline-sm:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
    display: flex;
    gap: 0;
    align-items: center;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    opacity: 0;
    animation: fadeUp 0.8s 0.8s ease forwards;
    flex-wrap: wrap;
    gap: 20px;
}
.stat { display: flex; flex-direction: column; gap: 4px; padding: 0 36px; }
.stat:first-child { padding-left: 0; }
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'DM Mono', monospace;
}
.stat-divider { width: 1px; height: 36px; background: var(--border-light); }

/* ── SECTION SHARED ──────────────────────────── */
.section-tag {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.01em;
}

/* ── HOME PREVIEW ────────────────────────────── */
.home-preview {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    padding: 100px 56px;
    border-top: 1px solid var(--border);
    background: var(--bg-2);
}
.preview-intro { padding-right: 56px; border-right: 1px solid var(--border); }
.preview-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 20px;
}
.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    margin-left: 56px;
    align-self: start;
}
.preview-card {
    background: var(--bg-card);
    padding: 32px 28px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background 0.25s;
}
.preview-card:hover { background: var(--bg-3); }
.preview-card:hover .preview-link { color: var(--gold); }
.preview-card--gold { border-top: 2px solid var(--gold); }
.preview-card-icon { width: 38px; height: 38px; color: var(--gold); margin-bottom: 4px; }
.preview-card-icon svg { width: 100%; height: 100%; }
.preview-num { font-family: 'DM Mono', monospace; font-size: 0.62rem; color: var(--text-dim); letter-spacing: 0.15em; }
.preview-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
}
.preview-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; }
.preview-link {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: auto;
    padding-top: 12px;
    transition: color 0.2s;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.05em;
}

/* ── CTA STRIP ───────────────────────────────── */
.cta-strip {
    background: var(--bg-3);
    border-top: 1px solid var(--border);
    padding: 72px 56px;
}
.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}
.cta-strip h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 6px;
}
.cta-strip p { color: var(--text-muted); font-size: 0.9rem; }

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero {
    padding: 160px 56px 80px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: radial-gradient(ellipse at right, rgba(201,169,110,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero--short { padding-bottom: 60px; }
.page-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6.5vw, 92px);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 16px 0 24px;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s ease forwards;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub {
    max-width: 580px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    opacity: 0;
    animation: fadeUp 0.7s 0.35s ease forwards;
}

/* ── SERVICES PAGE ───────────────────────────── */
.services-page { background: var(--bg); }
.service-full {
    padding: 72px 56px;
    border-top: 1px solid var(--border);
    transition: background 0.25s;
}
.service-full:hover { background: var(--bg-2); }
.service-full--dark { background: var(--bg-2); }
.service-full--dark:hover { background: var(--bg-3); }
.sf-header { display: flex; align-items: center; gap: 20px; margin-bottom: 36px; }
.sf-num { font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--text-dim); letter-spacing: 0.15em; }
.sf-badge {
    background: var(--gold-dim);
    color: var(--gold);
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 2px;
}
.sf-body { display: grid; grid-template-columns: 1fr 380px; gap: 72px; align-items: start; }
.sf-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}
.sf-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 20px;
    line-height: 1.5;
}
.sf-left p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.85; margin-bottom: 14px; }
.sf-right { display: flex; flex-direction: column; gap: 32px; }
.sf-icon-wrap {
    width: 90px; height: 90px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim); padding: 18px;
}
.sf-icon-wrap--gold { border-color: var(--gold); color: var(--gold); }
.sf-icon-wrap svg { width: 100%; height: 100%; }
.sf-points { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.sf-points li {
    color: var(--text-muted); font-size: 0.87rem;
    padding-left: 18px; position: relative; line-height: 1.6;
}
.sf-points li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.75rem; }

/* ── WHY PAGE ────────────────────────────────── */
.why-page {}
.why-manifesto {
    padding: 72px 56px;
    display: flex; gap: 40px; align-items: flex-start;
    border-bottom: 1px solid var(--border);
}
.wm-line { width: 3px; min-height: 80px; background: var(--gold); flex-shrink: 0; margin-top: 4px; }
.why-manifesto blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-style: italic; font-weight: 300;
    color: var(--white); line-height: 1.5; max-width: 740px;
}
.why-pillars {
    padding: 72px 56px;
    display: grid; grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border);
}
.pillar {
    padding: 48px 40px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    display: grid; grid-template-columns: 56px 1fr;
    gap: 24px; align-items: start;
    transition: background 0.25s;
}
.pillar:hover { background: var(--bg-2); }
.pillar:nth-child(even) { border-right: none; }
.pillar:nth-last-child(-n+2) { border-bottom: none; }
.pillar-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300;
    color: var(--gold); opacity: 0.6; line-height: 1; padding-top: 4px;
}
.pillar-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 400;
    color: var(--white); margin-bottom: 12px;
}
.pillar-content p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.8; }
.why-compare { padding: 80px 56px; border-bottom: 1px solid var(--border); }
.compare-table {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2px; background: var(--border); max-width: 800px;
}
.compare-col { background: var(--bg-card); padding: 36px; }
.compare-col--us { background: var(--bg-3); border-left: 3px solid var(--gold); }
.compare-header {
    font-family: 'DM Mono', monospace; font-size: 0.7rem;
    letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 24px;
}
.compare-col--them .compare-header { color: var(--text-dim); }
.compare-col--us .compare-header { color: var(--gold); }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-col li { font-size: 0.88rem; color: var(--text-muted); padding-left: 20px; position: relative; }
.compare-col--them li::before { content: '✕'; position: absolute; left: 0; color: #8a3a3a; font-size: 0.75rem; }
.compare-col--us li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; }

/* ── CONTACT PAGE ────────────────────────────── */
.contact-page { padding: 72px 56px 100px; }
.contact-page-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1100px; margin: 0 auto; }
.ci-block { display: flex; gap: 20px; margin-bottom: 36px; align-items: flex-start; }
.ci-icon { font-size: 1.4rem; color: var(--gold); line-height: 1; padding-top: 2px; flex-shrink: 0; }
.ci-block h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.ci-block p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.8; }
.contact-tagline { border-left: 2px solid var(--gold); padding-left: 20px; margin-top: 48px; }
.contact-tagline span { display: block; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--gold-light); line-height: 1.5; }
.contact-tagline cite { display: block; font-size: 0.72rem; color: var(--text-dim); font-style: normal; font-family: 'DM Mono', monospace; letter-spacing: 0.1em; margin-top: 8px; }

/* Form */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 44px; border-radius: 2px;
    position: sticky; top: 100px;
}
.flash { padding: 12px 16px; border-radius: 2px; margin-bottom: 18px; font-size: 0.85rem; }
.flash--success { background: rgba(100,180,120,0.08); border: 1px solid rgba(100,180,120,0.25); color: #7ecf94; }
.flash--error { background: rgba(200,80,80,0.08); border: 1px solid rgba(200,80,80,0.25); color: #e07070; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); }
.form-group input, .form-group textarea {
    background: var(--bg-2); border: 1px solid var(--border-light);
    color: var(--text); padding: 12px 14px;
    font-family: 'Outfit', sans-serif; font-size: 0.9rem;
    border-radius: 2px; outline: none; transition: border-color 0.2s; resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.btn-submit {
    width: 100%; background: var(--gold); color: #080808;
    border: none; padding: 16px; font-family: 'Outfit', sans-serif;
    font-size: 0.9rem; font-weight: 500; letter-spacing: 0.06em;
    border-radius: 2px; cursor: pointer; transition: background 0.2s, transform 0.15s; margin-top: 4px;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-note { font-size: 0.74rem; color: var(--text-dim); text-align: center; margin-top: 12px; }

/* ── FOOTER ──────────────────────────────────── */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 64px 56px 36px; }
.footer-top {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; padding-bottom: 48px;
    border-bottom: 1px solid var(--border); margin-bottom: 40px;
}
.footer-logo-svg { height: 34px; width: auto; margin-bottom: 16px; }
[data-theme="light"] .footer-logo-svg text { fill: #1a1410 !important; }
.footer-tagline { font-family: 'DM Mono', monospace; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); margin-top: 8px; }
.footer-cols { display: flex; gap: 64px; justify-content: flex-end; }
.footer-col h5 { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; font-size: 0.84rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-about { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.footer-about p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.9; max-width: 820px; }
.footer-about strong { color: var(--gold); font-weight: 500; }
.footer-legal { display: flex; gap: 12px; font-size: 0.72rem; color: var(--text-dim); font-family: 'DM Mono', monospace; flex-wrap: wrap; }
.footer-sep { opacity: 0.3; }

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE — TABLET ─────────────────────── */
@media (max-width: 1024px) {
    .home-preview { grid-template-columns: 1fr; }
    .preview-intro { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 48px; margin-bottom: 48px; }
    .preview-grid { margin-left: 0; }
    .sf-body { grid-template-columns: 1fr; gap: 36px; }
    .sf-right { flex-direction: row; flex-wrap: wrap; }
    .contact-page-inner { grid-template-columns: 1fr; }
    .contact-form-wrap { position: static; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .why-pillars { grid-template-columns: 1fr; padding: 48px 40px; }
    .pillar { border-right: none; }
    .pillar:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
    .pillar:last-child { border-bottom: none; }
    .compare-table { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE — MOBILE ─────────────────────── */
@media (max-width: 768px) {
    /* Nav */
    .nav { padding: 14px 20px; gap: 12px; }
    .nav.scrolled { padding: 10px 20px; }
    .nav-hamburger { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 150;
        padding: 80px 24px 40px;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.1rem; }
    .nav-links .nav-divider { display: none; }
    .nav-links .nav-portal { font-size: 0.9rem !important; }
    .nav-right { gap: 8px; }

    /* Hero */
    .hero { padding: 120px 20px 60px; }
    .hero-bg-text { font-size: 72px; right: -10px; }
    .hero-stats { gap: 12px; }
    .stat { padding: 0 12px; }
    .stat:first-child { padding-left: 0; }
    .stat-divider { display: none; }

    /* Sections */
    .home-preview,
    .cta-strip,
    .service-full,
    .why-manifesto,
    .why-pillars,
    .why-compare,
    .contact-page,
    .footer { padding-left: 20px; padding-right: 20px; }

    .page-hero { padding: 110px 20px 48px; }
    .service-full { padding-top: 48px; padding-bottom: 48px; }

    /* Preview grid */
    .preview-grid { grid-template-columns: 1fr; }
    .preview-card { padding: 24px 20px; }

    /* Forms */
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px 20px; }

    /* Footer */
    .footer { padding: 48px 20px 28px; }
    .footer-cols { flex-direction: column; gap: 28px; }
    .footer-cols { justify-content: flex-start; }

    /* CTA strip */
    .cta-strip-inner { flex-direction: column; align-items: flex-start; gap: 24px; }

    /* Why page */
    .why-manifesto { padding: 48px 20px; gap: 20px; }
    .pillar { padding: 32px 20px; grid-template-columns: 44px 1fr; }
    .why-compare { padding: 48px 20px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(38px, 11vw, 56px); }
    .page-hero-title { font-size: clamp(34px, 10vw, 52px); }
    .nav-logo-svg { height: 24px; }
}

/* =============================================
   SERVICES INDEX PAGE
   ============================================= */
.services-index {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    border-top: 1px solid var(--border);
}
.si-card {
    background: var(--bg-card);
    text-decoration: none;
    color: inherit;
    transition: background 0.25s;
    display: block;
}
.si-card:hover { background: var(--bg-2); }
.si-card:hover .si-cta { color: var(--gold); }
.si-card--featured { border-top: 3px solid var(--gold); }
.si-card-inner { padding: 52px 48px; }
.si-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.si-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem; color: var(--text-dim); letter-spacing: 0.15em;
}
.si-badge {
    background: var(--gold-dim); color: var(--gold);
    font-family: 'DM Mono', monospace; font-size: 0.62rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 3px 12px; border-radius: 2px;
}
.si-icon {
    width: 64px; height: 64px; color: var(--gold);
    margin-bottom: 24px; opacity: 0.8;
}
.si-icon svg { width: 100%; height: 100%; }
.si-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 300; line-height: 1.1;
    color: var(--white); margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.si-card p {
    font-size: 0.9rem; color: var(--text-muted);
    line-height: 1.75; margin-bottom: 24px;
}
.si-bullets {
    list-style: none; display: flex;
    flex-direction: column; gap: 8px; margin-bottom: 32px;
}
.si-bullets li {
    font-size: 0.84rem; color: var(--text-muted);
    padding-left: 16px; position: relative;
}
.si-bullets li::before {
    content: '—'; position: absolute; left: 0;
    color: var(--gold); font-size: 0.75rem;
}
.si-cta {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem; letter-spacing: 0.1em;
    color: var(--text-dim); transition: color 0.2s;
}

/* =============================================
   INDIVIDUAL SERVICE PAGES
   ============================================= */
.svc-hero {
    min-height: 70vh;
    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: center;
    gap: 60px;
    padding: 160px 56px 80px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.svc-hero::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 60%; height: 100%;
    background: radial-gradient(ellipse at right, rgba(201,169,110,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.svc-back {
    display: inline-block; text-decoration: none;
    font-family: 'DM Mono', monospace; font-size: 0.7rem;
    letter-spacing: 0.1em; color: var(--text-dim);
    margin-bottom: 28px; transition: color 0.2s;
}
.svc-back:hover { color: var(--gold); }
.svc-eyebrow {
    display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.svc-num {
    font-family: 'DM Mono', monospace; font-size: 0.7rem;
    color: var(--text-dim); letter-spacing: 0.15em;
}
.svc-flag {
    background: var(--gold-dim); color: var(--gold);
    font-family: 'DM Mono', monospace; font-size: 0.62rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 3px 12px; border-radius: 2px;
}
.svc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6.5vw, 88px);
    font-weight: 300; line-height: 1.0;
    letter-spacing: -0.02em; color: var(--white);
    margin-bottom: 24px;
    opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards;
}
.svc-title em { font-style: italic; color: var(--gold); }
.svc-lead {
    font-size: 1.05rem; color: var(--text-muted);
    line-height: 1.8; max-width: 520px; margin-bottom: 36px;
    opacity: 0; animation: fadeUp 0.8s 0.35s ease forwards;
}
.svc-hero-actions {
    display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.8s 0.5s ease forwards;
}
.svc-hero-visual {
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); opacity: 0.7;
    opacity: 0; animation: fadeUp 0.8s 0.4s ease forwards;
}
.svc-hero-visual svg { width: 100%; max-width: 220px; height: auto; }

/* Stats bar */
.svc-problem {
    background: var(--bg-2); border-bottom: 1px solid var(--border);
    padding: 0;
}
.svc-problem-inner {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; background: var(--border);
}
.svc-problem-stat {
    background: var(--bg-2); padding: 48px 40px;
    display: flex; flex-direction: column; gap: 12px;
}
.svc-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300; color: var(--gold); line-height: 1;
}
.svc-stat-label {
    font-size: 0.84rem; color: var(--text-muted); line-height: 1.6;
    max-width: 200px;
}

/* Main section */
.svc-section {
    padding: 88px 56px; border-bottom: 1px solid var(--border);
}
.svc-two-col {
    display: grid; grid-template-columns: 380px 1fr; gap: 88px; align-items: start;
}
.svc-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 300; line-height: 1.15;
    color: var(--white); margin: 16px 0 20px; letter-spacing: -0.01em;
}
.svc-body {
    font-size: 0.93rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 28px;
}
.svc-checklist { display: flex; flex-direction: column; gap: 0; }
.svc-check-item {
    display: grid; grid-template-columns: 32px 1fr;
    gap: 16px; padding: 28px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}
.svc-check-item:last-child { border-bottom: none; }
.svc-check-icon { font-size: 1.1rem; color: var(--gold); padding-top: 3px; }
.svc-check-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 400;
    color: var(--white); margin-bottom: 8px;
}
.svc-check-item p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.75; }

/* Process / steps */
.svc-process {
    padding: 80px 56px; border-bottom: 1px solid var(--border);
    background: var(--bg-2);
}
.svc-steps {
    display: flex; align-items: flex-start; gap: 0; margin-top: 48px;
    flex-wrap: wrap;
}
.svc-step {
    flex: 1; min-width: 160px; padding: 0 32px 0 0;
}
.svc-step-num {
    font-family: 'DM Mono', monospace; font-size: 0.65rem;
    color: var(--gold); letter-spacing: 0.2em; display: block; margin-bottom: 12px;
}
.svc-step h4 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
    font-weight: 400; color: var(--white); margin-bottom: 10px;
}
.svc-step p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.75; }
.svc-step-arrow {
    font-size: 1.5rem; color: var(--gold); opacity: 0.4;
    padding-top: 24px; flex-shrink: 0;
}

/* Real examples */
.svc-examples { display: flex; flex-direction: column; gap: 2px; margin-top: 48px; }
.svc-example {
    display: grid; grid-template-columns: 40px 1fr;
    gap: 20px; padding: 28px 32px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 2px; align-items: start;
}
.svc-example-icon { font-size: 1.2rem; color: var(--gold); padding-top: 2px; }
.svc-example h4 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
    font-weight: 400; color: var(--white); margin-bottom: 8px;
}
.svc-example p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; }

/* Audience grid */
.svc-for-whom {
    padding: 80px 56px; border-bottom: 1px solid var(--border);
}
.svc-audience-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2px; background: var(--border); margin-top: 48px;
}
.svc-audience-card {
    background: var(--bg-card); padding: 36px 28px;
    transition: background 0.25s;
}
.svc-audience-card:hover { background: var(--bg-2); }
.svc-audience-card h4 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
    font-weight: 400; color: var(--white); margin-bottom: 12px;
}
.svc-audience-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.75; }

/* Next/prev nav */
.svc-nav-strip {
    display: flex; justify-content: space-between; align-items: center;
    padding: 32px 56px; border-bottom: 1px solid var(--border);
    background: var(--bg-3);
}
.svc-nav-prev, .svc-nav-next {
    text-decoration: none; font-family: 'DM Mono', monospace;
    font-size: 0.72rem; letter-spacing: 0.08em;
    color: var(--text-dim); transition: color 0.2s;
    display: flex; flex-direction: column; gap: 4px;
}
.svc-nav-prev:hover, .svc-nav-next:hover { color: var(--gold); }
.svc-nav-label { font-size: 0.62rem; opacity: 0.6; }
.svc-nav-name { font-size: 0.78rem; }
.svc-nav-next { text-align: right; }

/* ── SERVICE PAGE RESPONSIVE ── */
@media (max-width: 1024px) {
    .services-index { grid-template-columns: 1fr; }
    .svc-hero { grid-template-columns: 1fr; min-height: auto; }
    .svc-hero-visual { display: none; }
    .svc-two-col { grid-template-columns: 1fr; gap: 48px; }
    .svc-problem-inner { grid-template-columns: 1fr; }
    .svc-audience-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .si-card-inner { padding: 36px 24px; }
    .svc-hero { padding: 120px 20px 56px; }
    .svc-section, .svc-process, .svc-for-whom { padding: 56px 20px; }
    .svc-nav-strip { padding: 24px 20px; flex-direction: column; gap: 20px; align-items: flex-start; }
    .svc-steps { flex-direction: column; gap: 32px; }
    .svc-step-arrow { display: none; }
    .svc-audience-grid { grid-template-columns: 1fr; }
    .svc-problem-stat { padding: 32px 20px; }
}