@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/dm-sans-400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/dm-sans-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/dm-sans-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/manrope-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/manrope-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/manrope-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #0b0d0e;
    --ink-soft: #171a1c;
    --paper: #f5f5f2;
    --white: #ffffff;
    --mist: #e6e6e1;
    --gray: #656865;
    --clay: #9b4f38;
    --clay-dark: #873e2b;
    --page-pad: 48px;
    --max-width: 1320px;
    --header-height: 88px;
    --font-display: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 24px;
}

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

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--clay);
    outline-offset: 4px;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 16px;
    left: 16px;
    transform: translateY(-140%);
    background: var(--white);
    color: var(--ink);
    padding: 10px 16px;
    border-radius: 999px;
}

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

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--page-pad);
    color: var(--white);
}

.site-header.is-solid,
.legal-header {
    position: relative;
    background: var(--paper);
    color: var(--ink);
    border-bottom: 1px solid rgba(11, 13, 14, 0.14);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 15px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 14px;
    font-weight: 500;
}

.site-nav a {
    text-decoration: none;
}

.site-nav a:not(.nav-cta):hover {
    text-decoration: underline;
}

.nav-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 20px;
    border: 1px solid currentColor;
    border-radius: 999px;
}

.nav-cta:hover {
    background: var(--white);
    color: var(--ink);
}

.legal-header .nav-cta:hover {
    background: var(--ink);
    color: var(--white);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 17px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 180ms ease;
}

.hero {
    position: relative;
    height: calc(100svh - 44px);
    min-height: 690px;
    max-height: 900px;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
    object-position: center;
    animation: hero-in 1.4s ease-out both;
}

.hero-shade {
    background: rgba(5, 7, 8, 0.57);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(100%, var(--max-width));
    height: 100%;
    margin: 0 auto;
    flex-direction: column;
    justify-content: flex-end;
    padding: 150px var(--page-pad) 72px;
}

.hero h1 {
    margin: 12px 0 34px;
    font-size: 128px;
    line-height: 0.9;
    color: var(--white);
}

.eyebrow {
    margin-bottom: 22px;
    color: var(--clay-dark);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
    text-transform: uppercase;
}

.eyebrow.light {
    color: rgba(255, 255, 255, 0.72);
}

.hero-bottom {
    display: grid;
    grid-template-columns: minmax(300px, 590px) auto;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    padding-top: 28px;
}

.hero-bottom p {
    max-width: 570px;
    margin: 0;
    font-size: 21px;
    line-height: 1.45;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 0 22px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.button-light {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

.button-light:hover {
    background: transparent;
    color: var(--white);
}

.button-large {
    min-height: 58px;
    padding: 0 28px;
    font-size: 16px;
}

.scroll-cue {
    position: absolute;
    z-index: 3;
    right: var(--page-pad);
    bottom: 28px;
    display: none;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
}

.section {
    padding: 120px var(--page-pad);
}

.section > * {
    width: min(100%, var(--max-width));
    margin-right: auto;
    margin-left: auto;
}

.section-index {
    margin-bottom: 72px;
    color: var(--gray);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.intro-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
    gap: 9%;
    align-items: end;
}

.intro h2,
.section-head h2,
.commercial h2 {
    margin-bottom: 0;
    font-size: 58px;
    line-height: 1.06;
}

.intro-detail p:last-child {
    margin-bottom: 0;
}

.section-rule {
    position: relative;
}

.section-rule::before {
    position: absolute;
    top: 0;
    right: var(--page-pad);
    left: var(--page-pad);
    height: 1px;
    max-width: var(--max-width);
    margin: auto;
    background: rgba(11, 13, 14, 0.18);
    content: '';
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 9%;
    align-items: end;
    margin-bottom: 76px;
}

.section-lead {
    max-width: 390px;
    margin-bottom: 5px;
    color: var(--gray);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(11, 13, 14, 0.24);
}

.service-item {
    position: relative;
    min-height: 460px;
    padding: 28px 30px 32px;
    border-right: 1px solid rgba(11, 13, 14, 0.24);
}

.service-item:first-child {
    border-left: 1px solid rgba(11, 13, 14, 0.24);
}

.service-number {
    display: block;
    margin-bottom: 88px;
    color: var(--gray);
    font-size: 12px;
}

.service-item h3 {
    max-width: 300px;
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 1.08;
}

.service-item p {
    color: var(--gray);
}

.service-item ul {
    position: absolute;
    right: 30px;
    bottom: 28px;
    left: 30px;
    margin: 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(11, 13, 14, 0.16);
    list-style: none;
    font-size: 13px;
}

.service-item li {
    display: inline;
}

.service-item li + li::before {
    margin: 0 8px;
    content: '/';
    color: var(--gray);
}

.featured-service {
    background: var(--clay);
    color: var(--white);
}

.featured-service p,
.featured-service .service-number {
    color: var(--white);
}

.featured-service ul {
    border-color: rgba(255, 255, 255, 0.3);
}

.featured-service li + li::before {
    color: var(--white);
}

.editorial-break {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: var(--ink);
}

.editorial-break picture,
.editorial-break img {
    display: block;
    width: 100%;
}

.editorial-break img {
    height: clamp(380px, 50vw, 680px);
    object-fit: cover;
    object-position: center;
}

.section-dark {
    background: var(--ink-soft);
    color: var(--white);
}

.section-dark .section-index {
    color: rgba(255, 255, 255, 0.48);
}

.method-intro {
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    gap: 7%;
    align-items: start;
    margin-bottom: 90px;
}

.method-intro h2 {
    margin-bottom: 0;
    font-size: 68px;
    line-height: 1;
}

.steps {
    display: grid;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    list-style: none;
}

.steps li {
    min-height: 330px;
    padding: 26px 24px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.steps li + li {
    padding-left: 24px;
}

.steps span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
}

.steps h3 {
    margin: 86px 0 16px;
    font-size: 24px;
}

.steps p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 15px;
}

.principles-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 9%;
}

.principle-main {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px;
    background: var(--clay);
    color: var(--white);
}

.principle-label {
    margin-bottom: 52px;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.quote {
    max-width: 720px;
    margin-bottom: 70px;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.12;
}

.quote-caption {
    margin-bottom: 0;
    color: var(--white);
    font-size: 14px;
}

.principle-list {
    margin: 0;
}

.principle-list div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-top: 1px solid rgba(11, 13, 14, 0.2);
}

.principle-list dt {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
}

.principle-list dd {
    margin: 0;
    color: var(--gray);
}

.commercial-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
    gap: 12%;
}

.commercial-copy {
    padding-top: 35px;
}

.commercial-questions {
    margin: 64px 0 0;
    padding: 0;
    border-top: 1px solid rgba(11, 13, 14, 0.2);
    list-style: none;
}

.commercial-questions li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(11, 13, 14, 0.2);
}

.commercial-questions span {
    padding-top: 3px;
    color: var(--gray);
    font-size: 11px;
}

.commercial-questions p {
    max-width: 520px;
    margin: 0;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

.commercial-copy p {
    color: var(--gray);
}

.text-link {
    display: inline-flex;
    gap: 14px;
    margin-top: 18px;
    font-weight: 600;
}

.contact {
    background: var(--ink);
    color: var(--white);
}

.contact-layout {
    display: grid;
    min-height: 620px;
    grid-template-columns: minmax(0, 0.82fr) minmax(460px, 0.72fr);
    gap: 10%;
    align-items: center;
}

.contact h2 {
    max-width: 720px;
    margin: 0 0 36px;
    font-size: 68px;
    line-height: 1;
}

.contact-copy > p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 18px;
}

.contact-copy .button {
    margin-top: 24px;
}

.contact-form {
    padding: 40px;
    border-radius: 4px;
    background: var(--paper);
    color: var(--ink);
}

.form-heading {
    margin-bottom: 34px;
}

.form-kicker {
    margin-bottom: 10px;
    color: var(--clay-dark);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.form-heading h3 {
    margin-bottom: 0;
    font-size: 30px;
    line-height: 1.15;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-form label:not(.form-consent) {
    display: block;
    margin-bottom: 22px;
}

.contact-form label:not(.form-consent) > span:first-child {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
}

.contact-form input:not([type='checkbox']),
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #b8bab5;
    border-radius: 3px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-size: 15px;
}

.contact-form input:not([type='checkbox']),
.contact-form select {
    height: 48px;
    padding: 0 13px;
}

.contact-form textarea {
    min-height: 132px;
    padding: 12px 13px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--clay);
    outline: 2px solid rgba(155, 79, 56, 0.2);
    outline-offset: 1px;
}

.form-consent {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 11px;
    align-items: start;
    margin: 2px 0 26px;
    color: var(--gray);
    font-size: 12px;
    line-height: 1.5;
}

.form-consent input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: var(--clay);
}

.form-consent span:first-child {
    margin-bottom: 0;
    font-size: inherit;
    font-weight: 400;
}

.button-dark {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.button-dark:hover {
    background: transparent;
    color: var(--ink);
}

.button-dark:disabled {
    cursor: wait;
    opacity: 0.68;
}

.form-status {
    margin: 20px 0 0;
    padding: 14px 16px;
    border-left: 3px solid var(--clay);
    background: #e9e9e4;
    color: #4e514e;
    font-size: 13px;
    line-height: 1.5;
}

.form-status:empty {
    display: none;
}

.site-footer {
    padding: 82px var(--page-pad) 28px;
    background: var(--ink);
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-brand,
.footer-grid,
.footer-bottom {
    width: min(100%, var(--max-width));
    margin-right: auto;
    margin-left: auto;
}

.footer-brand {
    margin-bottom: 82px;
    font-family: var(--font-display);
    font-size: 94px;
    font-weight: 700;
    line-height: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 70px;
    padding: 36px 0 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-grid p,
.footer-grid a {
    display: block;
    max-width: 400px;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
}

.footer-label {
    margin-bottom: 16px !important;
    color: var(--white) !important;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* Legal pages */
.legal-main {
    padding: 100px var(--page-pad) 140px;
}

.legal-hero,
.legal-layout {
    width: min(100%, 1120px);
    margin-right: auto;
    margin-left: auto;
}

.legal-hero {
    padding-bottom: 78px;
    border-bottom: 1px solid rgba(11, 13, 14, 0.2);
}

.legal-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: 76px;
    line-height: 1;
}

.legal-hero p:last-child {
    max-width: 700px;
    margin: 28px 0 0;
    color: var(--gray);
}

.legal-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 720px);
    gap: 80px;
    padding-top: 70px;
}

.legal-aside {
    align-self: start;
    position: sticky;
    top: 30px;
    color: var(--gray);
    font-size: 13px;
}

.legal-aside strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
}

.legal-content section + section {
    margin-top: 56px;
    padding-top: 52px;
    border-top: 1px solid rgba(11, 13, 14, 0.15);
}

.legal-content h2 {
    margin-bottom: 22px;
    font-size: 28px;
    line-height: 1.2;
}

.legal-content h3 {
    margin: 30px 0 12px;
    font-size: 18px;
}

.legal-content p,
.legal-content li {
    color: #4e514e;
}

.legal-content ul {
    padding-left: 22px;
}

.legal-note {
    padding: 24px;
    border-left: 3px solid var(--clay);
    background: #ecece7;
}

.error-page {
    min-height: 100svh;
    background: var(--ink);
    color: var(--white);
}

.error-page main {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    justify-content: space-between;
    padding: 42px var(--page-pad) 72px;
}

.error-page main > div {
    width: min(100%, 1000px);
}

.error-page h1 {
    margin-bottom: 48px;
    font-size: 76px;
    line-height: 1;
}

@keyframes hero-in {
    from { opacity: 0; transform: scale(1.025); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1080px) {
    :root { --page-pad: 32px; }

    .hero h1 { font-size: 96px; }
    .intro h2,
    .section-head h2,
    .commercial h2 { font-size: 48px; }
    .method-intro h2 { font-size: 56px; }
    .contact h2 { font-size: 58px; }
    .service-item { min-height: 510px; padding-right: 22px; padding-left: 22px; }
    .service-item ul { right: 22px; left: 22px; }
    .principle-main { padding: 36px; }
    .quote { font-size: 40px; }
}

@media (max-width: 840px) {
    :root { --header-height: 72px; }

    .site-header { padding-right: 22px; padding-left: 22px; }
    .menu-toggle { display: block; }
    .site-nav {
        position: fixed;
        inset: var(--header-height) 0 auto;
        display: none;
        min-height: calc(100svh - var(--header-height));
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 34px 22px;
        background: var(--ink);
        color: var(--white);
    }
    .legal-header .site-nav { background: var(--paper); color: var(--ink); }
    .menu-open .site-nav { display: flex; }
    .site-nav a { padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); font-size: 22px; }
    .legal-header .site-nav a { border-color: rgba(11, 13, 14, 0.18); }
    .site-nav .nav-cta { margin-top: 24px; justify-content: center; border: 1px solid currentColor; }
    .menu-open .menu-toggle span:not(.sr-only):first-of-type { transform: translateY(3px) rotate(45deg); }
    .menu-open .menu-toggle span:not(.sr-only):last-of-type { transform: translateY(-3px) rotate(-45deg); }

    .hero { min-height: 660px; }
    .hero-content { padding: 130px 24px 58px; }
    .hero h1 { font-size: 72px; }
    .hero-bottom { grid-template-columns: 1fr; gap: 26px; }
    .hero-bottom p { font-size: 18px; }
    .hero-bottom .button { justify-self: start; }
    .hero-shade { background: rgba(5, 7, 8, 0.6); }

    .section { padding: 90px 24px; }
    .section-rule::before { right: 24px; left: 24px; }
    .section-index { margin-bottom: 50px; }
    .intro-copy,
    .section-head,
    .method-intro,
    .principles-grid,
    .commercial-layout,
    .contact-layout { grid-template-columns: 1fr; gap: 46px; }
    .section-head { margin-bottom: 54px; }
    .section-lead { margin: 0; }
    .service-list { grid-template-columns: 1fr; border-top: 0; }
    .service-item,
    .service-item:first-child { min-height: 390px; border: 1px solid rgba(11, 13, 14, 0.22); border-bottom: 0; }
    .service-item:last-child { border-bottom: 1px solid rgba(11, 13, 14, 0.22); }
    .service-number { margin-bottom: 54px; }
    .method-intro { margin-bottom: 65px; }
    .steps { grid-template-columns: 1fr 1fr; }
    .steps li { min-height: 290px; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
    .steps li:nth-child(2n) { border-right: 0; }
    .steps h3 { margin-top: 62px; }
    .principle-main { min-height: 430px; }
    .commercial-copy { padding-top: 0; }
    .commercial-questions { margin-top: 38px; }
    .footer-brand { font-size: 70px; }

    .legal-main { padding: 72px 24px 100px; }
    .legal-hero h1 { font-size: 56px; }
    .legal-layout { grid-template-columns: 1fr; gap: 38px; }
    .legal-aside { position: static; }
}

@media (max-width: 560px) {
    body { font-size: 16px; }
    .brand-mark { width: 32px; height: 32px; }
    .hero { height: calc(100svh - 24px); min-height: 640px; max-height: 780px; }
    .hero-image { object-position: 58% center; }
    .hero-content { padding-bottom: 42px; }
    .hero h1 { margin-top: 8px; font-size: 58px; }
    .hero-bottom { padding-top: 20px; }
    .hero-bottom p { font-size: 16px; }
    .button { gap: 18px; }
    .intro h2,
    .section-head h2,
    .commercial h2 { font-size: 38px; }
    .method-intro h2 { font-size: 44px; }
    .editorial-break img { height: 410px; object-position: 38% center; }
    .steps { grid-template-columns: 1fr; }
    .steps li,
    .steps li + li { min-height: 240px; padding: 24px 0; border-right: 0; }
    .steps h3 { margin-top: 48px; }
    .principle-main { min-height: 380px; padding: 28px; }
    .quote { font-size: 32px; }
    .principle-list div { grid-template-columns: 1fr; gap: 8px; }
    .contact h2 { font-size: 48px; }
    .contact .button { width: 100%; gap: 12px; padding-right: 14px; padding-left: 14px; font-size: 14px; }
    .contact-form { padding: 26px 22px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .site-footer { padding-right: 24px; padding-left: 24px; }
    .footer-brand { margin-bottom: 52px; font-size: 52px; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
    .legal-hero h1 { font-size: 44px; }
}

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