/* =====================================================
   RESET
===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    background: #f7f3ea;
    color: #161616;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img,
video {
    display: block;
}

img {
    max-width: 100%;
}

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

button {
    font: inherit;
}


/* =====================================================
   VARIABLES
===================================================== */

:root {
    /* Antonia identity */
    --red: #c9342c;
    --dark-red: #9f2924;

    /* Backgrounds */
    --cream: #f7f3ea;
    --white: #fffdf8;
    --black: #151515;

    /* Secondary palette */
    --yellow: #f0d58a;
    --green: #7ea99b;
    --mint: #c8e1d7;

    --border: rgba(20, 20, 20, 0.15);

    --container: 1440px;
}


/* =====================================================
   GLOBAL
===================================================== */

.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}

.section {
    padding: 120px 0;
}

.eyebrow {
    margin: 0;

    font-size: 0.78rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.16em;
}

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

.section-number {
    display: inline-block;
    margin-bottom: 24px;

    font-size: 0.75rem;
    font-weight: 700;
}

.section-number--light {
    color: rgba(255, 255, 255, 0.6);
}

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

h2 {
    margin-bottom: 0;

    font-size: clamp(3.4rem, 8vw, 7.5rem);
    line-height: 0.88;

    letter-spacing: -0.055em;

    text-transform: uppercase;
}

h2 em {
    font-family: "Playfair Display", serif;
    font-weight: 500;

    text-transform: none;

    letter-spacing: -0.04em;
}


/* =====================================================
   BUTTONS
===================================================== */

.button {
    display: inline-flex;

    min-height: 54px;

    align-items: center;
    justify-content: center;

    padding: 0 28px;

    border-radius: 100px;

    font-size: 0.76rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.09em;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

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

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

.button--light:hover {
    background: var(--yellow);
}

.button--outline-light {
    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.6);
}

.button--outline-light:hover {
    color: var(--black);

    background: var(--white);
    border-color: var(--white);
}

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

.text-link {
    display: inline-flex;

    gap: 16px;

    align-items: center;

    padding-bottom: 6px;

    border-bottom: 1px solid;

    font-size: 0.85rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.text-link span {
    transition: transform 0.3s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;

    padding: 22px 4%;

    color: white;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        padding 0.3s ease;
}

.header.scrolled {
    padding-top: 14px;
    padding-bottom: 14px;

    color: var(--black);

    background: rgba(247, 243, 234, 0.92);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header.scrolled .logo__img--white {
    opacity: 0;
}

.header.scrolled .logo__img--color {
    opacity: 1;
}

.header__inner {
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    max-width: 1600px;

    margin-inline: auto;
}

.logo {
    position: relative;

    display: inline-block;

    width: 130px;
    height: 34px;
}

.logo__img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: left center;

    transition: opacity 0.25s ease;
}

.logo__img--white {
    opacity: 1;
}

.logo__img--color {
    opacity: 0;
}

.desktop-nav {
    display: flex;

    gap: 35px;

    align-items: center;
}

.desktop-nav a {
    font-size: 0.78rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.07em;

    transition: opacity 0.25s ease;
}

.desktop-nav a:hover {
    opacity: 0.6;
}

.header__cta {
    justify-self: end;

    padding-bottom: 4px;

    border-bottom: 1px solid currentColor;

    font-size: 0.75rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    padding: 0;

    border: 0;

    color: inherit;
    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 26px;
    height: 2px;

    margin: 6px auto;

    background: currentColor;

    transition: transform 0.3s ease;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {
    position: fixed;

    inset: 0;

    z-index: 900;

    display: flex;

    flex-direction: column;
    justify-content: space-between;

    padding: 130px 7% 45px;

    color: white;

    background: var(--red);

    transform: translateY(-100%);

    transition: transform 0.5s cubic-bezier(.7, 0, .2, 1);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu__nav a {
    padding: 10px 0;

    font-size: clamp(3rem, 12vw, 5rem);
    font-weight: 600;

    line-height: 1;

    letter-spacing: -0.06em;
}

.mobile-menu__bottom {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}

.mobile-menu__bottom p {
    margin: 0;

    opacity: 0.7;

    line-height: 1.5;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 100svh;

    overflow: hidden;

    color: white;
}


/* VIDEO */

.hero__video {
    position: absolute;

    inset: 0;

    z-index: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* OVERLAY */

.hero__overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.24) 0%,
            rgba(0, 0, 0, 0.04) 58%,
            rgba(0, 0, 0, 0.14) 100%
        ),
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.48) 0%,
            rgba(0, 0, 0, 0.04) 58%,
            rgba(0, 0, 0, 0.12) 100%
        );
}


/* HERO CONTENT */

.hero__content {
    position: absolute;

    inset: 0;

    z-index: 2;

    display: grid;

    grid-template-rows:
        auto
        auto
        1fr
        auto
        auto;

    width: 88%;
    max-width: 1500px;

    margin-inline: auto;

    /*
       Top = distance from navigation
       Bottom = keeps tagline/buttons safely visible
    */

    padding-top: 14vh;
    padding-bottom: clamp(70px, 9vh, 105px);
}


/* SMALL TEXT */

.hero__eyebrow {
    grid-row: 1;

    margin: 0 0 18px;

    color: #f8f3e9;

    font-size: 0.75rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.18em;
}


/* LOGO WRAPPER */

.hero__title {
    grid-row: 2;

    margin: 0;
}


/* ANTONIA SVG */

.hero__logo {
    display: block;

    width: min(52vw, 840px);
    height: auto;

    max-height: 38vh;

    object-fit: contain;
    object-position: left center;
}


/* TAGLINE */

.hero__subtitle {
    grid-row: 4;

    max-width: 520px;

    margin: 0 0 22px;

    color: var(--yellow);

    font-family: "Playfair Display", serif;

    font-size: clamp(1.8rem, 2.6vw, 2.8rem);
    font-style: italic;

    line-height: 1.03;

    letter-spacing: -0.03em;
}


/* HERO BUTTONS */

.hero__actions {
    grid-row: 5;

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}


/* SCROLL INDICATOR */

.hero__scroll {
    position: absolute;

    right: 4%;
    bottom: 7%;

    z-index: 3;

    display: flex;

    gap: 12px;

    align-items: center;

    transform: rotate(90deg);
    transform-origin: right bottom;

    font-size: 0.7rem;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero__scroll-line {
    width: 60px;
    height: 1px;

    background: white;
}


/* =====================================================
   INTRO
===================================================== */

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

.intro__grid {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 10vw;

    align-items: end;
}

.intro__heading h2 {
    color: var(--red);
}

.intro__content {
    max-width: 540px;

    padding-bottom: 10px;
}

.intro__large-text {
    margin-bottom: 35px;

    font-size: clamp(1.45rem, 2.3vw, 2.2rem);

    line-height: 1.2;

    letter-spacing: -0.03em;
}

.intro__content > p:not(.intro__large-text) {
    margin-bottom: 35px;

    color: #555;

    font-size: 1rem;

    line-height: 1.7;
}


/* =====================================================
   FOOD
===================================================== */

.food-section {
    padding: 120px 0;

    background: #dedbcf;
}

.section-header {
    display: grid;

    grid-template-columns: 0.5fr 1.5fr;

    gap: 60px;

    margin-bottom: 70px;

    align-items: end;
}

.food-scroll {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;

    width: min(96%, 1700px);

    margin-inline: auto;
}

.food-card {
    position: relative;

    height: min(70vh, 760px);

    overflow: hidden;
}

.food-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

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

.food-card__overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.7),
            transparent 65%
        );
}

.food-card__content {
    position: absolute;

    inset: auto 0 0;

    display: flex;

    gap: 30px;

    align-items: flex-end;
    justify-content: space-between;

    padding: 28px;

    color: white;
}

.food-card__content > span {
    font-size: 0.75rem;
}

.food-card h3 {
    margin-bottom: 8px;

    font-size: clamp(1.8rem, 3vw, 3rem);

    letter-spacing: -0.04em;
}

.food-card p {
    margin: 0;

    opacity: 0.75;
}

/* =====================================================
   FOOD CARDS — CLICKABLE
===================================================== */

.food-card {
    display: block;
    cursor: pointer;
}


/* Small CTA */

.food-card__cta {
    display: inline-flex;

    margin-top: 16px;

    color: white;

    font-size: 0.68rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.1em;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


/* Show CTA on hover */

.food-card:hover .food-card__cta,
.food-card:focus-visible .food-card__cta {
    opacity: 1;

    transform: translateY(0);
}


/* Keyboard accessibility */

.food-card:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 4px;
}


/* Mobile — always show CTA */

@media (max-width: 650px) {

    .food-card__cta {
        opacity: 1;
        transform: none;
    }

}

/* =====================================================
   STORY
===================================================== */

.story {
    display: grid;

    min-height: 800px;

    grid-template-columns: 1fr 1fr;

    background: var(--red);

    color: white;
}

.story__image {
    min-height: 700px;
}

.story__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.story__content {
    display: flex;

    flex-direction: column;
    justify-content: center;

    padding: clamp(60px, 8vw, 140px);
}

.story__content h2 {
    margin: 20px 0 45px;

    font-size: clamp(5rem, 10vw, 10rem);
}

.story__lead {
    margin-bottom: 15px;

    font-family: "Playfair Display", serif;

    font-size: 2rem;
    font-style: italic;
}

.story__content > p:not(.story__lead):not(.eyebrow) {
    max-width: 480px;

    opacity: 0.78;

    line-height: 1.7;
}

.story__timeline {
    display: flex;

    align-items: center;

    margin-top: 55px;
}

.timeline-item span {
    font-size: 0.78rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.timeline-item p {
    margin: 5px 0 0;

    opacity: 0.6;

    font-size: 0.75rem;
}

.timeline-line {
    flex: 1;

    height: 1px;

    margin: 0 18px;

    background: rgba(255, 255, 255, 0.3);
}


/* =====================================================
   MARQUEE
===================================================== */

.marquee {
    overflow: hidden;

    padding: 24px 0;

    color: white;

    background: var(--green);
}

.marquee__track {
    display: flex;

    width: max-content;

    animation: marquee 20s linear infinite;
}

.marquee span {
    white-space: nowrap;

    font-size: clamp(2.3rem, 5vw, 5rem);
    font-weight: 600;

    letter-spacing: -0.05em;
}

@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =====================================================
   LOCATIONS
===================================================== */

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

.locations-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 60px 22px;
}

.location-detail-card {
    scroll-margin-top: 110px;
}

.location-card__image {
    overflow: hidden;

    aspect-ratio: 4 / 3;
}

.location-card__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.location-card:hover img {
    transform: scale(1.025);
}

.location-card__content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 18px;
}

.location-card__content span {
    display: block;

    margin-bottom: 5px;

    color: #777;

    font-size: 0.72rem;

    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.location-card h3 {
    margin: 0;

    font-size: clamp(1.5rem, 2.3vw, 2.3rem);

    letter-spacing: -0.04em;
}

.location-card__content > a {
    display: grid;

    width: 46px;
    height: 46px;

    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.location-card__content > a:hover {
    color: white;

    background: var(--red);
}

.locations__footer {
    margin-top: 70px;

    text-align: center;
}


/* =====================================================
   WHAT'S ON
===================================================== */

.whats-on {
    padding: 130px 0;

    color: white;

    background: var(--black);
}

.whats-on__inner {
    display: grid;

    grid-template-columns: 0.3fr 1fr 1.2fr;

    gap: 50px;
}

.whats-on__heading h2 {
    margin-top: 20px;

    font-size: clamp(3.5rem, 7vw, 7rem);
}

.whats-on__items {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.event {
    display: grid;

    grid-template-columns: 50px 1fr 50px;

    gap: 20px;

    align-items: center;

    padding: 28px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

    transition: padding 0.3s ease;
}

.event:hover {
    padding-left: 10px;
}

.event__number {
    opacity: 0.5;

    font-size: 0.7rem;
}

.event h3 {
    margin-bottom: 5px;

    font-size: 1.4rem;
}

.event p {
    margin: 0;

    opacity: 0.55;

    font-size: 0.85rem;
}

.event__arrow {
    justify-self: end;

    font-size: 1.3rem;
}


/* =====================================================
   SOCIAL
===================================================== */

.social {
    display: flex;

    min-height: 650px;

    align-items: center;

    text-align: center;

    background: var(--mint);
}

.social__heading {
    display: flex;

    flex-direction: column;

    align-items: center;
}

.social h2 {
    margin: 20px 0 45px;
}

/* =====================================================
   LOCATIONS PAGE
===================================================== */


/* =====================================================
   LOCATIONS HERO
===================================================== */

.locations-hero {
    position: relative;

    min-height: 88vh;

    display: flex;
    align-items: flex-end;

    padding: 170px 0 90px;

    overflow: hidden;

    color: var(--white);

    background: var(--red);
}


/* subtle decorative circle */

.locations-hero::after {
    content: "";

    position: absolute;

    width: min(55vw, 850px);
    aspect-ratio: 1;

    right: -16vw;
    top: -20vw;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    pointer-events: none;
}


.locations-hero__inner {
    position: relative;

    z-index: 2;

    width: 100%;
}


.locations-hero__top {
    margin-bottom: 80px;
}


.locations-hero__top .eyebrow {
    margin-bottom: 28px;

    color: var(--yellow);
}


.locations-hero h1 {
    margin: 0;

    font-size: clamp(5rem, 12vw, 13rem);

    font-weight: 600;

    line-height: 0.78;

    letter-spacing: -0.075em;

    text-transform: uppercase;
}


.locations-hero h1 em {
    display: inline-block;

    color: var(--yellow);

    font-family: "Playfair Display", serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;

    letter-spacing: -0.05em;
}


.locations-hero__bottom {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;
}


.locations-hero__bottom > p {
    max-width: 470px;

    margin: 0;

    color: rgba(255, 255, 255, 0.75);

    font-size: clamp(1.15rem, 1.7vw, 1.5rem);

    line-height: 1.5;

    letter-spacing: -0.02em;
}



/* =====================================================
   LOCATION FILTER
===================================================== */

.locations-filter {
    display: flex;

    gap: 8px;

    align-items: center;
    flex-wrap: wrap;
}


.locations-filter__button {
    min-height: 45px;

    padding: 0 22px;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 100px;

    color: var(--white);

    background: transparent;

    font-size: 0.72rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.09em;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.locations-filter__button:hover {
    border-color: var(--white);

    transform: translateY(-2px);
}


.locations-filter__button.active {
    color: var(--black);

    background: var(--yellow);
    border-color: var(--yellow);
}



/* =====================================================
   ALL LOCATIONS
===================================================== */

.all-locations {
    background: var(--cream);
}


.all-locations__grid {
    display: flex;

    flex-direction: column;

    gap: 150px;
}



/* =====================================================
   LOCATION DETAIL CARD
===================================================== */

.location-detail-card {
    display: grid;

    grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);

    gap: clamp(45px, 7vw, 110px);

    align-items: center;

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}


/* alternating cards */

.location-detail-card--reverse {
    grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.25fr);
}


.location-detail-card--reverse .location-detail-card__image {
    grid-column: 2;
    grid-row: 1;
}


.location-detail-card--reverse .location-detail-card__content {
    grid-column: 1;
    grid-row: 1;
}



/* hidden by filters */

.location-detail-card.location-hidden {
    display: none;
}



/* =====================================================
   LOCATION IMAGE
===================================================== */

.location-detail-card__image {
    position: relative;

    display: block;

    aspect-ratio: 1.25 / 1;

    overflow: hidden;

    background: #ddd;
}


.location-detail-card__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s cubic-bezier(.2, .7, .2, 1);
}


.location-detail-card:hover .location-detail-card__image img {
    transform: scale(1.035);
}


.location-detail-card__number {
    position: absolute;

    top: 22px;
    left: 22px;

    display: grid;

    width: 48px;
    height: 48px;

    place-items: center;

    border-radius: 50%;

    color: var(--black);

    background: var(--yellow);

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.08em;
}



/* =====================================================
   LOCATION CONTENT
===================================================== */

.location-detail-card__content {
    display: flex;

    flex-direction: column;

    gap: 48px;
}


.location-detail-card__heading .eyebrow {
    margin-bottom: 18px;

    color: var(--red);
}


.location-detail-card__heading h2 {
    margin: 0;

    color: var(--red);

    font-size: clamp(3.2rem, 5vw, 6rem);

    line-height: 0.88;

    letter-spacing: -0.06em;
}


.location-detail-card__heading h2 em {
    color: var(--black);

    font-family: "Playfair Display", serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;
}


.location-detail-card__info {
    max-width: 390px;
}


.location-detail-card__type {
    margin-bottom: 18px !important;

    color: var(--black) !important;

    font-size: 1.25rem !important;
    font-weight: 600;

    letter-spacing: -0.025em;
}


.location-detail-card__info > p {
    margin-bottom: 15px;

    color: #646464;

    font-size: 0.92rem;

    line-height: 1.65;
}


.location-detail-card__actions {
    display: flex;

    gap: 25px;

    align-items: center;
    flex-wrap: wrap;

    margin-top: 32px;
}


/* =====================================================
   LOCATION DETAILS — OPENING HOURS
===================================================== */

.location-detail-card__hours {
    width: 100%;

    margin-top: 10px;
}


.location-detail-card__hours-title {
    margin:
        0
        0
        14px;

    color: var(--black);

    font-size: 0.65rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}



.location-detail-hours {
    width: 100%;
}


.location-detail-hours__row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding:
        7px
        0;

    border-bottom:
        1px solid
        rgba(0, 0, 0, 0.08);

    color: #666;

    font-size: 0.78rem;
}


.location-detail-hours__day {
    min-width: 85px;
}


.location-detail-hours__time {
    text-align: right;
}



/* TODAY */

.location-detail-hours__row--today {
    color: var(--red);

    font-weight: 700;
}


.location-detail-hours__row--today
.location-detail-hours__day::after {
    content: " · Today";

    font-size: 0.58rem;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    opacity: 0.75;
}



/* MOBILE */

@media (max-width: 650px) {

    .location-detail-hours__row {
        font-size: 0.75rem;
    }

}

/* =====================================================
   MAP SECTION
===================================================== */

.locations-map-section {
    padding: 130px 0;

    color: var(--white);

    background: var(--green);
}


.locations-map-section__heading {
    display: grid;

    grid-template-columns: 0.25fr 0.5fr 1.25fr;

    gap: 40px;

    align-items: end;

    margin-bottom: 70px;
}


.locations-map-section__heading .section-number {
    margin: 0;
}


.locations-map-section__heading .eyebrow {
    margin: 0;
}


.locations-map-section__heading h2 {
    color: var(--white);
}


.locations-map-section__heading h2 em {
    color: var(--yellow);
}



/* map placeholder */

.locations-map-placeholder {
    position: relative;

    display: grid;

    min-height: 560px;

    place-items: center;

    overflow: hidden;

    border-radius: 2px;

    color: var(--black);

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.7),
            rgba(255, 255, 255, 0.7)
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(0, 0, 0, 0.04) 40px,
            rgba(0, 0, 0, 0.04) 41px
        ),
        var(--cream);
}


/* faux map lines */

.locations-map-placeholder::before,
.locations-map-placeholder::after {
    content: "";

    position: absolute;

    width: 150%;
    height: 2px;

    background: rgba(126, 169, 155, 0.35);

    transform: rotate(-17deg);
}


.locations-map-placeholder::before {
    top: 36%;
    left: -20%;
}


.locations-map-placeholder::after {
    bottom: 31%;
    left: -15%;

    transform: rotate(13deg);
}


.locations-map-placeholder__content {
    position: relative;

    z-index: 2;

    width: min(90%, 480px);

    padding: 45px;

    text-align: center;

    background: rgba(247, 243, 234, 0.9);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.locations-map-placeholder__content .eyebrow {
    margin-bottom: 15px;

    color: var(--red);
}


.locations-map-placeholder__content h3 {
    margin-bottom: 15px;

    font-family: "Playfair Display", serif;

    font-size: clamp(2rem, 3vw, 3.2rem);
    font-style: italic;

    line-height: 1;

    letter-spacing: -0.035em;
}


.locations-map-placeholder__content > p:last-child {
    max-width: 370px;

    margin: 0 auto;

    color: #666;

    font-size: 0.9rem;

    line-height: 1.6;
}



/* =====================================================
   LOCATIONS CTA
===================================================== */

.locations-cta {
    padding: 150px 0;

    overflow: hidden;

    text-align: center;

    background: var(--yellow);
}


.locations-cta__inner {
    display: flex;

    flex-direction: column;

    align-items: center;
}


.locations-cta .eyebrow {
    margin-bottom: 25px;

    color: var(--red);
}


.locations-cta h2 {
    margin-bottom: 55px;

    color: var(--red);

    font-size: clamp(4rem, 9vw, 9rem);
}


.locations-cta h2 em {
    color: var(--black);
}


.locations-cta__actions {
    display: flex;

    gap: 30px;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;
}



/* =====================================================
   LOCATION PAGE HEADER
===================================================== */

/*
   Header is white while sitting over the red hero.
   Your existing .header.scrolled takes over after scroll.
*/

.header--locations {
    color: var(--white);
}


.header--locations .desktop-nav .active {
    position: relative;
}


.header--locations .desktop-nav .active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -7px;

    height: 1px;

    background: currentColor;
}


/* =====================================================
   ANTONIA INTERACTIVE MAP
===================================================== */

.locations-map-placeholder {
    position: relative;

    width: 100%;
    min-height: 650px;

    padding: 0;

    overflow: hidden;

    background: var(--cream);
}


/* MAP */

#antoniaMap {
    position: relative;

    z-index: 1;

    width: 100%;
    height: 650px;

    font-family: "DM Sans", sans-serif;
}


/* =====================================================
   CUSTOM ANTONIA MARKERS
===================================================== */

.antonia-map-marker {
    border: 0 !important;

    background: transparent !important;
}


.antonia-map-pin {
    position: relative;

    display: grid;

    width: 46px;
    height: 46px;

    place-items: center;

    border: 4px solid var(--cream);

    border-radius:
        50%
        50%
        50%
        0;

    color: white;

    background: var(--red);

    box-shadow:
        0 8px 22px
        rgba(0, 0, 0, 0.22);

    transform: rotate(-45deg);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.antonia-map-pin span {
    font-family: "Playfair Display", serif;

    font-size: 1.15rem;
    font-weight: 700;
    font-style: italic;

    transform: rotate(45deg);
}


.antonia-map-marker:hover
.antonia-map-pin {
    background: var(--dark-red);

    transform:
        rotate(-45deg)
        scale(1.1);
}


/* =====================================================
   MAP POPUP
===================================================== */

.leaflet-popup-content-wrapper {
    padding: 0;

    overflow: hidden;

    border-radius: 0;

    color: var(--black);

    background: var(--cream);

    box-shadow:
        0 18px 50px
        rgba(0, 0, 0, 0.18);
}


.leaflet-popup-content {
    width: 230px !important;

    margin: 0;
}


.antonia-map-popup {
    padding: 24px;
}


.antonia-map-popup__area {
    margin: 0 0 8px;

    color: var(--red);

    font-size: 0.62rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}


.antonia-map-popup h3 {
    margin: 0 0 8px;

    color: var(--black);

    font-size: 1.35rem;
    font-weight: 600;

    line-height: 1.05;

    letter-spacing: -0.04em;
}


.antonia-map-popup p {
    margin: 0 0 18px;

    color: #727272;

    font-family: "Playfair Display", serif;

    font-size: 0.95rem;
    font-style: italic;

    line-height: 1.4;
}


.antonia-map-popup a {
    display: inline-flex;

    align-items: center;

    padding-bottom: 3px;

    border-bottom:
        1px solid
        var(--black);

    color: var(--black);

    font-size: 0.7rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}


.antonia-map-popup a:hover {
    color: var(--red);

    border-color: var(--red);
}


/* Leaflet arrow */

.leaflet-popup-tip {
    background: var(--cream);
}


/* Zoom buttons */

.leaflet-control-zoom {
    overflow: hidden;

    border: 0 !important;

    border-radius: 0 !important;

    box-shadow:
        0 6px 22px
        rgba(0, 0, 0, 0.12) !important;
}


.leaflet-control-zoom a {
    color: var(--black) !important;

    background: var(--cream) !important;

    border-color:
        rgba(0, 0, 0, 0.08)
        !important;
}


.leaflet-control-zoom a:hover {
    color: white !important;

    background:
        var(--red)
        !important;
}


/* Attribution */

.leaflet-control-attribution {
    font-size: 0.58rem !important;

    opacity: 0.65;
}


/* =====================================================
   MAP MOBILE
===================================================== */

@media (max-width: 650px) {

    .locations-map-placeholder {
        min-height: 520px;
    }


    #antoniaMap {
        height: 520px;
    }


    .antonia-map-pin {
        width: 40px;
        height: 40px;
    }


    .leaflet-popup-content {
        width: 200px !important;
    }


    .antonia-map-popup {
        padding: 20px;
    }

}
/* =====================================================
   DESKTOP LARGE
===================================================== */

@media (min-width: 1400px) {

    .locations-hero__top {
        margin-bottom: 100px;
    }


    .location-detail-card__image {
        max-height: 730px;
    }

}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    /* HERO */

    .locations-hero {
        min-height: auto;

        padding:
            160px
            0
            80px;
    }


    .locations-hero__top {
        margin-bottom: 65px;
    }


    .locations-hero h1 {
        font-size: clamp(5rem, 15vw, 9rem);
    }


    .locations-hero__bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 35px;
    }


    /* CARDS */

    .all-locations__grid {
        gap: 110px;
    }


    .location-detail-card,
    .location-detail-card--reverse {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .location-detail-card--reverse .location-detail-card__image,
    .location-detail-card--reverse .location-detail-card__content {
        grid-column: auto;
        grid-row: auto;
    }


    .location-detail-card__image {
        aspect-ratio: 16 / 10;
    }


    .location-detail-card__content {
        display: grid;

        grid-template-columns: 1.15fr 0.85fr;

        gap: 50px;
    }


    /* MAP */

    .locations-map-section__heading {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .locations-map-section__heading .section-number {
        margin-bottom: 10px;
    }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    /* HERO */

    .locations-hero {
        padding:
            130px
            0
            65px;
    }


    .locations-hero::after {
        width: 100vw;

        right: -55vw;
        top: 5vh;
    }


    .locations-hero__top {
        margin-bottom: 55px;
    }


    .locations-hero__top .eyebrow {
        margin-bottom: 18px;
    }


    .locations-hero h1 {
        font-size: clamp(4.1rem, 19vw, 6.3rem);

        line-height: 0.8;
    }


    .locations-hero__bottom > p {
        font-size: 1.05rem;
    }

	.location-detail-card {
    scroll-margin-top: 110px;
}

    /* FILTER */

    .locations-filter {
        width: 100%;
    }


    .locations-filter__button {
        min-height: 42px;

        padding-inline: 17px;

        font-size: 0.65rem;
    }


    /* LOCATIONS */

    .all-locations {
        padding-top: 85px;
        padding-bottom: 100px;
    }


    .all-locations__grid {
        gap: 95px;
    }


    .location-detail-card,
    .location-detail-card--reverse {
        gap: 30px;
    }


    .location-detail-card__image {
        aspect-ratio: 4 / 5;
    }


    .location-detail-card__number {
        top: 15px;
        left: 15px;

        width: 42px;
        height: 42px;
    }


    .location-detail-card__content {
        display: flex;

        flex-direction: column;

        gap: 30px;
    }


    .location-detail-card__heading .eyebrow {
        margin-bottom: 13px;
    }


    .location-detail-card__heading h2 {
        font-size: clamp(3.2rem, 14vw, 5rem);
    }


    .location-detail-card__actions {
        align-items: flex-start;

        flex-direction: column;

        gap: 22px;

        margin-top: 26px;
    }


    /* MAP */

    .locations-map-section {
        padding: 90px 0;
    }


    .locations-map-section__heading {
        margin-bottom: 45px;
    }


    .locations-map-placeholder {
        min-height: 520px;
    }


    .locations-map-placeholder__content {
        width: 86%;

        padding: 35px 25px;
    }


    /* CTA */

    .locations-cta {
        padding: 100px 0;
    }


    .locations-cta h2 {
        margin-bottom: 40px;

        font-size: clamp(3.6rem, 16vw, 5.8rem);
    }


    .locations-cta__actions {
        flex-direction: column;

        gap: 24px;
    }

}

/* =====================================================
   MOBILE — PREVENT HORIZONTAL PAGE OVERFLOW
===================================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

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

img,
video,
svg {
    max-width: 100%;
}

@media (max-width: 650px) {

    h1,
    h2,
    h3 {
        max-width: 100%;
        overflow-wrap: normal;
    }

    .section-header,
    .section-header h2,
    .locations__heading,
    .locations__heading h2 {
        max-width: 100%;
        min-width: 0;
    }

}

@media (max-width: 650px) {

    .food-section,
    .locations,
    .whats-on,
    .social,
    main,
    section {
        max-width: 100%;
    }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

    .locations-hero h1 {
        font-size: 4rem;
    }


    .locations-filter__button {
        padding-inline: 14px;
    }


    .location-detail-card__heading h2 {
        font-size: 3.4rem;
    }


    .locations-map-placeholder {
        min-height: 460px;
    }

}
/* =====================================================
   FOOTER
===================================================== */

.footer {
    padding: 100px 0 30px;

    color: white;

    background: var(--red);
}

.footer__top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 80px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer__top h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(3rem, 8vw, 8rem);

    font-style: italic;

    text-transform: none;
}

.footer__middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 70px 0;
}

.footer__logo {
    display: flex;
    align-items: flex-start;
}

.footer__logo-img {
    display: block;

    width: min(38vw, 520px);
    height: auto;
}

.footer__links {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.footer__links div {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer__links span {
    margin-bottom: 10px;

    opacity: 0.55;

    font-size: 0.72rem;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer__links a {
    font-size: 0.9rem;
}

.footer__bottom {
    display: flex;

    justify-content: space-between;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.3);

    opacity: 0.6;

    font-size: 0.72rem;
}

.footer__bottom p {
    margin: 0;
}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.2, .7, .2, 1);
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .desktop-nav,
    .header__cta {
        display: none;
    }

    .header__inner {
        grid-template-columns: 1fr auto;
    }

    .menu-toggle {
        display: block;
    }


    /* HERO */

    .hero__content {
        width: 90%;

        padding-top: 15vh;
        padding-bottom: 8vh;
    }

    .hero__logo {
        width: min(68vw, 720px);

        max-height: 34vh;
    }

    .hero__subtitle {
        font-size: clamp(1.7rem, 4vw, 2.5rem);
    }


    /* INTRO */

    .intro__grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    /* HEADERS */

    .section-header {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    /* FOOD */

    .food-scroll {
        display: flex;

        overflow-x: auto;

        scroll-snap-type: x mandatory;

        padding-left: 4%;

        scrollbar-width: none;
    }

    .food-scroll::-webkit-scrollbar {
        display: none;
    }

    .food-card {
        flex: 0 0 72vw;

        height: 65vh;

        scroll-snap-align: start;
    }


    /* STORY */

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

    .story__image {
        min-height: 600px;
    }


    /* LOCATIONS */

    .locations-grid {
        gap: 45px 15px;
    }


    /* WHAT'S ON */

    .whats-on__inner {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

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


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .section {
        padding: 85px 0;
    }


    /* HEADER */

    .header {
        padding: 18px 6%;
    }

    .logo {
        font-size: 1.35rem;
    }


    /* HERO */

    .hero {
        min-height: 100svh;
    }

    .hero__video {
        object-position: center;
    }

    .hero__content {
        width: 88%;

        padding-top: 14vh;
        padding-bottom: 6vh;
    }

    .hero__eyebrow {
        margin-bottom: 14px;

        font-size: 0.64rem;

        letter-spacing: 0.15em;
    }

    .hero__logo {
        width: 80vw;

        max-height: 27vh;
    }

    .hero__subtitle {
        max-width: 340px;

        margin-bottom: 20px;

        font-size: clamp(1.55rem, 7vw, 2.1rem);

        line-height: 1.04;
    }

    .hero__actions {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero__actions .button {
        min-width: 190px;
    }

    .hero__scroll {
        display: none;
    }


    /* TITLES */

    h2 {
        font-size: clamp(3.1rem, 15vw, 5rem);
    }


    /* INTRO */

    .intro__large-text {
        font-size: 1.35rem;
    }


    /* FOOD */

    .food-section {
        padding: 85px 0;
    }

    .food-scroll {
        width: 100%;
    }

    .food-card {
        flex-basis: 83vw;

        height: 62vh;
    }


    /* STORY */

    .story__image {
        min-height: 480px;
    }

    .story__content {
        padding: 75px 6%;
    }

    .story__content h2 {
        font-size: 5.3rem;
    }

    .story__timeline {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }

    .timeline-line {
        width: 1px;
        height: 25px;

        flex: auto;

        margin: 0 0 0 5px;
    }


    /* LOCATIONS */

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


    /* WHAT'S ON */

    .whats-on {
        padding: 90px 0;
    }

    .event {
        grid-template-columns: 30px 1fr 30px;

        gap: 10px;
    }


    /* FOOTER */

    .footer {
        padding-top: 75px;
    }

	.footer__logo-img {
    width: min(75vw, 420px);
}
	
    .footer__top {
        align-items: flex-start;

        flex-direction: column;

        gap: 35px;

        padding-bottom: 60px;
    }

    .footer__middle {
        padding: 60px 0;
    }

    .footer__links {
        grid-template-columns: 1fr 1fr;

        row-gap: 45px;
    }

    .footer__bottom {
        flex-direction: column;

        gap: 8px;
    }

    .mobile-menu__bottom {
        align-items: flex-start;

        flex-direction: column;
    }
}

/* =====================================================
   =====================================================
   ANTONIA — MENU PAGE
   =====================================================
===================================================== */


/* =====================================================
   MENU PAGE HEADER
===================================================== */

.header--menu-page {
    color: white;
}

.header--menu-page.scrolled {
    color: var(--black);
}


/* =====================================================
   MENU HERO
===================================================== */

.menu-page-hero {
    position: relative;

    display: flex;

    min-height: 92svh;

    align-items: flex-end;

    overflow: hidden;

    padding:
        170px
        0
        85px;

    color: white;

    background: var(--red);
}


/* Decorative circle */

.menu-page-hero::after {
    content: "";

    position: absolute;

    top: -25vw;
    right: -15vw;

    width: min(70vw, 1000px);
    aspect-ratio: 1;

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    border-radius: 50%;

    pointer-events: none;
}


.menu-page-hero .container {
    position: relative;

    z-index: 2;

    width: min(92%, var(--container));
}


/* Hero eyebrow */

.menu-page-hero__top .eyebrow {
    margin-bottom: 28px;

    color: var(--yellow);
}


/* Hero title */

.menu-page-hero h1 {
    margin: 0;

    color: white;

    font-size:
        clamp(
            6rem,
            14vw,
            14rem
        );

    font-weight: 600;

    line-height: 0.72;

    letter-spacing: -0.07em;

    text-transform: uppercase;
}


.menu-page-hero h1 em {
    display: inline-block;

    color: var(--yellow);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;

    letter-spacing: -0.05em;
}


/* Hero bottom */

.menu-page-hero__bottom {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;

    margin-top: 95px;

    padding-top: 30px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.28);
}


.menu-page-hero__bottom p {
    max-width: 450px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 1.05rem;

    line-height: 1.6;
}


.menu-page-hero__bottom span {
    color:
        rgba(255, 255, 255, 0.65);

    font-size: 0.68rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}



/* =====================================================
   VENUE SELECTOR
===================================================== */

.menu-venue {
    padding:
        55px
        0;

    border-bottom:
        1px solid
        var(--border);

    background:
        var(--cream);
}


.menu-venue__inner {
    display: grid;

    grid-template-columns:
        minmax(240px, 0.75fr)
        1.5fr;

    gap: 70px;

    align-items: center;
}


.menu-venue__heading .eyebrow {
    margin-bottom: 10px;

    color: var(--red);
}


.menu-venue__heading > p:last-child {
    max-width: 420px;

    margin: 0;

    color: #777;

    font-size: 0.85rem;

    line-height: 1.55;
}



/* Venue buttons */

.menu-venue__buttons {
    display: flex;

    justify-content: flex-end;

    gap: 9px;

    flex-wrap: wrap;
}


.menu-venue__button {
    min-height: 45px;

    padding:
        0
        19px;

    border:
        1px solid
        var(--border);

    border-radius: 100px;

    color: var(--black);

    background: transparent;

    font-size: 0.72rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.menu-venue__button:hover {
    color: white;

    border-color: var(--red);

    background: var(--red);

    transform: translateY(-2px);
}


.menu-venue__button.active {
    color: white;

    border-color: var(--red);

    background: var(--red);
}



/* =====================================================
   STICKY MENU CATEGORY NAVIGATION
===================================================== */

.menu-category-nav {
    position: sticky;

    top: 0;

    z-index: 150;

    background:
        rgba(247, 243, 234, 0.96);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    border-bottom:
        1px solid
        var(--border);
}


.menu-category-nav__inner {
    display: flex;

    align-items: center;

    justify-content: center;

    gap:
        clamp(
            25px,
            5vw,
            75px
        );

    min-height: 72px;

    overflow-x: auto;

    scrollbar-width: none;
}


.menu-category-nav__inner::-webkit-scrollbar {
    display: none;
}


.menu-category-nav a {
    position: relative;

    flex-shrink: 0;

    padding:
        26px
        0;

    color: #666;

    font-size: 0.72rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.1em;

    transition:
        color 0.25s ease;
}


.menu-category-nav a::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 18px;
    left: 0;

    height: 1px;

    background: var(--red);

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform 0.3s ease;
}


.menu-category-nav a:hover {
    color: var(--red);
}


.menu-category-nav a:hover::after {
    transform: scaleX(1);
}



/* =====================================================
   GENERAL MENU SECTIONS
===================================================== */

.menu-section {
    position: relative;

    padding:
        clamp(
            110px,
            12vw,
            180px
        )
        0;

    scroll-margin-top: 72px;
}


/* Background colours */

.menu-section--cream {
    color: var(--black);

    background: var(--cream);
}


.menu-section--white {
    color: var(--black);

    background: var(--white);
}


.menu-section--red {
    color: white;

    background: var(--red);
}


.menu-section--yellow {
    color: var(--black);

    background: var(--yellow);
}


.menu-section--green {
    color: white;

    background: var(--green);
}



/* =====================================================
   SECTION HEADING
===================================================== */

.menu-section__heading {
    display: grid;

    grid-template-columns:
        0.55fr
        1.5fr
        0.8fr;

    gap: 55px;

    align-items: end;

    margin-bottom:
        clamp(
            75px,
            9vw,
            125px
        );
}


.menu-section__heading--compact {
    grid-template-columns:
        0.55fr
        1.7fr;

    align-items: end;
}


/* Main menu heading */

.menu-section__heading h2 {
    margin: 0;

    font-size:
        clamp(
            4.5rem,
            9vw,
            9rem
        );

    line-height: 0.78;

    letter-spacing: -0.065em;
}


.menu-section__heading h2 em {
    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;
}


/* Section intro */

.menu-section__intro {
    max-width: 340px;

    margin: 0;

    font-size: 0.98rem;

    line-height: 1.65;
}



/* Light section text */

.menu-section--red
.menu-section__intro,
.menu-section--green
.menu-section__intro {
    color:
        rgba(255, 255, 255, 0.74);
}


.menu-section--red
.section-number,
.menu-section--green
.section-number {
    color:
        rgba(255, 255, 255, 0.62);
}



/* =====================================================
   MENU LAYOUT
===================================================== */

.menu-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(400px, 1.05fr);

    gap:
        clamp(
            60px,
            8vw,
            130px
        );

    align-items: start;
}


.menu-layout--reverse {
    grid-template-columns:
        minmax(400px, 1.05fr)
        minmax(0, 0.95fr);
}



/* =====================================================
   MENU IMAGE
===================================================== */

.menu-layout__image {
    position: relative;

    height:
        clamp(
            580px,
            65vw,
            900px
        );

    overflow: hidden;
}


.menu-layout__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        1.1s
        cubic-bezier(
            .2,
            .65,
            .2,
            1
        );
}


.menu-layout__image:hover img {
    transform: scale(1.035);
}



/* =====================================================
   MENU LIST
===================================================== */

.menu-list {
    border-top:
        1px solid
        var(--border);
}


.menu-section--red
.menu-list,
.menu-section--green
.menu-list {
    border-color:
        rgba(255, 255, 255, 0.3);
}



/* Individual item */

.menu-item {
    padding:
        25px
        0;

    border-bottom:
        1px solid
        var(--border);
}


.menu-section--red
.menu-item,
.menu-section--green
.menu-item {
    border-color:
        rgba(255, 255, 255, 0.3);
}



/* Item top */

.menu-item__top {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 25px;

    align-items: baseline;
}


/* Dish */

.menu-item h3 {
    margin: 0;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            1.45rem,
            2vw,
            2rem
        );

    font-weight: 500;

    line-height: 1.1;
}


/* Price */

.menu-item__top > span {
    font-size: 0.82rem;
    font-weight: 700;

    white-space: nowrap;
}


/* Ingredients */

.menu-item > p {
    max-width: 520px;

    margin:
        8px
        0
        0;

    color: #777;

    font-size: 0.82rem;

    line-height: 1.55;
}


.menu-section--red
.menu-item > p,
.menu-section--green
.menu-item > p {
    color:
        rgba(255, 255, 255, 0.63);
}



/* Hover effect */

.menu-item {
    transition:
        padding-left 0.3s ease;
}


.menu-item:hover {
    padding-left: 10px;
}



/* =====================================================
   TWO COLUMN MENU LIST
===================================================== */

.menu-list--two-columns {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    column-gap:
        clamp(
            50px,
            8vw,
            130px
        );

    border-top: 0;
}


.menu-list--two-columns
.menu-item:nth-child(-n + 2) {
    border-top:
        1px solid
        var(--border);
}



/* =====================================================
   MENU NOTE
===================================================== */

.menu-section__note {
    max-width: 520px;

    margin:
        50px
        0
        0;

    color: #888;

    font-size: 0.68rem;

    line-height: 1.5;
}



/* =====================================================
   BOTTOM CTA
===================================================== */

.menu-bottom-cta {
    padding:
        clamp(
            110px,
            13vw,
            190px
        )
        0;

    color: var(--black);

    background: var(--mint);
}


.menu-bottom-cta__inner {
    max-width: 1000px;

    margin-inline: auto;

    text-align: center;
}


.menu-bottom-cta .eyebrow {
    margin-bottom: 30px;

    color: var(--red);
}


.menu-bottom-cta h2 {
    margin: 0;

    font-size:
        clamp(
            6rem,
            13vw,
            13rem
        );

    line-height: 0.72;

    letter-spacing: -0.07em;
}


.menu-bottom-cta h2 em {
    color: var(--red);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;
}


.menu-bottom-cta__actions {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 30px;

    margin-top: 65px;
}



/* =====================================================
   MENU PAGE — LAPTOP / TABLET
===================================================== */

@media (max-width: 1100px) {


    /* HERO */

    .menu-page-hero {
        min-height: 82svh;

        padding:
            160px
            0
            70px;
    }


    .menu-page-hero h1 {
        font-size:
            clamp(
                6rem,
                16vw,
                11rem
            );
    }



    /* VENUE */

    .menu-venue__inner {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .menu-venue__buttons {
        justify-content: flex-start;
    }



    /* MENU HEADINGS */

    .menu-section__heading {
        grid-template-columns:
            0.4fr
            1.4fr;

        gap: 40px;
    }


    .menu-section__intro {
        grid-column: 2;
    }


    .menu-section__heading--compact {
        grid-template-columns:
            0.4fr
            1.4fr;
    }



    /* MENU LAYOUT */

    .menu-layout,
    .menu-layout--reverse {
        grid-template-columns:
            1fr
            1fr;

        gap: 50px;
    }


    .menu-layout__image {
        height: 650px;
    }

}



/* =====================================================
   MENU PAGE — MOBILE
===================================================== */

@media (max-width: 650px) {


    /* =================================================
       HERO
    ================================================= */

    .menu-page-hero {
        min-height: 82svh;

        align-items: flex-end;

        padding:
            130px
            0
            55px;
    }


    .menu-page-hero::after {
        top: -20vw;
        right: -50vw;

        width: 130vw;
    }


    .menu-page-hero__top
    .eyebrow {
        margin-bottom: 22px;

        font-size: 0.65rem;
    }


    .menu-page-hero h1 {
        font-size:
            clamp(
                5rem,
                24vw,
                7.5rem
            );

        line-height: 0.76;
    }


    .menu-page-hero__bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;

        margin-top: 65px;

        padding-top: 25px;
    }


    .menu-page-hero__bottom p {
        max-width: 330px;

        font-size: 0.95rem;
    }



    /* =================================================
       VENUE
    ================================================= */

    .menu-venue {
        padding:
            40px
            0;
    }


    .menu-venue__inner {
        gap: 25px;
    }


    .menu-venue__buttons {
        display: flex;

        width: 100%;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 5px;

        scrollbar-width: none;
    }


    .menu-venue__buttons::-webkit-scrollbar {
        display: none;
    }


    .menu-venue__button {
        flex-shrink: 0;

        min-height: 42px;

        padding-inline: 17px;
    }



    /* =================================================
       CATEGORY NAV
    ================================================= */

    .menu-category-nav__inner {
        justify-content: flex-start;

        gap: 28px;

        min-height: 62px;
    }


    .menu-category-nav a {
        padding:
            22px
            0;

        font-size: 0.65rem;
    }


    .menu-category-nav a::after {
        bottom: 14px;
    }



    /* =================================================
       GENERAL SECTION
    ================================================= */

    .menu-section {
        padding:
            90px
            0;

        scroll-margin-top: 62px;
    }



    /* =================================================
       SECTION HEADING
    ================================================= */

    .menu-section__heading,
    .menu-section__heading--compact {
        display: block;

        margin-bottom: 65px;
    }


    .menu-section__heading
    > div:first-child {
        display: flex;

        align-items: center;

        gap: 20px;

        margin-bottom: 35px;
    }


    .menu-section__heading
    > div:first-child
    .eyebrow {
        margin: 0;
    }


    .menu-section__heading h2 {
        font-size:
            clamp(
                4.2rem,
                20vw,
                6rem
            );

        line-height: 0.8;
    }


    .menu-section__intro {
        max-width: 320px;

        margin-top: 35px;

        font-size: 0.9rem;
    }



    /* =================================================
       MENU LAYOUT
    ================================================= */

    .menu-layout,
    .menu-layout--reverse {
        display: flex;

        flex-direction: column;

        gap: 55px;
    }


    /*
       Make food list appear before image
       on mobile
    */

    .menu-layout--reverse
    .menu-list {
        order: 1;
    }


    .menu-layout--reverse
    .menu-layout__image {
        order: 2;
    }



    /* =================================================
       IMAGE
    ================================================= */

    .menu-layout__image {
        width: 100%;

        height:
            min(
                120vw,
                600px
            );
    }



    /* =================================================
       MENU ITEMS
    ================================================= */

    .menu-item {
        padding:
            21px
            0;
    }


    .menu-item:hover {
        padding-left: 0;
    }


    .menu-item h3 {
        font-size: 1.45rem;
    }


    .menu-item__top {
        gap: 15px;
    }


    .menu-item > p {
        margin-top: 7px;

        font-size: 0.78rem;
    }



    /* =================================================
       TWO COLUMNS → ONE COLUMN
    ================================================= */

    .menu-list--two-columns {
        grid-template-columns: 1fr;

        column-gap: 0;
    }


    .menu-list--two-columns
    .menu-item:first-child {
        border-top:
            1px solid
            var(--border);
    }


    .menu-list--two-columns
    .menu-item:nth-child(2) {
        border-top: 0;
    }



    /* =================================================
       BOTTOM CTA
    ================================================= */

    .menu-bottom-cta {
        padding:
            100px
            0;
    }


    .menu-bottom-cta h2 {
        font-size:
            clamp(
                5rem,
                24vw,
                7.5rem
            );
    }


    .menu-bottom-cta__actions {
        align-items: center;

        flex-direction: column;

        gap: 25px;

        margin-top: 50px;
    }

}


/* =====================================================
   =====================================================
   ANTONIA — EVENTS PAGE
   =====================================================
===================================================== */


/* =====================================================
   EVENTS HEADER
===================================================== */

.header--events {
    color: white;
}

.header--events.scrolled {
    color: var(--black);
}


/* Active navigation link */

.header--events .desktop-nav .active {
    position: relative;
}

.header--events .desktop-nav .active::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: -7px;
    left: 0;

    height: 1px;

    background: currentColor;
}



/* =====================================================
   EVENTS HERO
===================================================== */

.events-hero {
    position: relative;

    display: flex;

    min-height: 92svh;

    align-items: flex-end;

    overflow: hidden;

    padding:
        170px
        0
        85px;

    color: white;

    background: var(--black);
}


/* Decorative circle */

.events-hero::after {
    content: "";

    position: absolute;

    top: -28vw;
    right: -17vw;

    width: min(72vw, 1050px);
    aspect-ratio: 1;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    pointer-events: none;
}


/* Second decorative circle */

.events-hero::before {
    content: "";

    position: absolute;

    top: -8vw;
    right: -30vw;

    width: min(62vw, 900px);
    aspect-ratio: 1;

    border:
        1px solid
        rgba(255, 255, 255, 0.06);

    border-radius: 50%;

    pointer-events: none;
}


.events-hero .container {
    position: relative;

    z-index: 2;
}


/* Eyebrow */

.events-hero__top .eyebrow {
    margin-bottom: 28px;

    color: var(--yellow);
}


/* Main title */

.events-hero h1 {
    margin: 0;

    color: white;

    font-size:
        clamp(
            5.8rem,
            13vw,
            13rem
        );

    font-weight: 600;

    line-height: 0.73;

    letter-spacing: -0.075em;

    text-transform: uppercase;
}


.events-hero h1 em {
    display: inline-block;

    color: var(--red);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;

    letter-spacing: -0.055em;
}


/* Hero bottom */

.events-hero__bottom {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;

    margin-top: 95px;

    padding-top: 30px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.22);
}


.events-hero__bottom p {
    max-width: 430px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 1rem;

    line-height: 1.65;
}


.events-hero__bottom span {
    color:
        rgba(255, 255, 255, 0.52);

    font-size: 0.68rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}



/* =====================================================
   EVENTS INTRO
===================================================== */

.events-intro {
    padding:
        110px
        0
        85px;

    background: var(--cream);
}


.events-intro__inner {
    display: grid;

    grid-template-columns:
        0.45fr
        1.25fr
        0.9fr;

    gap: 55px;

    align-items: end;
}


.events-intro__inner > div:first-child
.eyebrow {
    color: var(--red);
}


.events-intro h2 {
    margin: 0;

    color: var(--red);

    font-size:
        clamp(
            4rem,
            8vw,
            8rem
        );

    line-height: 0.8;

    letter-spacing: -0.065em;
}


.events-intro h2 em {
    color: var(--black);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;
}



/* =====================================================
   EVENT FILTERS
===================================================== */

.events-filter {
    display: flex;

    gap: 8px;

    justify-content: flex-end;

    flex-wrap: wrap;
}


.events-filter__button {
    min-height: 44px;

    padding:
        0
        19px;

    border:
        1px solid
        var(--border);

    border-radius: 100px;

    color: var(--black);

    background: transparent;

    font-size: 0.68rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.events-filter__button:hover {
    color: white;

    border-color: var(--red);

    background: var(--red);

    transform: translateY(-2px);
}


.events-filter__button.active {
    color: white;

    border-color: var(--red);

    background: var(--red);
}



/* =====================================================
   FEATURED EVENT
===================================================== */

.featured-event {
    padding:
        0
        0
        140px;

    background: var(--cream);
}


.featured-event__card {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(360px, 0.85fr);

    min-height: 760px;

    overflow: hidden;

    background: var(--yellow);
}



/* =====================================================
   FEATURED IMAGE
===================================================== */

.featured-event__image {
    position: relative;

    min-height: 760px;

    overflow: hidden;

    background: #ddd;
}


.featured-event__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        1s
        cubic-bezier(
            .2,
            .65,
            .2,
            1
        );
}


.featured-event__card:hover
.featured-event__image img {
    transform: scale(1.035);
}



/* Date circle */

.featured-event__date {
    position: absolute;

    top: 28px;
    left: 28px;

    display: flex;

    width: 88px;
    height: 88px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    border-radius: 50%;

    color: white;

    background: var(--red);

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.18);
}


.featured-event__date span {
    font-family:
        "Playfair Display",
        serif;

    font-size: 2rem;

    font-weight: 600;

    line-height: 0.9;
}


.featured-event__date strong {
    margin-top: 6px;

    font-size: 0.58rem;

    letter-spacing: 0.15em;
}



/* =====================================================
   FEATURED CONTENT
===================================================== */

.featured-event__content {
    display: flex;

    flex-direction: column;
    justify-content: center;

    padding:
        clamp(
            55px,
            6vw,
            95px
        );
}


.featured-event__content
.eyebrow {
    margin-bottom: 25px;

    color: var(--red);
}


.featured-event__content h2 {
    margin: 0 0 30px;

    color: var(--red);

    font-size:
        clamp(
            4rem,
            6vw,
            7rem
        );

    line-height: 0.8;

    letter-spacing: -0.065em;
}


.featured-event__content h2 em {
    color: var(--black);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;
}


.featured-event__content > h3 {
    max-width: 500px;

    margin:
        0
        0
        38px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            1.5rem,
            2.2vw,
            2rem
        );

    font-weight: 500;

    line-height: 1.2;
}



/* =====================================================
   FEATURED DETAILS
===================================================== */

.featured-event__details {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    margin-bottom: 38px;

    border-top:
        1px solid
        rgba(0, 0, 0, 0.18);
}


.featured-event__details > div {
    padding:
        18px
        0;

    border-bottom:
        1px solid
        rgba(0, 0, 0, 0.18);
}


.featured-event__details
> div:nth-child(odd) {
    padding-right: 24px;

    border-right:
        1px solid
        rgba(0, 0, 0, 0.18);
}


.featured-event__details
> div:nth-child(even) {
    padding-left: 24px;
}


.featured-event__details span {
    display: block;

    margin-bottom: 7px;

    color:
        rgba(0, 0, 0, 0.52);

    font-size: 0.6rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}


.featured-event__details p {
    margin: 0;

    font-size: 0.87rem;

    line-height: 1.4;
}



/* Description */

.featured-event__description {
    max-width: 540px;

    margin:
        0
        0
        38px;

    color: #575757;

    font-size: 0.9rem;

    line-height: 1.7;
}



/* Actions */

.featured-event__actions {
    display: flex;

    gap: 28px;

    align-items: center;

    flex-wrap: wrap;
}



/* =====================================================
   UPCOMING EVENTS
===================================================== */

.upcoming-events {
    padding:
        clamp(
            110px,
            12vw,
            180px
        )
        0;

    color: white;

    background: var(--black);

    scroll-margin-top: 80px;
}



/* Heading */

.upcoming-events__heading {
    display: grid;

    grid-template-columns:
        0.45fr
        1.55fr;

    gap: 60px;

    align-items: end;

    margin-bottom:
        clamp(
            80px,
            9vw,
            125px
        );
}


.upcoming-events__heading h2 {
    margin: 0;

    color: white;

    font-size:
        clamp(
            4.5rem,
            9vw,
            9rem
        );

    line-height: 0.78;

    letter-spacing: -0.07em;
}


.upcoming-events__heading h2 em {
    color: var(--yellow);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;
}



/* =====================================================
   EVENT GRID
===================================================== */

.events-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        100px
        28px;
}



/* =====================================================
   EVENT CARD
===================================================== */

.event-card {
    min-width: 0;

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}


/* Alternate vertical placement */

.event-card:nth-child(even) {
    margin-top: 90px;
}



/* =====================================================
   EVENT IMAGE
===================================================== */

.event-card__image {
    position: relative;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #333;
}


.event-card__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        0.9s
        cubic-bezier(
            .2,
            .7,
            .2,
            1
        );
}


.event-card:hover
.event-card__image img {
    transform: scale(1.045);
}



/* Different image crops so repeated photos
   don't look identical */

.event-card:nth-child(1)
.event-card__image img {
    object-position: center 45%;
}

.event-card:nth-child(2)
.event-card__image img {
    object-position: center 55%;
}

.event-card:nth-child(3)
.event-card__image img {
    object-position: 55% center;
}

.event-card:nth-child(4)
.event-card__image img {
    object-position: 40% center;
}

.event-card:nth-child(5)
.event-card__image img {
    object-position: center 38%;
}

.event-card:nth-child(6)
.event-card__image img {
    object-position: 60% center;
}

.event-card:nth-child(7)
.event-card__image img {
    object-position: 35% center;
}



/* =====================================================
   CARD DATE
===================================================== */

.event-card__date {
    position: absolute;

    top: 20px;
    left: 20px;

    display: grid;

    width: 76px;
    height: 76px;

    place-items: center;

    align-content: center;

    border-radius: 50%;

    color: var(--black);

    background: var(--yellow);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.16);
}


.event-card__date strong {
    font-family:
        "Playfair Display",
        serif;

    font-size: 1.65rem;
    font-weight: 600;

    line-height: 0.85;
}


.event-card__date span {
    margin-top: 6px;

    font-size: 0.55rem;
    font-weight: 700;

    letter-spacing: 0.14em;
}



/* =====================================================
   EVENT CARD CONTENT
===================================================== */

.event-card__content {
    padding-top: 25px;
}


.event-card__top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 30px;
}


.event-card__top .eyebrow {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.56);

    font-size: 0.65rem;
}


.event-card__top > span {
    color:
        rgba(255, 255, 255, 0.35);

    font-size: 0.68rem;
}



/* Event title */

.event-card h3 {
    margin:
        0
        0
        35px;

    color: white;

    font-size:
        clamp(
            3.2rem,
            5vw,
            5.6rem
        );

    font-weight: 600;

    line-height: 0.82;

    letter-spacing: -0.065em;

    text-transform: uppercase;
}


.event-card h3 em {
    color: var(--yellow);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;
}



/* =====================================================
   EVENT META
===================================================== */

.event-card__meta {
    display: flex;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 28px;

    padding:
        18px
        0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.18);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.18);
}


.event-card__meta span {
    color:
        rgba(255, 255, 255, 0.62);

    font-size: 0.76rem;

    line-height: 1.4;
}


.event-card__meta span:last-child {
    text-align: right;
}



/* Link */

.event-card .text-link {
    color: white;
}



/* =====================================================
   FILTERED / HIDDEN EVENTS
===================================================== */

.event-card--hidden {
    display: none;
}



/* =====================================================
   EVENTS CTA
===================================================== */

.events-cta {
    position: relative;

    overflow: hidden;

    padding:
        clamp(
            120px,
            14vw,
            200px
        )
        0;

    color: var(--black);

    background: var(--red);
}


.events-cta::after {
    content: "";

    position: absolute;

    top: -40%;
    right: -15%;

    width: min(65vw, 850px);
    aspect-ratio: 1;

    border:
        1px solid
        rgba(255, 255, 255, 0.18);

    border-radius: 50%;

    pointer-events: none;
}


.events-cta__inner {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}


.events-cta .eyebrow {
    margin-bottom: 30px;

    color: var(--yellow);
}


.events-cta h2 {
    margin: 0;

    color: white;

    font-size:
        clamp(
            5rem,
            12vw,
            12rem
        );

    line-height: 0.72;

    letter-spacing: -0.07em;
}


.events-cta h2 em {
    color: var(--yellow);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;
}


.events-cta__inner > p:not(.eyebrow) {
    max-width: 400px;

    margin:
        50px
        auto
        35px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 0.95rem;

    line-height: 1.65;
}



/* =====================================================
   EVENTS CTA BUTTON OVERRIDE
===================================================== */

.events-cta .button--dark {
    color: var(--black);

    background: var(--yellow);
}


.events-cta .button--dark:hover {
    color: white;

    background: var(--black);
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {


    /* HERO */

    .events-hero {
        min-height: 84svh;
    }


    /* INTRO */

    .events-intro__inner {
        grid-template-columns:
            0.35fr
            1.3fr;

        gap: 40px;
    }


    .events-filter {
        grid-column:
            2;

        justify-content:
            flex-start;
    }



    /* FEATURED */

    .featured-event__card {
        grid-template-columns:
            1fr
            1fr;
    }


    .featured-event__image {
        min-height: 700px;
    }


    .featured-event__content {
        padding:
            60px
            45px;
    }



    /* UPCOMING */

    .upcoming-events__heading {
        grid-template-columns:
            0.35fr
            1.65fr;
    }


}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {


    /* =================================================
       HERO
    ================================================= */

    .events-hero {
        min-height: 82svh;

        padding:
            135px
            0
            55px;
    }


    .events-hero::after {
        top: -10vw;
        right: -60vw;

        width: 140vw;
    }


    .events-hero::before {
        display: none;
    }


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

        line-height: 0.76;
    }


    .events-hero__bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 24px;

        margin-top: 65px;

        padding-top: 24px;
    }


    .events-hero__bottom p {
        max-width: 320px;

        font-size: 0.9rem;
    }



    /* =================================================
       INTRO
    ================================================= */

    .events-intro {
        padding:
            85px
            0
            65px;
    }


    .events-intro__inner {
        display: block;
    }


    .events-intro__inner
    > div:first-child {
        display: flex;

        gap: 20px;

        align-items: center;

        margin-bottom: 35px;
    }


    .events-intro__inner
    > div:first-child
    .section-number {
        margin: 0;
    }


    .events-intro__inner
    > div:first-child
    .eyebrow {
        margin: 0;
    }


    .events-intro h2 {
        font-size:
            clamp(
                4rem,
                19vw,
                5.7rem
            );
    }



    /* FILTER */

    .events-filter {
        flex-wrap: nowrap;

        justify-content: flex-start;

        margin-top: 45px;

        padding-bottom: 5px;

        overflow-x: auto;

        scrollbar-width: none;
    }


    .events-filter::-webkit-scrollbar {
        display: none;
    }


    .events-filter__button {
        flex-shrink: 0;
    }



    /* =================================================
       FEATURED
    ================================================= */

    .featured-event {
        padding-bottom: 95px;
    }


    .featured-event__card {
        display: flex;

        min-height: auto;

        flex-direction: column;
    }


    .featured-event__image {
        min-height: auto;

        aspect-ratio: 4 / 5;
    }


    .featured-event__date {
        top: 18px;
        left: 18px;

        width: 72px;
        height: 72px;
    }


    .featured-event__date span {
        font-size: 1.65rem;
    }


    .featured-event__content {
        padding:
            55px
            7%;
    }


    .featured-event__content h2 {
        font-size:
            clamp(
                4rem,
                18vw,
                5.5rem
            );
    }


    .featured-event__content > h3 {
        margin-bottom: 30px;

        font-size: 1.4rem;
    }



    /* DETAILS */

    .featured-event__details {
        grid-template-columns: 1fr;
    }


    .featured-event__details
    > div {
        padding:
            16px
            0 !important;

        border-right:
            0 !important;
    }


    .featured-event__actions {
        align-items: flex-start;

        flex-direction: column;

        gap: 24px;
    }



    /* =================================================
       UPCOMING
    ================================================= */

    .upcoming-events {
        padding:
            95px
            0;
    }


    .upcoming-events__heading {
        display: block;

        margin-bottom: 70px;
    }


    .upcoming-events__heading
    > div {
        display: flex;

        align-items: center;

        gap: 20px;

        margin-bottom: 35px;
    }


    .upcoming-events__heading
    .section-number,
    .upcoming-events__heading
    .eyebrow {
        margin: 0;
    }


    .upcoming-events__heading h2 {
        font-size:
            clamp(
                4.2rem,
                20vw,
                6rem
            );
    }



    /* =================================================
       EVENT GRID
    ================================================= */

    .events-grid {
        grid-template-columns: 1fr;

        gap: 80px;
    }


    .event-card:nth-child(even) {
        margin-top: 0;
    }


    .event-card__image {
        aspect-ratio: 1 / 1.05;
    }


    .event-card__date {
        top: 16px;
        left: 16px;

        width: 68px;
        height: 68px;
    }


    .event-card__date strong {
        font-size: 1.5rem;
    }


    .event-card h3 {
        font-size:
            clamp(
                3.3rem,
                16vw,
                5rem
            );
    }


    .event-card__meta {
        align-items: flex-start;

        flex-direction: column;

        gap: 8px;
    }


    .event-card__meta
    span:last-child {
        text-align: left;
    }



    /* =================================================
       CTA
    ================================================= */

    .events-cta {
        padding:
            100px
            0;
    }


    .events-cta h2 {
        font-size:
            clamp(
                4.8rem,
                22vw,
                7rem
            );
    }


    .events-cta__inner
    > p:not(.eyebrow) {
        margin-top: 40px;
    }


}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {


    .events-hero h1 {
        font-size: 4.4rem;
    }


    .events-intro h2 {
        font-size: 3.9rem;
    }


    .featured-event__content h2 {
        font-size: 3.9rem;
    }


    .event-card h3 {
        font-size: 3.2rem;
    }


    .events-cta h2 {
        font-size: 4.5rem;
    }


}



/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {


    .featured-event__image img,
    .event-card__image img,
    .events-filter__button {
        transition: none;
    }


}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

    .menu-page-hero h1 {
        font-size: 4.7rem;
    }


    .menu-section__heading h2 {
        font-size: 4rem;
    }


    .menu-item h3 {
        font-size: 1.3rem;
    }


    .menu-bottom-cta h2 {
        font-size: 4.7rem;
    }

}



/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .menu-layout__image img,
    .menu-item,
    .menu-venue__button {
        transition: none;
    }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

    .hero__content {
        padding-top: 13vh;
        padding-bottom: 5vh;
    }

    .hero__logo {
        width: 84vw;
    }

    .hero__subtitle {
        font-size: 1.5rem;
    }

    .button {
        min-height: 50px;

        padding-inline: 23px;
    }
}


/* =====================================================
   SHORT SCREENS / LAPTOPS
===================================================== */

@media (min-width: 1001px) and (max-height: 800px) {

    .hero__content {
        padding-top: 13vh;
        padding-bottom: 7vh;
    }

    .hero__logo {
        width: min(45vw, 760px);

        max-height: 34vh;
    }

    .hero__subtitle {
        font-size: clamp(1.6rem, 2.2vw, 2.4rem);

        margin-bottom: 18px;
    }

    .button {
        min-height: 50px;
    }
}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}

/* =====================================================
   LOCATION QUICK VIEW — CLEAN VERSION
===================================================== */

.location-card__image {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.location-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
}

.location-card__image:hover::after {
    background: rgba(0, 0, 0, 0.12);
}

.location-card__view {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    padding: 12px 18px;
    border-radius: 100px;
    color: var(--black);
    background: var(--cream);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.location-card__image:hover .location-card__view,
.location-card__image:focus-visible .location-card__view {
    opacity: 1;
    transform: translateY(0);
}

.location-card__view span {
    font-size: 1rem;
}

.location-card__open {
    display: grid;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    place-items: center;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--black);
    background: transparent;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.location-card__open:hover,
.location-card__open:focus-visible {
    color: white;
    background: var(--red);
    transform: rotate(8deg);
}

.location-panel-overlay {
    position: fixed;
    inset: 0;
    z-index: 1990;
    visibility: hidden;
    background: rgba(12, 12, 12, 0.48);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.location-panel-overlay.active {
    visibility: visible;
    opacity: 1;
}

.location-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2000;
    width: min(620px, 46vw);
    height: 100svh;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--black);
    background: var(--cream);
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(.75, 0, .15, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
}

.location-panel.open {
    transform: translateX(0);
}

.location-panel__close {
    position: absolute;
    top: 28px;
    right: 30px;
    z-index: 5;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    color: var(--black);
    background: transparent;
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.location-panel__close:hover,
.location-panel__close:focus-visible {
    color: white;
    background: var(--red);
    transform: rotate(8deg);
}

.location-panel__content {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: clamp(90px, 10vh, 125px) clamp(36px, 4vw, 64px) 50px;
}

.location-panel__area {
    margin-bottom: 22px;
    color: var(--red);
}

.location-panel__top h2 {
    margin: 0 0 22px;
    padding-right: 55px;
    color: var(--red);
    font-size: clamp(3.2rem, 4.7vw, 5.4rem);
    line-height: 0.87;
    letter-spacing: -0.06em;
}

.location-panel__top h2 em {
    color: var(--black);
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-style: italic;
    text-transform: none;
}

.location-panel__type {
    margin: 0;
    color: #686868;
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-style: italic;
}

.location-panel__details {
    margin: 48px 0 0;
    border-top: 1px solid var(--border);
}

.location-panel__detail {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.location-panel__label {
    padding-top: 2px;
    color: #898989;
    font-size: 0.67rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.location-panel__detail p,
.location-panel__detail a {
    margin: 0;
    color: var(--black);
    font-size: 0.92rem;
    line-height: 1.55;
}

.location-panel__detail a {
    width: fit-content;
    border-bottom: 1px solid currentColor;
}

/* =====================================================
   LOCATION OPENING HOURS
===================================================== */

.location-panel__detail--hours {
    align-items: start;
}

.location-hours {
    width: 100%;
    min-width: 0;
}

.location-hours__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 18px;
    align-items: center;
    min-height: 29px;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.35;
}

.location-hours__day {
    min-width: 0;
    white-space: nowrap;
}

.location-hours__time {
    white-space: nowrap;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.location-hours__row--today {
    color: var(--black);
    font-weight: 700;
}

.location-hours__row--today .location-hours__day {
    color: var(--red);
}

.location-hours__row--today .location-hours__day::after {
    content: "Today";
    display: inline-block;
    margin-left: 7px;
    padding: 3px 7px;
    border-radius: 100px;
    color: var(--red);
    background: rgba(201, 52, 44, 0.10);
    font-size: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    vertical-align: middle;
}

.location-panel__actions {
    display: flex;
    gap: 27px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 38px;
}

.location-panel__handle {
    display: none;
}

body.location-panel-open {
    overflow: hidden;
}

@media (max-width: 1000px) {
    .location-panel {
        width: min(590px, 72vw);
    }
}

@media (max-width: 650px) {
    .location-card__view {
        right: 15px;
        bottom: 15px;
        padding: 10px 14px;
        opacity: 1;
        transform: none;
    }

    .location-panel {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        max-height: 88svh;
        border-radius: 24px 24px 0 0;
        transform: translateY(105%);
        box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.16);
    }

    .location-panel.open {
        transform: translateY(0);
    }

    .location-panel__handle {
        position: absolute;
        top: 12px;
        left: 50%;
        display: block;
        width: 45px;
        height: 4px;
        border-radius: 10px;
        background: rgba(0, 0, 0, 0.18);
        transform: translateX(-50%);
    }

    .location-panel__close {
        top: 25px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .location-panel__content {
        min-height: auto;
        padding: 75px 6% 38px;
    }

    .location-panel__top h2 {
        padding-right: 55px;
        font-size: clamp(3.2rem, 14vw, 4.8rem);
    }

    .location-panel__details {
        margin-top: 42px;
    }

    .location-panel__detail {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 18px;
        padding: 18px 0;
    }

    .location-panel__detail--hours {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .location-hours__row {
        column-gap: 16px;
        min-height: 28px;
        font-size: 0.88rem;
    }

    .location-panel__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
        margin-top: 32px;
    }
}

@media (max-width: 390px) {
    .location-hours__row--today .location-hours__day::after {
        display: none;
    }
}

/* =====================================================
   =====================================================
   ANTONIA — OUR STORY PAGE
   =====================================================
===================================================== */


/* =====================================================
   STORY HEADER
===================================================== */

.header--story {
    color: var(--black);
}


/* Story hero is light, so show red logo immediately */

.header--story .logo__img--white {
    opacity: 0;
}

.header--story .logo__img--color {
    opacity: 1;
}


/* Scrolled header */

.header--story.scrolled {
    color: var(--black);
}


/* Active navigation */

.header--story .desktop-nav .active {
    position: relative;
}

.header--story .desktop-nav .active::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: -7px;
    left: 0;

    height: 1px;

    background: currentColor;
}



/* =====================================================
   STORY HERO
===================================================== */

.story-page-hero {
    position: relative;

    display: flex;

    min-height: 92svh;

    align-items: flex-end;

    overflow: hidden;

    padding:
        170px
        0
        85px;

    color: var(--black);

    background: var(--yellow);
}


/* Big decorative circle */

.story-page-hero::after {
    content: "";

    position: absolute;

    top: -30vw;
    right: -18vw;

    width: min(76vw, 1100px);
    aspect-ratio: 1;

    border:
        1px solid
        rgba(201, 52, 44, 0.2);

    border-radius: 50%;

    pointer-events: none;
}


/* Secondary circle */

.story-page-hero::before {
    content: "";

    position: absolute;

    top: -3vw;
    right: -32vw;

    width: min(64vw, 920px);
    aspect-ratio: 1;

    border:
        1px solid
        rgba(201, 52, 44, 0.1);

    border-radius: 50%;

    pointer-events: none;
}


.story-page-hero .container {
    position: relative;

    z-index: 2;
}


.story-page-hero__top .eyebrow {
    margin-bottom: 26px;

    color: var(--red);
}


/* HERO TITLE */

.story-page-hero h1 {
    margin: 0;

    color: var(--red);

    font-size:
        clamp(
            6rem,
            14vw,
            14rem
        );

    font-weight: 600;

    line-height: 0.72;

    letter-spacing: -0.075em;

    text-transform: uppercase;
}


.story-page-hero h1 em {
    display: inline-block;

    color: var(--black);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;

    letter-spacing: -0.06em;
}


/* HERO BOTTOM */

.story-page-hero__bottom {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;

    margin-top: 90px;

    padding-top: 28px;

    border-top:
        1px solid
        rgba(0, 0, 0, 0.22);
}


.story-page-hero__bottom p {
    max-width: 430px;

    margin: 0;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            1.25rem,
            1.8vw,
            1.7rem
        );

    font-style: italic;

    line-height: 1.3;
}


.story-page-hero__bottom span {
    color:
        rgba(0, 0, 0, 0.55);

    font-size: 0.68rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}



/* =====================================================
   OPENING IMAGE
===================================================== */

.story-opening-image {
    padding:
        0
        0
        0;

    background: var(--cream);
}


.story-opening-image__inner {
    width: 100%;

    height:
        min(
            82vh,
            900px
        );

    overflow: hidden;
}


.story-opening-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        1.2s
        cubic-bezier(
            .2,
            .7,
            .2,
            1
        );
}


.story-opening-image:hover img {
    transform: scale(1.02);
}



/* =====================================================
   CHAPTER 01 — ORIGIN
===================================================== */

.story-origin {
    position: relative;

    overflow: hidden;

    padding:
        clamp(
            110px,
            13vw,
            190px
        )
        0;

    background: var(--cream);
}


.story-origin .container {
    display: grid;

    grid-template-columns:
        0.35fr
        1.1fr
        0.9fr;

    gap:
        clamp(
            35px,
            6vw,
            100px
        );

    align-items: center;
}



/* Number / eyebrow */

.story-origin__number {
    align-self: start;
}


.story-origin__number .eyebrow {
    margin-top: 15px;

    color: var(--red);
}



/* Giant year */

.story-origin__year {
    position: relative;

    display: flex;

    flex-direction: column;

    color: var(--red);

    font-weight: 600;

    line-height: 0.65;

    letter-spacing: -0.08em;
}


.story-origin__year span,
.story-origin__year strong {
    display: block;

    font-size:
        clamp(
            8rem,
            17vw,
            17rem
        );

    font-weight: 600;
}


.story-origin__year strong {
    margin-left:
        clamp(
            35px,
            7vw,
            110px
        );

    color: var(--yellow);
}



/* Content */

.story-origin__content {
    max-width: 520px;
}


.story-origin__content .eyebrow {
    margin-bottom: 24px;

    color: var(--red);
}


.story-origin__content h2 {
    margin:
        0
        0
        35px;

    color: var(--black);

    font-size:
        clamp(
            3.3rem,
            6vw,
            6.8rem
        );

    line-height: 0.83;

    letter-spacing: -0.06em;
}


.story-origin__content h2 em {
    color: var(--red);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;
}


.story-origin__lead {
    margin-bottom: 25px;

    color: var(--black);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            1.4rem,
            2vw,
            2rem
        );

    line-height: 1.25;
}


.story-origin__content > p:last-child {
    max-width: 460px;

    margin: 0;

    color: #5c5a54;

    font-size: 0.95rem;

    line-height: 1.75;
}



/* =====================================================
   STORY QUOTE
===================================================== */

.story-quote {
    padding:
        clamp(
            100px,
            13vw,
            190px
        )
        0;

    color: white;

    background: var(--red);
}


.story-quote blockquote {
    position: relative;

    max-width: 1250px;

    margin: 0 auto;

    text-align: center;
}


.story-quote blockquote > span {
    display: block;

    height: 60px;

    color:
        rgba(240, 213, 138, 0.55);

    font-family:
        "Playfair Display",
        serif;

    font-size: 8rem;

    line-height: 0.7;
}


.story-quote p {
    margin: 0;

    color: white;

    font-size:
        clamp(
            3.4rem,
            7.5vw,
            8rem
        );

    font-weight: 600;

    line-height: 0.88;

    letter-spacing: -0.065em;
}


.story-quote p em {
    color: var(--yellow);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;
}



/* =====================================================
   CHAPTER 02 — DOUGH
===================================================== */

.story-dough {
    display: grid;

    min-height: 900px;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, 0.9fr);

    background: var(--yellow);
}



/* Dough image */

.story-dough__image {
    min-height: 850px;

    overflow: hidden;
}


.story-dough__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        1s
        cubic-bezier(
            .2,
            .7,
            .2,
            1
        );
}


.story-dough:hover
.story-dough__image img {
    transform: scale(1.025);
}



/* Dough content */

.story-dough__content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        clamp(
            65px,
            7vw,
            125px
        );
}


.story-dough__content .section-number {
    margin-bottom: 18px;
}


.story-dough__content .eyebrow {
    margin-bottom: 35px;

    color: var(--red);
}


.story-dough__content h2 {
    margin:
        0
        0
        45px;

    color: var(--red);

    font-size:
        clamp(
            7rem,
            12vw,
            13rem
        );

    line-height: 0.65;

    letter-spacing: -0.075em;
}


.story-dough__content h2 em {
    color: var(--black);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;
}


.story-dough__lead {
    margin:
        0
        0
        20px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            1.6rem,
            2.3vw,
            2.3rem
        );

    font-style: italic;

    line-height: 1.2;
}


.story-dough__content > p:not(.eyebrow):not(.story-dough__lead) {
    max-width: 500px;

    margin:
        0
        0
        50px;

    color:
        rgba(0, 0, 0, 0.64);

    font-size: 0.95rem;

    line-height: 1.75;
}



/* Dough facts */

.story-dough__facts {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid
        rgba(0, 0, 0, 0.22);
}


.story-dough__facts > div {
    padding:
        25px
        20px
        0
        0;
}


.story-dough__facts > div:not(:last-child) {
    border-right:
        1px solid
        rgba(0, 0, 0, 0.22);
}


.story-dough__facts > div:not(:first-child) {
    padding-left: 20px;
}


.story-dough__facts strong {
    display: block;

    margin-bottom: 8px;

    color: var(--red);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            1.8rem,
            3vw,
            3rem
        );

    font-weight: 600;
}


.story-dough__facts span {
    color:
        rgba(0, 0, 0, 0.54);

    font-size: 0.62rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    line-height: 1.4;
}



/* =====================================================
   STORY MARQUEE
===================================================== */

.story-marquee {
    overflow: hidden;

    padding:
        32px
        0;

    color: white;

    background: var(--black);
}


.story-marquee__track {
    display: flex;

    width: max-content;

    animation:
        storyMarquee
        25s
        linear
        infinite;
}


.story-marquee__track span {
    padding-right: 30px;

    color: white;

    font-size:
        clamp(
            1.3rem,
            2.2vw,
            2rem
        );

    font-weight: 600;

    white-space: nowrap;

    letter-spacing: -0.02em;
}


@keyframes storyMarquee {

    from {
        transform:
            translateX(0);
    }

    to {
        transform:
            translateX(-33.333%);
    }

}



/* =====================================================
   CHAPTER 03 — SIMONE
===================================================== */

.story-simone {
    padding:
        clamp(
            110px,
            13vw,
            190px
        )
        0;

    background: var(--cream);
}



/* Simone heading */

.story-simone__heading {
    display: grid;

    grid-template-columns:
        0.45fr
        1.55fr;

    gap: 60px;

    align-items: end;

    margin-bottom:
        clamp(
            70px,
            9vw,
            120px
        );
}


.story-simone__heading .eyebrow {
    margin-top: 16px;

    color: var(--red);
}


.story-simone__heading h2 {
    margin: 0;

    color: var(--red);

    font-size:
        clamp(
            5rem,
            10vw,
            10rem
        );

    line-height: 0.73;

    letter-spacing: -0.07em;
}


.story-simone__heading h2 em {
    color: var(--black);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;
}



/* Simone layout */

.story-simone__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, 0.85fr);

    gap:
        clamp(
            50px,
            8vw,
            130px
        );

    align-items: center;
}



/* Simone official portrait */

.story-simone__image {
    height:
        min(
            82vh,
            900px
        );

    overflow: hidden;
}


.story-simone__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center top;

    transition:
        transform
        1s
        cubic-bezier(
            .2,
            .7,
            .2,
            1
        );
}


.story-simone__image:hover img {
    transform: scale(1.025);
}



/* Simone text */

.story-simone__content {
    max-width: 520px;
}


.story-simone__lead {
    margin:
        0
        0
        38px;

    color: var(--black);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            1.7rem,
            2.7vw,
            2.7rem
        );

    line-height: 1.18;
}


.story-simone__content > p:not(.story-simone__lead) {
    margin:
        0
        0
        25px;

    color: #5d5a55;

    font-size: 0.95rem;

    line-height: 1.75;
}


.story-simone__signature {
    display: inline-block;

    margin-top: 30px;

    color: var(--red);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            1.5rem,
            2vw,
            2rem
        );

    font-style: italic;
}



/* =====================================================
   CHAPTER 04 — JOURNEY
===================================================== */

.story-journey {
    padding:
        clamp(
            110px,
            13vw,
            190px
        )
        0;

    overflow: hidden;

    color: white;

    background: var(--black);
}



/* Journey title */

.story-journey__heading {
    display: grid;

    grid-template-columns:
        0.4fr
        1.6fr;

    gap: 60px;

    align-items: end;

    margin-bottom:
        clamp(
            90px,
            11vw,
            160px
        );
}


.story-journey__heading h2 {
    margin: 0;

    color: white;

    font-size:
        clamp(
            4rem,
            8.2vw,
            8.5rem
        );

    line-height: 0.8;

    letter-spacing: -0.065em;
}


.story-journey__heading h2 em {
    color: var(--yellow);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;
}



/* =====================================================
   TIMELINE
===================================================== */

.story-timeline {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(5, minmax(220px, 1fr));

    min-width: 1100px;
}


/* Horizontal line */

.story-timeline::before {
    content: "";

    position: absolute;

    top: 83px;
    right: 0;
    left: 0;

    height: 1px;

    background:
        rgba(255, 255, 255, 0.22);
}


.story-timeline__item {
    position: relative;

    padding-right: 35px;
}


.story-timeline__year {
    display: block;

    margin-bottom: 35px;

    color: var(--yellow);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            2rem,
            3vw,
            3rem
        );

    font-style: italic;
}


.story-timeline__dot {
    position: relative;

    z-index: 2;

    width: 11px;
    height: 11px;

    margin-bottom: 45px;

    border:
        2px solid
        var(--yellow);

    border-radius: 50%;

    background: var(--black);
}


.story-timeline__content {
    max-width: 210px;
}


.story-timeline__content .eyebrow {
    margin-bottom: 15px;

    color:
        rgba(255, 255, 255, 0.42);
}


.story-timeline__content h3 {
    margin:
        0
        0
        22px;

    color: white;

    font-size:
        clamp(
            1.8rem,
            2.7vw,
            2.8rem
        );

    line-height: 0.9;

    letter-spacing: -0.045em;
}


.story-timeline__content > p:last-child {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.56);

    font-size: 0.82rem;

    line-height: 1.65;
}



/* =====================================================
   PHILOSOPHY
===================================================== */

.story-philosophy {
    position: relative;

    overflow: hidden;

    padding:
        clamp(
            110px,
            14vw,
            210px
        )
        0;

    background: var(--yellow);
}


.story-philosophy::after {
    content: "";

    position: absolute;

    right: -25vw;
    bottom: -35vw;

    width: 75vw;
    aspect-ratio: 1;

    border:
        1px solid
        rgba(201, 52, 44, 0.16);

    border-radius: 50%;

    pointer-events: none;
}


.story-philosophy .container {
    position: relative;

    z-index: 2;
}



/* Top */

.story-philosophy__top {
    display: flex;

    gap: 25px;

    align-items: center;

    margin-bottom: 70px;
}


.story-philosophy__top .eyebrow {
    margin: 0;

    color: var(--red);
}



/* Statement */

.story-philosophy__statement h2 {
    max-width: 1200px;

    margin: 0;

    color: var(--red);

    font-size:
        clamp(
            5rem,
            11vw,
            11.5rem
        );

    line-height: 0.72;

    letter-spacing: -0.075em;
}


.story-philosophy__statement h2 em {
    display: inline-block;

    margin-top: 15px;

    color: var(--black);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;
}



/* Bottom */

.story-philosophy__bottom {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 70px;

    max-width: 840px;

    margin:
        90px
        0
        0
        auto;

    padding-top: 30px;

    border-top:
        1px solid
        rgba(0, 0, 0, 0.2);
}


.story-philosophy__bottom p {
    margin: 0;

    color:
        rgba(0, 0, 0, 0.64);

    font-size: 0.9rem;

    line-height: 1.7;
}



/* =====================================================
   FINAL FULLSCREEN IMAGE
===================================================== */

.story-final-image {
    position: relative;

    display: flex;

    min-height: 95svh;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    color: white;
}


.story-final-image > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform
        1.3s
        cubic-bezier(
            .2,
            .7,
            .2,
            1
        );
}


.story-final-image:hover > img {
    transform: scale(1.025);
}


.story-final-image__overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.22),
            rgba(0, 0, 0, 0.48)
        );
}


.story-final-image__content {
    position: relative;

    z-index: 2;

    width: min(90%, 1200px);

    text-align: center;
}


.story-final-image__content .eyebrow {
    margin-bottom: 32px;
}


.story-final-image__content h2 {
    margin:
        0
        0
        50px;

    color: white;

    font-size:
        clamp(
            5rem,
            11vw,
            11rem
        );

    line-height: 0.72;

    letter-spacing: -0.07em;
}


.story-final-image__content h2 em {
    color: var(--yellow);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {


    /* HERO */

    .story-page-hero {
        min-height: 86svh;
    }



    /* ORIGIN */

    .story-origin .container {
        grid-template-columns:
            0.25fr
            1fr;

        align-items: start;
    }


    .story-origin__content {
        grid-column: 2;

        max-width: 650px;

        margin-top: 55px;
    }



    /* DOUGH */

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


    .story-dough__content {
        padding:
            70px
            50px;
    }



    /* SIMONE */

    .story-simone__heading {
        grid-template-columns:
            0.35fr
            1.65fr;
    }


    .story-simone__grid {
        gap: 60px;
    }



    /* JOURNEY SCROLL */

    .story-journey {
        overflow-x: hidden;
    }


    .story-timeline {
        overflow: visible;
    }


}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {


    /* =================================================
       HEADER
    ================================================= */

    .header--story {
        color: var(--black);
    }



    /* =================================================
       HERO
    ================================================= */

    .story-page-hero {
        min-height: 82svh;

        padding:
            135px
            0
            55px;
    }


    .story-page-hero::after {
        top: -5vw;
        right: -70vw;

        width: 150vw;
    }


    .story-page-hero::before {
        display: none;
    }


    .story-page-hero h1 {
        font-size:
            clamp(
                5rem,
                22vw,
                7.2rem
            );

        line-height: 0.75;
    }


    .story-page-hero__bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 28px;

        margin-top: 60px;

        padding-top: 24px;
    }


    .story-page-hero__bottom p {
        font-size: 1.15rem;
    }



    /* =================================================
       OPENING IMAGE
    ================================================= */

    .story-opening-image__inner {
        height: 62vh;

        min-height: 480px;
    }



    /* =================================================
       ORIGIN
    ================================================= */

    .story-origin {
        padding:
            90px
            0;
    }


    .story-origin .container {
        display: block;
    }


    .story-origin__number {
        display: flex;

        gap: 20px;

        align-items: center;

        margin-bottom: 55px;
    }


    .story-origin__number .eyebrow {
        margin: 0;
    }


    .story-origin__year {
        margin-bottom: 65px;
    }


    .story-origin__year span,
    .story-origin__year strong {
        font-size:
            clamp(
                7.5rem,
                40vw,
                11rem
            );
    }


    .story-origin__year strong {
        margin-left: 23vw;
    }


    .story-origin__content {
        margin-top: 0;
    }


    .story-origin__content h2 {
        font-size:
            clamp(
                3.6rem,
                17vw,
                5.5rem
            );
    }



    /* =================================================
       QUOTE
    ================================================= */

    .story-quote {
        padding:
            100px
            0;
    }


    .story-quote blockquote > span {
        height: 45px;

        font-size: 6rem;
    }


    .story-quote p {
        font-size:
            clamp(
                3.1rem,
                15vw,
                5rem
            );
    }



    /* =================================================
       DOUGH
    ================================================= */

    .story-dough {
        display: flex;

        min-height: auto;

        flex-direction: column;
    }


    .story-dough__image {
        min-height: auto;

        aspect-ratio: 4 / 5;
    }


    .story-dough__content {
        padding:
            80px
            7%;
    }


    .story-dough__content h2 {
        font-size:
            clamp(
                6rem,
                30vw,
                9rem
            );
    }


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


    .story-dough__facts > div {
        padding:
            20px
            0 !important;

        border-right:
            0 !important;

        border-bottom:
            1px solid
            rgba(0, 0, 0, 0.18);
    }



    /* =================================================
       MARQUEE
    ================================================= */

    .story-marquee {
        padding:
            24px
            0;
    }



    /* =================================================
       SIMONE
    ================================================= */

    .story-simone {
        padding:
            95px
            0;
    }


    .story-simone__heading {
        display: block;

        margin-bottom: 65px;
    }


    .story-simone__heading > div {
        display: flex;

        gap: 20px;

        align-items: center;

        margin-bottom: 35px;
    }


    .story-simone__heading .eyebrow {
        margin: 0;
    }


    .story-simone__heading h2 {
        font-size:
            clamp(
                4.7rem,
                21vw,
                7rem
            );
    }


    .story-simone__grid {
        display: flex;

        flex-direction: column;

        gap: 55px;
    }


    .story-simone__image {
        width: 100%;

        height: auto;

        aspect-ratio: 4 / 5;
    }


    .story-simone__content {
        max-width: none;
    }



    /* =================================================
       JOURNEY
    ================================================= */

    .story-journey {
        padding:
            95px
            0;
    }


    .story-journey__heading {
        display: block;

        margin-bottom: 80px;
    }


    .story-journey__heading > div {
        display: flex;

        gap: 20px;

        align-items: center;

        margin-bottom: 35px;
    }


    .story-journey__heading .eyebrow {
        margin: 0;
    }


    .story-journey__heading h2 {
        font-size:
            clamp(
                3.7rem,
                16vw,
                5.6rem
            );
    }



    /* TIMELINE */

    .story-timeline {
        display: flex;

        min-width: 0;

        flex-direction: column;

        padding-left: 18px;
    }


    .story-timeline::before {
        top: 0;
        bottom: 0;
        left: 22px;

        width: 1px;
        height: auto;
    }


    .story-timeline__item {
        display: grid;

        grid-template-columns:
            45px
            1fr;

        padding:
            0
            0
            75px;
    }


    .story-timeline__year {
        grid-column:
            2;

        margin:
            0
            0
            18px;

        font-size: 2.3rem;
    }


    .story-timeline__dot {
        grid-row:
            1 / 3;

        grid-column:
            1;

        align-self: start;

        width: 10px;
        height: 10px;

        margin:
            12px
            0
            0;
    }


    .story-timeline__content {
        grid-column:
            2;

        max-width: 280px;
    }


    .story-timeline__content h3 {
        font-size: 2.5rem;
    }



    /* =================================================
       PHILOSOPHY
    ================================================= */

    .story-philosophy {
        padding:
            100px
            0;
    }


    .story-philosophy__top {
        margin-bottom: 60px;
    }


    .story-philosophy__statement h2 {
        font-size:
            clamp(
                4.4rem,
                20vw,
                6.5rem
            );

        line-height: 0.76;
    }


    .story-philosophy__bottom {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-top: 70px;
    }



    /* =================================================
       FINAL IMAGE
    ================================================= */

    .story-final-image {
        min-height: 80svh;
    }


    .story-final-image__content h2 {
        font-size:
            clamp(
                4.7rem,
                20vw,
                7rem
            );
    }


}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {


    .story-page-hero h1 {
        font-size: 4.7rem;
    }


    .story-origin__content h2 {
        font-size: 3.5rem;
    }


    .story-quote p {
        font-size: 3rem;
    }


    .story-dough__content h2 {
        font-size: 5.6rem;
    }


    .story-simone__heading h2 {
        font-size: 4.5rem;
    }


    .story-journey__heading h2 {
        font-size: 3.4rem;
    }


    .story-philosophy__statement h2 {
        font-size: 4.1rem;
    }


    .story-final-image__content h2 {
        font-size: 4.4rem;
    }


}



/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {


    .story-opening-image img,
    .story-dough__image img,
    .story-simone__image img,
    .story-final-image > img {
        transition: none;
    }


    .story-marquee__track {
        animation: none;
    }
}

/* =====================================================
   =====================================================
   ANTONIA — CONTACT PAGE
   =====================================================
===================================================== */


/* =====================================================
   CONTACT HEADER
===================================================== */

.header--contact {
    color: var(--black);
}


/* Hero is light → red logo */

.header--contact .logo__img--white {
    opacity: 0;
}

.header--contact .logo__img--color {
    opacity: 1;
}


.header--contact.scrolled {
    color: var(--black);
}



/* =====================================================
   CONTACT HERO
===================================================== */

.contact-hero {
    position: relative;

    display: flex;

    min-height: 92svh;

    align-items: flex-end;

    overflow: hidden;

    padding:
        170px
        0
        85px;

    color: var(--black);

    background: var(--mint);
}


/* Decorative circles */

.contact-hero::after {
    content: "";

    position: absolute;

    top: -30vw;
    right: -17vw;

    width: min(76vw, 1100px);
    aspect-ratio: 1;

    border:
        1px solid
        rgba(201, 52, 44, 0.18);

    border-radius: 50%;

    pointer-events: none;
}


.contact-hero::before {
    content: "";

    position: absolute;

    top: -2vw;
    right: -34vw;

    width: min(64vw, 900px);
    aspect-ratio: 1;

    border:
        1px solid
        rgba(201, 52, 44, 0.09);

    border-radius: 50%;

    pointer-events: none;
}


.contact-hero .container {
    position: relative;

    z-index: 2;
}


.contact-hero__top .eyebrow {
    margin-bottom: 28px;

    color: var(--red);
}


/* Hero title */

.contact-hero h1 {
    margin: 0;

    color: var(--red);

    font-size:
        clamp(
            6rem,
            14vw,
            14rem
        );

    font-weight: 600;

    line-height: 0.72;

    letter-spacing: -0.075em;

    text-transform: uppercase;
}


.contact-hero h1 em {
    display: inline-block;

    color: var(--black);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;

    letter-spacing: -0.06em;
}


/* Hero bottom */

.contact-hero__bottom {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;

    margin-top: 90px;

    padding-top: 28px;

    border-top:
        1px solid
        rgba(0, 0, 0, 0.2);
}


.contact-hero__bottom p {
    max-width: 440px;

    margin: 0;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            1.25rem,
            1.8vw,
            1.7rem
        );

    font-style: italic;

    line-height: 1.3;
}


.contact-hero__bottom span {
    color:
        rgba(0, 0, 0, 0.5);

    font-size: 0.68rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}



/* =====================================================
   CONTACT INTRO
===================================================== */

.contact-intro {
    padding:
        clamp(
            110px,
            13vw,
            190px
        )
        0;

    background: var(--cream);
}


.contact-intro__grid {
    display: grid;

    grid-template-columns:
        1.15fr
        0.85fr;

    gap:
        clamp(
            70px,
            10vw,
            160px
        );

    align-items: end;
}



/* Heading */

.contact-intro__heading .section-number {
    display: block;

    margin-bottom: 22px;
}


.contact-intro__heading .eyebrow {
    margin-bottom: 28px;

    color: var(--red);
}


.contact-intro__heading h2 {
    margin: 0;

    color: var(--red);

    font-size:
        clamp(
            5rem,
            10vw,
            10rem
        );

    line-height: 0.72;

    letter-spacing: -0.07em;
}


.contact-intro__heading h2 em {
    color: var(--black);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;
}



/* Intro content */

.contact-intro__content {
    max-width: 500px;

    padding-bottom: 12px;
}


.contact-intro__lead {
    margin:
        0
        0
        30px;

    color: var(--black);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            1.7rem,
            2.7vw,
            2.7rem
        );

    line-height: 1.18;
}


.contact-intro__content > p:not(.contact-intro__lead) {
    margin:
        0
        0
        35px;

    color: #5b5954;

    font-size: 0.95rem;

    line-height: 1.75;
}



/* =====================================================
   CONTACT FORM SECTION
===================================================== */

.contact-form-section {
    padding:
        clamp(
            110px,
            13vw,
            190px
        )
        0;

    color: white;

    background: var(--black);
}



/* Form heading */

.contact-form-section__heading {
    display: grid;

    grid-template-columns:
        0.42fr
        1.58fr;

    gap: 60px;

    align-items: end;

    margin-bottom:
        clamp(
            80px,
            9vw,
            125px
        );
}


.contact-form-section__heading h2 {
    margin: 0;

    color: white;

    font-size:
        clamp(
            5rem,
            10vw,
            10rem
        );

    line-height: 0.73;

    letter-spacing: -0.07em;
}


.contact-form-section__heading h2 em {
    color: var(--yellow);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;
}



/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form {
    max-width: 1050px;

    margin-left: auto;
}


.contact-form__row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;
}



/* Field */

.contact-field {
    position: relative;

    margin-bottom: 42px;
}


.contact-field label {
    display: block;

    margin-bottom: 12px;

    color:
        rgba(255, 255, 255, 0.5);

    font-size: 0.65rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}



/* Inputs */

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    padding:
        14px
        0
        16px;

    border: 0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.28);

    border-radius: 0;

    outline: none;

    color: white;

    background: transparent;

    font-family:
        "DM Sans",
        sans-serif;

    font-size:
        clamp(
            1.1rem,
            1.6vw,
            1.35rem
        );

    transition:
        border-color 0.3s ease;
}


.contact-field textarea {
    min-height: 150px;

    resize: vertical;

    line-height: 1.5;
}


.contact-field select {
    cursor: pointer;
}


/* Native dropdown options */

.contact-field select option {
    color: var(--black);

    background: white;
}



/* Focus */

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



/* Form bottom */

.contact-form__bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    margin-top: 10px;

    padding-top: 35px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.12);
}


.contact-form__note {
    max-width: 230px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 0.75rem;

    line-height: 1.5;

    text-align: right;
}



/* =====================================================
   CONTACT LOCATIONS
===================================================== */

.contact-locations {
    padding:
        clamp(
            110px,
            13vw,
            190px
        )
        0;

    background: var(--cream);
}



/* Heading */

.contact-locations__heading {
    display: grid;

    grid-template-columns:
        0.42fr
        1.58fr;

    gap: 60px;

    align-items: end;

    margin-bottom:
        clamp(
            85px,
            10vw,
            140px
        );
}


.contact-locations__heading .eyebrow {
    margin-top: 16px;

    color: var(--red);
}


.contact-locations__heading h2 {
    margin: 0;

    color: var(--red);

    font-size:
        clamp(
            5rem,
            10vw,
            10rem
        );

    line-height: 0.72;

    letter-spacing: -0.07em;
}


.contact-locations__heading h2 em {
    color: var(--black);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;
}



/* =====================================================
   CITY GROUPS
===================================================== */

.contact-locations__cities {
    display: grid;

    grid-template-columns:
        1.35fr
        0.65fr;

    gap:
        clamp(
            60px,
            9vw,
            140px
        );
}



/* City heading */

.contact-city__title {
    display: flex;

    align-items: baseline;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 30px;

    padding-bottom: 22px;

    border-bottom:
        1px solid
        rgba(0, 0, 0, 0.16);
}


.contact-city__title > span {
    color: var(--red);

    font-size: 0.62rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}


.contact-city__title h3 {
    margin: 0;

    color: var(--black);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            2.5rem,
            4vw,
            4rem
        );

    font-weight: 500;
    font-style: italic;
}



/* =====================================================
   LOCATION CONTACT ROW
===================================================== */

.contact-location-row {
    display: grid;

    grid-template-columns:
        1fr
        auto;

    gap: 35px;

    align-items: center;

    padding:
        27px
        0;

    border-bottom:
        1px solid
        rgba(0, 0, 0, 0.1);
}


.contact-location-row .eyebrow {
    margin:
        0
        0
        8px;

    color: var(--red);

    font-size: 0.6rem;
}


.contact-location-row h4 {
    margin: 0;

    color: var(--black);

    font-size:
        clamp(
            1.2rem,
            1.8vw,
            1.6rem
        );

    font-weight: 600;

    letter-spacing: -0.025em;
}



/* Phone */

.contact-location-row__phone {
    display: inline-flex;

    gap: 16px;

    align-items: center;

    color: var(--black);

    font-size: 0.82rem;
    font-weight: 600;

    white-space: nowrap;

    text-decoration: none;

    transition:
        color 0.25s ease;
}


.contact-location-row__phone span {
    transition:
        transform 0.25s ease;
}


.contact-location-row__phone:hover {
    color: var(--red);
}


.contact-location-row__phone:hover span {
    transform:
        translate(
            3px,
            -3px
        );
}



/* Locations footer */

.contact-locations__footer {
    display: flex;

    justify-content: flex-end;

    margin-top: 80px;

    padding-top: 35px;

    border-top:
        1px solid
        rgba(0, 0, 0, 0.15);
}



/* =====================================================
   CAREERS
===================================================== */

.contact-careers {
    position: relative;

    overflow: hidden;

    padding:
        clamp(
            120px,
            14vw,
            210px
        )
        0;

    background: var(--yellow);

    scroll-margin-top: 90px;
}


/* Decorative circle */

.contact-careers::after {
    content: "";

    position: absolute;

    right: -24vw;
    bottom: -35vw;

    width: 75vw;
    aspect-ratio: 1;

    border:
        1px solid
        rgba(201, 52, 44, 0.18);

    border-radius: 50%;

    pointer-events: none;
}


.contact-careers .container {
    position: relative;

    z-index: 2;
}


.contact-careers__inner {
    display: grid;

    grid-template-columns:
        1.25fr
        0.75fr;

    gap:
        clamp(
            70px,
            11vw,
            170px
        );

    align-items: end;
}



/* Careers heading */

.contact-careers__heading .eyebrow {
    margin-bottom: 30px;

    color: var(--red);
}


.contact-careers__heading h2 {
    margin: 0;

    color: var(--red);

    font-size:
        clamp(
            5rem,
            9.5vw,
            10rem
        );

    line-height: 0.73;

    letter-spacing: -0.07em;
}


.contact-careers__heading h2 em {
    color: var(--black);

    font-family:
        "Playfair Display",
        serif;

    font-weight: 500;
    font-style: italic;

    text-transform: none;
}



/* Careers content */

.contact-careers__content {
    max-width: 470px;

    padding-bottom: 10px;
}


.contact-careers__content p {
    margin:
        0
        0
        24px;

    color:
        rgba(0, 0, 0, 0.62);

    font-size: 0.95rem;

    line-height: 1.75;
}


.contact-careers__content .button {
    margin-top: 18px;
}



/* Email */

.contact-careers__email {
    display: block;

    width: fit-content;

    margin-top: 30px;

    padding-bottom: 5px;

    border-bottom:
        1px solid
        rgba(0, 0, 0, 0.4);

    color: var(--black);

    font-size: 0.8rem;

    text-decoration: none;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}


.contact-careers__email:hover {
    color: var(--red);

    border-color: var(--red);
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {


    /* HERO */

    .contact-hero {
        min-height: 86svh;
    }



    /* INTRO */

    .contact-intro__grid {
        gap: 70px;
    }



    /* FORM */

    .contact-form-section__heading,
    .contact-locations__heading {
        grid-template-columns:
            0.3fr
            1.7fr;
    }



    /* CONTACT CITIES */

    .contact-locations__cities {
        grid-template-columns: 1fr;

        gap: 85px;
    }



    /* CAREERS */

    .contact-careers__inner {
        grid-template-columns:
            1fr
            0.7fr;

        gap: 70px;
    }


}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {


    /* =================================================
       HERO
    ================================================= */

    .contact-hero {
        min-height: 82svh;

        padding:
            135px
            0
            55px;
    }


    .contact-hero::after {
        top: -5vw;
        right: -70vw;

        width: 150vw;
    }


    .contact-hero::before {
        display: none;
    }


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

        line-height: 0.75;
    }


    .contact-hero__bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 28px;

        margin-top: 60px;

        padding-top: 24px;
    }


    .contact-hero__bottom p {
        font-size: 1.15rem;
    }



    /* =================================================
       INTRO
    ================================================= */

    .contact-intro {
        padding:
            90px
            0;
    }


    .contact-intro__grid {
        display: block;
    }


    .contact-intro__heading {
        margin-bottom: 55px;
    }


    .contact-intro__heading h2 {
        font-size:
            clamp(
                4.5rem,
                20vw,
                6.5rem
            );
    }


    .contact-intro__content {
        max-width: none;
    }



    /* =================================================
       FORM
    ================================================= */

    .contact-form-section {
        padding:
            95px
            0;
    }


    .contact-form-section__heading {
        display: block;

        margin-bottom: 70px;
    }


    .contact-form-section__heading > div {
        display: flex;

        gap: 20px;

        align-items: center;

        margin-bottom: 35px;
    }


    .contact-form-section__heading
    .section-number,
    .contact-form-section__heading
    .eyebrow {
        margin: 0;
    }


    .contact-form-section__heading h2 {
        font-size:
            clamp(
                4.3rem,
                19vw,
                6.2rem
            );
    }


    .contact-form {
        margin: 0;
    }


    .contact-form__row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-field {
        margin-bottom: 36px;
    }


    .contact-field input,
    .contact-field select,
    .contact-field textarea {
        font-size: 1.05rem;
    }


    .contact-form__bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }


    .contact-form__note {
        text-align: left;
    }



    /* =================================================
       CONTACT LOCATIONS
    ================================================= */

    .contact-locations {
        padding:
            95px
            0;
    }


    .contact-locations__heading {
        display: block;

        margin-bottom: 70px;
    }


    .contact-locations__heading > div {
        display: flex;

        align-items: center;

        gap: 20px;

        margin-bottom: 35px;
    }


    .contact-locations__heading
    .section-number,
    .contact-locations__heading
    .eyebrow {
        margin: 0;
    }


    .contact-locations__heading h2 {
        font-size:
            clamp(
                4.5rem,
                20vw,
                6.5rem
            );
    }



    /* Cities */

    .contact-locations__cities {
        gap: 70px;
    }


    .contact-city__title {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }



    /* Location rows */

    .contact-location-row {
        grid-template-columns: 1fr;

        gap: 17px;

        padding:
            24px
            0;
    }


    .contact-location-row__phone {
        width: fit-content;
    }


    .contact-locations__footer {
        justify-content: flex-start;

        margin-top: 60px;
    }



    /* =================================================
       CAREERS
    ================================================= */

    .contact-careers {
        padding:
            100px
            0;
    }


    .contact-careers::after {
        right: -70vw;

        bottom: -20vw;

        width: 150vw;
    }


    .contact-careers__inner {
        display: block;
    }


    .contact-careers__heading {
        margin-bottom: 60px;
    }


    .contact-careers__heading h2 {
        font-size:
            clamp(
                4.3rem,
                19vw,
                6.3rem
            );
    }


    .contact-careers__content {
        max-width: none;
    }


}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {


    .contact-hero h1 {
        font-size: 4.5rem;
    }


    .contact-intro__heading h2 {
        font-size: 4.2rem;
    }


    .contact-form-section__heading h2 {
        font-size: 4rem;
    }


    .contact-locations__heading h2 {
        font-size: 4.2rem;
    }


    .contact-careers__heading h2 {
        font-size: 4rem;
    }


}



/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {


    .contact-location-row__phone,
    .contact-location-row__phone span,
    .contact-careers__email,
    .contact-field input,
    .contact-field select,
    .contact-field textarea {
        transition: none;
    }


}

/* =====================================================
   MOBILE — PREVENT HORIZONTAL PAGE OVERFLOW
===================================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

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

img,
video,
svg {
    max-width: 100%;
}

/* =====================================================
   HOMEPAGE LOCATIONS TITLE — MOBILE FIX
===================================================== */

@media (max-width: 650px) {

    .locations .section-header h2 {
        width: 100%;
        max-width: 100%;

        font-size: clamp(
            2.65rem,
            10.5vw,
            3.4rem
        );

        line-height: 0.9;
        letter-spacing: -0.065em;
    }

}

/* =====================================================
   EVENTS — FILTER STATES
===================================================== */

.featured-event--hidden {
    display: none;
}

.event-card--hidden {
    display: none !important;
}


/* =====================================================
   =====================================================
   ORDER ONLINE PANEL
   =====================================================
===================================================== */

body.order-panel-open {
    overflow: hidden;
}


/* Overlay */

.order-panel-overlay {
    position: fixed;
    inset: 0;
    z-index: 1800;

    visibility: hidden;
    opacity: 0;

    background: rgba(0, 0, 0, 0.48);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.order-panel-overlay.active {
    visibility: visible;
    opacity: 1;
}


/* Panel */

.order-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;

    z-index: 1900;

    width: min(520px, 92vw);
    overflow-y: auto;

    color: var(--black);
    background: var(--cream);

    transform: translateX(100%);

    transition:
        transform 0.55s cubic-bezier(.7, 0, .2, 1);
}

.order-panel.open {
    transform: translateX(0);
}


/* Close */

.order-panel__close {
    position: absolute;
    top: 25px;
    right: 28px;

    z-index: 3;

    display: grid;

    width: 44px;
    height: 44px;

    place-items: center;

    padding: 0;

    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;

    color: var(--black);
    background: transparent;

    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.order-panel__close:hover {
    color: white;
    background: var(--red);
    transform: rotate(90deg);
}

.order-panel__handle {
    display: none;
}


/* Content */

.order-panel__content {
    display: flex;

    min-height: 100%;

    flex-direction: column;

    padding: 90px 45px 40px;
}


/* Heading */

.order-panel__heading {
    padding-bottom: 45px;
}

.order-panel__heading .eyebrow {
    margin-bottom: 22px;
    color: var(--red);
}

.order-panel__heading h2 {
    margin: 0 0 32px;

    color: var(--red);

    font-size: clamp(4.2rem, 6vw, 6.3rem);
    line-height: 0.73;
    letter-spacing: -0.07em;
}

.order-panel__heading h2 em {
    color: var(--black);

    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-style: italic;

    text-transform: none;
}

.order-panel__heading > p:last-child {
    max-width: 330px;
    margin: 0;

    color: #666;

    font-size: 0.9rem;
    line-height: 1.65;
}


/* Location list */

.order-panel__locations {
    border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.order-location {
    display: flex;

    min-height: 92px;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 18px 4px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.16);

    transition:
        padding 0.3s ease,
        color 0.3s ease,
        background 0.3s ease;
}

.order-location:hover {
    padding: 18px 13px;
    color: var(--red);
}

.order-location div > span {
    display: block;

    margin-bottom: 7px;

    color: #777;

    font-size: 0.6rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.order-location strong {
    display: block;

    font-size: clamp(1.15rem, 1.7vw, 1.4rem);
    font-weight: 600;

    letter-spacing: -0.03em;
}

.order-location__arrow {
    flex-shrink: 0;

    font-size: 1.15rem;

    transition: transform 0.3s ease;
}

.order-location:hover .order-location__arrow {
    transform: translate(4px, -4px);
}

.order-panel__note {
    margin: auto 0 0;
    padding-top: 35px;

    color: #888;

    font-size: 0.65rem;
    line-height: 1.5;
}


/* Mobile */

@media (max-width: 650px) {

    .order-panel {
        top: auto;

        width: 100%;
        max-height: 88svh;

        border-radius: 22px 22px 0 0;

        transform: translateY(100%);
    }

    .order-panel.open {
        transform: translateY(0);
    }

    .order-panel__handle {
        display: block;

        width: 45px;
        height: 4px;

        margin: 12px auto 0;

        border-radius: 50px;

        background: rgba(0, 0, 0, 0.2);
    }

    .order-panel__close {
        top: 20px;
        right: 20px;

        width: 40px;
        height: 40px;
    }

    .order-panel__content {
        min-height: auto;

        padding: 65px 7% 30px;
    }

    .order-panel__heading {
        padding-bottom: 32px;
    }

    .order-panel__heading h2 {
        margin-bottom: 24px;

        font-size: clamp(3.8rem, 18vw, 5rem);
    }

    .order-panel__heading > p:last-child {
        max-width: 280px;
        font-size: 0.82rem;
    }

    .order-location {
        min-height: 76px;
        padding: 14px 2px;
    }

    .order-location:hover {
        padding: 14px 2px;
    }

    .order-location strong {
        font-size: 1.05rem;
    }
}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {

    .order-panel,
    .order-panel-overlay,
    .order-location,
    .order-location__arrow,
    .order-panel__close {
        transition: none;
    }
}
