@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
    font-style: italic;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
}

:root {
    --ink: #0b1110;
    --ink-soft: #121a17;
    --burgundy: #481d2b;
    --burgundy-light: #6c3043;
    --green: #243d30;
    --green-light: #345441;
    --ivory: #f3ebdd;
    --ivory-deep: #e8dcc9;
    --brass: #c2a16b;
    --rose: #b96e7d;
    --white: #fffdf8;
    --body: "Manrope", Arial, sans-serif;
    --display: "Cormorant Garamond", Georgia, serif;
    --page-gutter: clamp(1.25rem, 4vw, 4.5rem);
    --section-space: clamp(5.5rem, 10vw, 10rem);
    --content-width: 90rem;
    --line: rgba(243, 235, 221, 0.22);
    --shadow: 0 1.5rem 4rem rgba(11, 17, 16, 0.2);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--body);
    font-size: 1rem;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

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

::selection {
    background: var(--rose);
    color: var(--white);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: none;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

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

h1,
h2,
h3 {
    font-family: var(--display);
    font-weight: 500;
    line-height: 0.98;
}

h1 {
    font-size: clamp(3.9rem, 8vw, 8.5rem);
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(3rem, 6vw, 6.5rem);
    letter-spacing: -0.04em;
}

h3 {
    font-size: clamp(2rem, 3.3vw, 3.5rem);
    letter-spacing: -0.03em;
}

.h2 {
    display: block;
    margin-bottom: 1.5rem;
    font-family: var(--display);
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

.container {
    width: min(calc(100% - (2 * var(--page-gutter))), var(--content-width));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: var(--section-space);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--brass);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-label::before {
    width: 2.5rem;
    height: 1px;
    background: currentColor;
    content: "";
}

.section-label--dark {
    color: var(--burgundy);
}

.lede {
    max-width: 38rem;
    font-family: var(--display);
    font-size: clamp(1.6rem, 2.4vw, 2.25rem);
    line-height: 1.25;
}

.eyebrow {
    margin-bottom: 1.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.5rem;
    border: 1px solid var(--brass);
    background: var(--brass);
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.button:hover {
    border-color: var(--white);
    background: var(--white);
    transform: translateY(-2px);
}

.button--outline {
    border-color: rgba(255, 255, 255, 0.65);
    background: transparent;
    color: var(--white);
}

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

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

.button--small {
    min-height: 2.85rem;
    padding-inline: 1.2rem;
}

.button__icon {
    display: inline-flex;
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
}

.button__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid currentColor;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link .button__icon {
    width: 0.95rem;
    height: 0.95rem;
    transition: transform 200ms ease;
}

.text-link:hover .button__icon {
    transform: translate(3px, -3px);
}

.text-link--light {
    color: var(--ivory);
}

.site-header {
    position: sticky;
    z-index: 400;
    top: 0;
    width: 100%;
    border-bottom: 1px solid rgba(194, 161, 107, 0.18);
    background: rgba(11, 17, 16, 0.97);
    color: var(--ivory);
    transition: background 300ms ease, box-shadow 300ms ease;
}

.site-header--overlay {
    position: fixed;
    border-bottom-color: transparent;
    background: linear-gradient(to bottom, rgba(6, 10, 9, 0.78), rgba(6, 10, 9, 0));
}

.site-header.is-scrolled {
    border-bottom-color: rgba(194, 161, 107, 0.2);
    background: rgba(11, 17, 16, 0.96);
    box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.16);
}

.site-header.is-scrolled .site-header__inner {
    backdrop-filter: blur(12px);
}

body.menu-open .site-header,
body.menu-open .site-header--overlay {
    z-index: 500;
    background: var(--ink);
}

.site-header__inner {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(calc(100% - (2 * var(--page-gutter))), 104rem);
    min-height: 5.8rem;
    align-items: center;
    margin-inline: auto;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    width: 9.5rem;
    height: 4rem;
    align-items: center;
}

.brand img,
.footer-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    justify-self: center;
    align-items: center;
    gap: clamp(1.25rem, 2vw, 2.4rem);
}

.desktop-nav a {
    position: relative;
    padding-block: 0.6rem;
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0.25rem;
    left: 0;
    height: 1px;
    background: var(--brass);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-dropdown__caret {
    display: inline-flex;
    width: 0.7rem;
    height: 0.7rem;
    color: var(--brass);
    transition: transform 220ms ease;
}

.nav-dropdown__caret svg {
    width: 100%;
    height: 100%;
}

.nav-dropdown__menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 0.85rem);
    left: 50%;
    display: grid;
    visibility: hidden;
    width: 15rem;
    padding: 0.7rem;
    border: 1px solid rgba(194, 161, 107, 0.28);
    background: rgba(11, 17, 16, 0.98);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translate(-50%, 0.55rem);
    transition: opacity 180ms ease, transform 220ms ease, visibility 220ms;
}

.nav-dropdown__menu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 1rem;
    content: "";
}

.nav-dropdown__menu a {
    padding: 0.7rem 0.85rem;
    border-bottom: 1px solid rgba(243, 235, 221, 0.12);
    color: var(--ivory);
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.15;
    text-transform: none;
    transition: padding 180ms ease, color 180ms ease;
}

.nav-dropdown__menu a:last-child {
    border-bottom: 0;
}

.nav-dropdown__menu a::after {
    display: none;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
    padding-left: 1.15rem;
    color: var(--brass);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown__caret,
.nav-dropdown:focus-within .nav-dropdown__caret {
    transform: rotate(180deg);
}

.header-actions {
    display: flex;
    justify-self: end;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.55rem;
}

.header-actions .button {
    white-space: nowrap;
}

.header-actions .button--outline {
    border-color: rgba(243, 235, 221, 0.55);
    color: var(--ivory);
}

.header-actions .button--outline:hover {
    border-color: var(--ivory);
    background: var(--ivory);
    color: var(--ink);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.cta-row--centre {
    justify-content: center;
}

.order-band {
    padding: clamp(4.5rem, 8vw, 7rem) var(--page-gutter);
    background: var(--burgundy);
    color: var(--ivory);
}

.order-band__inner {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) auto;
    gap: clamp(1.5rem, 5vw, 4rem);
}

.order-band h2 {
    margin: 0;
}

.order-band p:not(.section-label) {
    max-width: 28rem;
    margin: 0;
    color: rgba(243, 235, 221, 0.8);
}

.menu-toggle,
.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    align-items: end;
    overflow: hidden;
    padding: 9rem var(--page-gutter) clamp(4rem, 8vw, 7.5rem);
    background: var(--ink);
    color: var(--white);
}

.hero__media,
.hero__media::after {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero__slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero__media picture,
.hero__media img {
    width: 100%;
    height: 100%;
}

.hero__media img {
    object-fit: cover;
    object-position: center 50%;
    transform: scale(1.08);
}

.hero__slide.is-active img {
    animation: hero-kenburns 8.5s ease-out forwards;
}

.hero__slide:nth-child(even).is-active img {
    animation-name: hero-kenburns-alt;
}

.hero__media::after {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(7, 11, 10, 0.84) 0%, rgba(7, 11, 10, 0.42) 46%, rgba(7, 11, 10, 0.1) 72%),
        linear-gradient(0deg, rgba(7, 11, 10, 0.78) 0%, transparent 55%),
        linear-gradient(180deg, rgba(7, 11, 10, 0.25), transparent 30%);
    content: "";
}

@keyframes hero-kenburns {
    from { transform: scale(1.08) translate3d(0, 0, 0); }
    to { transform: scale(1.18) translate3d(-1.5%, 1%, 0); }
}

@keyframes hero-kenburns-alt {
    from { transform: scale(1.16) translate3d(-1%, 0, 0); }
    to { transform: scale(1.06) translate3d(1.5%, 1%, 0); }
}

.hero__content {
    position: relative;
    z-index: 3;
    width: min(100%, 61rem);
    margin-left: max(0px, calc((100vw - 104rem) / 2));
}

.hero h1 {
    max-width: 12ch;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    color: var(--ivory);
    font-weight: 500;
}

.hero__intro {
    max-width: 37rem;
    margin-bottom: 2.2rem;
    color: rgba(255, 253, 248, 0.88);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero__aside {
    position: absolute;
    z-index: 3;
    right: var(--page-gutter);
    bottom: clamp(4rem, 8vw, 7.5rem);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 253, 248, 0.78);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero__aside::after {
    width: 1px;
    height: 4rem;
    background: var(--brass);
    content: "";
}

.intro {
    overflow: hidden;
    background: var(--ivory);
}

.intro__grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(3rem, 8vw, 9rem);
}

.intro__copy h2 {
    max-width: 9ch;
    margin-bottom: 2rem;
}

.intro__copy p:not(.section-label) {
    max-width: 34rem;
}

.intro__copy .text-link {
    margin-top: 1rem;
}

.intro__images {
    position: relative;
    min-height: clamp(34rem, 55vw, 49rem);
}

.intro__image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 74%;
    height: 78%;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.intro__image-detail {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48%;
    height: 45%;
    border: clamp(0.6rem, 1.5vw, 1.2rem) solid var(--ivory);
    object-fit: cover;
}

.fire {
    position: relative;
    display: grid;
    min-height: clamp(42rem, 80vh, 57rem);
    align-items: center;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.fire__image,
.fire__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.fire__image {
    object-fit: cover;
    object-position: center;
}

.fire__veil {
    background:
        linear-gradient(90deg, rgba(11, 17, 16, 0.9), rgba(11, 17, 16, 0.24) 70%),
        linear-gradient(0deg, rgba(11, 17, 16, 0.55), transparent);
}

.fire__content {
    position: relative;
    z-index: 1;
}

.fire__content h2 {
    max-width: 8ch;
    margin-bottom: 1.5rem;
}

.fire__content p:not(.section-label) {
    max-width: 34rem;
    color: rgba(255, 253, 248, 0.85);
}

.fire__note {
    display: flex;
    margin-top: 3rem;
    gap: 3rem;
}

.fire__note span {
    display: block;
    color: var(--brass);
    font-family: var(--display);
    font-size: 1.65rem;
}

.blossom {
    overflow: hidden;
    background: var(--burgundy);
    color: var(--ivory);
}

.blossom__heading {
    display: grid;
    align-items: end;
    margin-bottom: clamp(3rem, 7vw, 6rem);
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
}

.blossom__heading h2 {
    max-width: 10ch;
    margin: 0;
}

.blossom__heading p:not(.section-label) {
    max-width: 31rem;
    margin-bottom: 0.5rem;
    color: rgba(243, 235, 221, 0.8);
}

.blossom__gallery {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 1.25fr) minmax(15rem, 0.75fr);
    gap: clamp(1rem, 3vw, 3rem);
}

.blossom__gallery img {
    width: 100%;
    object-fit: cover;
}

.blossom__gallery > img {
    height: clamp(30rem, 58vw, 54rem);
}

.blossom__gallery-aside {
    display: grid;
    padding-top: clamp(4rem, 12vw, 11rem);
    gap: clamp(1rem, 3vw, 3rem);
}

.blossom__gallery-aside img {
    height: clamp(22rem, 33vw, 34rem);
}

.blossom__gallery-aside p {
    max-width: 22rem;
    margin: 0;
    color: rgba(243, 235, 221, 0.7);
    font-family: var(--display);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.35;
}

.menus-feature {
    background: var(--green);
    color: var(--ivory);
}

.menus-feature__grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.menus-feature__image-wrap {
    position: relative;
}

.menus-feature__image-wrap img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.menus-feature__image-wrap::after {
    position: absolute;
    z-index: -1;
    right: -1.25rem;
    bottom: -1.25rem;
    width: 62%;
    height: 62%;
    border: 1px solid rgba(194, 161, 107, 0.55);
    content: "";
}

.menus-feature__copy h2 {
    margin-bottom: 1.5rem;
}

.menus-feature__copy > p {
    max-width: 34rem;
    color: rgba(243, 235, 221, 0.8);
}

.menu-links {
    margin: 2.5rem 0;
    border-top: 1px solid var(--line);
}

.menu-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(1.45rem, 2.2vw, 2.15rem);
    line-height: 1.1;
    text-decoration: none;
    transition: color 180ms ease, padding 180ms ease;
}

.menu-links a:hover {
    padding-left: 0.75rem;
    color: var(--brass);
}

.menu-links a .button__icon {
    width: 1rem;
    height: 1rem;
}

.sunday {
    background: var(--ivory);
}

.sunday__grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: clamp(3rem, 9vw, 10rem);
}

.sunday__image-wrap {
    position: relative;
}

.sunday__image-wrap::before {
    position: absolute;
    z-index: 0;
    top: -1.5rem;
    right: -1.5rem;
    width: 65%;
    height: 85%;
    background: var(--rose);
    content: "";
}

.sunday__image-wrap img {
    position: relative;
    width: 100%;
    max-height: 48rem;
    object-fit: cover;
}

.sunday__copy h2 {
    margin-bottom: 1.5rem;
}

.sunday__copy p {
    max-width: 32rem;
}

.visit {
    background: var(--ink);
    color: var(--ivory);
}

.visit__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
}

.visit__image {
    width: 100%;
    height: 100%;
    min-height: 42rem;
    object-fit: cover;
}

.visit__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 7vw, 7rem);
    background: var(--ink-soft);
}

.visit__content h2 {
    margin-bottom: 1.4rem;
}

.visit__address {
    max-width: 22rem;
    margin-bottom: 2rem;
    font-family: var(--display);
    font-size: 1.55rem;
    line-height: 1.35;
}

.visit__hours {
    margin: 1rem 0 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.visit__hours p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.35rem;
    gap: 1.5rem;
    color: rgba(243, 235, 221, 0.8);
    font-size: 0.86rem;
}

.visit__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.booking-cta {
    position: relative;
    display: flex;
    min-height: clamp(38rem, 58vw, 48rem);
    align-items: center;
    overflow: hidden;
    padding: clamp(5rem, 9vw, 8rem) var(--page-gutter);
    background: var(--burgundy);
    color: var(--white);
    text-align: left;
}

.booking-cta::before {
    position: absolute;
    top: clamp(2.5rem, 5vw, 4.5rem);
    right: max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
    bottom: clamp(2.5rem, 5vw, 4.5rem);
    width: min(41vw, 38rem);
    background: url("../images/interior/blossom-table-professional.webp") center / cover;
    box-shadow: 0 2rem 5rem rgba(11, 17, 16, 0.32);
    content: "";
    outline: 1px solid rgba(194, 161, 107, 0.55);
    outline-offset: 0.75rem;
}

.booking-cta__inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--content-width));
    margin-inline: auto;
    padding-right: min(49vw, 46rem);
}

.booking-cta h2 {
    max-width: 7ch;
    margin-bottom: 1.2rem;
}

.booking-cta p {
    max-width: 36rem;
    margin: 0 0 2rem;
    color: rgba(255, 253, 248, 0.82);
}

.booking-cta .eyebrow {
    color: var(--brass);
}

.booking-cta .cta-row--centre {
    justify-content: flex-start;
}

.site-footer {
    padding: clamp(5rem, 9vw, 8rem) var(--page-gutter) 6rem;
    background: var(--ink);
    color: var(--ivory);
}

.site-footer__top,
.site-footer__grid,
.site-footer__bottom {
    width: min(100%, var(--content-width));
    margin-inline: auto;
}

.site-footer__top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--line);
    gap: 3rem;
}

.footer-brand {
    display: block;
    width: clamp(10rem, 18vw, 16rem);
    height: 7rem;
}

.site-footer__top > p {
    max-width: 26rem;
    margin-bottom: 1rem;
    color: rgba(243, 235, 221, 0.65);
    text-align: right;
}

.site-footer__grid {
    display: grid;
    padding-block: 3.5rem;
    grid-template-columns: 1.25fr 1fr 0.75fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
}

.site-footer__grid > div,
.site-footer__grid nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer__grid p,
.site-footer__grid a {
    margin: 0 0 0.4rem;
    color: rgba(243, 235, 221, 0.72);
    font-size: 0.84rem;
}

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

.site-footer__grid a:hover {
    color: var(--brass);
}

.site-footer__grid p span {
    margin-left: 0.4rem;
    color: rgba(243, 235, 221, 0.48);
}

.site-footer__grid .footer-label {
    margin-bottom: 1.2rem;
    color: var(--brass);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-footer__grid .text-link {
    margin-top: 1rem;
    color: var(--ivory);
    font-size: 0.65rem;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    gap: 2rem;
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(243, 235, 221, 0.45);
    font-size: 0.67rem;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-credit a {
    color: rgba(243, 235, 221, 0.72);
    text-decoration: none;
}

.footer-credit a:hover {
    color: var(--brass);
}

.footer-heart {
    display: inline-flex;
    width: 0.85rem;
    height: 0.85rem;
    color: var(--rose);
}

.footer-heart svg {
    display: block;
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: heart-pulse 1.6s ease-in-out infinite;
}

@keyframes heart-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.85;
    }

    50% {
        transform: scale(1.18);
        opacity: 1;
    }
}

.inner-hero {
    position: relative;
    display: grid;
    min-height: clamp(28rem, 64svh, 47rem);
    place-items: end start;
    overflow: hidden;
    padding: clamp(8rem, 14vw, 12rem) var(--page-gutter) clamp(4rem, 7vw, 6rem);
    background: var(--ink);
    color: var(--white);
}

.inner-hero__image,
.inner-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.inner-hero__image {
    object-fit: cover;
}

.inner-hero__overlay {
    background:
        linear-gradient(90deg, rgba(11, 17, 16, 0.83), rgba(11, 17, 16, 0.18) 70%),
        linear-gradient(0deg, rgba(11, 17, 16, 0.72), transparent 62%);
}

.inner-hero__content {
    position: relative;
    z-index: 1;
    width: min(100%, var(--content-width));
    margin-inline: auto;
}

.inner-hero h1 {
    max-width: 12ch;
    margin-bottom: 1rem;
}

.inner-hero p:not(.eyebrow) {
    max-width: 38rem;
    margin: 0;
    color: rgba(255, 253, 248, 0.8);
}

.page-intro {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(3rem, 9vw, 10rem);
}

.page-intro h2 {
    margin-bottom: 0;
}

.page-intro__copy {
    max-width: 40rem;
    padding-top: 1rem;
}

.page-intro__copy p {
    margin-bottom: 1.35rem;
}

.page-intro__copy h2 {
    margin: 2.5rem 0 0.85rem;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.menu-page {
    background: var(--ivory);
}

.menu-list {
    margin-top: clamp(4rem, 8vw, 7rem);
    border-top: 1px solid rgba(11, 17, 16, 0.25);
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.15rem 1.25rem;
    border-bottom: 1px solid rgba(11, 17, 16, 0.18);
    color: inherit;
    text-align: center;
    text-decoration: none;
    transition: background-color 220ms ease, border-color 220ms ease;
}

.menu-item h2 {
    display: inline-flex;
    align-items: baseline;
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    gap: 0.45rem;
    transition: color 220ms ease;
}

.menu-item h2 .button__icon {
    width: 0.85rem;
    height: 0.85rem;
    color: var(--brass);
    opacity: 0.55;
    transform: translateY(-0.15em);
    transition: transform 220ms ease, opacity 220ms ease;
}

.menu-item p {
    max-width: 34rem;
    margin: 0.7rem 0 0;
    color: rgba(11, 17, 16, 0.68);
}

.menu-item:hover,
.menu-item:focus-visible {
    background: rgba(194, 161, 107, 0.08);
    border-color: rgba(194, 161, 107, 0.35);
}

.menu-item:hover h2,
.menu-item:focus-visible h2 {
    color: var(--brass);
}

.menu-item:hover h2 .button__icon,
.menu-item:focus-visible h2 .button__icon {
    opacity: 1;
    transform: translate(3px, calc(-0.15em - 3px));
}

.menu-item:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: -2px;
}

.menu-note {
    display: grid;
    align-items: center;
    margin-top: 4rem;
    padding: 2rem;
    border-left: 2px solid var(--rose);
    background: rgba(185, 110, 125, 0.08);
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
}

.menu-note strong {
    font-family: var(--display);
    font-size: 1.6rem;
    line-height: 1.15;
}

.menu-note p {
    margin: 0;
}

.inner-hero--menu {
    min-height: clamp(28rem, 55svh, 40rem);
}

.menu-document-page {
    background: var(--ivory);
}

.menu-document-page .container {
    width: min(calc(100% - (2 * var(--page-gutter))), 56.25rem);
}

.menu-document__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(11, 17, 16, 0.22);
    gap: 1.5rem;
}

.menu-document__images {
    display: grid;
    justify-items: center;
    gap: clamp(0.85rem, 2vw, 1.5rem);
}

.menu-document__images figure {
    width: 100%;
    margin: 0;
}

.menu-document__images img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: none;
    margin-inline: auto;
    object-fit: contain;
    box-shadow: 0 1.5rem 4rem rgba(11, 17, 16, 0.14);
}

.menu-document__images img[height="1980"],
.menu-document__images img[height="2121"],
.menu-document__images img[height="2128"],
.menu-document__images img[height="1536"],
.menu-document__images img[height="1564"],
.menu-document__images img[height="1565"] {
    width: min(100%, 56rem);
}

.menu-document-page .menu-note {
    margin-top: clamp(3rem, 7vw, 6rem);
}

.restaurant-story {
    background: var(--ivory);
}

.story-images {
    display: grid;
    margin-top: clamp(4rem, 8vw, 8rem);
    align-items: end;
    grid-template-columns: 1.1fr 0.65fr;
    gap: clamp(1rem, 4vw, 4rem);
}

.story-images img:first-child {
    width: 100%;
    height: clamp(28rem, 58vw, 50rem);
    object-fit: cover;
}

.story-images img:last-child {
    width: 100%;
    height: clamp(23rem, 38vw, 35rem);
    object-fit: cover;
}

.values {
    background: var(--green);
    color: var(--ivory);
}

.values__grid {
    display: grid;
    margin-top: 3rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.value {
    padding: clamp(2rem, 4vw, 4rem);
    background: var(--green);
}

.value span {
    color: var(--brass);
    font-family: var(--display);
    font-size: 1.25rem;
}

.value h3 {
    margin: 1.8rem 0 1rem;
    font-size: clamp(2rem, 3vw, 3rem);
}

.value p {
    margin: 0;
    color: rgba(243, 235, 221, 0.72);
}

.gallery-page {
    background: var(--ink);
    color: var(--ivory);
}

.gallery-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: clamp(3rem, 7vw, 6rem);
    gap: 3rem;
}

.gallery-intro h2 {
    max-width: 10ch;
    margin: 0;
}

.gallery-intro p {
    max-width: 31rem;
    margin: 0;
    color: rgba(243, 235, 221, 0.7);
}

.gallery-grid {
    columns: 3 20rem;
    column-gap: clamp(0.75rem, 1.8vw, 1.5rem);
}

.gallery-button {
    display: block;
    width: 100%;
    margin: 0 0 clamp(0.75rem, 1.8vw, 1.5rem);
    padding: 0;
    overflow: hidden;
    border: 0;
    background: transparent;
    break-inside: avoid;
    cursor: zoom-in;
}

.gallery-button img {
    width: 100%;
    height: auto;
    transition: filter 350ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-button:hover img {
    filter: brightness(1.08);
    transform: scale(1.025);
}

.lightbox {
    width: min(92vw, 80rem);
    max-width: none;
    height: min(90vh, 58rem);
    max-height: none;
    padding: 0;
    border: 0;
    background: transparent;
    color: white;
}

.lightbox::backdrop {
    background: rgba(6, 9, 8, 0.94);
}

.lightbox__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox__close {
    position: fixed;
    z-index: 2;
    top: 1rem;
    right: 1rem;
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: var(--ink);
    color: white;
    cursor: pointer;
}

.lightbox__close .button__icon {
    width: 1.15rem;
    height: 1.15rem;
}

.contact-page {
    background: var(--ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(3rem, 8vw, 9rem);
}

.contact-details h2 {
    max-width: 9ch;
}

.contact-block {
    padding-block: 1.5rem;
    border-top: 1px solid rgba(11, 17, 16, 0.24);
}

.contact-block:first-of-type {
    margin-top: 2.5rem;
}

.contact-block p,
.contact-block a {
    margin: 0;
}

.contact-block a {
    font-family: var(--display);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.3;
    text-decoration: none;
}

.contact-block a:hover {
    color: var(--burgundy);
}

.contact-hours {
    padding: clamp(2rem, 5vw, 4rem);
    background: var(--burgundy);
    color: var(--ivory);
}

.contact-hours h3 {
    margin-bottom: 2rem;
}

.contact-hours__row {
    display: flex;
    justify-content: space-between;
    padding-block: 0.8rem;
    border-bottom: 1px solid rgba(243, 235, 221, 0.18);
    gap: 1rem;
}

.contact-hours__row p {
    margin: 0;
}

.contact-hours__row p:last-child {
    color: var(--brass);
}

.contact-hours .cta-row {
    margin-top: 2.5rem;
}

.contact-hours .button--outline {
    border-color: rgba(243, 235, 221, 0.7);
    color: var(--ivory);
}

.contact-hours .button--outline:hover {
    border-color: var(--ivory);
    background: var(--ivory);
    color: var(--burgundy);
}

.map-action {
    position: relative;
    display: grid;
    min-height: 34rem;
    place-items: center;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.map-action img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.55;
    object-fit: cover;
    transition: transform 800ms ease;
}

.map-action:hover img {
    transform: scale(1.02);
}

.map-action__content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    text-align: center;
}

.map-action h2 {
    margin-bottom: 1rem;
}

.widget-page {
    background: var(--green);
    color: var(--ivory);
}

.widget-intro {
    display: grid;
    margin-bottom: 3rem;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 7vw, 7rem);
}

.widget-intro h2 {
    margin: 0;
}

.widget-intro p {
    max-width: 37rem;
    color: rgba(243, 235, 221, 0.78);
}

.widget-shell {
    overflow: hidden;
    padding: clamp(0.5rem, 2vw, 1.25rem);
    background: var(--white);
    box-shadow: var(--shadow);
}

.widget-shell iframe {
    display: block;
    width: 100%;
    min-width: 0;
    min-height: 640px;
    border: 0;
    background: white;
}

.booking-embed-section .container {
    width: 100%;
}

.widget-fallback {
    margin-top: 1.5rem;
    color: rgba(243, 235, 221, 0.66);
    font-size: 0.8rem;
}

.widget-fallback a {
    color: var(--ivory);
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(1.75rem);
    transition: opacity 650ms ease, transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 72rem) {
    .site-header__inner {
        grid-template-columns: 1fr auto;
        gap: 1rem;
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: grid;
        width: 3rem;
        height: 3rem;
        padding: 0.85rem;
        place-content: center;
        border: 0;
        background: transparent;
        cursor: pointer;
        gap: 0.45rem;
    }

    .menu-toggle span {
        display: block;
        width: 1.4rem;
        height: 1px;
        background: var(--ivory);
        transition: transform 220ms ease;
    }

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

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

    .mobile-menu {
        position: fixed;
        z-index: 1;
        inset: 0;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        justify-content: flex-start;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: 9rem var(--page-gutter) 3rem;
        gap: 1.5rem;
        background: var(--ink);
        opacity: 0;
        transform: translateY(-1rem);
        transition: opacity 250ms ease, transform 300ms ease, visibility 300ms;
    }

    .mobile-menu.is-open {
        visibility: visible;
        opacity: 1;
        transform: none;
    }

    .mobile-menu nav {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu nav a {
        padding: 0.55rem 0;
        border-bottom: 1px solid var(--line);
        font-family: var(--display);
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        letter-spacing: -0.02em;
        line-height: 1.1;
        text-decoration: none;
    }

    .mobile-menu nav > a:has(+ .mobile-menu__sub) {
        padding-bottom: 0.3rem;
        border-bottom: 0;
    }

    .mobile-menu__sub {
        display: flex;
        flex-direction: column;
        margin: 0 0 0.15rem;
        padding: 0 0 0.2rem 1rem;
    }

    .mobile-menu nav .mobile-menu__sub a {
        padding: 0.38rem 0;
        color: rgba(243, 235, 221, 0.72);
        font-size: clamp(1.15rem, 4.2vw, 1.4rem);
        font-weight: 500;
    }

    .mobile-menu nav .mobile-menu__sub a:hover,
    .mobile-menu nav .mobile-menu__sub a:focus-visible {
        color: var(--brass);
    }

    .mobile-menu__footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        gap: 0.7rem;
    }

    .mobile-menu__footer .button {
        width: 100%;
        min-height: 3rem;
        padding-inline: 0.7rem;
        font-size: 0.6rem;
        letter-spacing: 0.1em;
    }

    .mobile-phone {
        display: inline-flex;
        grid-column: 1 / -1;
        align-items: center;
        margin-top: 0.35rem;
        color: var(--ivory);
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-decoration: none;
        gap: 0.7rem;
    }

    .mobile-phone .button__icon,
    .mobile-phone svg {
        width: 1.15rem;
        height: 1.15rem;
        color: var(--brass);
    }

    .mobile-phone:hover {
        color: var(--brass);
    }

    .hero__aside {
        display: none;
    }

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

@media (max-width: 56rem) {
    .intro__grid,
    .menus-feature__grid,
    .sunday__grid,
    .page-intro,
    .contact-grid,
    .widget-intro,
    .order-band__inner {
        grid-template-columns: 1fr;
    }

    .booking-cta {
        min-height: 0;
        align-items: flex-end;
        padding-top: clamp(26rem, 64vw, 34rem);
    }

    .booking-cta::before {
        top: 2rem;
        right: var(--page-gutter);
        bottom: auto;
        left: var(--page-gutter);
        width: auto;
        height: clamp(20rem, 52vw, 27rem);
        background-position: center 48%;
    }

    .booking-cta__inner {
        padding-right: 0;
    }

    .intro__copy {
        max-width: 46rem;
    }

    .intro__images {
        min-height: 42rem;
    }

    .blossom__heading {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blossom__gallery {
        grid-template-columns: 1fr 0.7fr;
    }

    .menus-feature__image-wrap {
        width: min(78%, 34rem);
    }

    .sunday__image-wrap {
        width: min(90%, 40rem);
    }

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

    .visit__image {
        min-height: 28rem;
    }

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

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

@media (max-width: 42rem) {
    :root {
        --page-gutter: 1.25rem;
        --section-space: 5.5rem;
    }

    h1 {
        font-size: clamp(3.5rem, 17vw, 5rem);
    }

    h2 {
        font-size: clamp(2.9rem, 14vw, 4.3rem);
    }

    .site-header__inner {
        min-height: 4.9rem;
        gap: 0.4rem;
    }

    .brand {
        width: 7rem;
        height: 3.4rem;
    }

    .menu-toggle {
        grid-column: auto;
    }

    .mobile-menu {
        padding-top: 7rem;
        padding-bottom: 5.5rem;
    }

    .mobile-menu__footer {
        align-items: stretch;
        gap: 0.7rem;
    }

    .hero {
        min-height: 100svh;
        padding-top: 7.5rem;
        padding-bottom: 5.5rem;
    }

    .hero__media img {
        object-position: 43% center;
    }

    .hero__media::after {
        background:
            linear-gradient(0deg, rgba(7, 11, 10, 0.9) 0%, rgba(7, 11, 10, 0.16) 76%),
            linear-gradient(90deg, rgba(7, 11, 10, 0.44), transparent);
    }

    .hero h1 {
        max-width: 9ch;
    }

    .hero__intro {
        font-size: 0.96rem;
    }

    .hero__actions .button {
        flex: 1 1 9rem;
    }

    .intro__grid {
        gap: 3rem;
    }

    .intro__images {
        min-height: 29rem;
    }

    .intro__image-main {
        width: 82%;
        height: 76%;
    }

    .intro__image-detail {
        width: 54%;
        height: 43%;
    }

    .fire {
        min-height: 43rem;
    }

    .fire__image {
        object-position: 58% center;
    }

    .fire__veil {
        background: linear-gradient(0deg, rgba(11, 17, 16, 0.94), rgba(11, 17, 16, 0.08) 90%);
    }

    .fire__content {
        align-self: end;
        padding-bottom: 4.5rem;
    }

    .fire__note {
        gap: 1.5rem;
    }

    .blossom__gallery {
        display: block;
    }

    .blossom__gallery > img {
        height: 32rem;
    }

    .blossom__gallery-aside {
        grid-template-columns: 0.85fr 1.15fr;
        align-items: end;
        margin-top: 1rem;
        padding: 0;
    }

    .blossom__gallery-aside img {
        height: 19rem;
    }

    .blossom__gallery-aside p {
        font-size: 1.1rem;
    }

    .menus-feature__image-wrap,
    .sunday__image-wrap {
        width: calc(100% - 1rem);
    }

    .menu-links a {
        font-size: 1.55rem;
    }

    .sunday__grid {
        gap: 4rem;
    }

    .visit__image {
        min-height: 23rem;
    }

    .visit__content {
        padding: 3.5rem 1.25rem;
    }

    .visit__hours p {
        font-size: 0.78rem;
    }

    .site-footer {
        padding-bottom: 3rem;
    }

    .site-footer__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .site-footer__top > p {
        text-align: left;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: 0.4rem;
    }

    .inner-hero {
        min-height: 30rem;
        padding-top: 8rem;
    }

    .page-intro {
        gap: 1.5rem;
    }

    .menu-item {
        padding-inline: 0.4rem;
    }

    .menu-note {
        grid-template-columns: 1fr;
    }

    .menu-document__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .menu-document__header .button {
        width: 100%;
    }

    .story-images {
        display: block;
    }

    .story-images img:first-child {
        height: 31rem;
    }

    .story-images img:last-child {
        width: 63%;
        height: 22rem;
        margin: -6rem 0 0 auto;
        border: 0.7rem solid var(--ivory);
    }

    .gallery-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem;
    }

    .gallery-grid {
        columns: 2 9rem;
        column-gap: 0.65rem;
    }

    .gallery-button {
        margin-bottom: 0.65rem;
    }

    .contact-hours {
        margin-inline: -1.25rem;
    }

    .contact-hours__row {
        font-size: 0.85rem;
    }

    .map-action {
        min-height: 27rem;
    }

    .widget-shell {
        margin-inline: -1.25rem;
        border-radius: 0;
    }

    .widget-shell iframe {
        min-height: 680px;
    }
}

.page-404 {
    background: var(--ink);
}

.error-page {
    position: relative;
    display: grid;
    min-height: 100svh;
    align-items: end;
    overflow: hidden;
    padding: clamp(8.5rem, 16vw, 12rem) var(--page-gutter) clamp(4rem, 8vw, 7rem);
    background: var(--ink);
    color: var(--white);
}

.error-page__image,
.error-page__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.error-page__image {
    object-fit: cover;
    object-position: center 45%;
}

.error-page__overlay {
    background:
        linear-gradient(90deg, rgba(7, 11, 10, 0.88) 0%, rgba(7, 11, 10, 0.46) 52%, rgba(7, 11, 10, 0.18) 78%),
        linear-gradient(0deg, rgba(7, 11, 10, 0.82) 0%, transparent 58%),
        linear-gradient(180deg, rgba(7, 11, 10, 0.28), transparent 32%);
}

.error-page__content {
    position: relative;
    z-index: 1;
    width: min(100%, 42rem);
}

.error-page__mark {
    margin: 0 0 0.35rem;
    color: var(--brass);
    font-family: var(--display);
    font-size: clamp(5.5rem, 16vw, 10rem);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 0.82;
}

.error-page h1 {
    max-width: 11ch;
    margin-bottom: 1rem;
}

.error-page p:not(.eyebrow):not(.error-page__mark) {
    max-width: 32rem;
    margin: 0 0 2rem;
    color: rgba(255, 253, 248, 0.78);
}

@media (max-width: 42rem) {
    .error-page {
        align-items: end;
        padding-top: 7.5rem;
        padding-bottom: 3.5rem;
    }

    .error-page__image {
        object-position: 42% center;
    }

    .error-page__overlay {
        background:
            linear-gradient(0deg, rgba(7, 11, 10, 0.92) 0%, rgba(7, 11, 10, 0.22) 72%),
            linear-gradient(90deg, rgba(7, 11, 10, 0.5), transparent);
    }

    .error-page h1 {
        max-width: none;
        font-size: clamp(3.2rem, 14vw, 4.4rem);
    }
}

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

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

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .hero__slide.is-active img {
        animation: none;
        transform: scale(1);
    }
}
