:root {
    --red: #d2121f;
    --red-dark: #8d0811;
    --coral: #ff6f4e;
    --turquoise: #17b7b1;
    --ocean: #082f49;
    --ocean-dark: #061b2b;
    --charcoal: #17110f;
    --ink: #2b211e;
    --muted: #74675f;
    --ivory: #fff7ec;
    --paper: #fffdf8;
    --gold: #d9b45f;
    --champagne: #f3dfad;
    --line: rgba(23, 17, 15, 0.13);
    --light-line: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 18px 55px rgba(23, 17, 15, 0.12);
    --shadow-strong: 0 34px 90px rgba(23, 17, 15, 0.3);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, #fffaf1 0, #fffdf8 42%, #fff3e5 100%);
    font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

body.nav-open {
    overflow: hidden;
}

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

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

.ambient-glow {
    display: none;
}

.site-header {
    position: fixed;
    z-index: 80;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #fff;
    transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    color: var(--charcoal);
    background: rgba(255, 253, 248, 0.92);
    box-shadow: 0 1px 0 var(--line), 0 18px 44px rgba(23, 17, 15, 0.08);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 10px;
    font-weight: 900;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    padding: 4px;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 6px;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #fff;
    background:
        linear-gradient(135deg, var(--red), var(--red-dark) 68%, var(--coral));
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    box-shadow: 0 14px 34px rgba(210, 18, 31, 0.28);
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 800;
}

.brand span:last-child {
    overflow: hidden;
    color: currentColor;
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    gap: 6px;
    padding: 12px;
    color: currentColor;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 6px;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
    background: #fff;
    border-color: var(--line);
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.main-nav {
    position: fixed;
    inset: 74px 14px auto 14px;
    display: none;
    grid-column: 1 / -1;
    gap: 6px;
    padding: 10px;
    color: var(--charcoal);
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
}

.main-nav.is-open {
    display: grid;
}

.main-nav a {
    padding: 14px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 850;
}

.main-nav a:hover {
    background: var(--ivory);
}

.header-cta {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    color: #fff;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.hero-layer {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(120deg, rgba(6, 27, 43, 0.92), rgba(141, 8, 17, 0.74) 42%, rgba(255, 111, 78, 0.18) 66%, rgba(6, 27, 43, 0.92)),
        linear-gradient(180deg, rgba(6, 27, 43, 0.22), rgba(6, 27, 43, 0.94));
}

.hero::before {
    position: absolute;
    inset: auto -20% -16% 8%;
    z-index: -1;
    height: 44%;
    content: "";
    background:
        linear-gradient(100deg, rgba(210, 18, 31, 0.78), rgba(255, 111, 78, 0.6), rgba(23, 183, 177, 0.32));
    transform: skewY(-7deg);
}

.hero-grid {
    display: grid;
    gap: 30px;
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 110px 18px 34px;
}

.hero-copy {
    align-self: end;
    max-width: 720px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--champagne);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--red);
}

.hero h1,
.section-heading h2,
.experience-copy h2,
.order-copy h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 780px;
    font-size: 3.35rem;
}

.hero-lead {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.02rem;
    line-height: 1.72;
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-actions {
    margin-top: 28px;
}

.btn,
.chip-button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 16px;
    border-radius: 6px;
    font-weight: 900;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-primary {
    color: #fff;
    background:
        linear-gradient(135deg, var(--red), var(--red-dark) 72%, var(--coral));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 48px rgba(210, 18, 31, 0.35);
}

.btn-glass {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.36);
    backdrop-filter: blur(14px);
}

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

.hero-showcase {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 0.6fr;
    gap: 12px;
    min-height: 430px;
}

.showcase-main,
.showcase-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
}

.showcase-main {
    grid-row: span 2;
}

.showcase-main img,
.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.showcase-badge {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 13px;
    color: #fff;
    background: rgba(6, 27, 43, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    backdrop-filter: blur(14px);
}

.showcase-badge span {
    display: block;
    color: var(--champagne);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.showcase-badge strong {
    display: block;
    margin-top: 4px;
    font-size: 1.05rem;
}

.card-a {
    transform: translateY(28px);
}

.card-b {
    transform: translateY(-10px);
}

.hero-bottom {
    display: grid;
    gap: 1px;
    width: min(1200px, calc(100% - 36px));
    margin: 0 auto 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
}

.metric {
    padding: 16px;
    background: rgba(6, 27, 43, 0.42);
}

.metric strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.8rem;
    line-height: 1;
}

.metric span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
}

.quick-order {
    position: relative;
    color: #fff;
    background:
        linear-gradient(90deg, var(--red-dark), var(--red), var(--coral), var(--turquoise), var(--ocean));
}

.ticker {
    display: flex;
    gap: 22px;
    overflow: hidden;
    padding: 12px 18px;
    white-space: nowrap;
}

.ticker span {
    flex: 0 0 auto;
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
}

.quick-branch-row {
    display: grid;
    gap: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.quick-branch {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    background: rgba(6, 27, 43, 0.78);
}

.quick-branch span,
.branch-copy span,
.order-card > span {
    color: var(--champagne);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.quick-branch strong {
    font-size: 1rem;
}

.experience-section,
.branch-section,
.promo-section,
.menu-section,
.gallery-section,
.order-section {
    padding: 76px 18px;
}

.section-heading,
.experience-grid,
.branch-list,
.menu-rail,
.news-grid,
.gallery-grid,
.order-section,
.site-footer {
    width: min(1200px, 100%);
    margin: 0 auto;
}

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

.section-heading h2,
.order-copy h2 {
    color: var(--charcoal);
    font-size: 2.35rem;
}

.section-heading p,
.experience-copy p,
.branch-copy p,
.news-body p,
.order-copy p,
.order-card p,
.site-footer p {
    color: var(--muted);
    line-height: 1.72;
}

.split {
    display: grid;
    gap: 18px;
}

.split > p {
    max-width: 430px;
}

.experience-section {
    background:
        linear-gradient(125deg, rgba(255, 247, 236, 0.96), rgba(255, 253, 248, 0.92)),
        var(--paper);
}

.experience-grid {
    display: grid;
    gap: 14px;
}

.experience-copy {
    display: grid;
    align-content: end;
    min-height: 280px;
    padding: 22px;
    color: #fff;
    background:
        linear-gradient(145deg, var(--ocean-dark), var(--ocean) 56%, var(--turquoise));
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.experience-copy p {
    color: rgba(255, 255, 255, 0.82);
}

.mini-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.mini-stats span {
    padding: 9px 11px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.experience-photo {
    position: relative;
    min-height: 260px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.experience-photo img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.experience-photo figcaption,
.gallery-grid figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 11px 12px;
    color: #fff;
    background: rgba(6, 27, 43, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    font-weight: 850;
    backdrop-filter: blur(14px);
}

.branch-section {
    background:
        linear-gradient(180deg, #fffdf8, #fff1e3);
}

.branch-list {
    display: grid;
    gap: 16px;
}

.branch-card {
    position: relative;
    display: grid;
    gap: 18px;
    overflow: hidden;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.branch-card::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 7px;
    content: "";
    background: linear-gradient(180deg, var(--red), var(--coral), var(--turquoise));
}

.branch-index {
    color: rgba(210, 18, 31, 0.18);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.85;
}

.branch-copy h3,
.news-body h3,
.order-card h3 {
    margin: 8px 0 8px;
    color: var(--charcoal);
    font-size: 1.38rem;
    line-height: 1.2;
}

.branch-info dl {
    display: grid;
    gap: 13px;
    margin: 0 0 18px;
}

.branch-info dt {
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
}

.branch-info dd {
    margin: 4px 0 0;
    line-height: 1.56;
}

.chip-button {
    min-height: 40px;
    padding: 10px 12px;
    color: var(--charcoal);
    background: var(--ivory);
    border: 1px solid var(--line);
    font-size: 0.9rem;
}

.chip-button.solid {
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--red-dark), var(--coral));
    border-color: transparent;
}

.menu-section {
    color: #fff;
    background:
        linear-gradient(135deg, var(--charcoal), var(--ocean-dark) 48%, var(--red-dark));
}

.light h2,
.light p,
.light .eyebrow {
    color: #fff;
}

.text-link {
    width: fit-content;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.26);
}

.menu-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 82%);
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

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

.menu-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    scroll-snap-align: start;
}

.menu-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    transition: transform 700ms ease;
}

.menu-card:hover img {
    transform: scale(1.05);
}

.menu-overlay {
    position: absolute;
    inset: auto 0 0 0;
    display: grid;
    gap: 18px;
    padding: 22px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(6, 27, 43, 0), rgba(6, 27, 43, 0.88) 28%, rgba(23, 17, 15, 0.96));
}

.menu-overlay span {
    color: var(--champagne);
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
}

.menu-overlay h3 {
    margin: 8px 0;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.7rem;
    line-height: 1.05;
}

.menu-overlay p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.58;
}

.menu-overlay strong {
    color: var(--champagne);
    font-size: 1.12rem;
}

.promo-section {
    background:
        linear-gradient(180deg, #fffdf8, #fff5eb);
}

.news-grid {
    display: grid;
    gap: 14px;
}

.news-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-body {
    padding: 20px;
}

.news-body time {
    color: var(--red);
    font-size: 0.74rem;
    font-weight: 950;
    text-transform: uppercase;
}

.gallery-section {
    color: #fff;
    background:
        linear-gradient(135deg, var(--red-dark), var(--red) 40%, var(--coral));
}

.gallery-grid {
    display: grid;
    gap: 14px;
}

.gallery-grid figure {
    position: relative;
    min-height: 290px;
    margin: 0;
    overflow: hidden;
    background: var(--charcoal);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.gallery-grid img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.order-section {
    display: grid;
    gap: 28px;
    color: #fff;
    background:
        linear-gradient(135deg, var(--ocean-dark), var(--ocean) 48%, var(--charcoal));
}

.order-copy h2,
.order-copy p {
    color: #fff;
}

.order-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.order-grid {
    display: grid;
    gap: 14px;
}

.order-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.order-card h3 {
    color: #fff;
}

.order-card p {
    color: rgba(255, 255, 255, 0.72);
}

.map-section {
    height: 380px;
    background: var(--ivory);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.mobile-sticky-cta {
    position: fixed;
    z-index: 70;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background:
        linear-gradient(135deg, var(--red), var(--red-dark) 70%, var(--coral));
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 6px;
    box-shadow: 0 20px 48px rgba(210, 18, 31, 0.38);
    font-weight: 950;
    transform: translateY(90px);
    transition: transform 240ms ease;
}

.mobile-sticky-cta.is-visible {
    transform: translateY(0);
}

.site-footer {
    display: grid;
    gap: 22px;
    padding: 34px 18px 86px;
    color: #fff;
    background: var(--charcoal);
}

.footer-brand {
    color: #fff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-links a {
    padding: 10px 12px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    font-weight: 850;
}

.js-ready .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
    }

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

@media (min-width: 720px) {
    .site-header {
        grid-template-columns: auto minmax(0, 1fr) auto;
        padding: 18px 34px;
    }

    .nav-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        display: flex;
        grid-column: auto;
        justify-self: center;
        gap: 4px;
        padding: 5px;
        color: currentColor;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 999px;
        box-shadow: none;
        backdrop-filter: blur(12px);
    }

    .site-header.is-scrolled .main-nav {
        background: #fff;
        border-color: var(--line);
    }

    .main-nav a {
        padding: 10px 12px;
        border-radius: 999px;
        font-size: 0.86rem;
    }

    .header-cta {
        display: inline-flex;
        min-height: 42px;
        align-items: center;
        justify-content: center;
        padding: 10px 14px;
        color: #fff;
        background: var(--red);
        border-radius: 6px;
        font-weight: 950;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.78fr);
        align-items: end;
        gap: 34px;
        min-height: calc(100svh - 122px);
        padding: 132px 34px 34px;
    }

    .hero h1 {
        font-size: 4.9rem;
    }

    .hero-showcase {
        min-height: 560px;
    }

    .hero-bottom {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: min(1200px, calc(100% - 68px));
        margin-bottom: 34px;
    }

    .metric {
        padding: 18px 20px;
    }

    .quick-branch-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(1200px, 100%);
        margin: 0 auto;
    }

    .ticker {
        justify-content: center;
    }

    .experience-section,
    .branch-section,
    .promo-section,
    .menu-section,
    .gallery-section,
    .order-section {
        padding: 100px 34px;
    }

    .section-heading h2,
    .order-copy h2 {
        max-width: 820px;
        font-size: 3.4rem;
    }

    .split {
        grid-template-columns: minmax(0, 1fr) 380px;
        align-items: end;
    }

    .experience-grid {
        grid-template-columns: 0.95fr 1.05fr 0.74fr;
        align-items: stretch;
    }

    .experience-copy {
        min-height: 520px;
        padding: 28px;
    }

    .experience-photo.tall {
        min-height: 520px;
    }

    .experience-photo {
        min-height: 420px;
    }

    .experience-photo img {
        min-height: 100%;
    }

    .branch-card {
        grid-template-columns: 110px minmax(0, 1fr) minmax(320px, 0.9fr);
        align-items: center;
        padding: 28px;
    }

    .branch-index {
        font-size: 5.6rem;
    }

    .menu-rail {
        grid-auto-flow: initial;
        grid-auto-columns: initial;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
        padding-bottom: 0;
    }

    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-card:first-child {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 0.82fr;
    }

    .news-card:first-child img {
        height: 100%;
        min-height: 340px;
    }

    .gallery-grid {
        grid-template-columns: 1.1fr 0.9fr 0.8fr;
    }

    .gallery-grid figure:first-child {
        grid-row: span 2;
    }

    .gallery-grid figure:first-child img {
        height: 638px;
    }

    .order-section {
        grid-template-columns: 0.8fr 1.2fr;
        align-items: start;
    }

    .order-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mobile-sticky-cta {
        display: none;
    }

    .site-footer {
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 34px;
    }
}

@media (min-width: 1120px) {
    .hero h1 {
        font-size: 6.1rem;
    }

    .section-heading h2,
    .order-copy h2 {
        font-size: 4.15rem;
    }
}
