:root {
    --black: #070707;
    --graphite: #101010;
    --graphite-2: #191919;
    --graphite-3: #242424;
    --ink: #161616;
    --muted: #8f8b82;
    --muted-light: rgba(255, 255, 255, 0.68);
    --line: rgba(255, 255, 255, 0.13);
    --line-dark: rgba(0, 0, 0, 0.12);
    --paper: #f2eee7;
    --white: #ffffff;
    --accent: #f2a21b;
    --accent-soft: #ffbf4c;
    --accent-dark: #8b5707;
    --radius: 8px;
    --shadow: 0 28px 84px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--black);
    line-height: 1.5;
}

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

a {
    color: inherit;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3,
p,
blockquote {
    margin: 0;
}

h1,
h2,
h3 {
    line-height: 0.98;
    letter-spacing: 0;
}

h1 {
    max-width: 760px;
    font-size: 3.55rem;
    font-weight: 800;
}

h2 {
    font-size: 2.45rem;
    font-weight: 800;
}

h3 {
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.08;
}

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

.narrow {
    width: min(780px, calc(100% - 32px));
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 16px;
    color: var(--white);
}

.site-header.solid {
    position: sticky;
    background: rgba(7, 7, 7, 0.94);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0;
}

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--accent-soft);
}

.nav-links {
    display: none;
    gap: 26px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

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

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--white);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--black);
}

.hero-image,
.story-panel > img,
.showroom-panel > img,
.category-card > img,
.final-cta > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    position: absolute;
    inset: 0;
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.18)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.36));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-block: 112px 136px;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--accent-soft);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-copy {
    max-width: 560px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.18rem;
}

.page-hero {
    min-height: 82svh;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.breadcrumbs a {
    color: var(--white);
    text-decoration: none;
}

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

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 13px 21px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
    background: var(--accent);
    color: #130e07;
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--accent-soft);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.34);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(255, 255, 255, 0.64);
    background: rgba(255, 255, 255, 0.1);
}

.status-line {
    color: var(--white);
    background: var(--black);
}

.status-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: center;
    justify-content: center;
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
}

.status-inner p:first-child {
    color: var(--white);
    font-weight: 800;
}

.status-inner span {
    position: relative;
    font-weight: 800;
}

.status-inner span::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--accent);
    vertical-align: 0.08em;
}

.section {
    padding-block: 86px;
}

.section-kicker {
    max-width: 860px;
}

.section-kicker h2,
.category-heading h2,
.form-copy h2 {
    color: inherit;
}

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

.transformation {
    color: var(--white);
    background: var(--black);
}

.showroom-grid {
    display: grid;
    gap: 1px;
    margin-top: 48px;
    background: var(--line);
}

.showroom-panel {
    position: relative;
    min-height: 360px;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: 28px;
    background: var(--graphite);
}

.showroom-panel.problem {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
        var(--graphite-2);
}

.showroom-panel.result {
    background:
        linear-gradient(135deg, rgba(242, 162, 27, 0.18), transparent 46%),
        var(--graphite);
}

.showroom-panel.image-panel {
    min-height: 520px;
}

.showroom-panel > img {
    position: absolute;
    inset: 0;
    opacity: 0.82;
}

.showroom-panel.image-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 58%);
}

.showroom-panel > div {
    position: relative;
    z-index: 2;
    max-width: 410px;
}

.showroom-panel p:not(.eyebrow) {
    margin-top: 14px;
    color: var(--muted-light);
}

.benefits {
    border-top: 1px solid var(--line);
}

.benefit-grid {
    display: grid;
    gap: 1px;
    margin-top: 48px;
    background: var(--line);
    border: 1px solid var(--line);
}

.benefit-card {
    min-height: 220px;
    padding: 28px;
    background: var(--black);
    transition: transform 180ms ease, background 180ms ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    background: var(--graphite);
}

.benefit-card span {
    display: block;
    margin-bottom: 38px;
    color: var(--accent-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.benefit-card p {
    margin-top: 12px;
    color: var(--muted-light);
}

.image-story {
    background: var(--black);
}

.story-panel {
    position: relative;
    min-height: 86svh;
    overflow: hidden;
    color: var(--white);
    background: var(--black);
}

.story-panel > img {
    position: absolute;
    inset: 0;
    opacity: 0.82;
    transform: scale(1.03);
}

.story-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 45%, rgba(0, 0, 0, 0.22)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 62%);
}

.story-copy {
    position: absolute;
    right: 16px;
    bottom: 48px;
    left: 16px;
    z-index: 2;
    max-width: 760px;
}

.categories {
    color: var(--ink);
    background: var(--paper);
}

.category-heading {
    display: grid;
    gap: 22px;
    margin-bottom: 42px;
}

.category-heading > p {
    max-width: 420px;
    color: var(--muted);
}

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

.category-card {
    position: relative;
    aspect-ratio: 4 / 5;
    min-height: 390px;
    overflow: hidden;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--graphite);
}

.category-card > img {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.78;
    transform: scale(1.02);
    transition: transform 360ms ease, opacity 360ms ease;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.12) 58%);
    pointer-events: none;
}

.category-card:hover > img {
    opacity: 0.9;
    transform: scale(1.045);
}

.category-card > div {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 2;
}

.category-card p {
    margin-bottom: 18px;
    color: var(--accent-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.category-card span {
    display: block;
    max-width: 360px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.76);
}

.category-card {
    text-decoration: none;
}

.two-column {
    display: grid;
    gap: 34px;
}

.category-detail {
    color: var(--white);
    background: var(--graphite);
}

.category-detail .section-kicker p:not(.eyebrow),
.text-panel p {
    margin-top: 18px;
    color: var(--muted-light);
}

.feature-list {
    display: grid;
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.feature-list article,
.text-panel {
    padding: 24px;
    background: rgba(255, 255, 255, 0.045);
}

.feature-list h3 {
    color: var(--white);
}

.compact-story .story-panel {
    min-height: 72svh;
}

.related-links {
    display: grid;
    gap: 12px;
}

.related-link {
    display: grid;
    gap: 8px;
    padding: 20px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.58);
    text-decoration: none;
}

.related-link span {
    font-weight: 800;
}

.related-link small {
    color: var(--muted);
    font-size: 0.94rem;
}

.teaser-split .text-panel {
    display: grid;
    gap: 18px;
    align-content: start;
    border: 1px solid var(--line);
}

.designer-grid .benefit-card {
    min-height: 190px;
}

.product-catalog {
    color: var(--ink);
    background: var(--paper);
}

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

.product-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.1);
}

.product-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    display: block;
    overflow: hidden;
    background: var(--graphite);
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease, opacity 360ms ease;
}

.product-card:hover .product-card-media img {
    opacity: 0.9;
    transform: scale(1.035);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(7, 7, 7, 0.82);
    color: var(--accent-soft);
    font-size: 0.78rem;
    font-weight: 800;
}

.product-card-copy {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 22px;
}

.product-card-copy p {
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.product-card-copy h3 a {
    text-decoration: none;
}

.product-card-copy > span,
.catalog-empty p:not(.eyebrow),
.catalog-note {
    color: var(--muted);
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.button-secondary.dark {
    border-color: rgba(0, 0, 0, 0.16);
    background: rgba(0, 0, 0, 0.04);
    color: var(--ink);
}

.button-secondary.dark:hover,
.button-secondary.dark:focus-visible {
    border-color: rgba(0, 0, 0, 0.32);
    background: rgba(0, 0, 0, 0.07);
}

.catalog-empty {
    display: grid;
    gap: 18px;
    padding: 28px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: var(--white);
}

.product-hero {
    min-height: 84svh;
}

.product-detail-section {
    color: var(--white);
    background: var(--graphite);
}

.product-detail-layout {
    display: grid;
    gap: 28px;
}

.product-detail-copy p:not(.eyebrow) {
    max-width: 760px;
    margin-top: 18px;
    color: var(--muted-light);
}

.product-spec-panel {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
}

.product-spec-panel h2 {
    font-size: 1.6rem;
}

.product-spec-panel dl {
    display: grid;
    gap: 0;
    margin: 20px 0 0;
}

.product-spec-panel dt {
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--accent-soft);
    font-weight: 800;
}

.product-spec-panel dd {
    margin: 6px 0 14px;
    color: var(--muted-light);
}

.product-gallery-section {
    color: var(--ink);
    background: var(--paper);
}

.product-gallery {
    display: grid;
    gap: 14px;
}

.product-gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--graphite);
}

.product-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.content-list-section {
    color: var(--ink);
    background: var(--paper);
}

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

.content-card {
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: var(--white);
}

.content-card-media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--graphite);
}

.content-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease, opacity 360ms ease;
}

.content-card:hover .content-card-media img {
    opacity: 0.9;
    transform: scale(1.035);
}

.content-card > div {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.content-card p {
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.content-card h3 a,
.content-link {
    text-decoration: none;
}

.content-card span {
    color: var(--muted);
}

.content-link {
    color: var(--ink);
    font-weight: 800;
}

.content-article-section {
    color: var(--ink);
    background: var(--paper);
}

.content-article {
    max-width: 820px;
    color: #3d3932;
    font-size: 1.08rem;
    line-height: 1.75;
}

.contact-page {
    padding-bottom: 0;
}

.quote-section {
    padding-block: 102px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(242, 162, 27, 0.09), transparent 42%),
        var(--black);
}

blockquote {
    max-width: 980px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 2.05rem;
    font-weight: 800;
    line-height: 1.12;
}

.form-section {
    color: var(--white);
    background: var(--graphite);
}

.form-layout {
    display: grid;
    gap: 40px;
}

.form-copy {
    align-self: start;
}

.form-copy p:not(.eyebrow) {
    max-width: 500px;
    margin-top: 18px;
    color: var(--muted-light);
}

.lead-promise {
    display: grid;
    gap: 1px;
    margin-top: 34px;
    border: 1px solid var(--line);
    background: var(--line);
}

.lead-promise span {
    padding: 15px 16px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.lead-form {
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
        var(--black);
    box-shadow: var(--shadow);
}

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

label,
fieldset {
    display: grid;
    gap: 8px;
    min-width: 0;
}

label > span,
legend {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 800;
}

fieldset {
    min-inline-size: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.075);
    color: var(--white);
    font: inherit;
    padding: 14px;
}

select option {
    color: var(--ink);
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(242, 162, 27, 0.26);
    border-color: rgba(242, 162, 27, 0.72);
}

.choice-grid {
    display: grid;
    gap: 10px;
}

.choice-grid label,
.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
}

.choice-grid input,
.consent input {
    width: auto;
    margin-top: 5px;
    accent-color: var(--accent);
}

.consent span {
    color: var(--muted-light);
    font-weight: 400;
}

.consent a {
    color: var(--accent-soft);
    font-weight: 800;
}

.form-submit {
    width: 100%;
    border: 0;
    font-size: 1rem;
}

.form-note {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

.form-message {
    padding: 14px 16px;
    border-radius: var(--radius);
}

.form-message ul {
    margin-block: 6px 0;
}

.form-message.success {
    color: #0c2613;
    border: 1px solid #8dbb7e;
    background: #f1faed;
}

.form-message.error {
    color: #33110b;
    border: 1px solid #bd786e;
    background: #fff1ed;
}

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

.final-cta {
    position: relative;
    min-height: 92svh;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding-block: 104px;
    color: var(--white);
    background: var(--black);
}

.final-cta > img,
.final-overlay {
    position: absolute;
    inset: 0;
}

.final-cta > img {
    opacity: 0.78;
    transform: scale(1.03);
}

.final-overlay {
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.16) 58%, rgba(0, 0, 0, 0.42)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.76), transparent 66%);
}

.final-content {
    position: relative;
    z-index: 2;
}

.final-content h2 {
    max-width: 900px;
    margin-bottom: 30px;
}

.site-footer {
    padding-block: 34px;
    color: rgba(255, 255, 255, 0.72);
    background: var(--black);
}

.footer-grid {
    display: grid;
    gap: 18px;
}

.footer-grid p {
    max-width: 660px;
    margin-top: 8px;
}

.footer-grid a {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
}

.plain-page {
    background: var(--white);
}

.legal {
    padding-top: 64px;
    background: var(--white);
}

.legal h1 {
    color: var(--graphite);
    font-size: 3rem;
}

.legal h2 {
    margin-top: 34px;
    font-size: 1.35rem;
}

.legal p {
    color: #6f6c66;
}

.effects-ready .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.effects-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 680px) {
    h1 {
        font-size: 5rem;
    }

    h2 {
        font-size: 3.45rem;
    }

    .site-header {
        padding-inline: 32px;
    }

    .nav-links {
        display: flex;
    }

    .hero-copy {
        font-size: 1.28rem;
    }

    .lead-promise,
    .field-grid,
    .choice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    blockquote {
        font-size: 3rem;
    }
}

@media (min-width: 980px) {
    h1 {
        font-size: 6.3rem;
    }

    h2 {
        font-size: 4.4rem;
    }

    .site-header {
        padding: 24px 44px;
    }

    .hero-content {
        padding-block: 136px 156px;
    }

    .section {
        padding-block: 124px;
    }

    .status-inner {
        justify-content: space-between;
        padding-block: 22px;
    }

    .showroom-grid {
        grid-template-columns: 0.82fr 1.36fr 0.82fr;
    }

    .showroom-panel {
        min-height: 620px;
        padding: 34px;
    }

    .showroom-panel.image-panel {
        min-height: 620px;
    }

    .benefit-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .story-copy {
        right: auto;
        bottom: 80px;
        left: max(44px, calc((100vw - 1180px) / 2));
    }

    .story-panel-right .story-copy {
        right: max(44px, calc((100vw - 1180px) / 2));
        left: auto;
        text-align: right;
    }

    .story-panel-right::after {
        background:
            linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 45%, rgba(0, 0, 0, 0.22)),
            linear-gradient(270deg, rgba(0, 0, 0, 0.72), transparent 62%);
    }

    .category-heading,
    .form-layout {
        grid-template-columns: 0.82fr 1.18fr;
        align-items: start;
    }

    .two-column {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: start;
    }

    .related-links {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .product-detail-layout {
        grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
        align-items: start;
    }

    .product-spec-panel {
        position: sticky;
        top: 34px;
    }

    .product-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .category-card {
        min-height: 360px;
    }

    .form-copy {
        position: sticky;
        top: 34px;
    }

    .lead-form {
        padding: 34px;
    }

    blockquote {
        font-size: 4.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr auto;
        align-items: start;
    }
}

@media (min-width: 1180px) {
    h1 {
        font-size: 7.1rem;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .effects-ready .reveal {
        opacity: 1;
        transform: none;
    }
}
