:root {
    --bg: #080a07;
    --bg-2: #0f140d;
    --panel: #131811;
    --panel-soft: #192214;
    --text: #f5f2ea;
    --muted: #bcb7a8;
    --line: rgba(245, 242, 234, 0.16);
    --green: #a5e66f;
    --green-strong: #bcf18a;
    --red: #e01817;
    --red-dark: #a91412;
    --amber: #f0a83b;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, #080a07 0%, #0b0f09 48%, #070906 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: fixed;
    z-index: 30;
    top: 18px;
    left: max(22px, calc((100vw - var(--max)) / 2));
    right: max(22px, calc((100vw - var(--max)) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 12px 16px;
    border: 1px solid rgba(245, 242, 234, 0.18);
    border-radius: 10px;
    background: rgba(8, 10, 7, 0.68);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    color: var(--text);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(8, 10, 7, 0.92);
    border-color: rgba(245, 242, 234, 0.22);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.52);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand__mark {
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(245, 242, 234, 0.62);
    border-radius: 50%;
    background: rgba(245, 242, 234, 0.08);
}

.brand__mark svg {
    width: 32px;
    height: 32px;
    color: var(--text);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.brand__mark path {
    fill: currentColor;
    stroke: none;
}

.brand__text {
    display: grid;
    gap: 0;
    line-height: 1.03;
}

.brand__text strong,
.brand__text span {
    font-size: 20px;
    font-weight: 800;
}

.brand__text span {
    font-weight: 500;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 800;
}

.site-nav a {
    color: rgba(245, 242, 234, 0.92);
    transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #fff;
}

.nav-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid rgba(224, 24, 23, 0.9);
    border-radius: 4px;
    background: rgba(224, 24, 23, 0.14);
    color: #fff;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(17, 21, 15, 0.72);
    color: var(--text);
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2;
}

.hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: end;
    padding: 118px 0 92px;
    overflow: hidden;
    isolation: isolate;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.hero::before {
    background:
        linear-gradient(90deg, rgba(5, 6, 4, 0.9) 0%, rgba(5, 6, 4, 0.72) 34%, rgba(5, 6, 4, 0.26) 64%, rgba(5, 6, 4, 0.56) 100%),
        linear-gradient(0deg, rgba(8, 10, 7, 0.92) 0%, rgba(8, 10, 7, 0.08) 38%, rgba(8, 10, 7, 0.36) 100%);
}

.hero::after {
    background: linear-gradient(180deg, rgba(8, 10, 7, 0) 74%, var(--bg) 100%);
}

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

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__content {
    width: min(100% - 88px, var(--max));
    margin: 0 auto;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: 64px;
    line-height: 1.02;
    font-weight: 900;
}

.hero__meta {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(245, 242, 234, 0.9);
    font-size: 20px;
    line-height: 1.45;
}

.hero__meta svg {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 4px;
    color: var(--green-strong);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button--primary {
    background: linear-gradient(180deg, var(--red), var(--red-dark));
    color: #fff;
    box-shadow: 0 14px 32px rgba(168, 20, 18, 0.26);
}

.button--ghost {
    border-color: rgba(245, 242, 234, 0.72);
    background: rgba(8, 10, 7, 0.46);
    color: #fff;
}

.match-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px 28px;
    align-items: end;
    padding: 36px max(44px, calc((100vw - var(--max)) / 2));
    background:
        linear-gradient(90deg, rgba(22, 31, 18, 0.96), rgba(11, 16, 10, 0.98)),
        var(--bg-2);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid var(--line);
}

.section-label {
    display: block;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.match-strip__note {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.match-strip__list {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    min-width: 0;
}

.match-card {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
    min-height: 138px;
    padding: 16px 14px;
    border: 1px solid rgba(245, 242, 234, 0.13);
    border-radius: 7px;
    background: linear-gradient(180deg, rgba(245, 242, 234, 0.045), rgba(245, 242, 234, 0.018));
}

.match-card__day,
.match-card__time {
    display: block;
    font-size: 13px;
    line-height: 1.35;
}

.match-card__day {
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.match-card__time {
    color: var(--muted);
}

.match-card h2 {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 12px;
    line-height: 1.25;
}

.match-card p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.match-card__meta {
    display: block;
    margin-top: 4px;
    color: rgba(245, 242, 234, 0.58);
    font-size: 11px;
    line-height: 1.3;
}

.team-badge {
    min-width: 36px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 242, 234, 0.2);
    border-radius: 999px;
    background: rgba(245, 242, 234, 0.1);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.match-card__versus {
    color: rgba(245, 242, 234, 0.64);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-strong);
    font-size: 14px;
    font-weight: 850;
    white-space: nowrap;
}

.text-link svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform 160ms ease;
}

.text-link:hover svg,
.text-link:focus-visible svg {
    transform: translateX(3px);
}

.daily-quote {
    display: grid;
    grid-template-columns: minmax(180px, 0.72fr) minmax(0, 2.4fr);
    gap: 34px;
    align-items: start;
    padding: 58px max(44px, calc((100vw - var(--max)) / 2));
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(224, 24, 23, 0.16), rgba(17, 21, 15, 0) 42%),
        #0b0e09;
}

.daily-quote blockquote {
    position: relative;
    margin: 0;
    padding-left: 36px;
    border-left: 3px solid var(--red);
}

.daily-quote blockquote::before {
    content: "“";
    position: absolute;
    top: -34px;
    left: -6px;
    color: rgba(216, 32, 28, 0.48);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 88px;
    line-height: 1;
}

.daily-quote blockquote p {
    position: relative;
    max-width: 900px;
    margin: 0;
    color: var(--text);
    font-size: 34px;
    font-weight: 850;
    line-height: 1.18;
}

.daily-quote cite {
    display: block;
    margin-top: 18px;
    color: var(--green-strong);
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
}

.impression {
    border-bottom: 1px solid var(--line);
    background: #050704;
}

.impression img {
    width: 100%;
    height: 640px;
    max-height: 72vh;
    object-fit: cover;
    object-position: center;
}

.patio h2,
.source-band h2,
.reservation-form h2 {
    margin: 10px 0 0;
    font-size: 36px;
    line-height: 1.12;
}

.patio {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr);
    align-items: stretch;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(245, 242, 234, 0.012), rgba(245, 242, 234, 0)),
        var(--bg-2);
}

.patio__copy {
    display: grid;
    align-content: center;
    padding: 82px max(44px, calc((100vw - var(--max)) / 2)) 82px max(44px, calc((100vw - var(--max)) / 2));
}

.patio__copy p:not(.section-label),
.source-band p,
.footer-brand p,
.footer-column p {
    color: var(--muted);
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(245, 242, 234, 0.94);
    font-size: 15px;
    font-weight: 800;
}

.check-list svg {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    padding: 4px;
    border-radius: 50%;
    background: rgba(152, 216, 107, 0.18);
    color: var(--green);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.patio__image {
    min-height: 560px;
}

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

.source-band {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.45fr) auto;
    gap: 42px;
    align-items: center;
    padding: 52px max(44px, calc((100vw - var(--max)) / 2));
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, #0d120c, #141b10);
}

.source-band h2 {
    font-size: 32px;
}

.source-band p {
    margin: 0;
    max-width: 620px;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.15fr 0.78fr 0.82fr minmax(300px, 1.25fr);
    gap: 42px;
    padding: 64px max(44px, calc((100vw - var(--max)) / 2));
    background:
        linear-gradient(180deg, rgba(18, 24, 15, 0.9), rgba(8, 10, 7, 0.98)),
        #0d100b;
}

.footer-brand,
.footer-column,
.reservation-form {
    min-width: 0;
}

.footer-brand p {
    max-width: 300px;
    margin: 18px 0 0;
}

.footer-column {
    font-style: normal;
}

.footer-column .section-label {
    margin-bottom: 14px;
}

.footer-column a {
    color: var(--green-strong);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 4px;
    font-weight: 850;
}

.map-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.reservation-form {
    padding: 28px;
    border: 1px solid rgba(245, 242, 234, 0.15);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(245, 242, 234, 0.06), rgba(245, 242, 234, 0.025)),
        rgba(8, 10, 7, 0.64);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.reservation-form h2 {
    font-size: 28px;
}

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

.form-grid__wide {
    grid-column: 1 / -1;
}

label {
    display: grid;
    gap: 8px;
    color: rgba(245, 242, 234, 0.9);
    font-size: 13px;
    font-weight: 850;
}

input,
select {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(245, 242, 234, 0.18);
    border-radius: 4px;
    background: rgba(11, 13, 9, 0.76);
    color: var(--text);
    padding: 0 12px;
    outline: none;
}

input::placeholder {
    color: rgba(188, 183, 168, 0.78);
}

input:focus,
select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(152, 216, 107, 0.14);
}

.form-status {
    min-height: 22px;
    margin: 14px 0 0;
    color: var(--green-strong);
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 1120px) {
    .match-strip {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 860px) {
    .site-header {
        top: 12px;
        left: 14px;
        right: 14px;
        padding: 14px 22px;
    }

    .brand__mark {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .brand__mark svg {
        width: 30px;
        height: 30px;
    }

    .brand__text strong,
    .brand__text span {
        font-size: 17px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        inset: 82px 14px auto 14px;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(11, 13, 9, 0.96);
        box-shadow: var(--shadow);
    }

    body.menu-open .site-nav {
        display: grid;
    }

    .site-nav a {
        padding: 13px 10px;
    }

    .nav-cta {
        margin-top: 8px;
    }

    .hero {
        min-height: 660px;
        padding: 110px 0 70px;
    }

    .hero__content {
        width: min(100% - 44px, var(--max));
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero__meta {
        font-size: 18px;
    }

    .daily-quote,
    .patio,
    .source-band {
        grid-template-columns: 1fr;
    }

    .daily-quote {
        padding: 44px 22px;
    }

    .patio__copy,
    .source-band {
        padding: 54px 22px;
    }

    .patio__image {
        min-height: 360px;
    }

    .impression img {
        height: 480px;
        max-height: none;
    }
}

@media (max-width: 620px) {
    body {
        font-size: 15px;
    }

    .hero {
        min-height: 640px;
        padding: 104px 0 58px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero__meta {
        font-size: 17px;
    }

    .button {
        width: 100%;
    }

    .match-strip {
        padding: 30px 22px;
    }

    .match-strip__list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .match-card {
        grid-template-columns: 68px minmax(0, 1fr);
        min-height: 0;
        padding: 16px;
    }

    .daily-quote blockquote p,
    .patio h2,
    .source-band h2 {
        font-size: 30px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        padding: 42px 22px;
    }

    .reservation-form {
        padding: 22px;
    }

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

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