* {
    box-sizing: border-box;
}

:root {
    --bg: #140b07;
    --panel: #21120c;
    --panel-soft: #2b1710;
    --cream: #fff3d6;
    --muted: #e3cba4;
    --gold: #f4b64b;
    --orange: #e95d1b;
    --red: #a31616;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    --radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(233, 93, 27, 0.24), transparent 36rem),
        linear-gradient(135deg, #140b07 0%, #2a100a 45%, #130807 100%);
    color: var(--cream);
    line-height: 1.6;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(20, 11, 7, 0.92);
    border-bottom: 1px solid rgba(255, 243, 214, 0.12);
    backdrop-filter: blur(14px);
}

.header-inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: max-content;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #210c06;
    font-weight: 900;
}

.brand-text {
    font-size: 1.08rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

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

.main-nav a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.92rem;
    padding: 8px 10px;
    border-radius: 999px;
}

.main-nav a:hover {
    background: rgba(255, 243, 214, 0.1);
    color: var(--white);
}

.section {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 74px 0;
}

.hero {
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) 360px;
    align-items: center;
    gap: 34px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 900;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.45rem, 6vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-copy {
    max-width: 660px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.18rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
}

.button.primary {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #210c06;
}

.button.secondary {
    border: 1px solid rgba(255, 243, 214, 0.28);
    color: var(--cream);
}

.hero-card {
    min-height: 320px;
    padding: 30px;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(244, 182, 75, 0.18), rgba(233, 93, 27, 0.22)),
        var(--panel);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 243, 214, 0.14);
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 8px;
}

.card-label {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
}

.hero-card strong {
    font-size: 2.1rem;
    line-height: 1;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 28px;
}

.section-heading h2,
.intro h2,
.happy-hour h2,
.sports h2,
.visit h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.intro {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    border-top: 1px solid rgba(255, 243, 214, 0.12);
    border-bottom: 1px solid rgba(255, 243, 214, 0.12);
}

.intro p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.cards,
.gallery-grid,
.drinks-grid {
    display: grid;
    gap: 20px;
}

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

.feature-card,
.drink-panel,
.visit-card,
.map-placeholder,
.screen-placeholder {
    border-radius: var(--radius);
    background: rgba(33, 18, 12, 0.84);
    border: 1px solid rgba(255, 243, 214, 0.12);
    box-shadow: var(--shadow);
}

.feature-card {
    padding: 18px;
}

.feature-card h3,
.drink-panel h3 {
    margin: 18px 0 8px;
    font-size: 1.35rem;
}

.feature-card p,
.drink-panel p,
.sports p {
    color: var(--muted);
}

.photo-placeholder {
    min-height: 190px;
    border-radius: 18px;
    border: 1px dashed rgba(255, 243, 214, 0.38);
    background:
        linear-gradient(135deg, rgba(244, 182, 75, 0.08), rgba(233, 93, 27, 0.08)),
        rgba(255, 255, 255, 0.035);
    color: rgba(255, 243, 214, 0.68);
    display: grid;
    place-items: center;
    text-align: center;
    font-weight: 900;
}

.photo-placeholder.tall {
    min-height: 270px;
}

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

.drink-panel {
    padding: 28px;
}

.drink-panel ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.drink-panel li {
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(255, 243, 214, 0.08);
    color: var(--cream);
    font-weight: 800;
}

.small-note {
    margin: 4px 0 0;
    font-size: 0.95rem;
}

.beer-panel {
    background:
        linear-gradient(135deg, rgba(163, 22, 22, 0.34), rgba(233, 93, 27, 0.13)),
        rgba(33, 18, 12, 0.84);
}

.happy-hour {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 42px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: var(--shadow);
}

.happy-hour p {
    margin-bottom: 0;
}

.happy-badge {
    min-width: 210px;
    min-height: 130px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 22px;
    background: rgba(20, 11, 7, 0.28);
    border: 1px solid rgba(255, 243, 214, 0.22);
}

.happy-badge span,
.happy-badge strong {
    display: block;
}

.happy-badge span {
    color: var(--cream);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
}

.happy-badge strong {
    font-size: 1.3rem;
}

.sports {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 24px;
}

.screen-placeholder {
    min-height: 260px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--gold);
    font-weight: 900;
    font-size: 1.45rem;
    background:
        linear-gradient(135deg, rgba(244, 182, 75, 0.13), rgba(163, 22, 22, 0.18)),
        #0b0b0b;
}

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

.visit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.visit-card {
    padding: 34px;
}

.visit-card address {
    margin: 18px 0;
    font-style: normal;
    color: var(--muted);
    font-size: 1.1rem;
}

.visit-card a {
    color: var(--gold);
    font-weight: 900;
    text-decoration: none;
}

.map-placeholder {
    min-height: 330px;
    display: grid;
    place-items: center;
    color: rgba(255, 243, 214, 0.62);
    font-weight: 900;
    border-style: dashed;
}

.site-footer {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 46px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--muted);
    border-top: 1px solid rgba(255, 243, 214, 0.12);
}

.site-footer p {
    margin: 0;
}

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

@media (max-width: 860px) {
    .header-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .main-nav a {
        padding: 7px 9px;
        font-size: 0.88rem;
    }

    .hero,
    .intro,
    .sports,
    .visit,
    .drinks-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-card {
        min-height: 240px;
    }

    .cards,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .happy-hour {
        align-items: flex-start;
        flex-direction: column;
    }

    .happy-badge {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .section {
        width: min(100% - 24px, 1120px);
        padding: 54px 0;
    }

    .header-inner {
        width: min(100% - 24px, 1120px);
    }

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

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

    .hero-copy {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .happy-hour {
        padding: 28px;
    }

    .site-footer {
        width: min(100% - 24px, 1120px);
        flex-direction: column;
    }
}
