:root {
    --bg: #eef0f2;
    --bg-soft: #e2e5e9;
    --surface: #ffffff;
    --surface-strong: #f7f8f9;
    --line: rgba(28, 31, 36, 0.12);
    --ink: #1c1f24;
    --muted: #5c6570;
    --brand: #e30613;
    --brand-strong: #b80510;
    --accent: #c9a227;
    --accent-soft: #f0d56a;
    --hazard: #f0c000;
    --success: #1f7a4d;
    --danger: #e30613;
    --dark: #15181d;
    --dark-soft: #23282f;
    --radius-xl: 4px;
    --radius-lg: 4px;
    --radius-md: 3px;
    --radius-sm: 2px;
    --shadow: 0 10px 28px rgba(28, 31, 36, 0.08);
    --container: min(1140px, calc(100vw - 32px));
    --font-display: "Teko", "Arial Narrow", sans-serif;
    --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    background:
        linear-gradient(180deg, #f5f6f7 0%, var(--bg) 180px, var(--bg) 100%);
    min-width: 320px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(28, 31, 36, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 31, 36, 0.03) 1px, transparent 1px);
    background-size: 56px 56px;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(227, 6, 19, 0.35);
    outline-offset: 3px;
}

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

.container {
    width: var(--container);
    margin: 0 auto;
}

/* —— Header —— */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

.site-header::after {
    content: "";
    display: block;
    height: 4px;
    background: repeating-linear-gradient(
        -45deg,
        var(--hazard) 0 10px,
        #1c1f24 10px 20px
    );
}

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

.header-tools {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-strong);
}

.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 7px;
    border-radius: 2px;
    opacity: 0.45;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.lang-switch-btn:hover {
    opacity: 0.85;
}

.lang-switch-btn.is-active {
    opacity: 1;
    background: rgba(227, 6, 19, 0.1);
}

.lang-switch-btn img {
    display: block;
    width: 22px;
    height: auto;
    border-radius: 2px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    height: 72px;
    width: auto;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    align-items: center;
    justify-content: center;
}

.nav-toggle-box,
.nav-toggle-box::before,
.nav-toggle-box::after {
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
    content: "";
    display: block;
    transition: 0.25s ease;
}

.nav-toggle-box {
    position: relative;
}

.nav-toggle-box::before {
    position: absolute;
    transform: translateY(-6px);
}

.nav-toggle-box::after {
    position: absolute;
    transform: translateY(6px);
}

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

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 12px;
    color: var(--muted);
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--ink);
    border-bottom-color: var(--brand);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: var(--radius-sm);
    color: #fff;
    background: var(--brand);
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background 0.15s ease, transform 0.12s ease;
}

.nav-cta:hover {
    background: var(--brand-strong);
}

.nav-cta:active {
    transform: translateY(1px);
}

main {
    padding-bottom: 0;
}

/* —— Home full-bleed hero —— */
.hero {
    position: relative;
    min-height: min(78vh, 640px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    transform: scale(1.02);
    animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(12, 14, 18, 0.88) 0%, rgba(12, 14, 18, 0.55) 48%, rgba(12, 14, 18, 0.35) 100%),
        linear-gradient(0deg, rgba(12, 14, 18, 0.55) 0%, transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 72px 0 56px;
    max-width: 720px;
    margin-left: max(16px, calc((100vw - min(1140px, calc(100vw - 32px))) / 2));
    width: min(720px, calc(100vw - 32px));
}

.hero-brand {
    height: clamp(72px, 12vw, 104px);
    width: auto;
    margin-bottom: 18px;
    border-radius: 4px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    animation: brandIn 0.8s ease both;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.88);
    max-width: 40ch;
}

.hero h1 {
    color: #fff;
    max-width: 14ch;
    animation: titleIn 0.85s 0.08s ease both;
}

.hero .hero-actions {
    animation: titleIn 0.85s 0.16s ease both;
}

@keyframes heroDrift {
    from { transform: scale(1.02) translate3d(0, 0, 0); }
    to { transform: scale(1.06) translate3d(-1.2%, -0.8%, 0); }
}

@keyframes brandIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes titleIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Subpage heroes (compact) */
.page-hero,
.hero-dark {
    position: relative;
    padding: 64px 0 48px;
    background:
        linear-gradient(120deg, #15181d 0%, #23282f 55%, #1a1012 100%);
    color: #fff;
    overflow: hidden;
    border-bottom: 4px solid transparent;
    border-image: repeating-linear-gradient(-45deg, var(--hazard) 0 10px, #1c1f24 10px 20px) 1;
}

.page-hero::before,
.hero-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.page-hero .container,
.hero-dark .container {
    position: relative;
    z-index: 1;
}

.page-hero h1,
.hero-dark h1 {
    color: #fff;
}

.page-hero .lead,
.hero-dark .lead {
    color: rgba(255, 255, 255, 0.82);
}

.page-hero .eyebrow,
.hero-dark .eyebrow {
    color: var(--hazard);
}

.hero-grid,
.contact-grid,
.split-grid,
.footer-grid,
.content-with-visual {
    display: grid;
    gap: 24px;
}

.eyebrow,
.mini-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand);
    font-weight: 600;
    line-height: 1;
}

.eyebrow::before,
.mini-label::before {
    content: "";
    width: 22px;
    height: 3px;
    background: var(--brand);
    flex-shrink: 0;
}

h1,
h2,
h3 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    line-height: 0.98;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    color: var(--ink);
}

h1 .accent {
    color: var(--brand);
}

h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    color: var(--ink);
}

h3 {
    font-size: clamp(1.35rem, 2.2vw, 1.7rem);
}

.lead,
.section-lead,
.supporting-copy {
    color: var(--muted);
    max-width: 60ch;
    margin: 0;
}

.hero-panel,
.contact-panel,
.card,
.media-card,
.legal-copy {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero-panel,
.contact-panel,
.card,
.legal-copy {
    padding: 22px;
}

.page-hero .hero-panel,
.hero-dark .hero-panel {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
    backdrop-filter: blur(6px);
}

.page-hero .hero-note strong,
.hero-dark .hero-note strong {
    color: var(--hazard);
}

.page-hero .hero-note p,
.hero-dark .hero-note p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.hero-note + .hero-note {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-note strong {
    display: block;
    color: var(--brand);
    margin-bottom: 4px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

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

.section {
    padding: 64px 0;
}

.section-band {
    padding: 64px 0;
    background: var(--dark);
    color: #fff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-image: repeating-linear-gradient(-45deg, var(--hazard) 0 10px, #1c1f24 10px 20px) 1;
}

.section-band h2,
.section-band .mini-label {
    color: #fff;
}

.section-band .mini-label {
    color: var(--hazard);
}

.section-band .mini-label::before {
    background: var(--hazard);
}

.section-band .section-lead {
    color: rgba(255, 255, 255, 0.75);
}

.section-head {
    margin-bottom: 28px;
}

/* Trust strip under home hero */
.trust-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.trust-item {
    padding: 22px 18px;
    border-right: 1px solid var(--line);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.45rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 6px;
}

.trust-item span {
    color: var(--muted);
    font-size: 0.95rem;
}

.card-grid {
    display: grid;
    gap: 16px;
}

.card {
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--brand);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(28, 31, 36, 0.12);
}

.card-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: var(--brand);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}

.card p,
.contact-panel p,
.legal-copy p {
    margin: 0;
    color: var(--muted);
}

.quick-points,
.feature-list,
.contact-data-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.quick-points {
    grid-template-columns: 1fr;
}

.quick-points li,
.feature-list li,
.contact-data-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    padding: 18px 18px 18px 20px;
    color: var(--muted);
    border-left: 4px solid var(--brand);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-left-width 0.2s ease;
}

.quick-points li:hover,
.feature-list li:hover {
    transform: translateX(3px);
    border-left-width: 7px;
}

.contact-data-row {
    display: flex;
    flex-direction: column;
}

.contact-data-row:nth-child(4),
.contact-data-row:nth-child(5) {
    margin-top: 14px;
}

.cd-label {
    font-family: var(--font-display);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 4px;
}

.quick-points li strong,
.feature-list li span {
    display: block;
    margin-bottom: 4px;
    color: var(--brand);
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.quick-points li h3 {
    font-size: 1.35rem;
    margin: 2px 0 8px;
    color: var(--ink);
}

.media-card {
    padding: 12px;
    overflow: hidden;
}

.media-card figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.94rem;
}

.hero-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button,
.button-secondary {
    min-height: 48px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.92rem;
    transition: transform 0.1s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.button {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand-strong);
}

.button:hover {
    background: var(--brand-strong);
}

.button:active,
.button-secondary:active {
    transform: translateY(1px);
}

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

.button-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.section .button-secondary,
.contact-panel .button-secondary,
.hero-actions .button-secondary.button-on-light {
    color: var(--ink);
    border-color: rgba(28, 31, 36, 0.25);
    background: transparent;
}

.section .button-secondary:hover,
.contact-panel .button-secondary:hover,
.hero-actions .button-on-light:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: rgba(227, 6, 19, 0.04);
}

.list-check {
    margin: 0;
    padding: 10px 14px 10px 36px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--muted);
    position: relative;
}

.list-check::before {
    content: "▸";
    position: absolute;
    left: 12px;
    color: var(--brand);
    font-weight: 700;
}

.brand-tag {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    font-family: var(--font-display);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.brand-tag:hover {
    background: rgba(240, 192, 0, 0.14);
    border-color: var(--hazard);
}

.brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.form-grid {
    display: grid;
    gap: 14px;
}

.field-group {
    display: grid;
    gap: 7px;
}

.field-group label,
.checkbox-row label {
    color: var(--ink);
    font-weight: 600;
}

.field-group input,
.field-group textarea,
.field-group select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-strong);
    padding: 12px 14px;
    color: var(--ink);
}

.field-group textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-status {
    min-height: 1.5rem;
    margin: 0;
}

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

.form-status.is-error {
    color: var(--danger);
}

.nav-toggle.is-open .nav-toggle-box {
    background: transparent;
}

.nav-toggle.is-open .nav-toggle-box::before {
    transform: translateY(0) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-box::after {
    transform: translateY(0) rotate(-45deg);
}

.site-footer {
    padding: 28px 0 36px;
    background: var(--dark);
    color: rgba(255, 255, 255, 0.78);
}

.site-footer .brand {
    background: #fff;
    padding: 6px 10px;
    border-radius: 2px;
}

.footer-grid {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.footer-links,
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.78);
}

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

.footer-meta {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.footer-meta a {
    color: var(--hazard);
    text-decoration: underline;
}

.single-panel-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.contact-panel.cta-panel {
    background: var(--dark);
    color: #fff;
    border-color: transparent;
    border-top: 4px solid var(--brand);
}

.contact-panel.cta-panel h2,
.contact-panel.cta-panel .mini-label {
    color: #fff;
}

.contact-panel.cta-panel .mini-label {
    color: var(--hazard);
}

.contact-panel.cta-panel .mini-label::before {
    background: var(--hazard);
}

.contact-panel.cta-panel p {
    color: rgba(255, 255, 255, 0.78);
}

.map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.legal-copy h2,
.legal-copy h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.legal-copy h3 {
    margin-top: 20px;
}

.legal-copy ul {
    color: var(--muted);
    padding-left: 20px;
}

[data-reveal] {
    transition: opacity 0.45s ease, transform 0.45s ease;
    transition-delay: calc(var(--delay, 0) * 50ms);
}

html.js-reveal [data-reveal]:not(.is-visible) {
    opacity: 0;
    transform: translateY(14px);
}

html.js-reveal [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item {
    text-align: center;
    padding: 18px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.stat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--muted);
}

.v-center {
    display: grid;
    gap: 10px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.12);
}

.consent-btn {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid var(--brand-strong);
    transition: transform 0.1s ease, filter 0.15s ease;
    font-family: var(--font-body);
}

.consent-btn:active {
    transform: translateY(2px);
}

.consent-btn.primary {
    background: var(--brand);
    color: #fff;
}

.consent-btn.primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

#consent-overlay {
    position: fixed;
    inset: 0;
    background: rgba(21, 24, 29, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;
}

#consent-overlay.active {
    display: flex;
}

#consent-modal {
    width: min(680px, 96%);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
    padding: 28px 28px 24px;
    color: var(--ink);
    max-height: 90vh;
    overflow: auto;
}

#consent-modal h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

#consent-modal p {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 4px;
    line-height: 1.55;
}

#consent-modal p a {
    color: var(--brand);
    text-decoration: underline;
}

.consent-list {
    margin-top: 14px;
    display: grid;
    gap: 4px;
}

.consent-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
}

.consent-item:last-child {
    border-bottom: none;
}

.consent-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--brand);
    cursor: pointer;
}

.consent-item label {
    cursor: pointer;
    line-height: 1.45;
}

.consent-item label a {
    color: var(--brand);
    text-decoration: underline;
}

.consent-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
    flex-wrap: wrap;
}

.consent-item.consent-required-highlight {
    background: rgba(227, 6, 19, 0.08);
    border-radius: 4px;
    padding-left: 8px;
    padding-right: 8px;
    outline: 2px solid var(--danger);
    outline-offset: 2px;
}

@media (min-width: 720px) {
    .hero-grid,
    .contact-grid,
    .split-grid,
    .footer-grid,
    .content-with-visual {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid.two-up {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-grid.two-up {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1040px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    }

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

    .card-grid.three-up {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 959px) {
    .nav-toggle {
        display: inline-flex;
    }

    .header-tools {
        position: relative;
    }

    .lang-switch {
        order: -1;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 4px;
        padding: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        box-shadow: var(--shadow);
    }

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

    .nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-list a,
    .nav-cta {
        width: 100%;
    }

    .stats-row,
    .trust-bar-inner {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 719px) {
    .page-hero,
    .hero-dark {
        padding-top: 48px;
        padding-bottom: 36px;
    }

    .hero {
        min-height: 72vh;
    }

    .hero-content {
        padding: 48px 0 40px;
        margin-left: 16px;
        width: calc(100vw - 32px);
    }

    .hero-panel,
    .contact-panel,
    .card,
    .legal-copy {
        padding: 16px;
    }

    .brand-logo {
        height: 58px;
    }

    .header-inner {
        min-height: 76px;
    }
}

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

    .hero-media img,
    .hero-brand,
    .hero h1,
    .hero .hero-actions {
        animation: none;
    }

    html.js-reveal [data-reveal]:not(.is-visible) {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
