:root {
    color-scheme: dark;
    --ink: #fff8ed;
    --muted: #c9b9a7;
    --smoke: #17130f;
    --char: #0d0b09;
    --panel: #211b15;
    --line: rgba(255, 248, 237, .14);
    --red: #d62828;
    --red-dark: #9f1d1d;
    --gold: #f6b23e;
    --cream: #fff3d8;
    --shadow: 0 26px 80px rgba(0, 0, 0, .34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(214, 40, 40, .18), transparent 28rem),
        linear-gradient(135deg, #100d0b 0%, #1c1510 48%, #0a0908 100%);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 78px;
    padding: 16px clamp(18px, 4vw, 56px);
    background: rgba(13, 11, 9, .86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

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

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    color: white;
    font-family: Georgia, serif;
    font-size: 1.6rem;
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(214, 40, 40, .35);
}

.brand strong,
.brand small {
    display: block;
    line-height: 1;
}

.brand strong {
    font-size: 1.1rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.brand small {
    margin-top: 5px;
    color: var(--muted);
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 3vw, 38px);
}

.site-nav a {
    color: var(--muted);
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease;
}

.site-nav a:hover {
    color: var(--cream);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.call-button,
.order-button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 900;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.call-button,
.button-primary {
    background: var(--red);
    color: white;
}

.order-button {
    border: 1px solid rgba(246, 178, 62, .7);
    background: rgba(246, 178, 62, .14);
    color: var(--cream);
}

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

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 248, 237, .08);
    color: var(--cream);
}

.button-ghost {
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
}

.button-dark {
    background: var(--char);
    color: var(--cream);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    min-height: calc(100vh - 78px);
    padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 80px) clamp(36px, 6vw, 76px);
}

.hero-copy {
    max-width: 800px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: .82rem;
    font-weight: 950;
    letter-spacing: .18em;
    text-transform: uppercase;
}

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

h1 {
    max-width: 12ch;
    margin-bottom: 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.4rem, 8vw, 8rem);
    line-height: .86;
}

h2 {
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4.6vw, 4.7rem);
    line-height: .95;
}

h3 {
    color: var(--cream);
    font-size: 1.2rem;
    line-height: 1.12;
}

.hero-text {
    max-width: 620px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 38px;
}

.hero-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 700px;
    margin: 0;
}

.hero-details div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 248, 237, .06);
}

.hero-details dt {
    color: var(--muted);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.hero-details dd {
    margin: 5px 0 0;
    color: var(--cream);
    font-weight: 850;
}

.hero-media {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.hero-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 42%, rgba(13, 11, 9, .72));
    pointer-events: none;
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    object-position: 50% 64%;
}

.floating-special {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    width: min(280px, calc(100% - 44px));
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 8px;
    background: rgba(13, 11, 9, .82);
    backdrop-filter: blur(14px);
}

.floating-special span,
.floating-special small {
    display: block;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.floating-special strong {
    display: block;
    margin: 5px 0;
    color: var(--cream);
    font-size: 1.35rem;
}

.quick-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 248, 237, .06);
}

.quick-info a {
    min-height: 112px;
    padding: 28px clamp(18px, 4vw, 56px);
    border-right: 1px solid var(--line);
    text-decoration: none;
}

.quick-info a:last-child {
    border-right: 0;
}

.quick-info span {
    display: block;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.quick-info strong {
    display: block;
    margin-top: 8px;
    color: var(--cream);
    font-size: clamp(1rem, 2vw, 1.45rem);
}

.menu-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 18px clamp(18px, 5vw, 80px);
    background: var(--red);
    scrollbar-width: none;
}

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

.menu-strip span {
    flex: 0 0 auto;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: white;
    font-size: .82rem;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section {
    padding: clamp(58px, 9vw, 118px) clamp(18px, 5vw, 80px);
}

.intro {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(280px, .72fr);
    gap: clamp(28px, 6vw, 76px);
    align-items: end;
}

.intro p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(1.03rem, 1.8vw, 1.25rem);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

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

.feature-card {
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .22);
}

.feature-card.large-card {
    grid-row: span 2;
}

.feature-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    object-position: center;
}

.large-card img {
    height: 620px;
    object-position: 50% 60%;
}

.feature-card:nth-child(2) img {
    object-position: 50% 64%;
}

.feature-card:nth-child(3) img {
    object-position: 50% 54%;
}

.feature-card div {
    padding: 24px;
}

.feature-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: .74rem;
    font-weight: 950;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.specials-strip-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(rgba(13, 11, 9, .78), rgba(13, 11, 9, .9)),
        url("images/freds-pizza.jpg") center 58% / cover;
}

.specials-strip-section .section-heading {
    max-width: 920px;
}

.specials-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(190px, 1fr));
    gap: 12px;
}

.specials-strip article {
    min-height: 190px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(13, 11, 9, .68);
    backdrop-filter: blur(12px);
}

.specials-strip span {
    display: block;
    margin-bottom: 28px;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.specials-strip h3 {
    margin-bottom: 16px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.04rem;
    line-height: 1.2;
}

.specials-strip strong {
    display: block;
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    line-height: 1;
}

.specials-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1fr);
}

.special-panel,
.delivery-panel {
    min-height: 460px;
    padding: clamp(38px, 6vw, 80px);
}

.special-panel {
    background: var(--red);
    color: white;
}

.special-panel .eyebrow,
.special-panel h2,
.special-panel p {
    color: white;
}

.delivery-panel {
    background:
        linear-gradient(rgba(13, 11, 9, .64), rgba(13, 11, 9, .88)),
        url("images/freds-chicken-fingers.jpg") center 58% / cover;
}

.special-panel p,
.delivery-panel p {
    max-width: 680px;
    color: rgba(255, 248, 237, .84);
    font-size: 1.08rem;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
    gap: clamp(28px, 6vw, 76px);
    background: var(--cream);
    color: var(--char);
}

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

.contact-section h2 {
    color: var(--char);
}

.contact-copy p:last-child {
    color: #705f4d;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-cards article {
    min-height: 156px;
    padding: 22px;
    border: 1px solid rgba(13, 11, 9, .15);
    border-radius: 8px;
    background: rgba(255, 255, 255, .52);
}

.contact-cards span {
    display: block;
    margin-bottom: 8px;
    color: var(--red-dark);
    font-size: .75rem;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-cards a,
.contact-cards p {
    margin: 0;
    color: var(--char);
    font-size: 1.03rem;
    font-weight: 800;
    text-decoration: none;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 26px clamp(18px, 5vw, 80px);
    background: var(--char);
    color: var(--muted);
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: var(--cream);
    font-weight: 900;
    text-decoration: none;
}

.menu-hero {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(320px, .72fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    padding: clamp(44px, 7vw, 96px) clamp(18px, 5vw, 80px);
    border-bottom: 1px solid var(--line);
}

.menu-hero h1 {
    max-width: 9ch;
}

.menu-hero p:not(.eyebrow) {
    max-width: 660px;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.menu-hero img {
    width: 100%;
    min-height: 460px;
    max-height: 680px;
    border: 1px solid var(--line);
    border-radius: 8px;
    object-fit: cover;
    object-position: 50% 62%;
    box-shadow: var(--shadow);
}

.menu-jump {
    position: sticky;
    top: 78px;
    z-index: 15;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 14px clamp(18px, 5vw, 80px);
    border-bottom: 1px solid var(--line);
    background: rgba(13, 11, 9, .9);
    backdrop-filter: blur(18px);
    scrollbar-width: none;
}

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

.menu-jump a {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--cream);
    font-size: .76rem;
    font-weight: 950;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, border-color .2s ease;
}

.menu-jump a:hover {
    border-color: rgba(246, 178, 62, .7);
    background: rgba(246, 178, 62, .12);
}

.menu-page {
    padding: clamp(36px, 6vw, 72px) clamp(18px, 5vw, 80px);
}

.menu-category {
    scroll-margin-top: 150px;
    margin-bottom: clamp(42px, 7vw, 86px);
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 248, 237, .055);
}

.highlight-category {
    background:
        linear-gradient(rgba(13, 11, 9, .75), rgba(13, 11, 9, .88)),
        url("images/freds-wings.jpg") center 62% / cover;
}

.menu-category-heading {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(280px, .5fr);
    gap: 22px;
    align-items: end;
    margin-bottom: 24px;
}

.menu-category-heading .eyebrow,
.menu-category-heading h2,
.menu-category-heading p {
    grid-column: 1;
}

.menu-category-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2.1rem, 4vw, 4rem);
}

.menu-category-heading p:not(.eyebrow) {
    margin-bottom: 0;
    color: var(--muted);
}

.menu-subhead {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px 18px;
    margin: 26px 0 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.menu-subhead h3,
.menu-subhead p {
    margin: 0;
}

.menu-subhead p {
    color: var(--muted);
    font-size: .95rem;
}

.menu-list {
    display: grid;
    gap: 10px;
}

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

.menu-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    min-height: 70px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(13, 11, 9, .42);
}

.menu-row h3,
.menu-row p {
    margin: 0;
}

.menu-row h3 {
    color: var(--cream);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .98rem;
    line-height: 1.28;
}

.menu-row p {
    margin-top: 6px;
    color: var(--muted);
    font-size: .92rem;
}

.menu-row strong {
    flex: 0 0 auto;
    color: var(--gold);
    font-size: .98rem;
    text-align: right;
    white-space: nowrap;
}

.menu-note-grid {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.menu-note-grid p {
    margin: 0;
    padding: 14px 16px;
    border: 1px solid rgba(246, 178, 62, .28);
    border-radius: 8px;
    background: rgba(246, 178, 62, .09);
    color: var(--cream);
}

.menu-cta {
    padding: clamp(52px, 8vw, 92px) clamp(18px, 5vw, 80px);
    background: var(--red);
    color: white;
    text-align: center;
}

.menu-cta .eyebrow,
.menu-cta h2 {
    color: white;
}

.menu-cta h2 {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

.menu-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .site-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .hero,
    .menu-hero,
    .intro,
    .split-section,
    .contact-section,
    .menu-category-heading {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-media,
    .hero-media img {
        min-height: 460px;
    }

    .quick-info,
    .menu-grid,
    .two-column-list {
        grid-template-columns: 1fr;
    }

    .specials-strip {
        display: flex;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .specials-strip::-webkit-scrollbar {
        display: none;
    }

    .specials-strip article {
        flex: 0 0 min(82vw, 320px);
        scroll-snap-align: start;
    }

    .menu-jump {
        top: 121px;
    }

    .menu-category {
        scroll-margin-top: 196px;
    }

    .menu-hero img {
        min-height: 380px;
    }

    .quick-info a {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .quick-info a:last-child {
        border-bottom: 0;
    }

    .feature-card.large-card {
        grid-row: auto;
    }

    .large-card img {
        height: 300px;
    }
}

@media (max-width: 640px) {
    .site-header {
        gap: 14px;
        min-height: 70px;
        padding: 12px 16px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand strong {
        font-size: 1rem;
    }

    .header-actions {
        gap: 8px;
    }

    .call-button,
    .order-button {
        min-height: 40px;
        padding: 10px 12px;
        font-size: .75rem;
    }

    .order-button {
        display: none;
    }

    .site-nav {
        gap: 18px;
    }

    .site-nav a {
        font-size: .8rem;
        letter-spacing: .06em;
    }

    .hero {
        padding-top: 36px;
    }

    .hero-actions,
    .site-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .menu-cta-actions {
        display: grid;
    }

    .hero-details,
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .menu-jump {
        top: 94px;
        gap: 8px;
        padding: 10px 16px;
    }

    .menu-jump a {
        padding: 9px 13px;
        font-size: .72rem;
        letter-spacing: .08em;
    }

    .menu-category {
        scroll-margin-top: 162px;
        padding: 20px 14px;
    }

    .menu-row {
        display: grid;
        gap: 8px;
    }

    .menu-row strong {
        text-align: left;
        white-space: normal;
    }

    .hero-media,
    .hero-media img {
        min-height: 360px;
    }

    .floating-special {
        right: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
    }
}
