:root {
    --ink: #151311;
    --steel: #24282a;
    --concrete: #8e8b84;
    --paper: #f4eee3;
    --brick: #9a4f38;
    --copper: #c47b3d;
    --amber: #f0ad55;
    --cream: #fff8eb;
    --line: rgba(255, 248, 235, 0.18);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    --container: min(1120px, calc(100% - clamp(32px, 6vw, 72px)));
    --header-offset: 86px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 84% 6%, rgba(196, 123, 61, 0.22), transparent 30rem),
        linear-gradient(135deg, #171513 0%, #24282a 42%, #3b2a22 100%);
    color: var(--cream);
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    line-height: 1.6;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    opacity: 0.12;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 248, 235, 0.12);
    background: rgba(21, 19, 17, 0.78);
    backdrop-filter: blur(18px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--container);
    min-height: 68px;
    margin: 0 auto;
    gap: clamp(16px, 3vw, 28px);
}

.brand {
    display: grid;
    flex: 0 1 auto;
    min-width: 0;
    gap: 0;
    line-height: 1;
}

.brand strong {
    overflow-wrap: anywhere;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand span {
    color: rgba(255, 248, 235, 0.66);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    flex: 0 1 auto;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 2.4vw, 20px);
    color: rgba(255, 248, 235, 0.78);
    font-size: clamp(0.82rem, 1.8vw, 0.92rem);
    white-space: nowrap;
}

.nav-links a {
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--amber);
}

.hero {
    position: relative;
    display: grid;
    align-items: stretch;
    min-height: max(620px, calc(100svh - 96px));
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 248, 235, 0.14);
}

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

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

.hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(12, 11, 10, 0.94) 0%, rgba(12, 11, 10, 0.72) 36%, rgba(12, 11, 10, 0.28) 70%),
        linear-gradient(0deg, rgba(21, 19, 17, 0.88) 0%, transparent 36%),
        linear-gradient(180deg, rgba(21, 19, 17, 0.34), transparent 32%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    width: var(--container);
    min-height: 100%;
    margin: 0 auto;
    padding: clamp(56px, 8vw, 84px) 0 clamp(54px, 9vw, 88px);
}

.hero-copy {
    width: min(650px, 100%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--amber);
    font-size: clamp(0.72rem, 1.6vw, 0.78rem);
    font-weight: 700;
    text-transform: uppercase;
}

.eyebrow::before {
    width: clamp(28px, 7vw, 42px);
    height: 1px;
    content: "";
    background: currentColor;
}

h1 {
    max-width: 100%;
    margin-bottom: 18px;
    overflow-wrap: normal;
    font-size: clamp(3.05rem, 8vw, 8.4rem);
    line-height: 0.94;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-lede {
    max-width: 580px;
    margin-bottom: 30px;
    color: rgba(255, 248, 235, 0.86);
    font-size: clamp(1rem, 2.1vw, 1.3rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(255, 248, 235, 0.22);
    border-radius: 8px;
    background: var(--amber);
    color: #19120d;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    box-shadow: 0 12px 28px rgba(240, 173, 85, 0.22);
}

.button:hover,
.button:focus-visible {
    background: #ffc06c;
}

.button-secondary {
    background: rgba(255, 248, 235, 0.08);
    color: var(--cream);
    box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(240, 173, 85, 0.58);
    background: rgba(255, 248, 235, 0.1);
    color: var(--amber);
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: min(760px, 100%);
    margin: clamp(36px, 7vw, 54px) 0 0;
    overflow: hidden;
    border: 1px solid rgba(255, 248, 235, 0.16);
    border-radius: 8px;
    background: rgba(255, 248, 235, 0.14);
}

.hero-meta div {
    min-width: 0;
    padding: clamp(13px, 2vw, 16px);
    background: rgba(21, 19, 17, 0.62);
}

.hero-meta dt {
    color: rgba(255, 248, 235, 0.58);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.hero-meta dd {
    margin: 4px 0 0;
    overflow-wrap: anywhere;
    font-weight: 700;
}

section {
    padding: clamp(56px, 8vw, 82px) 0;
    scroll-margin-top: var(--header-offset);
}

.section-inner {
    width: var(--container);
    margin: 0 auto;
}

.section-kicker {
    margin-bottom: 8px;
    color: var(--amber);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.section-title {
    max-width: 720px;
    margin-bottom: clamp(22px, 4vw, 28px);
    font-size: clamp(1.85rem, 4vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.menu-section {
    background:
        linear-gradient(180deg, rgba(21, 19, 17, 0.92), rgba(36, 40, 42, 0.96)),
        linear-gradient(90deg, rgba(154, 79, 56, 0.14), transparent);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2.4vw, 18px);
}

.menu-card,
.visit-card {
    border: 1px solid rgba(255, 248, 235, 0.15);
    border-radius: 8px;
    background: rgba(255, 248, 235, 0.06);
    box-shadow: var(--shadow);
}

.menu-card {
    display: grid;
    gap: 18px;
    min-width: 0;
    padding: clamp(18px, 2.6vw, 22px);
}

.menu-card h3 {
    margin-bottom: 0;
    color: var(--paper);
    font-size: 1.08rem;
    text-transform: uppercase;
}

.menu-list {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 248, 235, 0.12);
}

.menu-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.menu-item strong {
    display: block;
    margin-bottom: 3px;
    color: var(--cream);
}

.menu-item span {
    min-width: 0;
    color: rgba(255, 248, 235, 0.64);
    font-size: 0.92rem;
}

.price {
    color: var(--amber);
    font-weight: 800;
    white-space: nowrap;
}

.atmosphere {
    background:
        linear-gradient(120deg, rgba(74, 43, 31, 0.96), rgba(21, 19, 17, 0.96) 58%),
        repeating-linear-gradient(90deg, rgba(255, 248, 235, 0.08), rgba(255, 248, 235, 0.08) 1px, transparent 1px, transparent 18px);
}

.atmosphere-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(24px, 5vw, 46px);
    align-items: center;
}

.texture-panel {
    min-height: clamp(300px, 44vw, 420px);
    border: 1px solid rgba(255, 248, 235, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(142, 139, 132, 0.18), transparent 45%),
        linear-gradient(45deg, rgba(154, 79, 56, 0.5) 0 12%, transparent 12% 18%, rgba(36, 40, 42, 0.9) 18% 100%),
        repeating-linear-gradient(0deg, rgba(255, 248, 235, 0.08) 0 1px, transparent 1px 24px);
    box-shadow: var(--shadow);
}

.atmosphere-copy {
    min-width: 0;
    color: rgba(255, 248, 235, 0.78);
    font-size: clamp(1rem, 1.8vw, 1.05rem);
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.feature {
    min-height: 118px;
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(255, 248, 235, 0.13);
    border-radius: 8px;
    background: rgba(255, 248, 235, 0.06);
}

.feature b {
    display: block;
    margin-bottom: 8px;
    color: var(--amber);
}

.feature span {
    color: rgba(255, 248, 235, 0.68);
    font-size: 0.9rem;
}

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

.visit .section-kicker {
    color: #8d472f;
}

.visit-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(14px, 2.5vw, 18px);
}

.visit-card {
    min-width: 0;
    padding: clamp(18px, 3vw, 24px);
    background: #fffaf0;
    color: var(--ink);
    box-shadow: 0 18px 48px rgba(36, 28, 20, 0.14);
}

.info-list {
    display: grid;
    gap: 18px;
    margin: 0;
}

.info-list div {
    display: grid;
    grid-template-columns: minmax(82px, 120px) minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(21, 19, 17, 0.12);
}

.info-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.info-list dt {
    color: #7c756b;
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
}

.info-list dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
    font-weight: 700;
}

.map-placeholder {
    position: relative;
    display: grid;
    min-height: clamp(260px, 34vw, 330px);
    overflow: hidden;
    place-items: center;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(21, 19, 17, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(21, 19, 17, 0.08) 1px, transparent 1px),
        linear-gradient(135deg, #d7c8b5, #a86349 52%, #2f3436);
    background-size: 42px 42px, 42px 42px, cover;
    color: #fff8eb;
}

.map-marker {
    display: grid;
    place-items: center;
    width: min(260px, calc(100% - 32px));
    min-height: 96px;
    padding: 18px;
    border: 1px solid rgba(255, 248, 235, 0.28);
    border-radius: 8px;
    background: rgba(21, 19, 17, 0.78);
    text-align: center;
}

.map-marker strong {
    display: block;
    font-size: 1.12rem;
}

.map-marker span {
    color: rgba(255, 248, 235, 0.7);
    font-size: 0.9rem;
}

.site-footer {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 248, 235, 0.14);
    background: #151311;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--container);
    margin: 0 auto;
    gap: 18px;
    color: rgba(255, 248, 235, 0.7);
}

.footer-inner strong {
    color: var(--cream);
}

@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    :root {
        --header-offset: 112px;
    }

    .nav {
        min-height: 62px;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 62px 0 50px;
    }

    .hero::after {
        background:
            linear-gradient(90deg, rgba(12, 11, 10, 0.94) 0%, rgba(12, 11, 10, 0.7) 70%),
            linear-gradient(0deg, rgba(21, 19, 17, 0.92), transparent 42%);
    }

    .hero-meta,
    .atmosphere-layout,
    .feature-row,
    .visit-grid {
        grid-template-columns: 1fr;
    }

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

    .menu-card:last-child {
        grid-column: auto;
    }

    .texture-panel {
        order: 2;
        min-height: 260px;
    }
}

@media (max-width: 640px) {
    :root {
        --container: min(100% - 28px, 1120px);
    }

    .nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 14px 0;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
        white-space: normal;
    }

    .nav-links a {
        display: inline-flex;
        align-items: center;
        min-height: 36px;
    }

    h1 {
        font-size: clamp(2.55rem, 13vw, 4.45rem);
    }

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

    .button {
        width: 100%;
    }

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

    .info-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

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

@media (max-width: 380px) {
    :root {
        --container: min(100% - 22px, 1120px);
        --header-offset: 128px;
    }

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

    .nav-links {
        font-size: 0.78rem;
    }

    .eyebrow {
        display: block;
    }

    .eyebrow::before {
        display: none;
    }

    h1 {
        font-size: clamp(2.15rem, 12vw, 2.75rem);
    }

    .hero-lede,
    .atmosphere-copy {
        font-size: 0.96rem;
    }

    .menu-card,
    .visit-card,
    .feature {
        padding: 14px;
    }
}
