:root {
    --red: #df171c;
    --red-dark: #a80f13;
    --green: #078a46;
    --ink: #131313;
    --cream: #fffaf3;
    --muted: #726d66;
    --line: #e8ded3
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.65
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1160px, calc(100% - 48px));
    margin: auto
}

.site-header {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    padding: 2px 0
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand img {
    width: 145px;
    height: auto
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase
}

.nav-links a {
    opacity: .86;
    transition: .2s
}

.nav-links a:hover,
.nav-links .active {
    color: #ffcf38;
    opacity: 1
}

.nav-order {
    border: 1px solid var(--red);
    background: var(--red);
    padding: 9px 18px;
    opacity: 1 !important
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 7px
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px
}

.hero {
    position: relative;
    min-height: 710px;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .2)), url("../img/slider-1.jpg") center/cover;
    display: flex;
    align-items: center;
    color: #fff
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 45%, transparent 5%, rgba(0, 0, 0, .45) 80%)
}

.hero-content {
    position: relative;
    padding-top: 70px
}

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0 0 15px;
    color: #f7c929
}

.eyebrow.red {
    color: var(--red)
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2,
h3 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: 1px
}

h1 {
    font-size: clamp(50px, 7vw, 92px);
    max-width: 820px;
    margin-bottom: 25px
}

h2 {
    font-size: clamp(45px, 6vw, 72px);
    margin-bottom: 20px
}

h3 {
    font-size: 31px;
    margin-bottom: 7px
}

em {
    color: var(--red);
    font-style: normal
}

.hero-copy {
    max-width: 510px;
    color: #e8e5df;
    font-size: 18px
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 32px
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 13px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase
}

.button-primary {
    background: var(--red);
    color: #fff
}

.button-primary:hover {
    background: var(--red-dark)
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff
}

.button-ghost:hover {
    border-color: #fff
}

.hero-note {
    position: absolute;
    right: 5%;
    bottom: 40px;
    color: #fff;
    font-family: "Bebas Neue";
    font-size: 18px;
    letter-spacing: 4px;
    transform: rotate(-90deg);
    transform-origin: right bottom
}

.section {
    padding: 105px 0
}

.intro {
    background: #fff
}

.intro-grid {
    display: grid;
    grid-template-columns: 130px 1fr 1fr;
    gap: 50px;
    align-items: center
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 2px;
    writing-mode: vertical-rl
}

.section-label span {
    color: #aaa;
    margin-top: 12px
}

.intro p {
    max-width: 530px;
    color: var(--muted)
}

.intro .highlight {
    border-left: 3px solid var(--red);
    padding-left: 18px;
    color: var(--ink);
    margin-top: 25px
}

.intro-image {
    height: 390px;
    overflow: hidden;
    background: #eee
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.menu-section {
    background: var(--cream)
}

.section-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px
}

.section-heading>p:last-child {
    color: var(--muted)
}

.menu-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.menu-card {
    background: #fff
}

.menu-card img {
    width: 100%;
    height: 245px;
    object-fit: cover
}

.menu-card>div {
    padding: 23px 24px 27px
}

.menu-card span,
.outlet-number,
.location-top span {
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px
}

.menu-card p {
    color: var(--muted);
    font-size: 14px;
    margin: 0
}

.menu-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    margin-top: 35px;
    padding-top: 22px;
    color: var(--muted)
}

.text-link {
    color: var(--red);
    font-weight: 700;
    font-size: 13px
}

.text-link span {
    font-size: 18px
}

.banner-section {
    min-height: 440px;
    background: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .2)), url("../img/gd_bg.jpg") center/cover;
    color: #fff;
    display: flex;
    align-items: center
}

.banner-content h2 {
    max-width: 500px
}

.banner-content .eyebrow {
    color: #ffcf38
}

.gallery {
    background: #fff
}

.split-heading {
    text-align: left;
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: end
}

.split-heading>p {
    max-width: 350px;
    margin: 0;
    color: var(--muted)
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 210px 210px;
    gap: 14px
}

.gallery-grid figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #111
}

.gallery-grid figure:first-child {
    grid-row: span 2
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.gallery-grid figure:hover img {
    transform: scale(1.05)
}

.gallery-grid figcaption {
    position: absolute;
    bottom: 15px;
    left: 18px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700
}

.order-section {
    background: var(--red);
    color: #fff
}

.order-section em {
    color: #ffcf38
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.order-grid>div>p:not(.eyebrow) {
    color: #ffe1dd;
    max-width: 420px
}

.outlets {
    display: grid;
    gap: 12px
}

.outlet-card {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 20px;
    background: #fff;
    color: var(--ink);
    transition: transform .2s
}

.outlet-card:hover {
    transform: translateX(8px)
}

.outlet-card h3 {
    font-size: 30px;
    margin: 0
}

.outlet-card p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 13px
}

.outlet-card strong {
    color: var(--red);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.contact {
    background: var(--cream)
}

.locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px
}

.location {
    background: #fff;
    padding: 34px
}

.location-top {
    display: flex;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
    margin-bottom: 20px
}

.location-top h3 {
    margin: 0;
    font-size: 38px
}

.location p {
    color: var(--muted);
    font-size: 14px;
    min-height: 70px
}

.location .text-link {
    display: block;
    margin-bottom: 18px
}

.phone {
    font-size: 19px;
    font-weight: 700
}

.privacy {
    background: #f4eadf;
    padding: 75px 0
}

.privacy-inner {
    max-width: 820px
}

.privacy h2 {
    font-size: 55px
}

.privacy p {
    color: var(--muted);
    font-size: 14px
}

.privacy a {
    color: var(--red);
    font-weight: 700
}

.site-footer {
    background: var(--ink);
    color: #fff;
    padding: 38px 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px
}

.footer-grid .brand img {
    width: 130px
}

.footer-grid p {
    margin: 0;
    font-family: "Bebas Neue";
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 1px
}

.footer-grid>div {
    text-align: right
}

.footer-grid>div a {
    color: #ffcf38;
    display: block;
    font-weight: 700
}

.footer-grid small {
    color: #aaa
}

@media(max-width:800px) {
    .container {
        width: min(100% - 34px, 600px)
    }

    .site-header {
        padding: 15px 0
    }

    .brand img {
        width: 120px
    }

    .menu-toggle {
        display: block
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 17px;
        right: 17px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0;
        background: var(--ink);
        box-shadow: 0 10px 25px #0005
    }

    .nav-links.open {
        display: flex
    }

    .nav-links a {
        padding: 12px 20px
    }

    .nav-order {
        text-align: center;
        margin: 8px 15px
    }

    .hero {
        min-height: 680px
    }

    .hero-content {
        padding-top: 110px
    }

    .hero-note {
        display: none
    }

    .section {
        padding: 70px 0
    }

    .intro-grid,
    .order-grid {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .section-label {
        writing-mode: initial
    }

    .intro-image {
        height: 280px
    }

    .menu-cards,
    .locations {
        grid-template-columns: 1fr
    }

    .menu-card img {
        height: 230px
    }

    .menu-cta {
        display: block
    }

    .menu-cta .text-link {
        display: block;
        margin-top: 10px
    }

    .split-heading {
        display: block
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px
    }

    .gallery-grid figure:first-child {
        grid-row: span 2
    }

    .gallery-grid figure:nth-child(4) {
        grid-column: span 2
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .footer-grid>div {
        text-align: center
    }

    .footer-grid .brand img {
        margin: auto
    }

    .hero-copy {
        font-size: 16px
    }
}

/* Premium restaurant treatment */
:root {
    --red: #b51e25;
    --red-dark: #89151b;
    --cream: #f7f3ed;
    --ink: #191817;
    --muted: #000;
    --line: #ded7ce
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -.5px
}

h1 {
    font-size: clamp(45px, 6vw, 78px)
}

h2 {
    font-size: clamp(40px, 5vw, 64px)
}

h3 {
    font-size: 28px
}

em {
    font-style: italic
}

.hero {
    background: linear-gradient(90deg, rgba(14, 13, 12, .86), rgba(14, 13, 12, .28)), url("../img/slider-1.jpg") center/cover
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(14, 13, 12, .35), transparent 65%)
}

.hero-content {
    max-width: 820px
}

.eyebrow {
    font-size: 11px;
    color: #e3b84e
}

.button {
    font-size: 11px
}

.hero-note {
    font-family: "DM Sans";
    font-size: 10px
}

.section-label {
    font-size: 11px
}

.intro .highlight {
    border-left: 2px solid var(--red)
}

.menu-card span,
.outlet-number,
.location-top span {
    font-size: 11px
}

.outlet-card h3 {
    font-size: 27px
}

.location-top h3 {
    font-size: 35px
}

.banner-content .eyebrow {
    color: #e3b84e
}

.privacy {
    background: #f0e9df
}

.footer-grid p {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: 0
}

.footer-grid>div a {
    color: #e3b84e
}

.highlight-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}