:root {
    --bg: #0c0a09;
    --bg-soft: #1a1512;
    --surface: rgba(26, 20, 18, 0.85);
    --surface-strong: #221a17;
    --line: rgba(212, 168, 75, 0.22);
    --ink: #faf6f0;
    --muted: #b8a99a;
    --brand: #c4544a;
    --brand-strong: #a83d34;
    --accent: #d4a84b;
    --accent-soft: #f0d78c;
    --hazard: #e8c547;
    --success: #2d9a6a;
    --danger: #c4544a;
    --radius-xl: 30px;
    --radius-lg: 12px;
    --radius-md: 8px;
    --radius-sm: 6px;
    --shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    --container: min(1180px, calc(100vw - 34px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Sora", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    background-color: #0a0807;
    background-image:
        linear-gradient(180deg, rgba(8, 6, 5, 0.97) 0%, rgba(14, 11, 9, 0.94) 100%),
        repeating-linear-gradient(
            -45deg,
            rgba(232, 197, 71, 0.035) 0 14px,
            transparent 14px 28px
        );
    min-width: 320px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    opacity: 0.55;
    background:
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 47px,
            rgba(212, 168, 75, 0.045) 47px,
            rgba(212, 168, 75, 0.045) 48px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 47px,
            rgba(255, 255, 255, 0.012) 47px,
            rgba(255, 255, 255, 0.012) 48px
        );
    background-size: 100% 48px, 48px 100%;
    animation: warehouseGrid 48s linear infinite;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(180deg, transparent 0%, rgba(196, 84, 74, 0.04) 100%);
}

@keyframes warehouseGrid {
    from { background-position: 0 0, 0 0; }
    to { background-position: 0 48px, 48px 0; }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 40;
    background: linear-gradient(90deg, var(--brand) 0%, var(--hazard) 55%, var(--accent) 100%);
    box-shadow: 0 0 12px rgba(232, 197, 71, 0.45);
    transition: width 0.08s linear;
}

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(212, 168, 75, 0.45);
    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;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(10px);
    background: rgba(12, 10, 9, 0.92);
    border-bottom: 1px solid rgba(212, 168, 75, 0.16);
}

.site-header::after {
    content: "";
    display: block;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        var(--hazard) 0 12px,
        #1a1512 12px 24px
    );
    opacity: 0.65;
}

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

.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: rgba(22, 18, 16, 0.65);
}

.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 7px;
    border-radius: 4px;
    opacity: 0.5;
    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(196, 84, 74, 0.18);
}

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

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

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

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(26, 20, 18, 0.9);
    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: 999px;
    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: 16px;
}

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

.nav-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: var(--radius-sm);
    color: #d4c8bc;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: #ffffff;
    background: rgba(26, 20, 18, 0.7);
    border-bottom-color: var(--hazard);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: var(--radius-sm);
    color: #1a1208;
    background: var(--hazard);
    font-weight: 700;
    border: 2px solid #b8922e;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.18);
    transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.2s ease;
}

.nav-cta:hover {
    filter: brightness(1.06);
}

.nav-cta:active {
    transform: translateY(2px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25);
}

main {
    padding-bottom: 28px;
}

.page-hero,
.hero-dark {
    padding: 86px 0 58px;
}

.hero-dark {
    position: relative;
    background:
        linear-gradient(105deg, rgba(12, 10, 9, 0.98) 0%, rgba(28, 18, 14, 0.92) 100%);
    border-bottom: 1px solid rgba(212, 168, 75, 0.12);
    overflow: hidden;
}

.hero-dark::before {
    content: "";
    position: absolute;
    right: -8%;
    top: 50%;
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    transform: translateY(-50%) rotate(-8deg);
    pointer-events: none;
    opacity: 0.07;
    background:
        linear-gradient(var(--hazard) 0 0) 38% 18% / 14% 62% no-repeat,
        linear-gradient(var(--hazard) 0 0) 58% 18% / 14% 62% no-repeat,
        linear-gradient(var(--brand) 0 0) 18% 72% / 52% 18% no-repeat,
        linear-gradient(var(--brand) 0 0) 18% 18% / 22% 22% no-repeat;
    animation: forkIdle 6s ease-in-out infinite;
}

.hero-dark::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    pointer-events: none;
    background: repeating-linear-gradient(
        -45deg,
        var(--hazard) 0 10px,
        #1a1512 10px 20px
    );
    opacity: 0.55;
}

@keyframes forkIdle {
    0%, 100% { transform: translateY(-50%) rotate(-8deg) translateX(0); }
    50% { transform: translateY(calc(-50% - 6px)) rotate(-6deg) translateX(-8px); }
}

.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: 12px;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--hazard);
    font-weight: 700;
}

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

h1,
h2,
h3 {
    margin: 0 0 12px;
    font-family: "Barlow Condensed", sans-serif;
    line-height: 1.08;
    letter-spacing: 0.01em;
}

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

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

h2 {
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    color: var(--ink);
}

h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
}

.lead,
.section-lead,
.supporting-copy {
    color: #d4c8bc;
    max-width: 66ch;
    margin: 0;
}

.hero-panel,
.contact-panel,
.card,
.media-card,
.legal-copy,
.footer-grid {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(34, 26, 23, 0.82) 0%, rgba(18, 14, 12, 0.92) 100%);
    box-shadow: var(--shadow);
}

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

.hero-note + .hero-note {
    margin-top: 12px;
}

.hero-note strong {
    display: block;
    color: var(--accent-soft);
    margin-bottom: 4px;
}

.section {
    padding: 56px 0;
}

.section-band {
    padding: 56px 0;
    background:
        linear-gradient(180deg, rgba(26, 20, 18, 0.75) 0%, rgba(12, 10, 9, 0.35) 100%),
        repeating-linear-gradient(
            -45deg,
            rgba(232, 197, 71, 0.04) 0 8px,
            transparent 8px 16px
        );
    border-top: 2px solid rgba(212, 168, 75, 0.14);
    border-bottom: 2px solid rgba(212, 168, 75, 0.14);
}

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

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

.card {
    position: relative;
    overflow: hidden;
    border-left: 4px solid rgba(212, 168, 75, 0.25);
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.card::before {
    content: none;
}

.card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--brand) 0%, var(--hazard) 100%);
    transition: height 0.35s ease;
}

.card:hover {
    border-left-color: transparent;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    background: linear-gradient(160deg, rgba(40, 28, 24, 0.88) 0%, rgba(18, 14, 12, 0.94) 100%);
}

.card:hover::after {
    height: 100%;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    background: rgba(26, 20, 18, 0.9);
    border: 2px solid rgba(212, 168, 75, 0.35);
    color: var(--hazard);
    font-size: 1.2rem;
    box-shadow: inset 0 0 0 1px rgba(196, 84, 74, 0.15);
}

.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 li,
.feature-list li,
.contact-data-item {
    border: 1px solid rgba(212, 168, 75, 0.16);
    border-radius: var(--radius-md);
    background: rgba(22, 18, 16, 0.72);
    padding: 14px 14px 14px 18px;
    color: #d4c8bc;
    border-left: 4px solid rgba(196, 84, 74, 0.45);
    transition: border-left-width 0.2s ease, background 0.2s ease;
}

.quick-points li:hover,
.feature-list li:hover {
    border-left-width: 8px;
    background: rgba(28, 22, 18, 0.82);
}

.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-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 6px;
}

.quick-points li strong,
.feature-list li span {
    display: block;
    margin-bottom: 4px;
    color: var(--accent-soft);
}

.quick-points li h3 {
    font-size: 1.05rem;
    margin: 4px 0 6px;
    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: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button,
.button-secondary {
    min-height: 46px;
    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.02em;
    transition: transform 0.1s ease, box-shadow 0.15s ease, filter 0.15s ease, border-color 0.15s ease;
}

.button {
    color: #1a1208;
    background: var(--hazard);
    border-color: #a88420;
    box-shadow:
        inset 0 -4px 0 rgba(0, 0, 0, 0.2),
        0 4px 0 rgba(0, 0, 0, 0.15);
}

.button:hover {
    filter: brightness(1.05);
}

.button:active,
.button-secondary:active {
    transform: translateY(3px);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
}

.button-secondary {
    color: #f0e6d8;
    border-color: rgba(212, 168, 75, 0.45);
    background: rgba(26, 20, 18, 0.75);
    box-shadow: inset 0 -2px 0 rgba(212, 168, 75, 0.12);
}

.button-secondary:hover {
    border-color: var(--hazard);
    color: var(--hazard);
    background: rgba(32, 24, 20, 0.9);
}

.list-check {
    margin: 0;
    padding: 10px 14px 10px 36px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 168, 75, 0.16);
    background: rgba(22, 18, 16, 0.66);
    color: #d4c8bc;
    position: relative;
}

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

.brand-tag {
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 168, 75, 0.25);
    background: rgba(22, 18, 16, 0.85);
    color: #d4c8bc;
    font-size: 0.88rem;
    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.brand-tag:hover {
    background: rgba(232, 197, 71, 0.12);
    border-color: var(--hazard);
    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: #f0e6d8;
    font-weight: 600;
}

.field-group input,
.field-group textarea,
.field-group select {
    width: 100%;
    border: 1px solid rgba(212, 168, 75, 0.22);
    border-radius: 12px;
    background: rgba(14, 11, 10, 0.9);
    padding: 12px 14px;
    color: #faf6f0;
}

.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);
}

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

.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: 18px 0 28px;
}

.footer-grid {
    padding: 24px;
}

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

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

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--accent-soft);
}

.footer-meta {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

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

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

.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: 20px 12px;
    border: 2px solid rgba(212, 168, 75, 0.2);
    border-radius: var(--radius-md);
    background: rgba(22, 18, 16, 0.75);
    position: relative;
}

.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        var(--hazard) 0 6px,
        var(--brand) 6px 12px
    );
    opacity: 0.7;
}

.stat-item strong {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2rem;
    color: var(--hazard);
    line-height: 1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.stat-item span {
    font-size: 0.85rem;
    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(--hazard);
    box-shadow: 0 0 0 3px rgba(232, 197, 71, 0.15);
}

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

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

.consent-btn.primary {
    background: var(--hazard);
    color: #1a1208;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.18);
}

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

#consent-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 6, 5, 0.78);
    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(--bg-soft);
    border: 1px solid rgba(212, 168, 75, 0.22);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    padding: 28px 28px 24px;
    color: var(--ink);
    max-height: 90vh;
    overflow: auto;
}

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

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

#consent-modal p a {
    color: var(--accent);
    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 rgba(212, 168, 75, 0.12);
    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(--accent);
    cursor: pointer;
}

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

.consent-item label a {
    color: var(--accent);
    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(196, 84, 74, 0.12);
    border-radius: 8px;
    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));
    }
}

@media (min-width: 1040px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(340px, 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: 16px;
        right: 16px;
        background: rgba(12, 10, 9, 0.96);
        border: 1px solid rgba(212, 168, 75, 0.18);
        border-radius: 18px;
        padding: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

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

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

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

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

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

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

    .brand-logo {
        height: 48px;
    }
}

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

    body::before,
    .hero-dark::before {
        animation: none;
    }

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

    .scroll-progress {
        display: none;
    }
}
