:root {
    --ink: #173b36;
    --ink-deep: #0e2926;
    --paper: #f3f0e8;
    --paper-soft: #e8ece7;
    --paper-warm: #e7ddd1;
    --white: #fffdf8;
    --sage: #6f8b80;
    --sage-light: #c7d4cc;
    --clay: #c98468;
    --line: rgba(23, 59, 54, 0.18);
    --line-light: rgba(243, 240, 232, 0.18);
    --text: #274843;
    --muted: #657873;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', Arial, sans-serif;
    --ease: cubic-bezier(0.2, 0.72, 0.18, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: var(--paper);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    z-index: 20;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
    content: '';
    opacity: 0.045;
    pointer-events: none;
}

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

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

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

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

.shell {
    width: min(calc(100% - 64px), 1320px);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 14px;
    left: 14px;
    padding: 11px 16px;
    transform: translateY(-160%);
    border-radius: 999px;
    background: var(--ink);
    color: var(--paper);
    font-size: 0.78rem;
    text-decoration: none;
}

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

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid rgba(23, 59, 54, 0.1);
    background: rgba(243, 240, 232, 0.9);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
}

.brand strong {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.brand span {
    color: var(--muted);
    font-size: 0.64rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.primary-nav a {
    color: var(--text);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.primary-nav a:not(.nav-cta) {
    padding-block: 10px;
}

.primary-nav a:not(.nav-cta):hover {
    color: var(--clay);
}

.nav-cta {
    padding: 12px 20px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease;
}

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

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
}

.nav-toggle span {
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.3s ease;
}

.nav-toggle[aria-expanded='true'] span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.hero {
    min-height: 100svh;
    padding: 150px 0 96px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
    gap: clamp(52px, 7vw, 112px);
    align-items: center;
}

.eyebrow {
    margin-bottom: 26px;
    color: var(--clay);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.experience-copy h2,
.care-copy h2,
.booking-copy h2 {
    color: var(--ink);
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: -0.045em;
}

.hero h1 {
    max-width: 10.2ch;
    font-size: clamp(4.2rem, 6.6vw, 7.8rem);
    line-height: 0.91;
}

.hero h1 em,
.section-heading h2 em,
.experience-copy h2 em,
.care-copy h2 em,
.booking-copy h2 em {
    color: var(--clay);
    font-weight: 500;
}

.hero-intro {
    max-width: 58ch;
    margin-top: 34px;
    color: var(--muted);
    font-size: 1.04rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.25s var(--ease), background 0.25s ease;
}

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

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

.button--primary:hover,
.button--dark:hover {
    background: var(--clay);
}

.button--dark {
    background: var(--ink-deep);
    color: var(--paper);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 0.76rem;
    font-weight: 600;
    text-decoration: none;
}

.text-link span {
    color: var(--clay);
}

.hero-note {
    display: grid;
    max-width: 560px;
    grid-template-columns: 36px 1fr;
    gap: 18px;
    margin-top: 70px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.hero-note span {
    color: var(--clay);
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.hero-note p {
    max-width: 46ch;
    color: var(--muted);
    font-size: 0.84rem;
}

.hero-visual {
    position: relative;
    min-height: 700px;
    margin: 0;
}

.hero-visual::before {
    position: absolute;
    z-index: -1;
    top: -28px;
    right: -28px;
    width: 72%;
    height: 55%;
    border-radius: 50% 50% 4px 4px;
    background: var(--sage-light);
    content: '';
}

.hero-visual img {
    height: 100%;
    min-height: 700px;
    border-radius: 260px 260px 18px 18px;
    object-fit: cover;
    object-position: 58% center;
    filter: saturate(0.66) contrast(0.94);
}

.visit-card {
    position: absolute;
    right: -18px;
    bottom: 34px;
    width: min(330px, 72%);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 16px;
    background: rgba(255, 253, 248, 0.9);
    backdrop-filter: blur(16px);
}

.visit-card span,
.visit-card strong,
.visit-card small {
    display: block;
}

.visit-card span {
    margin-bottom: 18px;
    color: var(--clay);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.visit-card strong {
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 1.34rem;
    line-height: 1.12;
}

.visit-card small {
    margin-top: 9px;
    color: var(--muted);
    font-size: 0.75rem;
}

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

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

.principles article {
    min-height: 240px;
    padding: 34px 36px;
    border-right: 1px solid var(--line);
}

.principles article:first-child {
    border-left: 1px solid var(--line);
}

.principles article > span {
    color: var(--clay);
    font-family: var(--font-serif);
    font-size: 1.05rem;
}

.principles h2 {
    margin: 56px 0 12px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 500;
}

.principles p {
    max-width: 34ch;
    color: var(--muted);
    font-size: 0.86rem;
}

.section {
    padding: 150px 0;
}

.treatments {
    background: var(--paper-soft);
}

.treatments-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(64px, 9vw, 150px);
    align-items: start;
}

.section-heading {
    position: sticky;
    top: 130px;
}

.section-heading h2,
.experience-copy h2,
.care-copy h2,
.booking-copy h2 {
    font-size: clamp(3.3rem, 5.3vw, 6.8rem);
    line-height: 0.94;
}

.section-heading > p:last-child {
    max-width: 45ch;
    margin-top: 30px;
    color: var(--muted);
}

.treatment-list details {
    border-top: 1px solid var(--line);
}

.treatment-list details:last-child {
    border-bottom: 1px solid var(--line);
}

.treatment-list summary {
    display: grid;
    min-height: 116px;
    grid-template-columns: 46px minmax(0, 1fr) 26px;
    gap: 18px;
    align-items: center;
    color: var(--ink);
    list-style: none;
    cursor: pointer;
}

.treatment-list summary::-webkit-details-marker {
    display: none;
}

.treatment-list summary > span {
    color: var(--clay);
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.treatment-list summary strong {
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 2.1vw, 2.15rem);
    font-weight: 500;
}

.treatment-list summary i {
    position: relative;
    width: 18px;
    height: 18px;
}

.treatment-list summary i::before,
.treatment-list summary i::after {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 14px;
    height: 1px;
    background: var(--ink);
    content: '';
    transition: transform 0.25s ease;
}

.treatment-list summary i::after {
    transform: rotate(90deg);
}

.treatment-list details[open] summary i::after {
    transform: rotate(0);
}

.treatment-list details > p {
    max-width: 56ch;
    padding: 0 48px 34px 64px;
    color: var(--muted);
    font-size: 0.94rem;
}

.experience {
    background: var(--paper);
}

.experience-grid {
    display: grid;
    grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(60px, 9vw, 150px);
    align-items: center;
}

.experience-image {
    margin: 0;
}

.experience-image img {
    aspect-ratio: 4 / 5;
    border-radius: 10px 180px 10px 10px;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.62) sepia(0.08);
}

.experience-image figcaption {
    padding: 14px 2px 0;
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.experience-intro {
    max-width: 54ch;
    margin-top: 30px;
    color: var(--muted);
    font-size: 1rem;
}

.visit-flow {
    margin-top: 54px;
    border-top: 1px solid var(--line);
    list-style: none;
}

.visit-flow li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 23px 0;
    border-bottom: 1px solid var(--line);
}

.visit-flow li > span {
    color: var(--clay);
    font-family: var(--font-serif);
}

.visit-flow strong,
.visit-flow small {
    display: block;
}

.visit-flow strong {
    color: var(--ink);
    font-size: 0.92rem;
}

.visit-flow small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.78rem;
}

.continuous-care {
    background: var(--ink-deep);
    color: var(--paper);
}

.care-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
    gap: clamp(60px, 9vw, 140px);
    align-items: center;
}

.eyebrow--light {
    color: #e2a68f;
}

.care-copy h2 {
    color: var(--paper);
}

.care-copy > p:not(.eyebrow) {
    max-width: 55ch;
    margin-top: 28px;
    color: rgba(243, 240, 232, 0.68);
}

.care-points {
    margin-top: 48px;
    border-top: 1px solid var(--line-light);
}

.care-points article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line-light);
}

.care-points article > span {
    color: #e2a68f;
    font-family: var(--font-serif);
}

.care-points strong,
.care-points small {
    display: block;
}

.care-points strong {
    color: var(--paper);
    font-size: 0.9rem;
}

.care-points small {
    max-width: 45ch;
    margin-top: 5px;
    color: rgba(243, 240, 232, 0.58);
    font-size: 0.76rem;
}

.care-chat {
    margin: 0;
    padding: 28px;
    border: 1px solid rgba(243, 240, 232, 0.18);
    border-radius: 28px;
    background: #f2eee5;
    color: var(--text);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.chat-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.chat-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-serif);
}

.chat-head strong,
.chat-head small {
    display: block;
}

.chat-head strong {
    color: var(--ink);
    font-size: 0.88rem;
}

.chat-head small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.68rem;
}

.chat-day {
    margin: 20px 0;
    color: var(--muted);
    font-size: 0.62rem;
    letter-spacing: 0.09em;
    text-align: center;
    text-transform: uppercase;
}

.chat-message {
    width: fit-content;
    max-width: 82%;
    margin-top: 11px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 0.78rem;
    line-height: 1.5;
}

.chat-message--client {
    border-bottom-left-radius: 4px;
    background: #dfe5e0;
}

.chat-message--clinic {
    margin-left: auto;
    border: 1px solid rgba(23, 59, 54, 0.18);
    border-bottom-right-radius: 4px;
    background: var(--white);
}

.care-chat figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    padding: 18px;
    border-radius: 12px;
    background: var(--ink);
    color: var(--paper);
}

.care-chat figcaption span {
    font-size: 0.68rem;
}

.care-chat figcaption strong {
    color: #e2a68f;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking {
    background: var(--paper-warm);
}

.booking-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(58px, 9vw, 145px);
    align-items: start;
}

.booking-copy > p:last-child {
    max-width: 45ch;
    margin-top: 30px;
    color: var(--muted);
}

.booking-panel {
    padding: clamp(28px, 4vw, 52px);
    border: 1px solid rgba(23, 59, 54, 0.2);
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.58);
}

.choice-group + .choice-group {
    margin-top: 42px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
}

.choice-heading {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.choice-heading span {
    color: var(--clay);
    font-family: var(--font-serif);
}

.choice-heading strong {
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
}

.choice-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.choice-options button {
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    font-family: inherit;
    font-size: 0.76rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.choice-options button:hover,
.choice-options button[aria-pressed='true'] {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
}

.booking-action {
    width: 100%;
    margin-top: 46px;
}

.booking-status {
    min-height: 24px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.8rem;
    text-align: center;
}

.booking-status.is-ready {
    color: var(--ink);
    font-weight: 600;
}

.demo-note {
    display: block;
    margin-top: 18px;
    color: rgba(39, 72, 67, 0.58);
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
}

.site-footer {
    padding: 72px 0;
    background: var(--ink-deep);
    color: var(--paper);
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.72fr 0.55fr 1fr;
    gap: 70px;
    align-items: start;
}

.footer-brand {
    color: var(--paper);
    font-family: var(--font-serif);
    font-size: 2.1rem;
    text-decoration: none;
}

.footer-grid > div:first-child p {
    margin-top: 10px;
    color: rgba(243, 240, 232, 0.58);
    font-size: 0.78rem;
}

.site-footer nav {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.site-footer nav a,
.demo-disclaimer a {
    color: rgba(243, 240, 232, 0.72);
    font-size: 0.74rem;
    text-decoration: none;
}

.site-footer nav a:hover,
.demo-disclaimer a:hover {
    color: var(--paper);
}

.demo-disclaimer {
    padding-left: 34px;
    border-left: 1px solid var(--line-light);
}

.demo-disclaimer p {
    max-width: 45ch;
    margin-bottom: 18px;
    color: rgba(243, 240, 232, 0.58);
    font-size: 0.72rem;
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.js .reveal--delay {
    transition-delay: 0.12s;
}

.js .reveal--delay-2 {
    transition-delay: 0.22s;
}

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

@media (max-width: 1050px) {
    .hero-grid,
    .experience-grid,
    .care-grid {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }

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

    .hero-visual,
    .hero-visual img {
        min-height: 590px;
    }

    .treatments-grid,
    .booking-grid {
        gap: 64px;
    }

    .primary-nav {
        gap: 20px;
    }
}

@media (max-width: 820px) {
    .shell {
        width: min(calc(100% - 40px), 720px);
    }

    .nav-shell {
        min-height: 72px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .primary-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: flex;
        padding: 22px 20px 28px;
        transform: translateY(-12px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-bottom: 1px solid var(--line);
        background: rgba(243, 240, 232, 0.98);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .primary-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .primary-nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .primary-nav .nav-cta {
        margin-top: 16px;
        border: 0;
        background: var(--ink);
        color: var(--paper);
        text-align: center;
    }

    .hero {
        padding-top: 122px;
    }

    .hero-grid,
    .treatments-grid,
    .experience-grid,
    .care-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 680px;
    }

    .hero h1 {
        max-width: 11ch;
        font-size: clamp(4rem, 10vw, 6.6rem);
    }

    .hero-visual,
    .hero-visual img {
        min-height: 680px;
    }

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

    .principles article,
    .principles article:first-child {
        min-height: auto;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        border-left: 1px solid var(--line);
    }

    .principles article:last-child {
        border-bottom: 0;
    }

    .principles h2 {
        margin-top: 28px;
    }

    .section {
        padding: 110px 0;
    }

    .section-heading {
        position: static;
    }

    .treatments-grid,
    .experience-grid,
    .care-grid,
    .booking-grid {
        gap: 70px;
    }

    .experience-image {
        max-width: 620px;
    }

    .care-copy {
        max-width: 690px;
    }

    .care-chat {
        max-width: 620px;
    }

    .booking-panel {
        max-width: 720px;
    }

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

    .demo-disclaimer {
        grid-column: 1 / -1;
        padding: 28px 0 0;
        border-top: 1px solid var(--line-light);
        border-left: 0;
    }
}

@media (max-width: 540px) {
    .shell {
        width: min(calc(100% - 32px), 508px);
    }

    .brand span {
        display: none;
    }

    .hero {
        padding: 112px 0 72px;
    }

    .hero h1 {
        font-size: clamp(3.25rem, 14vw, 4.65rem);
    }

    .hero-intro {
        font-size: 0.94rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button--primary,
    .text-link {
        width: 100%;
        justify-content: center;
    }

    .hero-note {
        margin-top: 48px;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 530px;
    }

    .hero-visual img {
        border-radius: 180px 180px 14px 14px;
    }

    .hero-visual::before {
        top: -16px;
        right: -12px;
    }

    .visit-card {
        right: 12px;
        bottom: 18px;
        width: calc(100% - 24px);
    }

    .principles article {
        padding: 28px 24px;
    }

    .section {
        padding: 88px 0;
    }

    .section-heading h2,
    .experience-copy h2,
    .care-copy h2,
    .booking-copy h2 {
        font-size: clamp(3rem, 13vw, 4.4rem);
    }

    .treatment-list summary {
        grid-template-columns: 34px minmax(0, 1fr) 22px;
        gap: 10px;
    }

    .treatment-list summary strong {
        font-size: 1.35rem;
    }

    .treatment-list details > p {
        padding-left: 44px;
    }

    .experience-image img {
        border-radius: 8px 110px 8px 8px;
    }

    .care-chat {
        padding: 18px;
        border-radius: 20px;
    }

    .chat-message {
        max-width: 90%;
    }

    .care-chat figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .booking-panel {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .choice-options {
        flex-direction: column;
    }

    .choice-options button {
        width: 100%;
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .demo-disclaimer {
        grid-column: auto;
    }
}

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

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
