/* ============================================================
   SAME DAY JETWASH — Design System v2 (2026-05-07)
   ============================================================ */

:root {
    --ink: #0B1B2B;
    --ink-soft: #1A2E40;
    --surface: #FFFFFF;
    --mist: #F5F7F9;
    --mist-strong: #ECEFF3;
    --accent: #1E6FE5;
    --accent-hover: #1857C7;
    --muted: #5C6B7A;
    --line: #E5E9EE;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 3rem;
    --space-6: 4.5rem;
    --space-7: 6rem;

    --shadow-sm: 0 1px 2px rgba(11, 27, 43, 0.06);
    --shadow-md: 0 4px 16px rgba(11, 27, 43, 0.08);
    --shadow-lg: 0 12px 40px rgba(11, 27, 43, 0.12);

    --content-max: 1200px;
    --content-narrow: 800px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 var(--space-3);
    color: var(--ink);
}

h1 { font-size: clamp(2.25rem, 5vw + 1rem, 3.75rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3vw + 0.75rem, 2.5rem); }
h3 { font-size: 1.375rem; font-weight: 700; }

p { margin: 0 0 var(--space-3); }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--ink); color: var(--surface);
    padding: var(--space-2); text-decoration: none;
}
.skip-link:focus { left: var(--space-2); top: var(--space-2); z-index: 999; }

.container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--space-3);
}
.container--narrow { max-width: var(--content-narrow); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    padding: 14px 26px;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.btn--accent {
    background: var(--accent);
    color: var(--surface);
    box-shadow: var(--shadow-sm);
}
.btn--accent:hover {
    background: var(--accent-hover);
    color: var(--surface);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn--ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line);
}
.btn--ghost:hover {
    border-color: var(--ink);
    color: var(--ink);
}
.btn--ghost-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--surface);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}
.btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--surface);
    border-color: var(--surface);
}
.btn--lg { padding: 16px 32px; font-size: 1.0625rem; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding: 14px 0;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    white-space: nowrap;
}
@media (min-width: 480px) { .brand { font-size: 1.125rem; } }
.brand__mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.brand__mark svg { width: 18px; height: 18px; }
.nav-desktop {
    display: none;
    align-items: center;
    gap: var(--space-3);
}
.nav-desktop a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--muted);
}
.nav-desktop a:hover { color: var(--ink); }
.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}
.header-cta__phone {
    display: none;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--ink);
    padding: 8px 14px;
    border-radius: var(--radius-md);
}
.header-cta__phone:hover { background: var(--mist); color: var(--ink); }
.header-cta__phone-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--line);
    align-items: center;
    justify-content: center;
    color: var(--ink);
}
.header-cta__phone-icon:hover { background: var(--mist); color: var(--ink); }
.header-cta__quote {
    padding: 10px 18px;
    font-size: 0.9375rem;
}
@media (min-width: 768px) {
    .nav-desktop { display: flex; }
    .header-cta__phone { display: inline-flex; }
    .header-cta__phone-icon { display: none; }
}
/* Header fits 390px viewport: tighten padding + shrink brand + shrink quote btn */
@media (max-width: 480px) {
    .site-header__inner { gap: var(--space-1); padding: 12px 0; }
    .brand { font-size: 0.9375rem; gap: 8px; }
    .brand__mark { width: 30px; height: 30px; }
    .header-cta__phone-icon { width: 38px; height: 38px; }
    .header-cta__quote { padding: 9px 14px; font-size: 0.875rem; }
    .container { padding: 0 16px; }
}

/* ============================================================
   Hero (default — full-bleed)
   ============================================================ */
.hero {
    position: relative;
    background: var(--ink);
    color: var(--surface);
    overflow: hidden;
}
.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}
.hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,27,43,0.3) 0%, rgba(11,27,43,0.7) 60%, rgba(11,27,43,0.85) 100%);
}
.hero__inner {
    position: relative;
    z-index: 1;
    padding: var(--space-6) 0 var(--space-7);
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: var(--space-3);
}
.hero__eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}
.hero h1 {
    color: var(--surface);
    max-width: 18ch;
    margin-bottom: var(--space-3);
}
.hero__sub {
    font-size: clamp(1.0625rem, 1.5vw + 0.5rem, 1.25rem);
    color: rgba(255,255,255,0.85);
    max-width: 42ch;
    margin-bottom: var(--space-4);
    line-height: 1.55;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}
.hero__footnote {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
    max-width: 50ch;
    line-height: 1.5;
}
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    font-weight: 500;
}
.hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hero__trust svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .hero__inner { padding: var(--space-7) 0; }
}

/* ============================================================
   Hero — service variant (split: copy + price card)
   ============================================================ */
.hero--service .hero__inner {
    padding: var(--space-6) 0 var(--space-6);
}
.hero--service .hero__split {
    display: grid;
    gap: var(--space-4);
    grid-template-columns: 1fr;
    align-items: end;
}
.price-card {
    background: var(--surface);
    color: var(--ink);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    box-shadow: var(--shadow-lg);
}
.price-card h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: var(--space-1);
    font-weight: 700;
}
.price-card__big {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-1);
}
.price-card__big span { font-size: 1rem; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.price-card__rows {
    list-style: none;
    padding: 0;
    margin: var(--space-2) 0;
    border-top: 1px solid var(--line);
}
.price-card__rows li {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 0.9375rem;
}
.price-card__rows li strong { font-weight: 700; }
.price-card__cta {
    margin-top: var(--space-2);
    display: block;
    text-align: center;
    width: 100%;
}
@media (min-width: 768px) {
    .hero--service .hero__split { grid-template-columns: 1.3fr 1fr; gap: var(--space-5); align-items: end; }
    .price-card { padding: var(--space-4); }
}

/* ============================================================
   Quote form (homepage)
   ============================================================ */
.quote-strip {
    background: var(--mist);
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--line);
}
.quote-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: var(--shadow-md);
}
.quote-card h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-1);
}
.quote-card__sub {
    color: var(--muted);
    font-size: 0.9375rem;
    margin-bottom: var(--space-3);
}
.quote-form {
    display: grid;
    gap: var(--space-2);
    grid-template-columns: 1fr;
}
.quote-form input {
    font-family: inherit;
    font-size: 1rem;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--ink);
    width: 100%;
    transition: border-color 0.15s;
}
.quote-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(30, 111, 229, 0.18);
}
.quote-form button {
    margin-top: 4px;
    width: 100%;
    padding: 16px;
    font-size: 1.0625rem;
}
.quote-form__footnote {
    margin-top: var(--space-2);
    font-size: 0.8125rem;
    color: var(--muted);
    text-align: center;
}
@media (min-width: 768px) {
    .quote-card { padding: var(--space-5); }
    .quote-form--hero { grid-template-columns: 1fr 1fr 1fr; }
    .quote-form--hero button { grid-column: span 3; width: auto; justify-self: start; padding: 16px 32px; }
}

/* ============================================================
   Section spacing
   ============================================================ */
.section { padding: var(--space-6) 0; }
.section--alt { background: var(--mist); }
.section--ink { background: var(--ink); color: var(--surface); }
.section--ink h2 { color: var(--surface); }
.section--ink p { color: rgba(255,255,255,0.85); }

.section__head { max-width: 600px; margin: 0 auto var(--space-5); text-align: center; }
.section__head--left { text-align: left; margin-left: 0; margin-right: 0; max-width: none; }
.section__head h2 { margin-bottom: var(--space-2); }
.section__head p { color: var(--muted); font-size: 1.125rem; margin: 0; }
.section--ink .section__head p { color: rgba(255,255,255,0.75); }

/* ============================================================
   Services grid
   ============================================================ */
.services-grid {
    display: grid;
    gap: var(--space-3);
    grid-template-columns: 1fr;
}
.service-card {
    display: block;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    color: var(--ink);
}
.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    color: var(--ink);
}
.service-card__img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--mist);
}
.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.service-card:hover .service-card__img img { transform: scale(1.04); }
.service-card__body { padding: var(--space-3); }
.service-card__body h3 { margin-bottom: 6px; }
.service-card__body p { color: var(--muted); font-size: 0.9375rem; margin-bottom: var(--space-2); }
.service-card__price {
    display: inline-flex;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
}
@media (min-width: 640px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.services__see-all {
    text-align: center;
    margin-top: var(--space-4);
}
.services__see-all a {
    font-weight: 600;
    color: var(--accent);
}
.services__see-all a:hover { color: var(--accent-hover); }

/* ============================================================
   Trust strip
   ============================================================ */
.trust-strip {
    background: var(--ink);
    color: var(--surface);
    padding: var(--space-5) 0;
}
.trust-strip__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}
.trust-stat {
    text-align: center;
}
.trust-stat__num {
    display: block;
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}
.trust-stat__label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}
@media (min-width: 768px) {
    .trust-strip__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   Operator block
   ============================================================ */
.operator {
    display: grid;
    gap: var(--space-4);
    grid-template-columns: 1fr;
    align-items: center;
}
.operator__img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--mist);
}
.operator__img img { width: 100%; height: 100%; object-fit: cover; }
.operator__body h2 { margin-bottom: var(--space-2); }
.operator__body p { color: var(--muted); font-size: 1.0625rem; }
@media (min-width: 768px) {
    .operator { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}

/* ============================================================
   Areas grid (postcode chips)
   ============================================================ */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.areas-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.15s;
}
.areas-chip:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
}
.areas-chip__pc {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 600;
}

/* ============================================================
   Process grid (numbered steps)
   ============================================================ */
.process-grid {
    display: grid;
    gap: var(--space-3);
    grid-template-columns: 1fr;
    counter-reset: step;
}
.process-step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    position: relative;
    counter-increment: step;
}
.process-step::before {
    content: counter(step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--ink);
    color: var(--accent);
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: var(--space-2);
}
.process-step h3 {
    font-size: 1.1875rem;
    margin-bottom: 6px;
}
.process-step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9375rem;
}
@media (min-width: 768px) {
    .process-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   Two-column layout (e.g. body content + sticky aside)
   ============================================================ */
.layout-2col {
    display: grid;
    gap: var(--space-5);
    grid-template-columns: 1fr;
}
@media (min-width: 960px) {
    .layout-2col { grid-template-columns: 1fr 360px; }
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}
.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: var(--mist);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
}
.included-list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2px;
}
@media (min-width: 640px) {
    .included-list { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Before / after pair component
   ============================================================ */
.ba-section { padding: var(--space-6) 0; background: var(--mist); }
.ba-section .section__head { margin-bottom: var(--space-4); }

.ba-grid {
    display: grid;
    gap: var(--space-3);
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .ba-grid { grid-template-columns: repeat(3, 1fr); } }

.ba-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.ba-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--ink);
}
.ba-pair__half {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.ba-pair__half img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-pair__label {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--surface);
    background: rgba(11, 27, 43, 0.75);
    backdrop-filter: blur(6px);
    border-radius: 999px;
}
.ba-pair__label--after { background: var(--accent); }
.ba-card__caption {
    padding: var(--space-2) var(--space-3);
    font-size: 0.9375rem;
    color: var(--ink);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ba-card__caption span { color: var(--muted); font-weight: 500; font-size: 0.875rem; }

/* ============================================================
   FAQ list (no accordion)
   ============================================================ */
.faq-list { display: grid; gap: var(--space-2); }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: var(--space-3);
}
.faq-item h3 {
    font-size: 1.0625rem;
    margin-bottom: var(--space-1);
    color: var(--ink);
}
.faq-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* ============================================================
   Body prose (long-form content area)
   ============================================================ */
.prose {
    max-width: 70ch;
    color: var(--ink);
    font-size: 1.0625rem;
}
.prose h2 {
    margin-top: var(--space-5);
    margin-bottom: var(--space-2);
}
.prose h3 {
    margin-top: var(--space-3);
    margin-bottom: var(--space-2);
    font-size: 1.1875rem;
}
.prose p { margin: 0 0 var(--space-2); color: var(--ink); line-height: 1.7; }
.prose ul, .prose ol {
    margin: 0 0 var(--space-3);
    padding-left: 1.4em;
    color: var(--ink);
    line-height: 1.7;
}
.prose li { margin-bottom: 6px; }
.prose a { color: var(--accent); font-weight: 500; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.prose a:hover { color: var(--accent-hover); }
.prose strong { font-weight: 700; }
.prose blockquote {
    border-left: 3px solid var(--accent);
    padding: 4px var(--space-2);
    margin: var(--space-3) 0;
    color: var(--muted);
    font-style: italic;
}

/* ============================================================
   Final CTA banner
   ============================================================ */
.cta-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: var(--surface);
    padding: var(--space-6) var(--space-3);
    text-align: center;
}
.cta-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cta-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.cta-banner__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,27,43,0.85) 0%, rgba(11,27,43,0.95) 100%);
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--surface); margin-bottom: var(--space-2); }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: var(--space-4); font-size: 1.125rem; }
.cta-banner__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-2);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.85);
    padding: var(--space-6) 0 var(--space-3);
}
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: var(--accent); }
.site-footer__grid {
    display: grid;
    gap: var(--space-4);
    grid-template-columns: 1fr;
}
.site-footer__col h4 {
    color: var(--surface);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-2);
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col li { margin-bottom: 6px; font-size: 0.9375rem; }
.site-footer__col p { font-size: 0.9375rem; line-height: 1.6; margin-bottom: var(--space-1); }
.site-footer__bottom {
    margin-top: var(--space-5);
    padding-top: var(--space-3);
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: space-between;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
}
@media (min-width: 768px) {
    .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* ============================================================
   Mobile sticky bar
   ============================================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    display: flex;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
}
.sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
}
.sticky-cta a:first-child {
    background: var(--accent);
    color: var(--surface);
    flex: 2;
}
.sticky-cta a:first-child:hover { background: var(--accent-hover); color: var(--surface); }
.sticky-cta a:last-child {
    background: transparent;
    border: 1.5px solid var(--line);
    color: var(--ink);
}
body { padding-bottom: 70px; }
@media (min-width: 768px) {
    .sticky-cta { display: none; }
    body { padding-bottom: 0; }
}

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