:root {
    --bg: #060504;
    --bg-soft: #11100e;
    --panel: #17130f;
    --panel-2: #211912;
    --text: #f8efe0;
    --muted: #cbbda8;
    --gold: #d7a23a;
    --red: #b82416;
    --red-dark: #7f130d;
    --line: rgba(215, 162, 58, 0.34);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 14% 18%, rgba(184, 36, 22, 0.18), transparent 24rem),
        radial-gradient(circle at 78% 8%, rgba(215, 162, 58, 0.14), transparent 20rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 22rem);
    z-index: -2;
}

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

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 14px clamp(18px, 4vw, 56px);
    background: linear-gradient(180deg, rgba(5, 4, 3, 0.94), rgba(5, 4, 3, 0.72));
    border-bottom: 1px solid rgba(215, 162, 58, 0.2);
    backdrop-filter: blur(16px);
}

.brand img {
    width: 86px;
    height: 86px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.4vw, 34px);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.site-nav a {
    color: var(--text);
    font-size: 15px;
}

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

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 4px;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta {
    border: 1px solid var(--gold);
    color: var(--gold);
    min-height: 46px;
    padding: 10px 16px;
}

.btn:hover,
.header-cta:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: rgba(6, 5, 4, 0.56);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 1px solid var(--line);
    background: rgba(10, 8, 6, 0.72);
    border-radius: 4px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: end;
    padding: 128px clamp(18px, 4vw, 64px) 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 3, 3, 0.96) 0%, rgba(3, 3, 3, 0.82) 36%, rgba(3, 3, 3, 0.2) 72%),
        linear-gradient(0deg, rgba(3, 3, 3, 0.95) 0%, rgba(3, 3, 3, 0.18) 48%),
        url("../img/bubbas/Bubbas.png") center / cover no-repeat;
    z-index: -1;
}

.hero-content {
    width: min(1180px, 100%);
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: minmax(0, 690px) minmax(280px, 390px);
    gap: clamp(22px, 4vw, 70px);
    align-items: end;
}

.hero-copy h1,
.section-heading h2,
.split-copy h2,
.story-panel h2,
.contact-info h2 {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 0.96;
}

.hero-copy h1 {
    font-size: clamp(56px, 8vw, 112px);
    max-width: 760px;
    margin: 0 0 24px;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.7);
}

.hero-copy p {
    max-width: 660px;
    margin: 0 0 30px;
    color: var(--text);
    font-size: clamp(17px, 1.6vw, 22px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-card {
    padding: 26px;
    background: linear-gradient(180deg, rgba(23, 19, 15, 0.94), rgba(10, 8, 6, 0.88));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-card.image-card {
    padding: 10px;
}

.hero-card.image-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center;
}

.hero-card span,
.section-heading span,
.split-copy span,
.story-panel span,
.contact-info span {
    display: block;
    color: var(--gold);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-card strong {
    display: block;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 34px;
    line-height: 1;
    text-transform: uppercase;
}

.hero-card p {
    margin: 14px 0 0;
    color: var(--muted);
}

.hero-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(7, 6, 4, 0.88);
    border-top: 1px solid var(--line);
}

.hero-strip div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 86px;
    padding: 18px;
    border-right: 1px solid var(--line);
    color: var(--gold);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    text-align: center;
    text-transform: uppercase;
}

.hero-strip i {
    color: var(--red);
    font-size: 24px;
}

.section {
    padding: clamp(76px, 8vw, 124px) clamp(18px, 4vw, 64px);
}

.section-heading {
    width: min(820px, 100%);
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading.compact {
    margin-bottom: 34px;
}

.section-heading h2,
.split-copy h2,
.story-panel h2,
.contact-info h2 {
    font-size: clamp(38px, 5.5vw, 72px);
    margin: 0 0 18px;
}

.section-heading p,
.split-copy p,
.story-panel p,
.contact-info p,
.menu-card p,
.menu-feature p,
.process-grid p {
    color: var(--muted);
    font-size: 17px;
}

.menu-section,
.event-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
        var(--bg);
}

.menu-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 0.85fr;
    gap: 22px;
}

.menu-feature,
.menu-card,
.process-grid article,
.booking-form,
.contact-info,
.story-panel {
    background: linear-gradient(180deg, rgba(33, 25, 18, 0.92), rgba(16, 13, 10, 0.94));
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.menu-feature {
    grid-row: span 2;
}

.menu-feature img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.menu-feature div,
.menu-card {
    padding: 26px;
}

.menu-feature h3,
.menu-card h3,
.process-grid h3 {
    margin: 0 0 14px;
    color: var(--text);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 30px;
    text-transform: uppercase;
}

.menu-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--muted);
}

.menu-card li {
    padding: 9px 0;
    border-bottom: 1px solid rgba(215, 162, 58, 0.16);
}

.menu-card li:last-child {
    border-bottom: 0;
}

.menu-card.accent {
    background: linear-gradient(135deg, rgba(184, 36, 22, 0.9), rgba(93, 14, 9, 0.92));
}

.menu-card.accent p {
    color: #f7dfc1;
}

.catering-section {
    background: linear-gradient(180deg, #110d09, #070605);
}

.split {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 460px);
    gap: clamp(28px, 6vw, 76px);
    align-items: center;
}

.event-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.event-list div {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(215, 162, 58, 0.2);
    color: var(--text);
}

.event-list i {
    color: var(--gold);
    margin-right: 8px;
}

.split-media {
    margin: 0;
    padding: 10px;
    background: rgba(215, 162, 58, 0.08);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.split-media img {
    width: 100%;
    max-height: 720px;
    object-fit: cover;
    object-position: top center;
}

.process-grid {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.process-grid article {
    padding: 30px;
}

.process-grid strong {
    display: block;
    color: var(--red);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 46px;
    line-height: 1;
    margin-bottom: 18px;
}

.gallery-section {
    background: #0d0a08;
}

.gallery-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.gallery-grid a {
    min-height: 245px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #090705;
}

.gallery-grid a:nth-child(1),
.gallery-grid a:nth-child(5),
.gallery-grid a:nth-child(6) {
    grid-column: span 2;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.gallery-grid a:hover img {
    transform: scale(1.04);
}

.story-section {
    background:
        linear-gradient(90deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.7)),
        url("../img/bubbas/bubbas_grub_mobile_bbq_exact_logo.png") center / cover no-repeat;
}

.story-panel {
    width: min(980px, 100%);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 58px);
}

.contact-section {
    background: linear-gradient(180deg, #070605, #050403);
}

.contact-wrap {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
}

.contact-info,
.booking-form {
    padding: clamp(26px, 4vw, 44px);
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}

.contact-info li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(215, 162, 58, 0.18);
    color: var(--muted);
    word-break: break-word;
}

.contact-info i {
    color: var(--gold);
    width: 20px;
    padding-top: 4px;
}

.booking-form {
    display: grid;
    gap: 18px;
}

.booking-form label {
    display: grid;
    gap: 8px;
    color: var(--gold);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid rgba(215, 162, 58, 0.28);
    border-radius: 4px;
    background: rgba(3, 3, 3, 0.5);
    color: var(--text);
    font: 16px Arial, Helvetica, sans-serif;
}

.booking-form textarea {
    resize: vertical;
}

.recaptcha-wrap {
    display: grid;
    gap: 8px;
    overflow-x: auto;
}

.form-alert {
    min-height: 24px;
    margin: 0;
    color: #ffcf83;
    font-size: 14px;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px clamp(18px, 4vw, 56px);
    border-top: 1px solid var(--line);
    background: #050403;
}

.site-footer img {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.site-footer strong {
    display: block;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 24px;
    text-transform: uppercase;
}

.site-footer p {
    margin: 2px 0 0;
    color: var(--muted);
}

.footer-contact {
    display: grid;
    gap: 6px;
    justify-items: end;
    text-align: right;
}

.site-footer a {
    color: var(--gold);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .header-cta {
        display: none;
    }

    .site-header {
        grid-template-columns: auto 1fr auto;
    }

    .hero-content,
    .split,
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 560px;
    }

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

    .menu-feature {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .site-header {
        padding: 10px 16px;
    }

    .brand img {
        width: 66px;
        height: 66px;
    }

    .nav-toggle {
        display: block;
        grid-column: 3;
    }

    .site-nav {
        position: absolute;
        top: 76px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        background: rgba(8, 6, 5, 0.96);
        border: 1px solid var(--line);
    }

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

    .site-nav a {
        padding: 13px 10px;
        border-bottom: 1px solid rgba(215, 162, 58, 0.16);
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }

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

    .hero-bg {
        background:
            linear-gradient(180deg, rgba(3, 3, 3, 0.7), rgba(3, 3, 3, 0.98) 68%),
            url("../img/bubbas/Bubbas.png") 62% top / cover no-repeat;
    }

    .hero-content {
        margin-bottom: 28px;
    }

    .hero-copy h1 {
        font-size: clamp(46px, 15vw, 78px);
    }

    .hero-strip,
    .process-grid,
    .gallery-grid,
    .menu-grid,
    .event-list {
        grid-template-columns: 1fr;
    }

    .gallery-grid a,
    .gallery-grid a:nth-child(1),
    .gallery-grid a:nth-child(5),
    .gallery-grid a:nth-child(6) {
        grid-column: auto;
    }

    .hero-strip div {
        min-height: 66px;
        justify-content: flex-start;
    }

    .menu-feature img {
        height: 260px;
    }

    .hero-card.image-card img {
        height: 280px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-contact {
        justify-items: start;
        text-align: left;
    }
}

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