:root {
    --ink: #17211e;
    --green: #102a24;
    --green-deep: #091b17;
    --green-soft: #21463c;
    --cream: #f4eee2;
    --cream-deep: #e8dfd0;
    --paper: #fffdf8;
    --gold: #d5a858;
    --gold-deep: #b78431;
    --berry: #8d3438;
    --white: #ffffff;
    --line: rgba(16, 42, 36, 0.18);
    --shell: 1240px;
    --display: "Arial Narrow", "Helvetica Neue Condensed", Impact, sans-serif;
    --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
    --sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
    --shadow: 0 30px 80px rgba(9, 27, 23, 0.18);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

button {
    color: inherit;
}

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

h1,
h2,
h3 {
    font-family: var(--display);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 0.92;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 28px;
    font-size: clamp(3rem, 6vw, 6.4rem);
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

::selection {
    color: var(--green-deep);
    background: var(--gold);
}

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

.section {
    padding-block: clamp(88px, 11vw, 160px);
}

.section--dark {
    color: var(--cream);
    background: var(--green);
}

.section--cream {
    background: var(--cream);
}

.section--gold {
    background: var(--gold);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--green);
    background: var(--cream);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

.eyebrow {
    margin-bottom: 22px;
    color: var(--green-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow--light {
    color: var(--cream);
}

.eyebrow--gold {
    color: var(--gold);
}

.lead {
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2.2vw, 2.15rem);
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    padding: 14px 24px;
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--small {
    min-height: 44px;
    padding: 11px 18px;
    font-size: 0.68rem;
}

.button--gold {
    color: var(--green-deep);
    background: var(--gold);
}

.button--gold:hover,
.button--gold:focus-visible {
    background: #e2ba70;
}

.button--ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(9, 27, 23, 0.18);
    backdrop-filter: blur(8px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
    color: var(--green-deep);
    background: var(--cream);
}

.button--cream {
    color: var(--green-deep);
    background: var(--cream);
}

.button--cream:hover,
.button--cream:focus-visible {
    background: var(--white);
}

.button--dark {
    color: var(--cream);
    background: var(--green);
}

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

.button--outline {
    color: var(--green);
    border-color: var(--green);
}

.button--outline:hover,
.button--outline:focus-visible {
    color: var(--cream);
    background: var(--green);
}

.text-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link span {
    transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
    transform: translate(3px, -2px);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    color: var(--green-deep);
    background: rgba(255, 253, 248, 0.98);
    transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: rgba(9, 27, 23, 0.32);
    content: "";
}

.site-header.is-scrolled,
.nav-open .site-header {
    color: var(--white);
    background: rgba(9, 27, 23, 0.97);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.site-header__inner {
    display: flex;
    min-height: 104px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    position: relative;
    z-index: 2;
    display: block;
    width: 98px;
}

.brand img {
    width: 98px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.4vw, 36px);
}

.site-nav > a:not(.button) {
    position: relative;
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.site-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

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

.nav-toggle {
    position: relative;
    z-index: 2;
    display: none;
    align-items: center;
    gap: 12px;
    border: 0;
    padding: 10px 0;
    color: currentColor;
    background: transparent;
    cursor: pointer;
}

.nav-toggle__label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-toggle__icon {
    display: grid;
    width: 28px;
    gap: 7px;
}

.nav-toggle__icon span {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
}

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

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

/* Hero */
.hero {
    position: relative;
    display: grid;
    min-height: max(720px, 96svh);
    overflow: hidden;
    color: var(--white);
    background: var(--green-deep);
    isolation: isolate;
}

.hero::before,
.hero::after {
    position: absolute;
    z-index: -1;
    content: "";
    pointer-events: none;
}

.hero::before {
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 17, 14, 0.92) 0%, rgba(5, 17, 14, 0.66) 43%, rgba(5, 17, 14, 0.2) 72%, rgba(5, 17, 14, 0.28) 100%);
}

.hero::after {
    right: -100px;
    bottom: -150px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(213, 168, 88, 0.48);
    border-radius: 50%;
    box-shadow: 0 0 0 32px rgba(213, 168, 88, 0.05), 0 0 0 78px rgba(213, 168, 88, 0.035);
}

.hero__image {
    position: absolute;
    z-index: -2;
    inset: 0;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero--christmas .hero__image img {
    object-position: 72% center;
}

.hero--christmas::before {
    background: linear-gradient(90deg, rgba(29, 8, 11, 0.94) 0%, rgba(42, 12, 15, 0.76) 47%, rgba(42, 12, 15, 0.18) 78%, rgba(42, 12, 15, 0.32) 100%);
}

.hero__inner {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-top: 190px;
    padding-bottom: clamp(88px, 10vw, 142px);
}

.hero__content {
    width: min(830px, 72%);
}

.hero h1 {
    max-width: 900px;
    margin-bottom: 32px;
    font-size: clamp(4.5rem, 9.8vw, 9.7rem);
    line-height: 0.8;
    text-wrap: balance;
    text-transform: uppercase;
}

.hero h1 em {
    color: var(--gold);
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.055em;
    text-transform: none;
}

.hero__lede {
    max-width: 650px;
    margin-bottom: 0;
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2.3vw, 2rem);
    line-height: 1.32;
}

.hero__seal {
    position: absolute;
    right: 1vw;
    bottom: 8.5vw;
    display: flex;
    width: 150px;
    aspect-ratio: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    color: var(--cream);
    background: rgba(9, 27, 23, 0.68);
    text-align: center;
    transform: rotate(5deg);
    backdrop-filter: blur(8px);
}

.hero__seal::before {
    position: absolute;
    inset: 7px;
    border: 1px dotted rgba(213, 168, 88, 0.7);
    border-radius: inherit;
    content: "";
}

.hero__seal span {
    max-width: 100px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero__seal strong {
    margin-block: 3px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}

.hero__seal--festive {
    background: rgba(86, 17, 24, 0.78);
}

/* Ticker */
.occasion-strip {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding-block: 20px;
    color: var(--green-deep);
    background: var(--paper);
}

.occasion-strip--festive {
    border-color: transparent;
    color: var(--cream);
    background: var(--berry);
}

.occasion-strip__track {
    display: flex;
    width: max-content;
    min-width: 100%;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3.2vw, 52px);
    padding-inline: 30px;
}

.occasion-strip span {
    white-space: nowrap;
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.occasion-strip i {
    color: var(--gold);
    font-style: normal;
}

/* Shared section headings */
.section-heading h2 {
    max-width: 850px;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: clamp(40px, 8vw, 120px);
    align-items: end;
    margin-bottom: clamp(55px, 8vw, 96px);
}

.section-heading--split h2 {
    margin-bottom: 0;
}

.section-heading--split > p {
    max-width: 440px;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.section-heading--center {
    max-width: 840px;
    margin: 0 auto clamp(52px, 7vw, 88px);
    text-align: center;
}

.section-heading--center p:last-child {
    max-width: 620px;
    margin-inline: auto;
}

/* Intro */
.intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(54px, 9vw, 140px);
    align-items: start;
}

.intro h2 {
    margin-bottom: 0;
}

.intro__copy {
    padding-top: 58px;
}

.intro__copy p:not(.lead) {
    max-width: 620px;
}

/* Food cards */
.signature-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    padding-bottom: clamp(88px, 11vw, 160px);
}

.food-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    color: var(--white);
    background: var(--green-deep);
}

.food-card--large {
    grid-row: span 2;
    min-height: 1058px;
}

.food-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 32%, rgba(6, 18, 15, 0.9) 100%);
    content: "";
}

.food-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.food-card--large img {
    object-position: center;
}

.food-card:hover img {
    transform: scale(1.035);
}

.food-card__copy {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    padding: clamp(26px, 4vw, 52px);
}

.food-card__copy span {
    display: block;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.food-card__copy h3 {
    margin-bottom: 9px;
    font-size: clamp(2rem, 3vw, 3.4rem);
}

.food-card__copy p {
    max-width: 530px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.96rem;
    line-height: 1.55;
}

/* Catering */
.catering {
    position: relative;
    overflow: hidden;
}

.catering::before {
    position: absolute;
    top: -280px;
    right: -300px;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(213, 168, 88, 0.18);
    border-radius: 50%;
    content: "";
}

.catering .section-heading--split > p {
    color: rgba(244, 238, 226, 0.72);
}

.service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: clamp(42px, 6vw, 86px);
    align-items: center;
}

.service-layout__image {
    position: relative;
    margin: 0;
}

.service-layout__image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow);
}

.service-layout__image figcaption {
    position: absolute;
    right: -24px;
    bottom: 32px;
    max-width: 260px;
    padding: 17px 22px;
    color: var(--green-deep);
    background: var(--gold);
    font-family: var(--serif);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.2;
}

.service-list article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    border-top: 1px solid rgba(244, 238, 226, 0.22);
    padding-block: 28px;
}

.service-list article:last-child {
    border-bottom: 1px solid rgba(244, 238, 226, 0.22);
}

.service-list article > span {
    padding-top: 5px;
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.service-list h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 1.75rem;
}

.service-list p {
    margin-bottom: 0;
    color: rgba(244, 238, 226, 0.66);
    font-size: 0.94rem;
}

/* Story */
.story__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
    gap: clamp(60px, 9vw, 140px);
    align-items: center;
}

.story__portrait {
    position: relative;
}

.story__portrait::before {
    position: absolute;
    z-index: -1;
    top: -22px;
    left: -22px;
    width: 46%;
    height: 40%;
    background: var(--gold);
    content: "";
}

.story__portrait img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
}

.story__portrait--sisters img {
    object-position: 50% 46%;
}

.image-note {
    position: absolute;
    right: -36px;
    bottom: 42px;
    margin: 0;
    padding: 22px 28px;
    color: var(--cream);
    background: var(--green);
    font-family: var(--serif);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.25;
}

.story__copy .lead {
    margin-bottom: 26px;
}

.story__copy > p:not(.eyebrow, .lead) {
    color: #44504b;
}

/* Numbers */
.numbers {
    padding-block: clamp(56px, 7vw, 90px);
}

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

.number-card {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(16, 42, 36, 0.25);
    padding: 8px clamp(22px, 3vw, 45px) 12px;
}

.number-card:first-child {
    padding-left: 0;
}

.number-card:last-child {
    border-right: 0;
    padding-right: 0;
}

.number-card strong {
    color: var(--green);
    font-family: var(--serif);
    font-size: clamp(4.2rem, 7vw, 7rem);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 0.85;
}

.number-card span {
    max-width: 180px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1.45;
    text-transform: uppercase;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-auto-rows: 290px;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 0;
    padding: 0;
    background: var(--green-deep);
    cursor: zoom-in;
}

.gallery-card::after {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: var(--white);
    background: rgba(9, 27, 23, 0.45);
    content: "+";
    font-size: 1.35rem;
    line-height: 1;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(5px);
}

.gallery-card:hover::after,
.gallery-card:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 220ms ease, transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
    opacity: 0.86;
    transform: scale(1.04);
}

.gallery-card--tall {
    grid-row: span 2;
}

.gallery-card--wide {
    grid-column: span 2;
}

.lightbox {
    width: min(92vw, 1120px);
    max-width: none;
    max-height: 92vh;
    border: 0;
    padding: 18px;
    color: var(--cream);
    background: var(--green-deep);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.48);
}

.lightbox::backdrop {
    background: rgba(4, 13, 11, 0.88);
    backdrop-filter: blur(8px);
}

.lightbox img {
    width: 100%;
    max-height: 76vh;
    object-fit: contain;
}

.lightbox p {
    margin: 14px 46px 0 4px;
    color: rgba(244, 238, 226, 0.72);
    font-size: 0.88rem;
}

.lightbox__close {
    position: absolute;
    z-index: 1;
    top: 23px;
    right: 23px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: var(--white);
    background: rgba(9, 27, 23, 0.7);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

/* Dietary + seasonal */
.dietary {
    padding-block: clamp(72px, 9vw, 120px);
}

.dietary__grid {
    display: grid;
    grid-template-columns: 0.45fr 1.15fr 0.7fr;
    gap: clamp(30px, 6vw, 90px);
    align-items: center;
}

.dietary .eyebrow {
    color: var(--green-deep);
}

.dietary h2,
.dietary p {
    margin-bottom: 0;
}

.dietary h2 {
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.seasonal-promo {
    display: grid;
    min-height: 760px;
    grid-template-columns: 1fr 1fr;
    color: var(--cream);
    background: var(--berry);
}

.seasonal-promo__image {
    min-height: 620px;
    overflow: hidden;
}

.seasonal-promo__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seasonal-promo__copy {
    display: flex;
    max-width: 650px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(55px, 8vw, 120px);
}

.seasonal-promo h2 {
    margin-bottom: 28px;
    font-size: clamp(3.6rem, 7vw, 7rem);
}

.seasonal-promo__copy > p:not(.eyebrow) {
    max-width: 500px;
    margin-bottom: 34px;
    color: rgba(244, 238, 226, 0.78);
    font-size: 1.08rem;
}

.final-cta {
    text-align: center;
}

.final-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta h2 {
    margin-bottom: 15px;
}

.final-cta .button-row {
    justify-content: center;
}

.error-page {
    display: grid;
    min-height: 78vh;
    align-items: center;
    padding-top: 190px;
    background: var(--cream);
}

.error-page__inner {
    text-align: center;
}

.error-page h1 {
    margin-bottom: 28px;
    color: var(--green);
    font-size: clamp(4rem, 10vw, 9rem);
}

.error-page p:not(.eyebrow) {
    margin-bottom: 32px;
    font-family: var(--serif);
    font-size: 1.4rem;
}

/* Christmas */
.festive-feature__grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(60px, 9vw, 130px);
    align-items: center;
}

.festive-feature__image {
    margin: 0;
}

.festive-feature__image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.festive-feature__copy > p:not(.eyebrow) {
    color: rgba(244, 238, 226, 0.72);
}

.tick-list {
    display: grid;
    gap: 0;
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
}

.tick-list li {
    position: relative;
    border-top: 1px solid rgba(244, 238, 226, 0.2);
    padding: 16px 8px 16px 34px;
    color: var(--cream);
    font-size: 0.92rem;
}

.tick-list li:last-child {
    border-bottom: 1px solid rgba(244, 238, 226, 0.2);
}

.tick-list li::before {
    position: absolute;
    left: 3px;
    color: var(--gold);
    content: "✦";
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.download-card {
    position: relative;
    display: grid;
    min-height: 410px;
    grid-template-rows: auto 1fr auto;
    border: 1px solid var(--line);
    padding: clamp(28px, 4vw, 50px);
    color: var(--green);
    background: var(--cream);
    text-decoration: none;
    transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.download-card:hover,
.download-card:focus-visible {
    color: var(--cream);
    background: var(--green);
    transform: translateY(-5px);
}

.download-card__number {
    justify-self: end;
    color: var(--gold-deep);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

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

.download-card p:not(.eyebrow) {
    max-width: 380px;
    margin-bottom: 0;
    color: #5d6662;
}

.download-card:hover p,
.download-card:focus-visible p {
    color: inherit;
}

.download-card__action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid currentColor;
    padding-top: 18px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.download-card__action b {
    font-size: 1.1rem;
}

.festive-gallery__grid {
    display: grid;
    grid-auto-rows: 430px;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
}

.festive-gallery__grid .gallery-card--wide {
    grid-row: span 2;
    grid-column: auto;
}

.booking-band {
    padding-block: clamp(74px, 9vw, 120px);
    color: var(--cream);
    background: var(--berry);
}

.booking-band__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: end;
}

.booking-band h2 {
    margin-bottom: 0;
    font-size: clamp(3.2rem, 6vw, 6rem);
}

.booking-band__copy {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(244, 238, 226, 0.78);
}

.booking-band__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Footer */
.site-footer {
    padding-top: clamp(82px, 10vw, 135px);
    color: var(--cream);
    background: var(--green-deep);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: clamp(60px, 12vw, 180px);
    padding-bottom: 95px;
}

.site-footer__lead h2 {
    margin-bottom: 25px;
    font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.site-footer__lead > p:last-child {
    max-width: 590px;
    color: rgba(244, 238, 226, 0.64);
}

.site-footer__contact {
    align-self: end;
}

.footer-label {
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-contact {
    display: block;
    width: fit-content;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(244, 238, 226, 0.4);
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.45;
    text-decoration: none;
}

.footer-contact:hover,
.footer-contact:focus-visible {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 25px;
    margin-top: 30px;
}

.social-links a {
    color: rgba(244, 238, 226, 0.72);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

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

.footer-pages {
    margin-top: 42px;
}

.footer-pages .footer-label {
    margin-bottom: 13px;
}

.footer-pages__links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
}

.footer-pages__links a {
    color: rgba(244, 238, 226, 0.72);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-pages__links a:hover,
.footer-pages__links a:focus-visible {
    color: var(--gold);
}

.site-footer__base {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 30px;
    align-items: center;
    border-top: 1px solid rgba(244, 238, 226, 0.16);
    padding-block: 28px 36px;
}

.footer-brand {
    display: block;
    width: 74px;
}

.footer-brand img {
    width: 74px;
    height: auto;
}

.site-footer__base p {
    margin: 0;
    color: rgba(244, 238, 226, 0.48);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Motion */
.has-js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.has-js .reveal--delay {
    transition-delay: 100ms;
}

.has-js .reveal--delay-2 {
    transition-delay: 180ms;
}

.has-js .reveal--delay-3 {
    transition-delay: 260ms;
}

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

@media (max-width: 1040px) {
    .site-nav {
        gap: 20px;
    }

    .site-nav > a:not(.button) {
        font-size: 0.69rem;
    }

    .hero__content {
        width: min(770px, 82%);
    }

    .hero__seal {
        right: 0;
        width: 130px;
    }

    .service-layout,
    .story__grid,
    .festive-feature__grid {
        gap: 56px;
    }

    .image-note {
        right: -15px;
    }

    .dietary__grid {
        grid-template-columns: 0.35fr 1fr;
    }

    .dietary__grid > p:last-child {
        grid-column: 2;
    }
}

@media (max-width: 860px) {
    .shell {
        width: min(calc(100% - 36px), var(--shell));
    }

    .site-header__inner {
        min-height: 88px;
    }

    .brand,
    .brand img {
        width: 80px;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 17px;
        padding: 116px max(28px, 8vw) 42px;
        background: var(--green-deep);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-16px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .site-nav::after {
        position: absolute;
        right: -160px;
        bottom: -180px;
        width: 420px;
        height: 420px;
        border: 1px solid rgba(213, 168, 88, 0.18);
        border-radius: 50%;
        content: "";
    }

    .nav-open .site-nav {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav > a:not(.button) {
        font-family: var(--serif);
        font-size: clamp(2rem, 8vw, 3.7rem);
        font-weight: 500;
        letter-spacing: -0.02em;
        line-height: 1.08;
        text-transform: none;
    }

    .site-nav .button {
        margin-top: 18px;
    }

    .hero {
        min-height: 760px;
    }

    .hero__inner {
        padding-top: 170px;
        padding-bottom: 90px;
    }

    .hero__content {
        width: min(650px, 89%);
    }

    .hero__seal {
        right: -18px;
        bottom: 42px;
        width: 112px;
    }

    .hero__seal strong {
        font-size: 1.6rem;
    }

    .hero__seal span {
        max-width: 78px;
        font-size: 0.5rem;
    }

    .occasion-strip {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .occasion-strip::-webkit-scrollbar {
        display: none;
    }

    .occasion-strip__track {
        justify-content: flex-start;
    }

    .intro__grid,
    .section-heading--split,
    .service-layout,
    .story__grid,
    .festive-feature__grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .intro__copy {
        padding-top: 0;
    }

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

    .food-card--large {
        grid-row: auto;
        grid-column: span 2;
        min-height: 700px;
    }

    .food-card {
        min-height: 460px;
    }

    .service-layout__image img,
    .story__portrait img,
    .festive-feature__image img {
        aspect-ratio: 16 / 12;
    }

    .story__grid {
        gap: 78px;
    }

    .story__copy {
        max-width: 650px;
    }

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

    .number-card {
        border-bottom: 1px solid rgba(16, 42, 36, 0.25);
    }

    .number-card:nth-child(2) {
        border-right: 0;
    }

    .number-card:nth-child(3) {
        padding-left: 0;
    }

    .number-card:nth-child(3),
    .number-card:nth-child(4) {
        border-bottom: 0;
        padding-top: 35px;
    }

    .gallery-grid {
        grid-auto-rows: 250px;
        grid-template-columns: 1fr 1fr;
    }

    .dietary__grid {
        grid-template-columns: 1fr 1.5fr;
    }

    .seasonal-promo {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .seasonal-promo__image {
        min-height: 620px;
    }

    .seasonal-promo__copy {
        max-width: none;
    }

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

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

    .festive-gallery__grid {
        grid-auto-rows: 360px;
    }

    .booking-band__inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .booking-band__actions {
        align-items: flex-start;
    }

    .site-footer__grid {
        gap: 60px;
    }

    .site-footer__contact {
        align-self: start;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .section {
        padding-block: 82px;
    }

    h2 {
        font-size: clamp(2.75rem, 15vw, 4.2rem);
    }

    .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .button-row .button {
        width: 100%;
    }

    .hero {
        min-height: 720px;
    }

    .hero::before {
        background: linear-gradient(180deg, rgba(5, 17, 14, 0.45) 0%, rgba(5, 17, 14, 0.42) 35%, rgba(5, 17, 14, 0.96) 82%, rgba(5, 17, 14, 0.99) 100%);
    }

    .hero--christmas::before {
        background: linear-gradient(180deg, rgba(42, 12, 15, 0.32) 0%, rgba(42, 12, 15, 0.5) 38%, rgba(42, 12, 15, 0.97) 82%, rgba(42, 12, 15, 1) 100%);
    }

    .hero__image img,
    .hero--christmas .hero__image img {
        object-position: 59% center;
    }

    .hero__inner {
        align-items: flex-end;
        padding-top: 150px;
        padding-bottom: 64px;
    }

    .hero__content {
        width: 100%;
    }

    .hero h1 {
        margin-bottom: 25px;
        font-size: clamp(4rem, 20vw, 6.2rem);
    }

    .hero__lede {
        max-width: calc(100% - 20px);
        font-size: 1.28rem;
    }

    .hero__seal {
        display: none;
    }

    .section-heading--split {
        gap: 26px;
        margin-bottom: 45px;
    }

    .section-heading--split > p {
        margin-bottom: 0;
    }

    .signature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-bottom: 82px;
    }

    .food-card--large {
        grid-column: auto;
        min-height: 560px;
    }

    .food-card {
        min-height: 470px;
    }

    .food-card__copy h3 {
        font-size: 2.35rem;
    }

    .service-layout {
        gap: 55px;
    }

    .service-layout__image img,
    .story__portrait img,
    .festive-feature__image img {
        aspect-ratio: 4 / 5;
    }

    .service-layout__image figcaption,
    .image-note {
        right: 14px;
        bottom: 18px;
        max-width: 220px;
        padding: 15px 18px;
        font-size: 1.05rem;
    }

    .story__portrait::before {
        top: -12px;
        left: -12px;
    }

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

    .number-card,
    .number-card:first-child,
    .number-card:nth-child(3),
    .number-card:last-child {
        min-height: 140px;
        border-right: 0;
        border-bottom: 1px solid rgba(16, 42, 36, 0.25);
        padding: 24px 0;
    }

    .number-card:last-child {
        border-bottom: 0;
    }

    .number-card strong {
        font-size: 4.8rem;
    }

    .number-card span {
        max-width: 240px;
    }

    .gallery-grid,
    .festive-gallery__grid {
        display: grid;
        grid-auto-rows: 330px;
        grid-template-columns: 1fr;
    }

    .gallery-card--tall,
    .gallery-card--wide,
    .festive-gallery__grid .gallery-card--wide {
        grid-row: auto;
        grid-column: auto;
    }

    .dietary__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .dietary__grid > p:last-child {
        grid-column: auto;
    }

    .dietary h2 {
        font-size: 3.2rem;
    }

    .seasonal-promo__image {
        min-height: 430px;
    }

    .seasonal-promo__copy {
        padding: 68px 18px;
    }

    .seasonal-promo h2 {
        font-size: 3.8rem;
    }

    .download-card {
        min-height: 330px;
    }

    .booking-band__actions {
        width: 100%;
    }

    .booking-band__actions .button {
        width: 100%;
    }

    .site-footer__grid {
        padding-bottom: 65px;
    }

    .footer-contact {
        font-size: 1.2rem;
        overflow-wrap: anywhere;
    }

    .site-footer__base {
        grid-template-columns: 75px 1fr;
    }

    .site-footer__base p:last-child {
        grid-column: span 2;
    }
}

/* Service pages */
.hero--service .hero__image img {
    object-position: center;
}

.hero--service::before {
    background: linear-gradient(90deg, rgba(5, 17, 14, 0.94) 0%, rgba(5, 17, 14, 0.7) 42%, rgba(5, 17, 14, 0.2) 80%, rgba(5, 17, 14, 0.34) 100%);
}

.hero--service .hero__content {
    max-width: 880px;
}

.hero--service .hero__lede {
    max-width: 700px;
}

.service-feature__grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(60px, 9vw, 130px);
    align-items: center;
}

.service-feature__image {
    margin: 0;
}

.service-feature__image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.service-feature__copy > p:not(.eyebrow) {
    color: rgba(244, 238, 226, 0.72);
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    border: 1px solid rgba(16, 42, 36, 0.16);
    padding: clamp(28px, 4vw, 50px);
    background: var(--paper);
}

.service-card__number {
    display: block;
    margin-bottom: 48px;
    color: var(--gold-deep);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.service-card h3 {
    max-width: 520px;
    margin-bottom: 16px;
    color: var(--green);
    font-size: clamp(2rem, 3.1vw, 3.25rem);
}

.service-card > p {
    max-width: 620px;
    margin-bottom: 0;
    color: #53605a;
}

.service-card .service-card__note {
    margin-top: 16px;
    color: var(--green-soft);
    font-size: 0.78rem;
    font-style: italic;
}

.service-card ul {
    display: grid;
    gap: 8px 28px;
    margin: 25px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(16, 42, 36, 0.16);
    list-style: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card li {
    position: relative;
    padding-left: 18px;
    color: #53605a;
    font-size: 0.88rem;
    line-height: 1.45;
}

.service-card li::before {
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    content: "";
}

.service-overview {
    color: var(--cream);
    background: var(--green);
}

.service-overview__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(50px, 9vw, 140px);
    align-items: start;
}

.service-overview h2 {
    margin-bottom: 0;
}

.service-overview__list {
    display: grid;
    gap: 0 40px;
    margin: 0;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-overview__list li {
    border-top: 1px solid rgba(244, 238, 226, 0.2);
    padding: 17px 0;
    color: rgba(244, 238, 226, 0.82);
    font-size: 0.93rem;
}

.service-overview__list li:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(244, 238, 226, 0.2);
}

.service-booking h2 {
    max-width: 800px;
}

.service-booking p:not(.eyebrow) {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(244, 238, 226, 0.76);
}

.service-related__inner {
    display: grid;
    grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.service-related__inner .eyebrow {
    margin: 5px 0 0;
}

.service-related__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(16, 42, 36, 0.22);
}

.service-related__links a {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-right: 1px solid rgba(16, 42, 36, 0.22);
    padding: 18px 20px;
    color: var(--green);
    font-family: var(--serif);
    font-size: 1.2rem;
    line-height: 1.15;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease;
}

.service-related__links a:first-child {
    border-left: 1px solid rgba(16, 42, 36, 0.22);
}

.service-related__links a:hover,
.service-related__links a:focus-visible {
    color: var(--cream);
    background: var(--green);
}

.service-related__links span {
    color: var(--gold-deep);
    font-family: var(--sans);
    font-size: 1rem;
}

/* Who we are */
.hero--story::before {
    background: linear-gradient(90deg, rgba(5, 17, 14, 0.94) 0%, rgba(5, 17, 14, 0.72) 42%, rgba(5, 17, 14, 0.22) 82%, rgba(5, 17, 14, 0.35) 100%);
}

.hero--story .hero__image img {
    object-position: center 42%;
}

.who-offer {
    overflow: hidden;
}

.who-offer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(50px, 9vw, 140px);
    align-items: center;
}

.who-offer__images {
    position: relative;
    min-height: 560px;
    isolation: isolate;
}

.who-offer__images::before {
    position: absolute;
    z-index: -1;
    top: 22px;
    left: 22px;
    width: 46%;
    height: 45%;
    background: var(--gold);
    content: "";
}

.who-offer__images figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.who-offer__images figure:first-child {
    width: 88%;
    aspect-ratio: 4 / 3;
}

.who-offer__images figure:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    aspect-ratio: 4 / 3;
    border: 12px solid var(--green);
}

.who-offer__images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-offer__copy > p:not(.eyebrow, .lead) {
    color: rgba(244, 238, 226, 0.74);
}

.who-menu__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.who-menu-card {
    display: flex;
    min-height: 520px;
    flex-direction: column;
    border: 1px solid rgba(16, 42, 36, 0.16);
    background: var(--paper);
}

.who-menu-card figure {
    min-height: 245px;
    margin: 0;
    overflow: hidden;
    background: var(--green-deep);
}

.who-menu-card--featured figure {
    min-height: 310px;
}

.who-menu-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.who-menu-card:hover figure img {
    transform: scale(1.035);
}

.who-menu-card__copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: clamp(26px, 4vw, 46px);
}

.who-menu-card__copy > span {
    display: block;
    margin-bottom: 17px;
    color: var(--gold-deep);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.who-menu-card h3 {
    margin-bottom: 16px;
    color: var(--green);
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.who-menu-card p {
    margin-bottom: 12px;
    color: #53605a;
    font-size: 0.94rem;
}

.who-menu-card p:last-child {
    margin-bottom: 0;
}

.who-dietary__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(50px, 9vw, 140px);
    align-items: start;
}

.who-dietary h2 {
    margin-bottom: 0;
}

.who-dietary__copy .lead {
    max-width: 620px;
    color: rgba(244, 238, 226, 0.82);
}

.who-quote {
    color: var(--green-deep);
}

.who-quote__inner {
    max-width: 930px;
    text-align: center;
}

.who-quote blockquote {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 4.2vw, 4.7rem);
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.who-booking {
    background: var(--berry);
}

.christmas-trimmings {
    background: var(--green-deep);
}

.christmas-trimmings__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(50px, 9vw, 140px);
    align-items: start;
}

.christmas-trimmings h2 {
    margin-bottom: 22px;
}

.christmas-trimmings__intro {
    max-width: 480px;
    color: rgba(244, 238, 226, 0.72);
}

.christmas-trimmings .tick-list {
    margin-top: 0;
    padding-top: 0;
}

.christmas-trimmings .tick-list li {
    border-bottom-color: rgba(244, 238, 226, 0.2);
}

.christmas-menu .service-card-grid,
.christmas-packages .service-card-grid {
    align-items: stretch;
}

.christmas-menu .service-card,
.christmas-packages .service-card {
    min-height: 100%;
}

@media (max-width: 860px) {
    .service-feature__grid,
    .service-overview__grid,
    .service-related__inner,
    .christmas-trimmings__grid,
    .who-offer__grid,
    .who-dietary__grid {
        grid-template-columns: 1fr;
    }

    .service-card-grid {
        grid-template-columns: 1fr;
    }

    .service-feature__image img {
        aspect-ratio: 16 / 12;
    }
}

@media (max-width: 600px) {
    .service-card ul,
    .service-overview__list,
    .service-related__links,
    .who-menu__grid {
        grid-template-columns: 1fr;
    }

    .who-offer__images {
        display: grid;
        min-height: 0;
        gap: 12px;
    }

    .who-offer__images figure:first-child,
    .who-offer__images figure:last-child {
        position: relative;
        width: 100%;
        aspect-ratio: 4 / 3;
        border-width: 0;
    }

    .who-offer__images figure:last-child {
        right: auto;
        bottom: auto;
    }

    .who-menu-card,
    .who-menu-card--featured {
        min-height: 0;
    }

    .service-overview__list li:nth-last-child(2) {
        border-bottom: 0;
    }

    .service-related__links a,
    .service-related__links a:first-child {
        min-height: 66px;
        border-top: 0;
        border-right: 1px solid rgba(16, 42, 36, 0.22);
        border-bottom: 1px solid rgba(16, 42, 36, 0.22);
        border-left: 1px solid rgba(16, 42, 36, 0.22);
    }
}

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

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

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