:root {
    color-scheme: light;
    --ink: #15181e;
    --ink-2: #222733;
    --text: #2f3642;
    --muted: #66707f;
    --paper: #fbfaf7;
    --surface: #ffffff;
    --surface-2: #f2f6f5;
    --line: #d8e0e7;
    --teal: #47c4bd;
    --teal-dark: #157a76;
    --amber: #ffb64d;
    --coral: #ef746c;
    --green: #7bbf6a;
    --shadow: 0 18px 42px rgba(21, 24, 30, 0.12);
    --shadow-soft: 0 10px 24px rgba(21, 24, 30, 0.08);
    --radius: 8px;
    --header-height: 76px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    min-width: 320px;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

button {
    cursor: pointer;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-160%);
    background: var(--amber);
    color: var(--ink);
    padding: 0.65rem 0.9rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(1160px, calc(100% - 36px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    min-height: var(--header-height);
    background: rgba(21, 24, 30, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 220px;
    min-width: 180px;
    text-decoration: none;
}

.brand img {
    width: 100%;
    height: 54px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.28rem;
}

.site-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0.62rem 0.75rem;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.site-nav .nav-cta {
    margin-left: 0.35rem;
    color: var(--ink);
    background: var(--amber);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
    color: var(--ink);
    background: #ffd08b;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
}

.hero {
    position: relative;
    min-height: 82svh;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
}

.hero-media,
.page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(21, 24, 30, 0.96), rgba(21, 24, 30, 0.78) 48%, rgba(21, 24, 30, 0.3)),
        linear-gradient(0deg, rgba(21, 24, 30, 0.7), rgba(21, 24, 30, 0.04) 46%, rgba(21, 24, 30, 0.72));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    padding: 3.8rem 0 3rem;
}

.eyebrow,
.section-kicker {
    margin: 0 0 0.8rem;
    color: var(--teal);
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 860px;
    margin: 0;
    color: #ffffff;
    font-size: 4.45rem;
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: 0;
}

.hero-lede {
    max-width: 720px;
    margin: 1.4rem 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.25rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.78rem 1.1rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 900;
    line-height: 1.1;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--amber);
    color: var(--ink);
    border-color: var(--amber);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: #ffd08b;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.24);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.16);
}

.button-small {
    min-height: 38px;
    padding: 0.48rem 0.82rem;
    font-size: 0.9rem;
}

.hero-proof {
    width: min(720px, 100%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.hero-proof div {
    min-height: 88px;
    display: grid;
    align-content: center;
    padding: 1rem;
    background: rgba(21, 24, 30, 0.58);
}

.hero-proof strong {
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
}

.hero-proof span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

.intro-band {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}

h1,
h2,
h3,
p {
    letter-spacing: 0;
}

h1,
h2,
h3 {
    color: var(--ink);
    line-height: 1.08;
}

.intro-grid h2,
.section-heading h2,
.intelligence-copy h2,
.work-layout h2,
.outcomes-grid h2,
.contact-copy h2,
.fit-layout h2,
.cta-band h2,
.legal-hero h1,
.page-hero h1 {
    margin: 0;
    font-size: 2.65rem;
    font-weight: 900;
}

.intro-grid p:last-child,
.section-heading p,
.intelligence-copy p,
.work-layout p,
.outcomes-grid p,
.contact-copy p,
.fit-layout p,
.page-hero-content p {
    color: var(--muted);
    font-size: 1.05rem;
}

.section {
    padding: 5.2rem 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading h2 {
    margin-bottom: 1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.service-card,
.process-step,
.reason-card,
.contact-form,
.system-panel,
.outcome-list article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.service-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.service-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #f5f8f7;
    border-bottom: 1px solid var(--line);
}

.service-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.15rem;
}

.service-number {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 0.85rem;
    color: var(--teal-dark);
    font-weight: 900;
    font-size: 0.86rem;
}

.service-card h3 {
    min-height: 54px;
    margin: 0;
    font-size: 1.22rem;
}

.service-card p {
    margin: 0.8rem 0 1rem;
    color: var(--muted);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.tag-list li {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0.26rem 0.55rem;
    border: 1px solid rgba(71, 196, 189, 0.38);
    border-radius: 999px;
    background: #effbf9;
    color: var(--teal-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.intelligence-band {
    background:
        linear-gradient(135deg, #15181e 0%, #222733 54%, #20342f 100%);
    color: #ffffff;
}

.intelligence-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: center;
}

.intelligence-copy h2,
.intelligence-copy p,
.intelligence-copy .section-kicker {
    color: #ffffff;
}

.intelligence-copy .section-kicker {
    color: var(--amber);
}

.intelligence-copy > p {
    color: rgba(255, 255, 255, 0.78);
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.metric-row div {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.metric-row strong,
.metric-row span {
    display: block;
}

.metric-row strong {
    color: #ffffff;
    font-size: 1rem;
}

.metric-row span {
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.system-panel {
    display: grid;
    gap: 1px;
    padding: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.system-row {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.06);
}

.system-row span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--teal);
    color: var(--ink);
    font-weight: 900;
}

.system-row h3 {
    margin: 0 0 0.35rem;
    color: #ffffff;
}

.system-row p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
}

.process-section {
    background: var(--surface-2);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.process-step {
    min-height: 238px;
    padding: 1.25rem;
}

.process-step span,
.reason-card span {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--coral);
    font-size: 0.88rem;
    font-weight: 900;
    text-transform: uppercase;
}

.process-step h3,
.reason-card h2,
.outcome-list h3 {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
}

.process-step p,
.reason-card p,
.outcome-list p {
    margin: 0;
    color: var(--muted);
}

.work-section {
    background: var(--surface);
    border-block: 1px solid var(--line);
}

.work-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: center;
}

.portfolio-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.portfolio-strip a {
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    transition: transform 180ms ease, border-color 180ms ease;
}

.portfolio-strip a:hover,
.portfolio-strip a:focus-visible {
    transform: translateY(-2px);
    border-color: var(--teal);
}

.portfolio-mark {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: #effbf9;
    color: var(--teal-dark);
    font-size: 0.85rem;
    font-weight: 900;
}

.portfolio-strip strong,
.portfolio-strip small {
    display: block;
}

.portfolio-strip strong {
    color: var(--ink);
    line-height: 1.2;
}

.portfolio-strip small {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.25;
}

.outcomes-section {
    background: var(--paper);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
}

.outcome-list {
    display: grid;
    gap: 1rem;
}

.outcome-list article {
    padding: 1.2rem;
}

.contact-section {
    background: var(--surface-2);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 2rem;
    align-items: start;
}

.contact-methods {
    display: grid;
    gap: 0.35rem;
    margin: 1.4rem 0;
}

.contact-methods a {
    color: var(--teal-dark);
    font-weight: 900;
}

.contact-methods span {
    color: var(--muted);
}

.contact-image {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    gap: 0.38rem;
}

.form-row-full,
.anti-spam-row,
.form-status,
.form-submit {
    grid-column: 1 / -1;
}

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

.form-row label {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #cbd5df;
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink);
    padding: 0.74rem 0.82rem;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-row textarea {
    min-height: 144px;
    resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(71, 196, 189, 0.18);
}

.form-row input:user-invalid,
.form-row select:user-invalid,
.form-row textarea:user-invalid {
    border-color: var(--coral);
}

.anti-spam-row {
    align-items: stretch;
}

.anti-spam-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.72rem 0.82rem;
    border: 1px solid #cbd5df;
    border-radius: var(--radius);
    background: #f8fbfb;
}

.anti-spam-question {
    color: var(--ink);
    font-weight: 900;
}

.anti-spam-refresh {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.34rem 0.6rem;
    border: 1px solid rgba(71, 196, 189, 0.44);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--teal-dark);
    font-size: 0.84rem;
    font-weight: 900;
    white-space: nowrap;
}

.form-status {
    min-height: 24px;
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.form-status.is-success {
    color: var(--teal-dark);
}

.form-status.is-error {
    color: #b83f39;
}

.form-submit {
    width: 100%;
}

.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    padding: 2rem 0;
}

.footer-inner img {
    max-width: 132px;
    height: auto;
    margin-bottom: 0.7rem;
}

.footer-inner p {
    margin: 0;
}

.footer-inner nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.35rem;
}

.footer-inner nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.62rem;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    font-weight: 800;
}

.footer-inner nav a:hover,
.footer-inner nav a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.copyright {
    grid-column: 1 / -1;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.92rem;
}

.cookie-banner {
    position: fixed;
    right: calc(18px + env(safe-area-inset-right));
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 950;
    width: min(420px, calc(100% - 36px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.page-hero {
    position: relative;
    min-height: 480px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--ink);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(21, 24, 30, 0.94), rgba(21, 24, 30, 0.66)),
        linear-gradient(0deg, rgba(21, 24, 30, 0.86), rgba(21, 24, 30, 0.06));
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 5rem 0;
}

.page-hero h1 {
    max-width: 820px;
    color: #ffffff;
}

.page-hero-content p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.8);
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.reason-card {
    min-height: 250px;
    padding: 1.35rem;
}

.comparison-band {
    background: var(--surface);
    border-block: 1px solid var(--line);
}

.fit-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: start;
}

.check-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 0.95rem 1rem 0.95rem 2.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--text);
    font-weight: 800;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1.08rem;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(123, 191, 106, 0.16);
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.legal-hero {
    padding: 5rem 0 3rem;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
    margin: 0 0 0.75rem;
    font-size: 3rem;
}

.legal-hero p {
    margin: 0;
    color: var(--muted);
}

.legal-content {
    max-width: 840px;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.legal-content h2 {
    margin: 2rem 0 0.55rem;
    font-size: 1.3rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin: 0 0 1rem;
    color: var(--muted);
}

.legal-content a {
    color: var(--teal-dark);
    font-weight: 800;
}

.offline-page {
    min-height: 100svh;
    background:
        linear-gradient(135deg, rgba(21, 24, 30, 0.96), rgba(31, 52, 47, 0.94)),
        url("../../images/illustration-hero.svg") center / cover no-repeat;
}

.offline-shell {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: calc(2rem + env(safe-area-inset-top)) 1rem calc(2rem + env(safe-area-inset-bottom));
}

.offline-card {
    width: min(560px, 100%);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(21, 24, 30, 0.86);
    box-shadow: var(--shadow);
    color: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
}

.offline-card img {
    width: min(220px, 76%);
    height: auto;
    margin-bottom: 1.4rem;
}

.offline-card h1 {
    margin: 0 0 0.9rem;
    color: #ffffff;
    font-size: 2.2rem;
}

.offline-card p {
    margin: 0 0 1.2rem;
}

.embed-page {
    margin: 0;
    min-width: 300px;
    background: transparent;
}

.embed-panel {
    width: min(760px, calc(100% - 28px));
    margin: 14px auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.embed-panel img {
    width: 112px;
    height: auto;
}

.embed-panel h1 {
    margin: 0;
    font-size: 1.22rem;
}

.embed-panel p {
    margin: 0.28rem 0 0;
    color: var(--muted);
}

@media (max-width: 720px) {
    .embed-panel {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .embed-panel .button {
        width: 100%;
    }
}

@media (max-width: 1060px) {
    .brand {
        width: 190px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        inset: var(--header-height) 0 auto 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        max-height: calc(100svh - var(--header-height));
        overflow: auto;
        padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
        background: rgba(21, 24, 30, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a,
    .site-nav .nav-cta {
        margin: 0;
        justify-content: center;
        min-height: 48px;
    }

    .service-grid,
    .reason-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid,
    .portfolio-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid,
    .intelligence-layout,
    .work-layout,
    .outcomes-grid,
    .contact-layout,
    .fit-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 70px;
    }

    .container {
        width: min(100% - 28px, 1160px);
    }

    .brand {
        width: 168px;
        min-width: 150px;
    }

    .hero {
        min-height: 84svh;
    }

    .hero-scrim {
        background:
            linear-gradient(90deg, rgba(21, 24, 30, 0.94), rgba(21, 24, 30, 0.74)),
            linear-gradient(0deg, rgba(21, 24, 30, 0.88), rgba(21, 24, 30, 0.16));
    }

    .hero-content {
        padding: 3.2rem 0 2.3rem;
    }

    .hero h1 {
        font-size: 2.9rem;
    }

    .hero-lede {
        font-size: 1.05rem;
    }

    .hero-actions,
    .cta-band {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-proof {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: 2rem;
    }

    .hero-proof div {
        min-height: 76px;
        padding: 0.7rem;
    }

    .hero-proof strong {
        font-size: 1.45rem;
    }

    .hero-proof span {
        font-size: 0.76rem;
        line-height: 1.25;
    }

    .section {
        padding: 3.8rem 0;
    }

    .intro-grid {
        padding: 2.2rem 0;
        gap: 1rem;
    }

    .intro-grid h2,
    .section-heading h2,
    .intelligence-copy h2,
    .work-layout h2,
    .outcomes-grid h2,
    .contact-copy h2,
    .fit-layout h2,
    .cta-band h2,
    .page-hero h1 {
        font-size: 2.05rem;
    }

    .service-grid,
    .reason-grid,
    .process-grid,
    .portfolio-strip,
    .metric-row,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .service-card h3 {
        min-height: auto;
    }

    .system-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1rem;
    }

    .anti-spam-control {
        align-items: stretch;
        flex-direction: column;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-inner nav {
        justify-content: flex-start;
    }

    .cookie-banner {
        align-items: stretch;
        flex-direction: column;
    }

    .page-hero {
        min-height: 420px;
    }

    .legal-hero h1 {
        font-size: 2.3rem;
    }

    .legal-content {
        padding: 1.2rem;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 24px, 1160px);
    }

    .brand {
        width: 150px;
        min-width: 140px;
    }

    .hero h1 {
        font-size: 2.55rem;
    }

    .hero-lede {
        font-size: 1rem;
    }

    .hero-proof {
        margin-top: 1.45rem;
    }

    .intro-grid h2,
    .section-heading h2,
    .intelligence-copy h2,
    .work-layout h2,
    .outcomes-grid h2,
    .contact-copy h2,
    .fit-layout h2,
    .cta-band h2,
    .page-hero h1 {
        font-size: 1.82rem;
    }

    .offline-card h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .hero-proof div {
        min-height: 62px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
