:root {
    --bg: #080807;
    --panel: #121316;
    --panel-soft: #1b1d20;
    --text: #f7f2e9;
    --muted: #c7baaa;
    --line: rgba(255, 255, 255, 0.12);
    --brand: #f47e20;
    --brand-dark: #bd5f17;
    --leaf: #4f8f67;
    --steel: #6f8ea0;
    --paper: #f3eadb;
    --ink: #1a1612;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
}

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

a {
    color: inherit;
}

.sr-only,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 50;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    padding: 10px 14px;
    background: var(--paper);
    color: var(--ink);
    border-radius: 8px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 78px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 14px max(22px, calc((100vw - var(--max)) / 2));
    background: rgba(8, 8, 7, 0.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-mark img {
    width: 156px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.site-nav a,
.header-action {
    text-decoration: none;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(247, 242, 233, 0.82);
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--text);
    background: rgba(244, 126, 32, 0.15);
}

.header-action {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 12px 24px rgba(244, 126, 32, 0.24);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

.section-dark,
.content-band {
    position: relative;
    overflow: hidden;
}

.hero {
    min-height: 690px;
    display: grid;
    align-items: end;
    padding: 120px max(22px, calc((100vw - var(--max)) / 2)) 72px;
}

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

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(8, 8, 7, 0.92) 0%, rgba(8, 8, 7, 0.72) 44%, rgba(8, 8, 7, 0.24) 100%);
}

.hero-content {
    max-width: 720px;
}

.eyebrow {
    margin: 0 0 14px;
    color: #ffd1a9;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

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

h1 {
    margin-bottom: 18px;
    font-size: 5rem;
    line-height: 0.95;
    font-weight: 950;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.08;
    margin-bottom: 18px;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.2;
}

.hero-copy,
.page-hero p {
    max-width: 620px;
    color: rgba(247, 242, 233, 0.86);
    font-size: 1.18rem;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 900;
    cursor: pointer;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
}

.btn-primary:hover {
    background: var(--brand-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--line);
    color: var(--text);
}

.content-band {
    padding: 86px max(22px, calc((100vw - var(--max)) / 2));
}

.intro-band {
    background: var(--paper);
    color: var(--ink);
}

.intro-band .eyebrow,
.content-band .eyebrow {
    color: var(--brand-dark);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    margin-bottom: 34px;
}

.section-heading h2 {
    max-width: 780px;
    margin-bottom: 0;
}

.text-link {
    color: var(--brand);
    font-weight: 900;
    text-decoration: none;
}

.intro-grid,
.dish-grid,
.franchise-grid,
.contact-grid {
    display: grid;
    gap: 18px;
}

.intro-grid {
    grid-template-columns: repeat(3, 1fr);
}

.intro-grid article,
.story-points article,
.franchise-grid article,
.contact-card,
.contact-form-panel,
.empty-state {
    border-radius: 8px;
    padding: 22px;
    border: 1px solid rgba(26, 22, 18, 0.12);
    background: rgba(255, 255, 255, 0.58);
}

.intro-grid strong,
.story-points strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.menu-preview {
    background: #101113;
}

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

.dish-card,
.menu-item {
    overflow: hidden;
    border-radius: 8px;
    background: var(--panel);
    border: 1px solid var(--line);
}

.dish-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.dish-card div,
.menu-item div {
    padding: 18px;
}

.dish-card span,
.menu-item span {
    display: block;
    margin-bottom: 8px;
    color: var(--brand);
    font-weight: 900;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.dish-card h3,
.menu-item h2 {
    margin-bottom: 10px;
}

.dish-card p,
.menu-item p,
.story-copy p,
.franchise-grid p,
.contact-card p,
.footer-main p {
    color: var(--muted);
}

.split-feature {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
    background: #17130f;
}

.split-feature > img,
.page-hero img,
.image-strip img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.split-feature > img {
    height: 520px;
}

.unit-summary {
    max-width: 560px;
}

.unit-summary ul,
.contact-card ul {
    padding-left: 20px;
    color: var(--muted);
}

.page-hero {
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: 40px;
    align-items: center;
    padding: 80px max(22px, calc((100vw - var(--max)) / 2));
    background: #090908;
}

.page-hero > * {
    position: relative;
    z-index: 1;
}

.page-hero img {
    height: 390px;
}

.compact-hero h1,
.menu-hero h1,
.franchise-hero h1 {
    font-size: 3.65rem;
}

.story {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 38px;
    background: var(--paper);
    color: var(--ink);
}

.story-copy p {
    color: #4a4036;
    font-size: 1.05rem;
}

.story-points {
    display: grid;
    gap: 14px;
}

.story-points article span {
    color: #4a4036;
}

.image-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.image-strip img {
    height: 360px;
    border-radius: 0;
}

.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.category-nav a {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--line);
    text-decoration: none;
    font-weight: 900;
    color: var(--text);
}

.category-nav a.is-active,
.category-nav a:hover {
    background: var(--brand);
    border-color: var(--brand);
}

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

.menu-item {
    display: grid;
    grid-template-columns: 170px 1fr;
}

.menu-item img {
    width: 170px;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
}

.menu-item strong,
.menu-item em {
    display: inline-flex;
    margin-top: 8px;
    margin-right: 8px;
    color: var(--leaf);
    font-style: normal;
    font-weight: 900;
}

.franchise-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    background: var(--paper);
    color: var(--ink);
}

.franchise-grid article:first-child {
    background: #fff;
}

.form-section {
    background: #101113;
}

.lead-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 820px;
}

.lead-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-weight: 800;
}

.lead-form .full,
.lead-form button,
.form-feedback {
    grid-column: 1 / -1;
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    padding: 13px 14px;
    font: inherit;
}

.lead-form input:focus,
.lead-form textarea:focus {
    outline: 3px solid rgba(244, 126, 32, 0.24);
    border-color: var(--brand);
}

.hp-field {
    display: none;
}

.form-feedback {
    max-width: 820px;
    margin-bottom: 18px;
    border-radius: 8px;
    padding: 14px 16px;
    font-weight: 900;
}

.form-feedback.success {
    color: #d9ffe3;
    background: rgba(79, 143, 103, 0.18);
    border: 1px solid rgba(79, 143, 103, 0.36);
}

.form-feedback.error {
    color: #ffe0d2;
    background: rgba(244, 126, 32, 0.16);
    border: 1px solid rgba(244, 126, 32, 0.36);
}

.contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    background: var(--paper);
    color: var(--ink);
}

.contact-card,
.contact-form-panel {
    background: #fff;
}

.contact-card a:not(.btn) {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-dark);
    font-weight: 900;
    text-decoration: none;
}

.contact-form-panel .lead-form input,
.contact-form-panel .lead-form textarea {
    background: #f7f2ea;
    color: var(--ink);
    border-color: rgba(26, 22, 18, 0.14);
}

.contact-form-panel .lead-form label {
    color: #5c5147;
}

.empty-state {
    background: var(--panel);
    border-color: var(--line);
}

.site-footer {
    padding: 52px max(22px, calc((100vw - var(--max)) / 2)) 28px;
    background: #050505;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.footer-main {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 28px;
    align-items: start;
}

.footer-brand img {
    width: 150px;
}

.footer-kicker {
    color: var(--brand);
    font-weight: 950;
    margin-bottom: 8px;
}

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

.footer-links a {
    text-decoration: none;
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--brand);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 78px;
        right: 18px;
        left: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        background: #101113;
        border: 1px solid var(--line);
        border-radius: 8px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .header-action {
        display: none;
    }

    h1 {
        font-size: 3.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        min-height: 620px;
    }

    .intro-grid,
    .dish-grid,
    .menu-list,
    .franchise-grid,
    .contact-grid,
    .story,
    .split-feature,
    .page-hero,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .page-hero img,
    .split-feature > img {
        height: 360px;
    }

    .franchise-grid article:first-child {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .brand-mark img {
        width: 128px;
    }

    .hero,
    .page-hero,
    .content-band {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero {
        min-height: 560px;
        padding-top: 92px;
        padding-bottom: 46px;
    }

    h1,
    .compact-hero h1,
    .menu-hero h1,
    .franchise-hero h1 {
        font-size: 2.55rem;
    }

    .hero-copy,
    .page-hero p {
        font-size: 1.02rem;
    }

    .section-heading {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .menu-item {
        grid-template-columns: 1fr;
    }

    .menu-item img {
        width: 100%;
        height: 240px;
        min-height: 0;
    }

    .lead-form {
        grid-template-columns: 1fr;
    }

    .image-strip {
        grid-template-columns: 1fr;
    }

    .image-strip img {
        height: 240px;
    }
}
