:root {
    --page: #F2F2F0;
    --ink: #111111;
    --muted: #5E5E5E;
    --surface: #FFFFFF;
    --inverse: #111111;
    --teal: #12B5A7;
    --cyan: #0E9BB8;
    --amber: #F0A11A;
    --wash: #DFF4F1;
    --line: rgba(17, 17, 17, 0.12);
    --line-strong: rgba(17, 17, 17, 0.18);
    --shadow: 0 24px 60px rgba(17, 17, 17, 0.14);
    --font: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    --wrap: 1200px;
    --radius: 12px;
    --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

#home, #product, #bureaus, #security, #enquire {
    scroll-margin-top: 80px;
}

body {
    margin: 0;
    background: var(--page);
    color: var(--ink);
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal); }

:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

.skip {
    position: absolute;
    left: 16px;
    top: -40px;
    z-index: 100;
    background: var(--teal);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}
.skip:focus { top: 16px; }

.wrap {
    width: min(var(--wrap), calc(100% - 48px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    height: 80px;
    background: color-mix(in srgb, var(--page) 90%, transparent);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(17, 17, 17, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 80px;
}

.brand img { height: 36px; width: auto; }

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.site-nav a:hover { color: var(--ink); }

.nav-toggle {
    display: none;
    appearance: none;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    border-radius: 999px;
    padding: 8px 14px;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0;
}

.btn-primary {
    background: var(--teal);
    color: #fff !important;
}

.btn-primary:hover { filter: brightness(0.96); }

.btn-outline {
    border-color: var(--ink);
    color: var(--ink) !important;
    background: transparent;
}

.btn-outline:hover {
    background: var(--ink);
    color: #fff !important;
}

.btn-block { width: 100%; }

.hero {
    background: var(--wash);
    padding: 80px 0 88px;
    text-align: center;
}

.hero .lede,
.hero .hero-note { margin-inline: auto; }

.eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 16px;
}

h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ink);
}

h1 {
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05;
    margin: 0 auto 24px;
    max-width: 18ch;
}

h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.05;
    margin: 0 0 20px;
    max-width: 22ch;
}

h3 {
    font-size: 22px;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}

.lede {
    font-size: 18px;
    color: var(--muted);
    max-width: 36em;
    margin: 0 0 32px;
}

.hero-note {
    margin: -16px auto 28px;
    max-width: 34em;
    font-size: 14px;
    color: var(--muted);
}

.section-lede {
    max-width: 40em;
    margin: 0 0 8px;
}

p { color: var(--muted); max-width: 62ch; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.hero-actions .btn {
    padding: 12px 24px;
    font-size: 14px;
}

.hero .shot-frame {
    max-width: 960px;
    margin-inline: auto;
}

.shot-frame {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    text-align: left;
    margin: 0;
}

.shot-frame img {
    width: 100%;
    height: auto;
}

.shot-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    background: var(--page);
    padding: 10px 16px;
}

.shot-chrome span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.15);
}

.shot-chrome p {
    margin: 0 0 0 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
}

.shot-frame-plain { box-shadow: none; }

.shot-frame figcaption {
    border-top: 1px solid var(--line);
    padding: 12px 20px;
    font-size: 13px;
    color: var(--muted);
}

.shot-pair { margin-top: 48px; }

.outcome-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 40px 0 0;
    text-align: left;
}

.outcome {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 22px;
}

.outcome strong {
    display: block;
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 6px;
}

.outcome span {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.45;
}

.band { padding: 96px 0; }

.band-tight { padding: 80px 0; }

.band-wash { background: var(--wash); }

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.split-enquire { grid-template-columns: 1fr 500px; }

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
}

.card p { margin: 0; }

.coming-soon-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.coming-soon-card p { margin: 0 0 28px; }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.stat {
    font-size: 28px;
    font-weight: 700;
    color: var(--teal);
    margin: 0 0 4px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

.form-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
}

label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--ink);
}

.optional { font-weight: 500; color: var(--muted); }

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    border-radius: var(--radius);
    padding: 12px;
    font: inherit;
    margin-bottom: 20px;
}

textarea { min-height: 120px; resize: vertical; }

.field-error {
    color: #B42318;
    font-size: 13px;
    margin: -12px 0 16px;
}

.consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 8px 0 20px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 400;
}

.consent input { margin-top: 4px; accent-color: var(--teal); }

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.thanks { padding: 8px 0; }
.thanks h2 { max-width: none; }

.site-footer {
    background: var(--inverse);
    color: #F6F6F6;
    padding: 48px 0 0;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 48px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.footer-links a:hover { color: #fff; }

.site-footer .footer-rule {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    margin: 0;
    border: 0;
}

.footer-copy {
    margin: 0;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.legal h1 {
    font-size: clamp(32px, 4vw, 48px);
    max-width: none;
    margin-inline: 0;
}
.legal h2 {
    font-size: 20px;
    max-width: none;
    margin: 32px 0 8px;
}
.legal p { max-width: 68ch; }

@media (max-width: 900px) {
    .wrap { width: min(var(--wrap), calc(100% - 32px)); }
    .split, .split-enquire, .grid-3, .grid-2, .stat-row, .outcome-row {
        grid-template-columns: 1fr;
    }
    .nav-toggle { display: inline-flex; }
    .site-nav {
        display: none;
        position: absolute;
        inset: 80px 16px auto;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        box-shadow: var(--shadow);
    }
    .site-nav.is-open { display: flex; }
    .header-inner { position: relative; }
    h1 { max-width: none; }
    .hero { padding: 56px 0 64px; }
    .band,
    .band-tight { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}
