/* ── Design Tokens ── */
:root {
    --bg:          #2D2926;
    --bg-raised:   #342F2C;
    --bg-lighter:  #3A3532;
    --text:        #F5F2ED;
    --text-mid:    #D2CDC6;
    --text-dim:    #9B9690;
    --text-muted:  #6E6A64;
    --terracotta:  #C67966;
    --tier-robust: #5B8A72;
    --tier-mod:    #B8860B;
    --tier-ind:    #C67966;
    --tier-anec:   #9B9690;

    --font-serif:  'Libre Baskerville', 'Palatino Linotype', Palatino, Georgia, serif;
    --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --max-width:   1100px;
    --gutter:      clamp(20px, 4vw, 48px);
    --section-pad: clamp(64px, 10vw, 128px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
}

/* ── Utility ── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.section-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 32px;
}
.serif { font-family: var(--font-serif); }
.text-mid { color: var(--text-mid); }
.text-dim { color: var(--text-dim); }
.text-muted { color: var(--text-muted); }

/* ── Typography ── */
h1, h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
}
h1 { font-size: clamp(32px, 5vw, 56px); letter-spacing: -0.02em; }
h2 { font-size: clamp(24px, 3.5vw, 38px); letter-spacing: -0.01em; }
h3 {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
}
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--text); }

/* ── Buttons ── */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--text);
    color: var(--bg);
}
.btn-primary:hover {
    background: #fff;
}
.btn-accent {
    background: var(--terracotta);
    color: #fff;
    font-weight: 600;
}
.btn-accent:hover {
    background: #d4877a;
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text-muted);
}
.btn-outline:hover {
    border-color: var(--text);
}
.btn-large {
    font-size: 16px;
    padding: 18px 36px;
}

/* ── Evidence Tier Badges ── */
.tier {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
}
.tier-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.tier-robust { background: rgba(91,138,114,0.15); color: var(--tier-robust); }
.tier-robust .tier-dot { background: var(--tier-robust); }
.tier-moderate { background: rgba(184,134,11,0.15); color: var(--tier-mod); }
.tier-moderate .tier-dot { background: var(--tier-mod); }
.tier-indicative { background: rgba(198,121,102,0.15); color: var(--tier-ind); }
.tier-indicative .tier-dot { background: var(--tier-ind); }
.tier-anecdotal { background: rgba(155,150,144,0.15); color: var(--tier-anec); }
.tier-anecdotal .tier-dot { background: var(--tier-anec); }

/* ── Scroll Fade ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(45,41,38,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo {
    height: 42px;
    width: auto;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.header-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s;
}
.header-nav a:hover { color: var(--text); }
.header-nav .nav-login {
    border: 1px solid var(--text-muted);
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--text-dim);
    transition: color 0.2s, border-color 0.2s;
}
.header-nav .nav-login:hover {
    color: var(--text);
    border-color: var(--text);
}
.header-nav .btn { padding: 10px 20px; }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger svg { display: block; }

@media (max-width: 767px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(45,41,38,0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }
    .header-nav.open { display: flex; }
    .header-nav a { font-size: 16px; }
    .header-nav .btn { text-align: center; }
    .hamburger { display: block; }
}

/* ════════════════════════════════════════
   HERO (shared)
════════════════════════════════════════ */
.hero {
    padding: clamp(120px, 16vw, 200px) 0 var(--section-pad);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 55% 40%;
        gap: 5%;
    }
}
.hero h1 {
    font-size: clamp(36px, 5.5vw, 64px);
    margin-bottom: 24px;
}
.hero-sub {
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.hero-image {
    position: relative;
}
.hero-image img {
    border-radius: 6px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 8px 24px rgba(0,0,0,0.3);
    transform: rotate(1.5deg);
    transition: transform 0.4s ease;
}
.hero-image:hover img {
    transform: rotate(0deg);
}

/* ── Centred hero variant (pricing, about, boroughs index) ── */
.hero-centred {
    padding: clamp(120px, 16vw, 180px) 0 var(--section-pad);
    text-align: center;
}
.hero-centred h1 {
    font-size: clamp(36px, 5.5vw, 64px);
    margin-bottom: 16px;
}
.hero-centred p {
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
    font-size: clamp(15px, 1.5vw, 18px);
}

/* ════════════════════════════════════════
   PAIN AMPLIFICATION (homepage)
════════════════════════════════════════ */
.pain {
    padding: var(--section-pad) 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.pain-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.pain-statement {
    font-family: var(--font-serif);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 36px;
}
.pain-statement strong {
    color: var(--text);
}
.pain-bridge {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--text-mid);
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.pain-bridge strong {
    color: var(--text);
    font-style: normal;
}

/* ════════════════════════════════════════
   FINDINGS (homepage + borough)
════════════════════════════════════════ */
.findings {
    padding: var(--section-pad) 0;
    background: var(--bg-raised);
}
.findings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 32px;
}
@media (min-width: 768px) {
    .findings-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .findings-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.finding-card {
    background: var(--bg);
    padding: 32px 24px;
    text-align: center;
}
.finding-stat {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 12px;
}
.finding-headline {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}
.finding-body {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 12px;
}
.findings-footer {
    text-align: center;
    font-size: 14px;
    color: var(--text-dim);
    padding-top: 8px;
}

/* ════════════════════════════════════════
   PRODUCT PREVIEW (homepage + borough)
════════════════════════════════════════ */
.preview {
    padding: var(--section-pad) 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.preview-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 32px;
    overflow-x: auto;
}
.preview-tab {
    background: none;
    border: none;
    color: var(--text-dim);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.preview-tab:hover {
    color: var(--text-mid);
}
.preview-tab.active {
    color: var(--text);
    border-bottom-color: var(--text);
}
.preview-pane {
    display: none;
    animation: fadeSlide 0.3s ease;
}
.preview-pane.active {
    display: block;
}
@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}
.preview-image-wrap {
    background: var(--bg-lighter);
    border-radius: 8px;
    padding: 24px;
    overflow: hidden;
}
.preview-image-wrap img {
    border-radius: 4px;
    margin: 0 auto;
    max-height: 600px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.preview-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* ════════════════════════════════════════
   LEAD MAGNET
════════════════════════════════════════ */
.lead-magnet {
    padding: var(--section-pad) 0;
    background: var(--bg-raised);
}
.lead-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 768px) {
    .lead-grid {
        grid-template-columns: auto 1fr;
        gap: 48px;
    }
}
.lead-thumbnail {
    width: 160px;
    flex-shrink: 0;
}
.lead-thumbnail img {
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transform: rotate(-2deg);
}
.lead-content h2 { margin-bottom: 16px; }
.lead-content p { color: var(--text-mid); margin-bottom: 24px; }
.lead-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.lead-form input[type="email"] {
    flex: 1;
    min-width: 220px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}
.lead-form input[type="email"]::placeholder { color: var(--text-muted); }
.lead-form input[type="email"]:focus { border-color: rgba(255,255,255,0.3); }
.lead-form button { padding: 12px 24px; }
.lead-disclaimer { font-size: 12px; color: var(--text-muted); }

/* ════════════════════════════════════════
   METHODOLOGY
════════════════════════════════════════ */
.methodology {
    padding: var(--section-pad) 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 768px) {
    .method-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 60px;
    }
}
.method-number {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5vw, 56px);
    color: var(--text-muted);
    line-height: 1;
    margin-bottom: 16px;
}
.method-item h3 { margin-bottom: 8px; }
.method-item p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.65;
}

/* ════════════════════════════════════════
   SOCIAL PROOF / BACKTEST
════════════════════════════════════════ */
.social-proof {
    padding: var(--section-pad) 0;
    background: var(--bg-raised);
}
.backtest-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.backtest-inner h2 { margin-bottom: 12px; }
.backtest-inner > p {
    color: var(--text-mid);
    margin-bottom: 40px;
    font-size: 15px;
}
.backtest-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}
@media (max-width: 600px) {
    .backtest-stats { grid-template-columns: 1fr; }
}
.backtest-stat { text-align: center; }
.backtest-stat .finding-stat { margin-bottom: 8px; }
.backtest-stat p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
}
.backtest-note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* ════════════════════════════════════════
   ABOUT / FOUNDER
════════════════════════════════════════ */
.about {
    padding: var(--section-pad) 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}
@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 140px 1fr;
        gap: 48px;
    }
}
.about-photo {
    width: 140px;
    border-radius: 4px;
    overflow: hidden;
}
.about-photo img {
    width: 100%;
    height: auto;
    display: block;
}
.about-content h2 { margin-bottom: 20px; }
.about-content p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 15px;
}
.about-sign {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-dim);
    font-size: 14px;
    margin-top: 8px;
}

/* ════════════════════════════════════════
   PRICING
════════════════════════════════════════ */
.pricing {
    padding: var(--section-pad) 0;
    background: var(--bg-raised);
    text-align: center;
}
.price-figure {
    font-family: var(--font-serif);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 400;
    color: var(--text);
    line-height: 1;
    margin-bottom: 16px;
}
.pricing p {
    color: var(--text-mid);
    max-width: 480px;
    margin: 0 auto 32px;
}
.pricing .cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.pricing .text-link {
    font-size: 14px;
    color: var(--text-dim);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.pricing .text-link:hover { color: var(--text); }

/* ── Pricing cards (pricing page) ── */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 64px;
}
@media (min-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }
}
.pricing-card {
    background: var(--bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 40px 32px;
    text-align: left;
    position: relative;
}
.pricing-card.featured {
    border-color: var(--terracotta);
}
.pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: var(--terracotta);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
}
.pricing-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
}
.pricing-card-price {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--text);
    margin-bottom: 24px;
}
.pricing-card ul {
    margin-bottom: 32px;
}
.pricing-card li {
    font-size: 14px;
    color: var(--text-mid);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding-left: 0;
}
.pricing-card li:last-child { border-bottom: none; }
.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* ── Pricing FAQ ── */
.pricing-faq {
    max-width: 680px;
    margin: 0 auto;
}
.pricing-faq-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pricing-faq-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.06);
}
.pricing-faq-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
}
.pricing-faq-item p {
    font-size: 14px;
    color: var(--text-dim);
}

/* ════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════ */
.final-cta {
    padding: var(--section-pad) 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.final-cta h1 { margin-bottom: 16px; }
.final-cta p {
    color: var(--text-mid);
    margin-bottom: 36px;
    font-size: 15px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
    padding: 64px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
    }
}
.footer-brand p {
    font-size: 14px;
    color: var(--text-dim);
    margin-top: 12px;
    max-width: 260px;
}
.footer-brand img {
    height: 42px;
    width: auto;
}
.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 10px;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ════════════════════════════════════════
   BOROUGH PAGE
════════════════════════════════════════ */
.borough-hero {
    padding: clamp(120px, 16vw, 180px) 0 var(--section-pad);
    text-align: center;
}
.borough-hero .section-label {
    margin-bottom: 16px;
}
.borough-hero h1 {
    font-size: clamp(48px, 7vw, 80px);
    margin-bottom: 16px;
}
.borough-hero p {
    color: var(--text-mid);
    font-size: 16px;
    margin-bottom: 32px;
}

/* ── Expandable findings list ── */
.findings-list {
    padding: var(--section-pad) 0;
}
.finding-row {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    transition: background 0.2s;
}
.finding-row:first-child {
    border-top: 1px solid rgba(255,255,255,0.06);
}
.finding-row:hover {
    background: rgba(255,255,255,0.02);
}
.finding-row-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 16px;
}
.finding-row-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    flex: 1;
}
.finding-row-arrow {
    color: var(--text-muted);
    font-size: 14px;
    transition: transform 0.2s;
}
.finding-row.open .finding-row-arrow {
    transform: rotate(90deg);
}
.finding-row-detail {
    display: none;
    padding: 0 0 20px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}
.finding-row.open .finding-row-detail {
    display: block;
}

/* ── What you get (borough page) ── */
.what-you-get {
    padding: var(--section-pad) 0;
    background: var(--bg-raised);
}
.wyg-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 768px) {
    .wyg-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}
.wyg-grid h3 {
    font-size: 18px;
    margin-bottom: 20px;
}
.wyg-grid li {
    font-size: 14px;
    color: var(--text-mid);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ── Purchase section ── */
.purchase {
    padding: var(--section-pad) 0;
    text-align: center;
}
.purchase .price-figure {
    margin-bottom: 12px;
}
.purchase p {
    color: var(--text-mid);
    margin-bottom: 24px;
}
.purchase .btn {
    margin-bottom: 16px;
}
.purchase .small-note {
    font-size: 13px;
    color: var(--text-muted);
}

/* ════════════════════════════════════════
   LONDON MAP
════════════════════════════════════════ */
.london-map-section {
    padding: 0 0 var(--section-pad);
}
.london-map-wrap {
    max-width: 960px;
    margin: 0 auto;
}
.london-map {
    width: 100%;
    height: auto;
    display: block;
}

/* Borough paths */
.london-map .borough {
    fill: var(--bg-lighter);
    stroke: rgba(255,255,255,0.08);
    stroke-width: 0.5;
    transition: fill 0.2s, stroke 0.2s;
}
.london-map .borough-live {
    fill: rgba(198,121,102,0.2);
    stroke: rgba(198,121,102,0.35);
    stroke-width: 0.75;
    cursor: pointer;
}
.london-map .borough-soon {
    fill: rgba(255,255,255,0.04);
    stroke: rgba(255,255,255,0.1);
}

/* Hover states */
.london-map .map-link:hover .borough-live,
.london-map .map-link:focus .borough-live {
    fill: rgba(198,121,102,0.4);
    stroke: var(--terracotta);
    stroke-width: 1.5;
}

/* Borough labels */
.london-map .blabel {
    font-family: var(--font-sans);
    font-size: 7px;
    font-weight: 500;
    fill: var(--text-muted);
    text-anchor: middle;
    pointer-events: none;
    letter-spacing: 0.01em;
}
.london-map .blabel-live {
    fill: var(--text);
    font-weight: 600;
    font-size: 7.5px;
}
.london-map .blabel-soon {
    fill: var(--text-dim);
}
.london-map .map-link:hover .blabel-live {
    fill: #fff;
}

/* Thames river */
.london-map .thames {
    stroke: rgba(255,255,255,0.06);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Legend */
.map-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-dim);
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0;
}
.legend-live .legend-dot {
    background: rgba(198,121,102,0.4);
    border: 1px solid var(--terracotta);
}
.legend-soon .legend-dot {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 480px) {
    .london-map .blabel {
        font-size: 5px;
    }
    .london-map .blabel-live {
        font-size: 6px;
    }
    .map-legend {
        gap: 16px;
        font-size: 12px;
    }
}

/* ════════════════════════════════════════
   BOROUGHS INDEX
════════════════════════════════════════ */
.borough-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: var(--section-pad) 0;
}
@media (min-width: 768px) {
    .borough-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}
.borough-card {
    background: var(--bg-raised);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 40px 32px;
    transition: border-color 0.2s;
}
.borough-card:hover {
    border-color: rgba(255,255,255,0.15);
}
.borough-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
}
.borough-card p {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 20px;
}
.borough-card .status {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.status-live { color: var(--tier-robust); }
.status-soon { color: var(--text-muted); }

/* ════════════════════════════════════════
   ABOUT PAGE (full)
════════════════════════════════════════ */
.about-full {
    padding: var(--section-pad) 0;
}
.about-full-inner {
    max-width: 680px;
    margin: 0 auto;
}
.about-full-inner h2 {
    margin-bottom: 24px;
    margin-top: 48px;
}
.about-full-inner h2:first-child {
    margin-top: 0;
}
.about-full-inner p {
    color: var(--text-mid);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 20px;
}
.about-full-photo {
    width: 200px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 40px;
}
.about-full-photo img {
    width: 100%;
    height: auto;
}
.about-mission {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text);
    line-height: 1.6;
    margin: 48px 0;
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
