:root {
    --paper: #f3f0e9;
    --paper-2: #e8e2d8;
    --ink: #181b18;
    --muted: #6d706a;
    --line: #cbc4b8;
    --moss: #47584b;
    --moss-dark: #2c3930;
    --clay: #ad684d;
    --white: #fff;
    --radius: 0px;
    --serif: "Instrument Serif", Georgia, serif;
    --sans: "Manrope", Arial, sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65
}

body.nav-open,
body.modal-open {
    overflow: hidden
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.image-missing {
    background: linear-gradient(135deg, #d9d3c7, #b9b2a6);
    font-size: 0
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
select,
textarea {
    font: inherit
}

.container {
    width: min(100% - 64px, 1380px);
    margin-inline: auto
}

.section {
    padding: clamp(84px, 9vw, 150px) 0;
    border-top: 1px solid var(--line)
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.025em;
    margin: 0
}

h1 {
    font-size: clamp(4rem, 7.6vw, 8.8rem)
}

h2 {
    font-size: clamp(3rem, 5.7vw, 6.8rem)
}

h3 {
    font-size: clamp(2rem, 3.2vw, 3.8rem)
}

p {
    margin: 0 0 1.25em
}

.eyebrow {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin: 0 0 22px
}

.eyebrow-light {
    color: rgba(255, 255, 255, .8)
}

.prose {
    font-size: 1.04rem
}

.prose p {
    max-width: 770px
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .25s ease;
    cursor: pointer
}

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

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

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

.button-outline {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink)
}

.button-small {
    min-height: 42px;
    padding: 0 18px;
    font-size: .66rem
}

.button-ghost-light {
    border-color: rgba(255, 255, 255, .55);
    color: white
}

.button-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.arrow-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 999;
    background: #fff;
    padding: 10px 14px;
    transform: translateY(-160%)
}

.skip-link:focus {
    transform: none
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    color: #fff;
    transition: .3s ease
}

.site-header.is-scrolled,
.inner-page .site-header {
    background: rgba(243, 240, 233, .95);
    backdrop-filter: blur(14px);
    color: var(--ink);
    border-bottom: 1px solid rgba(24, 27, 24, .12)
}

.header-inner {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand-mark {
    width: 38px;
    height: 38px;
    border: 1px solid currentColor;
    display: grid;
    place-items: center;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .08em
}

.brand-copy {
    display: grid;
    line-height: 1.1
}

.brand-copy strong {
    font-size: .82rem;
    letter-spacing: .02em
}

.brand-copy small {
    margin-top: 5px;
    font-size: .56rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    opacity: .68
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

.site-nav>a:not(.button) {
    position: relative
}

.site-nav>a:not(.button):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: .25s
}

.site-nav>a:hover:after {
    transform: scaleX(1);
    transform-origin: left
}

.site-header:not(.is-scrolled) .site-nav .button {
    background: #fff;
    color: var(--ink)
}

.menu-toggle,
.menu-close {
    display: none;
    background: none;
    border: 0;
    color: inherit;
    cursor: pointer
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background: currentColor;
    margin: 6px
}

.menu-close {
    font-size: 2rem
}

.hotel-hero {
    height: min(94vh, 960px);
    min-height: 700px;
    position: relative;
    color: #fff;
    overflow: hidden
}

.hotel-hero__media,
.hotel-hero__shade {
    position: absolute;
    inset: 0
}

.hotel-hero__shade {
    background: linear-gradient(90deg, rgba(15, 18, 16, .72) 0%, rgba(15, 18, 16, .28) 52%, rgba(15, 18, 16, .05) 100%), linear-gradient(0deg, rgba(15, 18, 16, .45), transparent 48%)
}

.hotel-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 190px;
    max-width: 1100px
}

.hotel-hero h1 {
    max-width: 950px
}

.hotel-hero__content>p:not(.eyebrow) {
    max-width: 630px;
    font-size: 1.08rem;
    margin: 30px 0 34px
}

.hero-notes {
    position: absolute;
    z-index: 3;
    left: max(32px, calc((100vw - 1380px)/2 + 32px));
    right: max(32px, calc((100vw - 1380px)/2 + 32px));
    bottom: 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .5)
}

.hero-notes>div {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-right: 1px solid rgba(255, 255, 255, .25)
}

.hero-notes>div+div {
    padding-left: 26px
}

.hero-notes span {
    font-size: .66rem;
    opacity: .65
}

.hero-notes p {
    margin: 0;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em
}

.hotel-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 10vw
}

.hotel-intro-grid h2 {
    max-width: 650px
}

.room-list {
    margin-top: 68px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line)
}

.room-card {
    background: var(--paper);
    display: grid;
    grid-template-columns: 1fr ;
    min-height: 590px
}

.room-card--large {
    grid-column: 1/-1;
    grid-template-columns: 1.2fr .8fr;
    min-height: 700px
}

.room-card__media {
    min-height: 390px
}

.room-card__content {
    padding: clamp(30px, 4.3vw, 66px);
    position: relative
}

.room-number {
    position: absolute;
    right: 26px;
    top: 24px;
    font-size: .65rem;
    color: var(--muted)
}

.room-card h3 {
    font-size: clamp(2.4rem, 4vw, 5rem);
    margin-bottom: 24px
}

.room-card p {
    color: #555b54
}

.room-card ul {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 18px;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .06em
}

.room-card li:before {
    content: "— ";
    color: var(--clay)
}

.room-price {
    font-weight: 700;
    color: var(--ink) !important
}

.rate-note {
    margin: 26px 0 0;
    max-width: 820px;
    color: var(--muted);
    font-size: .82rem
}

.experience-section {
    background: var(--moss-dark);
    color: #fff
}

.experience-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 8vw;
    align-items: center
}

.experience-photo {
    aspect-ratio: 4/5
}

.experience-copy h2 {
    max-width: 700px
}

.experience-points {
    margin-top: 54px;
    border-top: 1px solid rgba(255, 255, 255, .25)
}

.experience-points>div {
    display: grid;
    grid-template-columns: 48px 220px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18)
}

.experience-points span {
    font-size: .65rem;
    opacity: .6
}

.experience-points h3 {
    font-family: var(--sans);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: 0
}

.experience-points p {
    margin: 0;
    font-size: .86rem;
    color: rgba(255, 255, 255, .72)
}

.dining-grid,
.location-grid,
.arrival-grid,
.design-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: center
}

.dining-copy,
.location-copy {
    padding: 4vw 0
}

.dining-photo {
    aspect-ratio: 3/2
}

.gallery-section {
    background: var(--paper-2)
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: end
}

.section-heading>p:last-child {
    max-width: 520px
}

.gallery-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 14px
}

.gallery-grid figure {
    margin: 0;
    aspect-ratio: 4/5
}

.gallery-grid .gallery-wide {
    aspect-ratio: auto
}

.location-photo,
.arrival-photo,
.design-photo {
    aspect-ratio: 4/5
}

.distance-list {
    margin: 38px 0;
    border-top: 1px solid var(--line)
}

.distance-list>div {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: .86rem
}

.distance-list span {
    color: var(--muted)
}

.faq-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 10vw
}

.faq-list {
    border-top: 1px solid var(--line)
}

.faq-list details {
    border-bottom: 1px solid var(--line);
    padding: 21px 0
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    padding-right: 30px;
    position: relative
}

.faq-list summary:after {
    content: "+";
    position: absolute;
    right: 0
}

.faq-list details[open] summary:after {
    content: "−"
}

.faq-list p {
    max-width: 700px;
    color: var(--muted);
    margin: 18px 0 2px
}

.final-hotel-cta {
    background: var(--clay);
    color: #fff;
    padding: clamp(90px, 11vw, 170px) 0
}

.final-hotel-cta .container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end
}

.final-hotel-cta h2 {
    max-width: 1000px
}

.inner-hero {
    padding: 180px 0 100px;
    border-bottom: 1px solid var(--line)
}

.inner-hero__grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 8vw;
    align-items: center
}

.inner-hero h1 {
    font-size: clamp(4rem, 7vw, 8rem)
}

.inner-hero p:not(.eyebrow) {
    max-width: 620px;
    font-size: 1.05rem
}

.inner-hero__media {
    aspect-ratio: 4/5
}

.editorial-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 10vw
}

.values-section {
    background: var(--paper-2)
}

.value-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.value-grid article {
    padding: 28px 28px 40px 0;
    border-right: 1px solid var(--line)
}

.value-grid article+article {
    padding-left: 28px
}

.value-grid span {
    font-size: .65rem;
    color: var(--clay)
}

.value-grid h3 {
    font-size: 2.3rem;
    margin: 50px 0 20px
}

.value-grid p {
    font-size: .86rem;
    color: var(--muted)
}

.people-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 10vw
}

.traveller-list {
    border-top: 1px solid var(--line)
}

.traveller-list>div {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 24px;
    padding: 21px 0;
    border-bottom: 1px solid var(--line)
}

.traveller-list p {
    margin: 0;
    color: var(--muted)
}

.contact-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 8vw
}

.contact-lines {
    margin: 42px 0;
    border-top: 1px solid var(--line)
}

.contact-lines>div {
    padding: 18px 0;
    border-bottom: 1px solid var(--line)
}

.contact-lines span {
    display: block;
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: var(--muted);
    margin-bottom: 5px
}

.contact-lines p {
    margin: 0
}

.contact-note {
    font-size: .8rem;
    color: var(--muted)
}

.contact-form {
    background: #fff;
    padding: clamp(28px, 4vw, 58px);
    border: 1px solid var(--line)
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px
}

.field {
    display: grid;
    gap: 8px
}

.field-wide {
    grid-column: 1/-1
}

.field label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    padding: 13px 0;
    border-radius: 0;
    outline: none
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--ink)
}

.field small {
    min-height: 17px;
    color: #9b3e31
}

.check-field label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500
}

.check-field input {
    width: auto;
    margin-top: 4px
}

.form-success {
    margin: 18px 0 0;
    padding: 14px;
    background: #edf3ed
}

.arrival-section {
    background: var(--paper-2)
}

.legal-hero {
    padding: 190px 0 90px;
    background: var(--moss-dark);
    color: #fff
}

.legal-hero h1 {
    font-size: clamp(4rem, 7vw, 7rem);
    margin-bottom: 28px
}

.legal-hero p {
    max-width: 780px;
    color: rgba(255, 255, 255, .75)
}

.legal-hero span {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .55)
}

.legal-section {
    padding: 80px 0 140px
}

.legal-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 850px);
    gap: 8vw;
    align-items: start
}

.legal-nav {
    position: sticky;
    top: 120px;
    display: grid;
    border-top: 1px solid var(--line)
}

.legal-nav strong,
.legal-nav a {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: .7rem
}

.legal-nav strong {
    text-transform: uppercase;
    letter-spacing: .1em
}

.legal-nav a {
    color: var(--muted)
}

.legal-copy h2 {
    font-size: 2.35rem;
    margin: 56px 0 20px
}

.legal-copy h2:first-child {
    margin-top: 0
}

.legal-copy p {
    color: #4f544e
}

.legal-copy code {
    font-size: .82em;
    background: var(--paper-2);
    padding: 2px 5px
}

.site-footer {
    background: #171a18;
    color: #fff;
    padding: 90px 0 30px
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, .2)
}

.footer-statement h2 {
    max-width: 850px;
    font-size: clamp(3rem, 5vw, 6rem)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, .8fr);
    gap: 60px;
    padding: 60px 0
}

.footer-grid h3 {
    font-family: var(--sans);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 20px
}

.footer-grid>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

.footer-grid p,
.footer-grid a,
.footer-link-button {
    font-size: .78rem;
    color: rgba(255, 255, 255, .64)
}

.footer-grid p {
    max-width: 320px
}

.footer-brand {
    font-family: var(--serif);
    font-size: 2rem !important;
    color: #fff !important
}

.footer-place {
    margin-top: 18px
}

.footer-link-button {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: .64rem;
    color: rgba(255, 255, 255, .48);
    text-transform: uppercase;
    letter-spacing: .08em
}

.cookie-banner {
    position: fixed;
    z-index: 90;
    left: 24px;
    right: 24px;
    bottom: 24px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15)
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
    display: none
}

.cookie-banner strong {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400
}

.cookie-banner p {
    margin: 4px 0 0;
    max-width: 650px;
    font-size: .78rem;
    color: var(--muted)
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.text-button {
    background: none;
    border: 0;
    border-bottom: 1px solid currentColor;
    padding: 6px 0;
    cursor: pointer;
    font-size: .7rem
}

.cookie-modal {
    position: fixed;
    z-index: 100;
    inset: 0;
    background: rgba(0, 0, 0, .58);
    display: grid;
    place-items: center;
    padding: 24px
}

.cookie-modal__panel {
    position: relative;
    width: min(720px, 100%);
    max-height: 90vh;
    overflow: auto;
    background: var(--paper);
    padding: 42px
}

.modal-close {
    position: absolute;
    right: 22px;
    top: 18px;
    background: none;
    border: 0;
    font-size: 2rem;
    cursor: pointer
}

.cookie-modal h2 {
    font-size: 3rem
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border-top: 1px solid var(--line);
    padding: 20px 0
}

.cookie-option p {
    margin: 4px 0 0;
    font-size: .78rem;
    color: var(--muted)
}

.cookie-option input {
    width: 20px;
    height: 20px
}

.always-on {
    font-size: .66rem;
    text-transform: uppercase;
    letter-spacing: .08em
}

.modal-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--line)
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s ease, transform .8s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

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

@media(max-width:1100px) {
    .site-nav {
        gap: 18px
    }

    .room-card {
        grid-template-columns: 1fr
    }

    .room-card--large {
        grid-template-columns: 1fr 1fr
    }

    .room-card__media {
        min-height: 360px
    }

    .value-grid {
        grid-template-columns: 1fr 1fr
    }

    .value-grid article:nth-child(2) {
        border-right: 0
    }

    .value-grid article:nth-child(-n+2) {
        border-bottom: 1px solid var(--line)
    }
}

@media(max-width:900px) {
    .container {
        width: min(100% - 40px, 1380px)
    }

    .menu-toggle {
        display: block
    }

    .site-nav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(420px, 100%);
        background: var(--paper);
        color: var(--ink);
        padding: 100px 34px 40px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        transform: translateX(100%);
        transition: .3s
    }

    .site-nav.is-open {
        transform: none
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 24px;
        right: 30px
    }

    .site-header:not(.is-scrolled) .site-nav .button {
        background: var(--ink);
        color: #fff
    }

    .hotel-hero {
        min-height: 760px
    }

    .hotel-hero__content {
        padding-top: 180px
    }

    .hero-notes {
        grid-template-columns: 1fr
    }

    .hero-notes>div {
        display: none
    }

    .hero-notes>div:first-child {
        display: flex;
        border-right: 0
    }

    .hotel-intro-grid,
    .experience-grid,
    .dining-grid,
    .location-grid,
    .faq-grid,
    .inner-hero__grid,
    .editorial-grid,
    .people-grid,
    .contact-grid,
    .arrival-grid,
    .design-grid {
        grid-template-columns: 1fr
    }

    .room-list {
        grid-template-columns: 1fr
    }

    .room-card--large {
        grid-column: auto;
        grid-template-columns: 1fr
    }

    .section-heading {
        grid-template-columns: 1fr
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr
    }

    .gallery-wide {
        grid-column: 1/-1;
        aspect-ratio: 16/10 !important
    }

    .experience-photo,
    .location-photo,
    .arrival-photo,
    .design-photo,
    .inner-hero__media {
        max-height: 650px
    }

    .final-hotel-cta .container {
        grid-template-columns: 1fr
    }

    .legal-layout {
        grid-template-columns: 1fr
    }

    .legal-nav {
        position: static;
        grid-template-columns: 1fr 1fr;
        column-gap: 20px
    }

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

    .footer-top {
        align-items: flex-start;
        flex-direction: column
    }

    .cookie-banner {
        align-items: flex-start;
        flex-direction: column
    }
}

@media(max-width:620px) {
    .container {
        width: min(100% - 28px, 1380px)
    }

    .header-inner {
        height: 74px
    }

    .brand-copy small {
        display: none
    }

    .hotel-hero {
        min-height: 720px
    }

    .hotel-hero__content {
        padding-top: 155px
    }

    .hotel-hero h1 {
        font-size: clamp(3.55rem, 17vw, 5.5rem)
    }

    .hotel-hero__content>p:not(.eyebrow) {
        font-size: .95rem
    }

    .section {
        padding: 76px 0
    }

    .room-card__content {
        padding: 28px 24px
    }

    .room-card ul {
        grid-template-columns: 1fr
    }

    .experience-points>div {
        grid-template-columns: 30px 1fr
    }

    .experience-points p {
        grid-column: 2
    }

    .gallery-grid {
        grid-template-columns: 1fr
    }

    .gallery-wide {
        grid-column: auto
    }

    .distance-list>div,
    .traveller-list>div {
        grid-template-columns: 1fr;
        gap: 5px
    }

    .value-grid {
        grid-template-columns: 1fr
    }

    .value-grid article,
    .value-grid article+article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 24px 0
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .field-wide {
        grid-column: auto
    }

    .inner-hero {
        padding-top: 130px
    }

    .legal-hero {
        padding-top: 140px
    }

    .legal-nav {
        grid-template-columns: 1fr
    }

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

    .footer-bottom {
        flex-direction: column
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px
    }

    .cookie-actions {
        width: 100%
    }

    .cookie-actions .button {
        flex: 1
    }

    .cookie-modal {
        padding: 10px
    }

    .cookie-modal__panel {
        padding: 34px 24px
    }

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

    .modal-actions .button {
        width: 100%
    }
}

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

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

    .button,
    .site-nav {
        transition: none
    }
}