:root {
    --bg: #050505;
    --bg-soft: #0a0a0a;
    --surface: #11110f;

    --text: #f3f1eb;
    --text-soft: #a6a39b;
    --text-muted: #686761;

    --line: rgba(243, 241, 235, .14);
    --line-soft: rgba(243, 241, 235, .07);

    --max-width: 1320px;

    --display: "Playfair Display", Georgia, serif;
    --body: "Inter", Arial, sans-serif;

    --ease: cubic-bezier(.22, .61, .36, 1);
}


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


html {
    background: var(--bg);
    scroll-behavior: smooth;
}


body {
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}


body.menu-open {
    overflow: hidden;
}


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


button {
    font: inherit;
}


::selection {
    background: var(--text);
    color: var(--bg);
}


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


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


.site-shell {
    min-height: 100vh;
    overflow: clip;
}


/* HEADER */

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition:
        background .35s var(--ease),
        border-color .35s var(--ease),
        backdrop-filter .35s var(--ease);
}


.header.scrolled {
    background: rgba(5, 5, 5, .88);
    border-color: var(--line-soft);
    backdrop-filter: blur(18px);
}


.nav {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


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


.brand-mark {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border: 1px solid var(--text);
    font-family: var(--display);
    font-size: 14px;
    font-style: italic;
}


.brand-name {
    max-width: 230px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}


.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
    margin-right: 48px;
}


.nav-link {
    position: relative;
    color: var(--text-soft);
    font-size: 12px;
    transition: color .25s ease;
}


.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: var(--text);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--ease);
}


.nav-link:hover,
.nav-link.active {
    color: var(--text);
}


.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}


.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}


.nav-cta {
    padding: 11px 17px;
    border: 1px solid var(--line);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: .25s ease;
}


.nav-cta:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}


.menu-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}


.menu-toggle span {
    position: absolute;
    left: 9px;
    width: 22px;
    height: 1px;
    background: var(--text);
    transition: transform .3s var(--ease);
}


.menu-toggle span:first-child {
    top: 16px;
}


.menu-toggle span:last-child {
    top: 23px;
}


.menu-toggle.active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}


.menu-toggle.active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}


.mobile-menu {
    display: none;
}


/* HERO */

.hero {
    min-height: 100svh;
    padding-top: 84px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.hero-grid {
    width: min(calc(100% - 64px), 1380px);
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
    gap: clamp(50px, 9vw, 150px);
    align-items: center;
    padding-top: 70px;
    padding-bottom: 90px;
}


.hero-copy {
    padding-left: clamp(0px, 4vw, 70px);
}


.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-soft);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}


.eyebrow-line {
    width: 28px;
    height: 1px;
    background: currentColor;
}


.hero h1 {
    max-width: 760px;
    margin: 28px 0 30px;
    font-size: clamp(58px, 7.2vw, 108px);
    line-height: .91;
    letter-spacing: -.065em;
    font-weight: 500;
}


.hero h1 em,
h2 em {
    font-family: var(--display);
    font-weight: 500;
    letter-spacing: -.04em;
}


.hero-description {
    max-width: 420px;
    margin: 0 0 38px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.75;
}


.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}


.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 0 19px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: .25s var(--ease);
}


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


.button span,
.text-link span,
.arrow-link span {
    transition: transform .25s var(--ease);
}


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


.button-light {
    background: var(--text);
    color: var(--bg);
}


.button-light:hover {
    background: #fff;
}


.button-outline {
    border: 1px solid var(--line);
}


.button-outline:hover {
    border-color: var(--text);
    background: var(--text);
    color: var(--bg);
}


.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--line);
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}


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


.hero-visual {
    position: relative;
    width: 100%;
    max-width: 610px;
    justify-self: end;
}


.hero-image {
    position: relative;
    min-height: min(70vh, 690px);
    overflow: hidden;
    background: #111;
}


.hero-image img,
.dish-visual img,
.story-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}


.hero-visual:hover .hero-image img,
.menu-feature:hover .dish-visual img,
.story-visual:hover .story-image img {
    transform: scale(1.035);
}


.image-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02) 20%,
            rgba(0,0,0,.7) 100%
        );
}


.hero-image-content {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.hero-image-content span {
    color: rgba(243,241,235,.7);
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
}


.hero-image-content strong {
    margin: 6px 0 0;
    font-family: var(--display);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 500;
    line-height: .9;
    letter-spacing: -.05em;
}


.hero-side-note {
    position: absolute;
    right: -54px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--text-muted);
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}


.hero-side-note span:first-child {
    color: var(--text);
}


.hero-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 26px;
    color: var(--text-muted);
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
}


.scroll-line {
    width: 110px;
    height: 1px;
    background: var(--line);
}


.scroll-line span {
    display: block;
    width: 25%;
    height: 1px;
    background: var(--text-soft);
    animation: scrollProgress 2.8s ease-in-out infinite;
}


@keyframes scrollProgress {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(300%);
    }
}


/* GENERAL */

.section {
    padding: clamp(110px, 14vw, 210px) 0;
}


.intro {
    border-top: 1px solid var(--line-soft);
}


.intro-grid {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: clamp(40px, 10vw, 160px);
}


.section-index {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
}


.section-index span:first-child {
    color: var(--text);
}


.large-copy {
    max-width: 920px;
    margin: 0;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -.055em;
}


.large-copy span {
    color: var(--text-muted);
}


.intro-details {
    max-width: 690px;
    margin: 70px 0 0 auto;
    display: grid;
    grid-template-columns: 1fr 190px;
    gap: 50px;
    align-items: end;
}


.intro-details p {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.85;
}


.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}


/* MENU */

.menu-section {
    background: var(--bg-soft);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}


.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 85px;
}


.section-heading h2,
.story-copy h2,
.contact-intro h2 {
    max-width: 780px;
    margin: 25px 0 0;
    font-size: clamp(48px, 6vw, 82px);
    line-height: .96;
    letter-spacing: -.065em;
    font-weight: 500;
}


.section-number {
    color: var(--text-muted);
    font-size: 9px;
    letter-spacing: .16em;
}


.menu-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: clamp(45px, 9vw, 130px);
}


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


.dish-visual {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #111;
}


.dish-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 45%,
        rgba(0,0,0,.35)
    );
    pointer-events: none;
}


.dish-label {
    position: absolute;
    z-index: 2;
    top: 24px;
    right: 25px;
    left: 25px;
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
}


.dish-label strong {
    font-weight: 500;
}


.dish-info {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 25px 0;
}


.dish-info h3 {
    margin: 0 0 9px;
    font-size: 17px;
    font-weight: 500;
}


.dish-info p {
    max-width: 470px;
    margin: 0;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.7;
}


.dish-price {
    color: var(--text-muted);
    font-size: 11px;
}


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


.menu-item {
    min-height: 130px;
    display: grid;
    grid-template-columns: 40px 1fr 25px;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    transition: padding .35s var(--ease);
}


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


.menu-number {
    color: var(--text-muted);
    font-size: 9px;
}


.menu-item-copy h3 {
    margin: 0 0 6px;
    font-family: var(--display);
    font-size: 25px;
    font-weight: 500;
}


.menu-item-copy p {
    margin: 0;
    color: var(--text-muted);
    font-size: 11px;
}


.menu-arrow {
    color: var(--text-muted);
    transition: .3s var(--ease);
}


.menu-item:hover .menu-arrow {
    color: var(--text);
    transform: translate(3px, -3px);
}


/* MARQUEE */

.marquee-section {
    overflow: hidden;
    padding: 27px 0;
    background: var(--text);
    color: var(--bg);
}


.marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 28px;
    animation: marquee 28s linear infinite;
}


.marquee-track span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
}


.marquee-track i {
    font-family: var(--display);
    font-size: 16px;
    font-style: normal;
}


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


/* STORY */

.story {
    border-bottom: 1px solid var(--line-soft);
}


.story-grid {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1fr);
    gap: clamp(55px, 11vw, 170px);
    align-items: center;
}


.story-visual {
    width: min(100%, 500px);
}


.story-image {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #111;
}


.story-caption {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 22px;
    left: 24px;
    display: flex;
    justify-content: space-between;
    color: rgba(243,241,235,.7);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}


.story-copy {
    max-width: 660px;
}


.story-copy > p {
    max-width: 530px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.9;
}


.story-copy > p:first-of-type {
    margin-top: 45px;
}


.story-copy > p + p {
    margin-top: 18px;
}


.signature {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 10px;
}


.signature strong {
    color: var(--text);
    font-family: var(--display);
    font-size: 34px;
    font-style: italic;
    font-weight: 500;
}


/* CTA */

.cta-section {
    padding: clamp(110px, 14vw, 190px) 0;
    background: var(--text);
    color: var(--bg);
}


.cta-top {
    display: flex;
    justify-content: space-between;
}


.cta-section .eyebrow {
    color: #64625c;
}


.cta-section .section-number {
    color: #85827a;
}


.cta-section h2 {
    max-width: 1000px;
    margin: 75px 0 65px;
    font-size: clamp(58px, 9vw, 130px);
    line-height: .86;
    letter-spacing: -.075em;
    font-weight: 500;
}


.cta-section h2 em {
    color: #65625b;
}


.cta-actions {
    display: flex;
    gap: 12px;
}


.cta-section .button-light {
    background: var(--bg);
    color: var(--text);
}


.cta-section .button-outline {
    border-color: rgba(5,5,5,.18);
    color: var(--bg);
}


.cta-section .button-outline:hover {
    border-color: var(--bg);
    background: var(--bg);
    color: var(--text);
}


/* CONTACT */

.contact-section {
    border-bottom: 1px solid var(--line-soft);
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}


.contact-intro h2 {
    font-size: clamp(55px, 7vw, 94px);
}


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


.contact-detail {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 25px;
    padding: 27px 0;
    border-bottom: 1px solid var(--line);
}


.contact-detail > span {
    color: var(--text-muted);
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
}


.contact-detail a {
    color: var(--text-soft);
    font-size: 13px;
    transition: color .25s ease;
}


.contact-detail a:hover {
    color: var(--text);
}


/* FOOTER */

.footer {
    padding: 75px 0 28px;
}


.footer-main {
    display: grid;
    grid-template-columns: 1.3fr .7fr 1fr;
    gap: 70px;
    padding-bottom: 85px;
}


.footer-brand p {
    margin: 25px 0 0;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.8;
}


.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}


.footer-nav a,
.footer-contact a {
    color: var(--text-soft);
    font-size: 11px;
    transition: color .25s ease;
}


.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--text);
}


.footer-contact span {
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
}


.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid var(--line-soft);
    color: var(--text-muted);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}


.footer-bottom a {
    justify-self: end;
}


.footer-bottom a:hover {
    color: var(--text);
}


/* WHATSAPP */

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 15px;
    background: var(--text);
    color: var(--bg);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 10px 35px rgba(0,0,0,.3);
    transition: transform .3s var(--ease);
}


.floating-whatsapp:hover {
    transform: translateY(-3px);
}


.whatsapp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3b8b57;
}


/* REVEAL */

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


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


.reveal-delay {
    transition-delay: .12s;
}


/* TABLET */

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 23px;
        margin-right: 25px;
    }


    .hero-grid {
        grid-template-columns: 1fr .85fr;
        gap: 55px;
    }


    .hero h1 {
        font-size: clamp(55px, 7vw, 85px);
    }


    .hero-side-note {
        right: -35px;
    }

}


/* MOBILE */

@media (max-width: 800px) {

    .container,
    .hero-grid {
        width: min(calc(100% - 40px), var(--max-width));
    }


    .nav {
        height: 72px;
    }


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


    .menu-toggle {
        display: block;
    }


    .mobile-menu {
        display: block;
        position: fixed;
        inset: 72px 0 0;
        z-index: 101;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-12px);
        background: var(--bg);
        transition:
            opacity .3s ease,
            transform .3s var(--ease),
            visibility .3s ease;
    }


    .mobile-menu.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }


    .mobile-menu-inner {
        min-height: calc(100svh - 72px);
        display: flex;
        flex-direction: column;
        padding: 45px 20px 35px;
        border-top: 1px solid var(--line-soft);
    }


    .mobile-link {
        padding: 18px 0;
        border-bottom: 1px solid var(--line-soft);
        font-family: var(--display);
        font-size: clamp(30px, 9vw, 46px);
        line-height: 1;
    }


    .mobile-cta {
        margin-top: auto;
        display: flex;
        justify-content: space-between;
        padding: 17px 0;
        border-bottom: 1px solid var(--line);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
    }


    .hero {
        padding-top: 72px;
        min-height: auto;
    }


    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        padding-top: 80px;
        padding-bottom: 60px;
    }


    .hero-copy {
        padding-left: 0;
    }


    .hero h1 {
        font-size: clamp(56px, 14vw, 92px);
    }


    .hero-visual {
        max-width: none;
        width: calc(100% - 18px);
    }


    .hero-image {
        min-height: 75svh;
        max-height: 650px;
    }


    .hero-side-note {
        right: -27px;
    }


    .intro-grid,
    .menu-layout,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }


    .intro-grid {
        gap: 45px;
    }


    .intro-details {
        margin-top: 55px;
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .section-heading {
        margin-bottom: 55px;
    }


    .dish-visual {
        min-height: 500px;
    }


    .story-grid {
        gap: 65px;
    }


    .story-visual {
        width: 100%;
        order: 2;
    }


    .story-copy {
        order: 1;
    }


    .story-image {
        min-height: 600px;
    }


    .contact-grid {
        gap: 65px;
    }


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


    .footer-contact {
        grid-column: 1 / -1;
    }


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


    .footer-bottom a {
        justify-self: start;
    }

}


/* SMALL MOBILE */

@media (max-width: 520px) {

    .container,
    .hero-grid {
        width: calc(100% - 32px);
    }


    .hero h1 {
        font-size: clamp(52px, 16vw, 78px);
    }


    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }


    .button {
        width: 100%;
    }


    .hero-image {
        min-height: 500px;
    }


    .large-copy {
        font-size: clamp(35px, 10vw, 48px);
    }


    .section-heading h2,
    .story-copy h2,
    .contact-intro h2 {
        font-size: clamp(47px, 14vw, 68px);
    }


    .dish-visual {
        min-height: 430px;
    }


    .menu-item {
        min-height: 115px;
        grid-template-columns: 25px 1fr 20px;
        gap: 12px;
    }


    .menu-item-copy h3 {
        font-size: 21px;
    }


    .story-image {
        min-height: 470px;
    }


    .cta-section h2 {
        margin-top: 55px;
        margin-bottom: 45px;
        font-size: clamp(52px, 15vw, 76px);
    }


    .cta-actions {
        flex-direction: column;
    }


    .contact-detail {
        grid-template-columns: 1fr;
        gap: 8px;
    }


    .footer-main {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-bottom: 60px;
    }


    .footer-contact {
        grid-column: auto;
    }


    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }

}


/* REDUCED MOTION */

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

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }


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

}


/* CATEGORY EXPERIENCES */

.bespoke-hero,
.shop-hero,
.food-hero {
    width: min(calc(100% - 64px), 1440px);
    min-height: 760px;
    margin: 0 auto;
    padding: 150px 0 90px;
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr);
    align-items: end;
    gap: clamp(45px, 8vw, 130px);
}

.bespoke-hero h1,
.shop-hero h1,
.food-hero h1 {
    max-width: 680px;
    margin: 25px 0;
    font-size: clamp(58px, 8vw, 124px);
    line-height: .9;
    letter-spacing: -.07em;
    font-weight: 500;
}

.bespoke-hero h1 em,
.shop-hero h1 em,
.food-hero h1 em,
.bespoke-section h2 em,
.shop-story h2 em,
.food-feature h2 em,
.food-menu h2 em {
    color: var(--text-muted);
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
}

.bespoke-hero p,
.shop-hero p,
.food-hero p,
.bespoke-section > div > p,
.shop-story p,
.food-feature p {
    max-width: 440px;
    color: var(--text-soft);
}

.bespoke-hero figure,
.shop-hero figure,
.food-hero figure {
    height: min(72vh, 720px);
    margin: 0;
    overflow: hidden;
}

.bespoke-hero img,
.shop-hero img,
.food-hero img,
.gym-image-row img,
.shop-story img,
.food-feature img,
.food-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

figure:hover img { transform: scale(1.035); }

.kicker {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.bespoke-button,
.shop-button,
.food-button {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    margin-top: 20px;
    padding: 15px 18px;
    border: 1px solid var(--text);
    background: var(--text);
    color: var(--bg);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bespoke-button:hover,
.shop-button:hover,
.food-button:hover { background: transparent; color: var(--text); }

.bespoke-section,
.gym-strip,
.shop-toolbar,
.shop-story,
.food-feature,
.food-menu,
.food-gallery {
    width: min(calc(100% - 64px), 1320px);
    margin: 0 auto;
}

.gym-strip {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-block: 1px solid var(--line);
    color: var(--text-muted);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.gym-strip strong { color: var(--text); font-family: var(--display); font-size: 18px; font-weight: 400; letter-spacing: 0; text-transform: none; }
.bespoke-section { padding: clamp(110px, 14vw, 190px) 0; }
.section-intro { display: flex; align-items: end; justify-content: space-between; margin-bottom: 60px; }
.bespoke-section h2,
.shop-toolbar h2,
.shop-story h2,
.food-feature h2 { max-width: 650px; margin: 15px 0 0; font-size: clamp(48px, 6vw, 90px); line-height: .94; letter-spacing: -.06em; font-weight: 500; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.program-grid article { min-height: 255px; padding: 27px; border-right: 1px solid var(--line); }
.program-grid article:last-child { border-right: 0; }
.program-grid b { color: var(--text-muted); font-size: 11px; }
.program-grid h3 { margin: 55px 0 10px; font-family: var(--display); font-size: 28px; font-weight: 400; }
.program-grid p { max-width: 260px; color: var(--text-soft); font-size: 13px; }
.gym-image-row,
.shop-story,
.food-feature { width: min(calc(100% - 64px), 1320px); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 9vw, 150px); align-items: center; }
.gym-image-row figure,
.shop-story figure,
.food-feature figure { height: 610px; margin: 0; overflow: hidden; }
.gym-image-row > div,
.shop-story > div,
.food-feature > div { padding-right: 8%; }
.gym-image-row h2 { max-width: 520px; margin: 20px 0; font-size: clamp(42px, 5vw, 74px); line-height: .94; letter-spacing: -.06em; font-weight: 500; }
.text-link { display: inline-block; margin-top: 28px; border-bottom: 1px solid var(--line); padding-bottom: 5px; font-size: 12px; }
.membership,
.reservation,
.universal-enquiry,
.shop-enquiry { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 10vw, 160px); background: var(--surface); padding-inline: clamp(24px, 7vw, 110px); }
.bespoke-form { align-self: start; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.bespoke-form label { display: grid; gap: 8px; margin-bottom: 16px; }
.bespoke-form label span { color: var(--text-muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.bespoke-form input,
.bespoke-form textarea,
.shop-tools input { width: 100%; border: 1px solid var(--line); border-radius: 0; padding: 13px 12px; background: transparent; color: var(--text); font: inherit; }
.bespoke-form textarea { resize: vertical; }
.form-status { min-height: 25px; color: var(--text-soft); font-size: 12px; }
.form-status a { text-decoration: underline; }
.shop-hero { background: var(--surface); padding-inline: clamp(24px, 6vw, 90px); width: 100%; }
.shop-toolbar { padding: 100px 0 45px; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.shop-tools { display: flex; align-items: center; gap: 10px; }
.shop-tools input { width: 190px; }
.cart-trigger { border: 1px solid var(--line); padding: 13px 15px; background: transparent; color: var(--text); cursor: pointer; }
.cart-trigger span { display: inline-grid; min-width: 20px; height: 20px; margin-left: 8px; place-items: center; border-radius: 50%; background: var(--text); color: var(--bg); font-size: 11px; }
.product-grid { width: min(calc(100% - 64px), 1320px); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { position: relative; border: 1px solid var(--line); }
.product-card > img { width: 100%; aspect-ratio: .82; object-fit: cover; display: block; }
.product-card > div { padding: 18px; }
.product-card h3 { margin: 0 0 5px; font-family: var(--display); font-size: 22px; font-weight: 400; }
.product-card p { min-height: 45px; color: var(--text-soft); font-size: 12px; }
.product-card strong { display: block; margin: 18px 0; }
.add-product { border: 1px solid var(--line); padding: 10px 12px; background: transparent; color: var(--text); cursor: pointer; }
.add-product:hover, .add-product.is-added { background: var(--text); color: var(--bg); }
.wish { position: absolute; top: 12px; right: 12px; z-index: 1; width: 34px; height: 34px; border: 0; border-radius: 50%; background: var(--bg); color: var(--text); cursor: pointer; font-size: 18px; }
.shop-story { margin-top: 150px; padding-bottom: 150px; }
.food-hero { background: #17130f; width: 100%; padding-inline: max(32px, calc((100% - 1320px) / 2)); }
.food-feature { padding: 150px 0; }
.food-menu { padding: 120px 0; }
.dish-list { margin-top: 55px; border-top: 1px solid var(--line); }
.dish-list article { display: grid; grid-template-columns: 50px 1fr auto; gap: 20px; align-items: center; padding: 25px 0; border-bottom: 1px solid var(--line); }
.dish-list h3 { margin: 0; font-family: var(--display); font-size: clamp(22px, 3vw, 38px); font-weight: 400; }
.dish-list span { color: var(--text-muted); }
.food-gallery { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 12px; padding-bottom: 150px; }
.food-gallery figure { height: 430px; margin: 0; overflow: hidden; }

@media (max-width: 800px) {
    .bespoke-hero, .shop-hero, .food-hero { width: calc(100% - 40px); min-height: auto; padding: 130px 0 60px; grid-template-columns: 1fr; gap: 50px; }
    .shop-hero, .food-hero { width: 100%; padding-inline: 20px; }
    .bespoke-hero figure, .shop-hero figure, .food-hero figure { height: 54vh; }
    .gym-strip, .shop-toolbar { width: calc(100% - 40px); align-items: flex-start; flex-direction: column; }
    .program-grid, .gym-image-row, .shop-story, .food-feature, .membership, .reservation, .universal-enquiry, .shop-enquiry { grid-template-columns: 1fr; }
    .program-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
    .program-grid h3 { margin-top: 28px; }
    .gym-image-row, .shop-story, .food-feature { width: calc(100% - 40px); gap: 45px; }
    .gym-image-row figure, .shop-story figure, .food-feature figure { height: 430px; }
    .product-grid { width: calc(100% - 40px); grid-template-columns: repeat(2, 1fr); }
    .shop-tools { width: 100%; }
    .shop-tools input { flex: 1; }
    .food-menu { width: calc(100% - 40px); }
    .food-gallery { width: calc(100% - 40px); grid-template-columns: 1fr 1fr; padding-bottom: 80px; }
    .food-gallery figure:first-child { grid-column: 1 / -1; }
    .food-gallery figure { height: 270px; }
    .form-grid { grid-template-columns: 1fr; }
}


/* INDUSTRY DIRECTION FOR CONTENT-LED CATEGORIES */

body[data-category="law-firm"],
body[data-category="accounting"],
body[data-category="consulting"] { --display: "Cormorant Garamond", Georgia, serif; }

body[data-category="gym"] .header,
body[data-category="automotive"] .header,
body[data-category="construction"] .header { text-transform: uppercase; }

body[data-category="photography"] .hero-grid,
body[data-category="interior-design"] .hero-grid,
body[data-category="real-estate"] .hero-grid { grid-template-columns: .7fr 1.3fr; }

body[data-category="photography"] .hero-image,
body[data-category="interior-design"] .hero-image,
body[data-category="real-estate"] .hero-image { min-height: min(76vh, 760px); }

body[data-category="hotel"] .hero-image,
body[data-category="travel"] .hero-image { border-radius: 2px; min-height: 70vh; }

body[data-category="dentist"] .hero-image,
body[data-category="clinic"] .hero-image { border-radius: 18px; }

body[data-category="bakery"] .hero h1,
body[data-category="cafe"] .hero h1,
body[data-category="salon"] .hero h1,
body[data-category="spa"] .hero h1 { letter-spacing: -.04em; }

body[data-category="agency"] .hero h1,
body[data-category="digital-agency"] .hero h1,
body[data-category="portfolio"] .hero h1 { font-family: var(--body); font-weight: 700; letter-spacing: -.08em; }

body[data-category="education"] .menu-item h3,
body[data-category="event-management"] .menu-item h3,
body[data-category="home-services"] .menu-item h3 { font-family: var(--body); font-weight: 600; }