:root {
    --cream: #efe5d2;
    --paper: #f8f2e7;
    --ink: #23251f;
    --forest: #163d2f;
    --forest-soft: #2f5a46;
    --clay: #d85d3d;
    --sky: #a9d1d3;
    --sand: #d7bf98;
    --line: rgba(35, 37, 31, 0.28);
    --serif: Georgia, "Times New Roman", serif;
    --sans: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    z-index: 100;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: 0.09;
    background-image:
        radial-gradient(circle at 21% 27%, #000 0 0.4px, transparent 0.55px),
        radial-gradient(circle at 69% 63%, #000 0 0.3px, transparent 0.45px);
    background-size: 7px 9px, 9px 7px;
}

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

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

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

.skip-link {
    position: fixed;
    z-index: 200;
    top: 1rem;
    left: 1rem;
    padding: 0.8rem 1rem;
    transform: translateY(-180%);
    background: var(--forest);
    color: var(--paper);
    font-weight: 700;
}

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

.site-header {
    position: relative;
    z-index: 20;
    display: flex;
    min-height: 104px;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem clamp(1.2rem, 4vw, 5rem);
    border-bottom: 1px solid var(--line);
    background: var(--cream);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1;
    text-decoration: none;
}

.brand i {
    display: inline-block;
    width: 0.7rem;
    height: 1.45rem;
    border-radius: 100% 0 100% 0;
    background: var(--clay);
    transform: rotate(18deg);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.2rem, 2.5vw, 3rem);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.desktop-nav a:not(.nav-contact):hover {
    color: var(--clay);
}

.nav-contact {
    padding: 0.75rem 1.15rem;
    border: 1px solid var(--forest);
    border-radius: 999px;
    transition: background-color 160ms ease, color 160ms ease;
}

.nav-contact:hover {
    background: var(--forest);
    color: var(--paper);
}

.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    display: grid;
    min-height: min(900px, calc(100vh - 104px));
    grid-template-columns: 1.08fr 0.92fr;
    grid-template-rows: 1fr auto;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem clamp(1.2rem, 5.3vw, 7rem) 5rem;
}

.eyebrow,
.section-label,
.legal-label {
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--forest);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-label::before,
.legal-label::before {
    display: inline-block;
    width: 2rem;
    height: 1px;
    margin-right: 0.8rem;
    vertical-align: middle;
    background: currentColor;
    content: "";
}

.hero h1,
.story h2,
.rhythm h2,
.approach h2,
.formats h2,
.details h2,
.contact h2,
.legal-hero h1,
.not-found h1 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.86;
}

.hero h1 {
    max-width: 900px;
    font-size: clamp(4.8rem, 9vw, 9.2rem);
}

.hero h1 em,
.story h2 em,
.rhythm h2 em,
.approach h2 em,
.formats h2 em,
.details h2 em,
.contact h2 em,
.legal-hero h1 em,
.not-found h1 em {
    color: var(--clay);
    font-weight: 400;
}

.hero-lede {
    max-width: 36rem;
    margin: 3.2rem 0 2.7rem;
    font-size: clamp(1.08rem, 1.55vw, 1.4rem);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.button {
    display: inline-flex;
    min-height: 3.7rem;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 1.4rem;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-forest {
    background: var(--forest);
    color: var(--paper);
}

.button-forest:hover {
    background: var(--clay);
}

.button-cream {
    background: var(--paper);
    color: var(--forest);
}

.button-cream:hover {
    background: var(--sky);
}

.quiet-link {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hero-garden {
    position: relative;
    display: grid;
    min-height: 690px;
    place-items: center;
    overflow: hidden;
    border-left: 1px solid var(--line);
    background: var(--sky);
}

.sun-shape {
    position: absolute;
    top: 11%;
    right: 10%;
    width: 28%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--clay);
}

.arch-shape {
    position: absolute;
    bottom: -8%;
    left: 15%;
    width: 64%;
    aspect-ratio: 0.72;
    border: 1px solid var(--ink);
    border-radius: 50% 50% 0 0;
    background: var(--forest);
    box-shadow: 20px 20px 0 var(--sand);
}

.arch-shape::after {
    position: absolute;
    bottom: 0;
    left: 21%;
    width: 58%;
    height: 66%;
    border: 1px solid var(--ink);
    border-bottom: 0;
    border-radius: 50% 50% 0 0;
    background: var(--cream);
    content: "";
}

.leaf {
    position: absolute;
    z-index: 2;
    width: 12%;
    height: 24%;
    border: 1px solid var(--ink);
    border-radius: 100% 0 100% 0;
}

.leaf-one {
    top: 19%;
    left: 14%;
    background: var(--paper);
    transform: rotate(-28deg);
}

.leaf-two {
    top: 33%;
    right: 8%;
    background: var(--sand);
    transform: rotate(32deg);
}

.leaf-three {
    right: 22%;
    bottom: 8%;
    background: var(--clay);
    transform: rotate(75deg);
}

.hero-garden > p {
    position: relative;
    z-index: 3;
    margin: 0;
    color: var(--paper);
    font-family: var(--serif);
    font-size: clamp(3.4rem, 6.2vw, 6.5rem);
    letter-spacing: -0.07em;
    line-height: 0.76;
    text-align: center;
}

.hero-garden > span {
    position: absolute;
    z-index: 3;
    bottom: 1.8rem;
    left: 1.8rem;
    color: var(--paper);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.hero-foot {
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    padding: 1.1rem clamp(1.2rem, 4vw, 5rem);
    border-top: 1px solid var(--line);
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.section-pad {
    padding: clamp(5.5rem, 10vw, 11rem) clamp(1.2rem, 5.3vw, 7rem);
}

.story {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.story-copy {
    display: grid;
    grid-template-columns: 1.45fr 0.55fr;
    gap: clamp(3rem, 8vw, 10rem);
    align-items: end;
}

.story h2,
.formats h2,
.details h2 {
    font-size: clamp(4.4rem, 8.2vw, 9rem);
}

.story-text {
    padding-left: 1.5rem;
    border-left: 1px solid var(--ink);
}

.story-text p:last-child {
    margin-bottom: 0;
}

.rhythm {
    display: grid;
    grid-template-columns: 0.74fr 1.26fr;
    border-bottom: 1px solid var(--line);
}

.rhythm-intro {
    display: flex;
    min-height: 760px;
    flex-direction: column;
    justify-content: center;
    padding: clamp(5rem, 8vw, 9rem) clamp(1.2rem, 5.3vw, 7rem);
    border-right: 1px solid var(--line);
    background: var(--forest);
    color: var(--paper);
}

.rhythm-intro .section-label {
    color: var(--sky);
}

.rhythm h2 {
    font-size: clamp(4rem, 7vw, 7rem);
}

.rhythm h2 em {
    color: var(--sand);
}

.rhythm-intro > p:last-child {
    max-width: 23rem;
    margin: 3rem 0 0;
    font-size: 1.05rem;
}

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

.rhythm-steps article {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    border-right: 1px solid var(--line);
}

.rhythm-steps article:last-child {
    border-right: 0;
}

.rhythm-steps article > span {
    font-size: 0.6rem;
    font-weight: 800;
}

.step-orbit {
    width: 100%;
    aspect-ratio: 1;
    margin: auto 0;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--clay);
}

.orbit-tall {
    aspect-ratio: 0.62;
    border-radius: 50% 50% 0 0;
    background: var(--sky);
}

.orbit-wide {
    aspect-ratio: 1.45;
    background: var(--sand);
}

.rhythm-steps h3 {
    margin: 1.5rem 0 1rem;
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3.3rem);
    font-weight: 400;
    letter-spacing: -0.055em;
}

.rhythm-steps p {
    margin: 0;
    font-size: 0.9rem;
}

.approach {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(4rem, 9vw, 11rem);
    align-items: center;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.approach-art {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    border: 1px solid var(--ink);
    border-radius: 50% 50% 0 0;
    background: var(--sky);
}

.field {
    position: absolute;
    border: 1px solid var(--ink);
    border-radius: 50%;
}

.field-one {
    right: -20%;
    bottom: -32%;
    width: 130%;
    aspect-ratio: 1;
    background: var(--forest);
}

.field-two {
    bottom: -39%;
    left: -23%;
    width: 105%;
    aspect-ratio: 1;
    background: var(--sand);
}

.field-three {
    top: 10%;
    right: 12%;
    width: 24%;
    aspect-ratio: 1;
    background: var(--clay);
}

.approach-art > span {
    position: absolute;
    z-index: 3;
    right: 2rem;
    bottom: 2rem;
    color: var(--paper);
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 4rem);
    letter-spacing: -0.05em;
    line-height: 0.9;
    text-align: right;
}

.approach h2 {
    margin-bottom: 3rem;
    font-size: clamp(4rem, 6.6vw, 7rem);
}

.approach-copy > p:not(.section-label) {
    max-width: 34rem;
    margin-bottom: 2.5rem;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.formats {
    border-bottom: 1px solid var(--line);
}

.formats-head {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    gap: clamp(3rem, 7vw, 9rem);
    margin-bottom: clamp(4rem, 8vw, 8rem);
}

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

.format-card {
    display: flex;
    min-height: 470px;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.7rem;
    border: 1px solid var(--ink);
    border-radius: 48% 48% 0 0;
}

.format-sand {
    background: var(--sand);
}

.format-sky {
    background: var(--sky);
}

.format-clay {
    background: var(--clay);
    color: var(--paper);
}

.format-card > span {
    font-size: 0.6rem;
    font-weight: 800;
}

.format-card h3 {
    margin: auto 0 1.5rem;
    font-family: var(--serif);
    font-size: clamp(2.3rem, 3.5vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.92;
}

.format-card p {
    margin: 0;
}

.statement {
    position: relative;
    display: flex;
    min-height: 680px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5rem 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--sky);
    text-align: center;
}

.statement::before,
.statement::after {
    position: absolute;
    aspect-ratio: 1;
    border: 1px solid var(--ink);
    border-radius: 50%;
    content: "";
}

.statement::before {
    top: -31%;
    left: -12%;
    width: 60%;
    background: var(--sand);
}

.statement::after {
    right: -13%;
    bottom: -46%;
    width: 62%;
    background: var(--forest);
}

.statement p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(5rem, 11vw, 12rem);
    letter-spacing: -0.08em;
    line-height: 0.76;
}

.statement p em {
    color: var(--clay);
}

.statement > span {
    position: absolute;
    z-index: 3;
    right: 2rem;
    bottom: 2rem;
    color: var(--paper);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.details {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(4rem, 9vw, 11rem);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.details-list {
    align-self: end;
}

.details-list > div {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--ink);
}

.details-list span,
.footer-contact > span:first-child {
    color: var(--forest);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.details-list p {
    margin: 0;
}

.contact {
    padding: clamp(6rem, 12vw, 13rem) clamp(1.2rem, 5.3vw, 7rem);
    background: var(--forest);
    color: var(--paper);
    text-align: center;
}

.contact .section-label {
    color: var(--sky);
}

.contact h2 {
    margin-bottom: 4.5rem;
    font-size: clamp(5rem, 10.5vw, 11rem);
}

.contact h2 em {
    color: var(--sand);
}

.contact-note {
    margin: 2rem 0 0;
    color: var(--sky);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.7fr;
    gap: 4rem;
    padding: 5rem clamp(1.2rem, 5.3vw, 7rem) 2rem;
    background: var(--ink);
    color: var(--paper);
}

.brand-footer {
    margin-bottom: 1.5rem;
    font-size: 1.45rem;
}

.footer-brand > p {
    max-width: 27rem;
    margin: 0;
    color: var(--sand);
    font-family: var(--serif);
    font-size: 1.45rem;
    line-height: 1.2;
}

.footer-contact,
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.8rem;
}

.footer-contact > span:first-child {
    margin-bottom: 0.5rem;
    color: var(--sky);
    text-transform: uppercase;
}

.copyright {
    grid-column: 1 / -1;
    margin: 3rem 0 0;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(248, 242, 231, 0.22);
    color: rgba(248, 242, 231, 0.5);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-page {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.legal-hero {
    display: grid;
    min-height: 570px;
    grid-template-columns: 0.55fr 1.7fr;
    align-items: end;
    gap: 4rem;
    padding: clamp(5rem, 9vw, 9rem) clamp(1.2rem, 5.3vw, 7rem) 4rem;
    border-bottom: 1px solid var(--ink);
    background: var(--sand);
}

.legal-forest {
    background: var(--forest);
    color: var(--paper);
}

.legal-forest .legal-label,
.legal-forest h1 em {
    color: var(--sand);
}

.legal-sky {
    background: var(--sky);
}

.legal-clay {
    background: var(--clay);
    color: var(--paper);
}

.legal-clay .legal-label,
.legal-clay h1 em {
    color: var(--paper);
}

.legal-label {
    align-self: start;
    margin: 0;
}

.legal-hero h1 {
    grid-row: span 2;
    font-size: clamp(4.8rem, 9.2vw, 9.5rem);
}

.legal-hero > p:last-child {
    margin: 0;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-content {
    max-width: 1040px;
    margin-left: auto;
    padding: clamp(5rem, 9vw, 9rem) clamp(1.2rem, 7vw, 8rem) clamp(5rem, 9vw, 9rem) 1.2rem;
}

.legal-lede {
    max-width: 47rem;
    margin: 0 0 clamp(4rem, 7vw, 7rem);
    font-family: var(--serif);
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.legal-content section {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 3rem;
    padding: 2.3rem 0;
    border-top: 1px solid var(--line);
}

.legal-content h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
}

.legal-content section > p,
.legal-content section > div {
    max-width: 42rem;
    margin: 0;
}

.legal-content ul {
    margin: 1rem 0 1.3rem;
    padding-left: 1.25rem;
}

.legal-content li {
    margin-bottom: 0.55rem;
}

.legal-content li::marker {
    color: var(--clay);
}

.not-found {
    min-height: calc(100vh - 104px);
    padding: clamp(5rem, 9vw, 9rem) clamp(1.2rem, 5.3vw, 7rem);
    background: var(--sky);
}

.error-code {
    margin-bottom: 3rem;
    color: var(--forest);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.not-found h1 {
    margin-bottom: 3rem;
    font-size: clamp(5.5rem, 12vw, 12rem);
}

.not-found > p:not(.error-code) {
    margin-bottom: 2rem;
    font-size: 1.15rem;
}

@media (max-width: 1040px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        min-height: 680px;
    }

    .hero-garden {
        min-height: 690px;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .story-copy {
        grid-template-columns: 1fr;
    }

    .story-text {
        max-width: 34rem;
        margin-left: auto;
    }

    .rhythm {
        grid-template-columns: 1fr;
    }

    .rhythm-intro {
        min-height: 560px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .rhythm-steps article {
        min-height: 550px;
    }

    .approach {
        grid-template-columns: 1fr;
    }

    .approach-art {
        min-height: 620px;
    }

    .details {
        grid-template-columns: 1fr;
    }

    .details-list {
        max-width: 700px;
        margin-left: auto;
    }
}

@media (max-width: 720px) {
    .site-header {
        min-height: 84px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        position: relative;
        display: block;
    }

    .mobile-nav summary {
        padding: 0.7rem 0;
        cursor: pointer;
        font-size: 0.66rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        list-style: none;
        text-transform: uppercase;
    }

    .mobile-nav summary::-webkit-details-marker {
        display: none;
    }

    .mobile-nav summary::after {
        margin-left: 0.4rem;
        content: "+";
    }

    .mobile-nav[open] summary::after {
        content: "−";
    }

    .mobile-nav nav {
        position: absolute;
        top: 3rem;
        right: 0;
        display: flex;
        width: min(82vw, 290px);
        flex-direction: column;
        border: 1px solid var(--ink);
        background: var(--paper);
        box-shadow: 10px 10px 0 var(--clay);
    }

    .mobile-nav nav a {
        padding: 1rem;
        border-bottom: 1px solid var(--line);
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-decoration: none;
        text-transform: uppercase;
    }

    .mobile-nav nav a:last-child {
        border: 0;
        background: var(--forest);
        color: var(--paper);
    }

    .hero-copy {
        min-height: 650px;
        padding-top: 5rem;
    }

    .hero h1 {
        font-size: clamp(4.4rem, 21vw, 7rem);
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-garden {
        min-height: 560px;
    }

    .arch-shape {
        left: 12%;
        width: 72%;
    }

    .hero-foot {
        gap: 1rem;
    }

    .hero-foot span:nth-child(2) {
        display: none;
    }

    .story h2,
    .formats h2,
    .details h2 {
        font-size: clamp(4rem, 19vw, 6.5rem);
    }

    .story-text {
        margin-left: 0;
    }

    .rhythm-steps {
        grid-template-columns: 1fr;
    }

    .rhythm-steps article {
        min-height: 420px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .step-orbit {
        width: min(68vw, 300px);
        margin: 2.5rem auto;
    }

    .approach-art {
        min-height: 500px;
    }

    .approach h2 {
        font-size: clamp(3.8rem, 18vw, 6rem);
    }

    .formats-head {
        grid-template-columns: 1fr;
    }

    .format-grid {
        grid-template-columns: 1fr;
    }

    .format-card {
        min-height: 390px;
    }

    .statement {
        min-height: 520px;
    }

    .statement p {
        font-size: clamp(4.2rem, 21vw, 7rem);
    }

    .details-list {
        width: 100%;
    }

    .details-list > div {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact h2 {
        font-size: clamp(4.5rem, 21vw, 7rem);
    }

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

    .copyright {
        grid-column: 1;
    }

    .legal-hero {
        min-height: 480px;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .legal-hero h1 {
        grid-row: auto;
        font-size: clamp(4.5rem, 20vw, 7rem);
    }

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

    .legal-content section {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    body {
        background: #fff;
        color: #000;
    }

    body::before,
    .site-header,
    .site-footer,
    .button {
        display: none;
    }

    .legal-hero,
    .legal-content {
        display: block;
        min-height: 0;
        padding: 2rem;
        background: #fff;
        color: #000;
    }
}
