:root {
    --bg: #030303;
    --bg-soft: #070707;
    --panel: #0b0b0a;
    --panel-warm: #111111;
    --panel-soft: rgba(255, 255, 255, 0.055);
    --ember: #d8ad45;
    --ember-soft: rgba(216, 173, 69, 0.18);
    --flame: #d8ad45;
    --accent-deep: #141414;
    --cream: #f4ead8;
    --muted: #b6ad9d;
    --muted-soft: rgba(182, 173, 157, 0.72);
    --border: rgba(216, 173, 69, 0.3);
    --line: rgba(244, 234, 216, 0.12);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    --max: 1180px;
    --display: "Oswald", "Arial Narrow", Impact, sans-serif;
    --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    margin: 0;
    color: var(--cream);
    background:
        radial-gradient(circle at 18% 0%, rgba(216, 173, 69, 0.11), transparent 32rem),
        radial-gradient(circle at 88% 14%, rgba(216, 173, 69, 0.075), transparent 28rem),
        linear-gradient(145deg, #090909 0%, var(--bg) 48%, #060606 100%);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    min-width: 320px;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    opacity: 0.12;
    background-image:
        linear-gradient(115deg, transparent 0 35%, rgba(244, 234, 216, 0.045) 48%, transparent 62%);
    background-size: 140% 140%;
}

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

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button {
    color: 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;
}

.ambient-layer {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.62;
    background:
        radial-gradient(ellipse at 16% 26%, rgba(216, 173, 69, 0.07), transparent 30%),
        radial-gradient(ellipse at 74% 22%, rgba(216, 173, 69, 0.05), transparent 28%),
        linear-gradient(120deg, transparent 18%, rgba(244, 234, 216, 0.028) 42%, transparent 68%);
    filter: blur(0.1px);
}

.ambient-layer::before,
.ambient-layer::after {
    content: "";
    position: absolute;
    inset: -12%;
    opacity: 0.28;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(244, 234, 216, 0.08), transparent 36%),
        radial-gradient(ellipse at 64% 42%, rgba(185, 169, 150, 0.08), transparent 32%);
    filter: blur(42px);
    animation: smokeDrift 24s var(--ease) infinite alternate;
}

.ambient-layer::after {
    opacity: 0.18;
    animation-duration: 32s;
    animation-direction: alternate-reverse;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    padding: 0 clamp(18px, 4vw, 42px);
    color: rgba(244, 234, 216, 0.94);
    background: linear-gradient(180deg, rgba(3, 3, 3, 0.92), rgba(3, 3, 3, 0.3));
    border-bottom: 1px solid rgba(244, 234, 216, 0.07);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid,
.site-header:focus-within {
    background: rgba(3, 3, 3, 0.94);
    border-bottom-color: rgba(216, 173, 69, 0.2);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(16px);
}

.scroll-meter {
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    transform-origin: left center;
    transform: scaleX(var(--scroll-progress, 0));
    background: linear-gradient(90deg, rgba(216, 173, 69, 0.12), var(--ember), rgba(244, 234, 216, 0.46));
    box-shadow: 0 0 24px rgba(216, 173, 69, 0.32);
}

.brand {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    min-width: 148px;
    text-decoration: none;
    letter-spacing: 0;
}

.brand-word {
    color: var(--cream);
    font-family: var(--display);
    font-size: clamp(25px, 2.8vw, 34px);
    font-weight: 700;
    line-height: 0.98;
}

.brand-sub {
    margin-top: 3px;
    color: var(--ember);
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 2px;
    color: rgba(244, 234, 216, 0.88);
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--cream);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(216, 173, 69, 0.2);
}

.site-nav .nav-order {
    color: #050505;
    background: var(--ember);
    border-color: rgba(244, 234, 216, 0.1);
    box-shadow: 0 12px 30px rgba(216, 173, 69, 0.2);
}

.site-nav .nav-order:hover {
    color: #050505;
    background: #edc864;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
}

.motion-target {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    will-change: transform;
}

.motion-target::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
        rgba(244, 234, 216, 0.2), rgba(216, 173, 69, 0.08) 18%, transparent 42%);
    transition: opacity 180ms ease;
}

.motion-target.is-pointer-active::before {
    opacity: 1;
}

.motion-target.is-pressed {
    animation: targetPress 280ms var(--ease);
}

.hero {
    position: relative;
    display: grid;
    min-height: clamp(720px, 82vh, 860px);
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(3, 3, 3, 0.12), rgba(3, 3, 3, 0.88) 88%),
        radial-gradient(circle at 18% 78%, rgba(216, 173, 69, 0.12), transparent 30rem),
        radial-gradient(circle at 80% 38%, rgba(216, 173, 69, 0.1), transparent 34rem),
        var(--bg);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.7;
    background:
        linear-gradient(90deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.62) 52%, rgba(3, 3, 3, 0.24)),
        linear-gradient(0deg, rgba(3, 3, 3, 0.91), transparent 46%);
}

.hero::after {
    content: none;
}

.hero-stage,
.hero-stage span {
    position: absolute;
    pointer-events: none;
}

.hero-stage {
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    opacity: 0.44;
    filter: brightness(0.48) saturate(0.82) contrast(1.12);
    transform: scale(1.03) translate3d(0, var(--hero-mobile-scroll, 0), 0);
}

.hero-glow {
    border-radius: 999px;
    filter: blur(18px);
}

.hero-glow-one {
    left: 8%;
    bottom: 12%;
    width: 210px;
    height: 72px;
    background: rgba(216, 173, 69, 0.22);
    box-shadow: 0 0 72px rgba(216, 173, 69, 0.16);
    transform: translate3d(var(--hero-glow-one-x, 0), var(--hero-glow-one-y, 0), 0);
    transition: transform 420ms var(--ease);
}

.hero-glow-two {
    right: 16%;
    top: 24%;
    width: 180px;
    height: 64px;
    background: rgba(216, 173, 69, 0.16);
    box-shadow: 0 0 78px rgba(216, 173, 69, 0.14);
    transform: translate3d(var(--hero-glow-two-x, 0), var(--hero-glow-two-y, 0), 0);
    transition: transform 420ms var(--ease);
}

.smoke-band {
    left: -8%;
    width: 120%;
    height: 34vh;
    opacity: 0.18;
    background:
        radial-gradient(ellipse at 20% 48%, rgba(244, 234, 216, 0.16), transparent 30%),
        radial-gradient(ellipse at 58% 44%, rgba(185, 169, 150, 0.13), transparent 32%),
        radial-gradient(ellipse at 86% 60%, rgba(216, 173, 69, 0.08), transparent 26%);
    filter: blur(26px);
    animation: smokeSlide 18s var(--ease) infinite alternate;
}

.smoke-band-one {
    top: 20%;
}

.smoke-band-two {
    top: 46%;
    opacity: 0.13;
    animation-duration: 26s;
    animation-direction: alternate-reverse;
}

.street-line {
    right: 0;
    bottom: 0;
    left: 0;
    height: 7px;
    background:
        linear-gradient(90deg, transparent, rgba(216, 173, 69, 0.56), transparent),
        rgba(18, 18, 17, 0.88);
    box-shadow: 0 -18px 54px rgba(216, 173, 69, 0.07);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100%, var(--max));
    min-height: clamp(720px, 82vh, 860px);
    margin: 0 auto;
    padding: 132px 32px 86px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(var(--hero-content-scroll, 0));
}

.hero-content .eyebrow,
.hero h1 span,
.hero-copy,
.hero-actions,
.hero-proof {
    transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.hero h1 span:nth-child(1) {
    transition-delay: 70ms;
}

.hero h1 span:nth-child(2) {
    transition-delay: 145ms;
}

.hero h1 span:nth-child(3) {
    transition-delay: 220ms;
}

.hero h1 span:nth-child(4) {
    transition-delay: 295ms;
}

.hero-copy {
    transition-delay: 360ms;
}

.hero-actions {
    transition-delay: 430ms;
}

.hero-proof {
    transition-delay: 500ms;
}

.has-js body:not(.is-loaded) .hero-content .eyebrow,
.has-js body:not(.is-loaded) .hero h1 span,
.has-js body:not(.is-loaded) .hero-copy,
.has-js body:not(.is-loaded) .hero-actions,
.has-js body:not(.is-loaded) .hero-proof {
    opacity: 0;
    transform: translateY(20px);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--ember);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

h1,
h2 {
    margin: 0;
    color: var(--cream);
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(56px, 8.2vw, 122px);
    line-height: 0.92;
    text-transform: uppercase;
    text-shadow: 0 22px 70px rgba(0, 0, 0, 0.78);
}

.hero h1 span {
    display: inline;
}

.hero-copy {
    max-width: 610px;
    margin: 24px 0 0;
    color: rgba(244, 234, 216, 0.88);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
    color: #050505;
    background: var(--ember);
    box-shadow: 0 16px 38px rgba(216, 173, 69, 0.2);
}

.button-primary:hover {
    background: #edc864;
}

.button-secondary {
    color: #050505;
    background: rgba(244, 234, 216, 0.9);
}

.button-secondary:hover {
    background: var(--cream);
}

.button-ghost {
    color: var(--cream);
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(244, 234, 216, 0.18);
}

.button-ghost:hover {
    border-color: rgba(216, 173, 69, 0.42);
    background: rgba(216, 173, 69, 0.08);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 760px;
    margin-top: 28px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(244, 234, 216, 0.14);
    border-radius: 2px;
    color: rgba(244, 234, 216, 0.84);
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 780;
}

.proof-strip {
    position: relative;
    z-index: 2;
    padding: 22px 0;
    border-top: 1px solid rgba(216, 173, 69, 0.18);
    border-bottom: 1px solid rgba(216, 173, 69, 0.18);
    background:
        linear-gradient(100deg, rgba(8, 8, 8, 0.95), rgba(3, 3, 3, 0.98)),
        var(--panel);
}

.proof-inner {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 0;
    background: transparent;
}

.proof-cell {
    min-height: 132px;
    padding: 22px;
    background: #050505;
    border-left: 1px solid rgba(216, 173, 69, 0.16);
}

.proof-cell:first-child {
    border-left: 0;
}

.proof-cell span {
    display: block;
    margin-bottom: 18px;
    color: rgba(216, 173, 69, 0.82);
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.proof-cell strong {
    display: block;
    color: var(--cream);
    font-family: var(--display);
    font-size: 24px;
    line-height: 1.1;
    text-transform: uppercase;
}

.proof-cell p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.section {
    position: relative;
    padding: 104px 0;
}

.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(100% - 64px, var(--max));
    height: 1px;
    transform: translateX(-50%);
    opacity: 0.58;
    background: linear-gradient(90deg, transparent, rgba(216, 173, 69, 0.34), transparent);
}

.section-inner {
    position: relative;
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 0 32px;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 20px 34px;
    margin-bottom: 32px;
}

.section-heading h2 {
    max-width: 760px;
    font-size: clamp(42px, 5.3vw, 74px);
    line-height: 0.98;
    text-transform: uppercase;
}

.section-heading p:not(.eyebrow) {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
}

.section-heading a,
.social-card,
.site-footer a,
.contact-list a {
    color: var(--ember);
    font-weight: 900;
    text-decoration: none;
}

.compact-heading {
    display: block;
}

.intent-section {
    background: var(--bg-soft);
}

.intent-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(216, 173, 69, 0.22);
    border-bottom: 1px solid rgba(216, 173, 69, 0.18);
}

.intent-card,
.category-card,
.menu-card,
.visit-panel,
.social-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.intent-card {
    position: relative;
    min-height: 166px;
    padding: 24px 24px 28px;
    border-left-color: rgba(216, 173, 69, 0.34);
    overflow: hidden;
    color: var(--cream);
    border: 0;
    border-right: 1px solid rgba(216, 173, 69, 0.14);
    background: transparent;
    box-shadow: none;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.intent-card:last-child {
    border-right: 0;
}

.intent-card:hover {
    transform: none;
    background: rgba(216, 173, 69, 0.055);
}

.intent-card span,
.category-card span,
.social-card strong {
    display: block;
    color: var(--cream);
    font-family: var(--display);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.intent-card p,
.category-card p,
.social-card p,
.visit-panel p,
.section-note {
    color: var(--muted);
}

.intent-card p,
.category-card p,
.social-card p {
    margin: 14px 0 0;
}

.experience-section {
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.84), rgba(8, 8, 8, 0.94)),
        var(--panel);
}

.experience-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}

.experience-layout .section-heading {
    display: block;
    margin: 0;
}

.experience-layout .section-heading p:not(.eyebrow) {
    margin-top: 18px;
}

.lounge-lines {
    display: grid;
    border-top: 1px solid rgba(216, 173, 69, 0.2);
    border-bottom: 1px solid rgba(216, 173, 69, 0.16);
}

.lounge-lines div {
    display: grid;
    grid-template-columns: minmax(150px, 0.32fr) 1fr;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid rgba(216, 173, 69, 0.12);
}

.lounge-lines div:first-child {
    border-top: 0;
}

.lounge-lines strong {
    color: var(--cream);
    font-family: var(--display);
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase;
}

.lounge-lines span {
    color: var(--muted);
}

.lounge-image {
    margin-top: clamp(36px, 5vw, 72px);
}

.lounge-image img {
    width: 100%;
    height: clamp(260px, 38vw, 440px);
    object-fit: cover;
    object-position: center 56%;
    opacity: 0.78;
    filter: brightness(0.62) saturate(0.82) contrast(1.08);
    border-top: 1px solid rgba(216, 173, 69, 0.18);
    border-bottom: 1px solid rgba(216, 173, 69, 0.16);
}

.categories-section {
    background: var(--bg);
}

.category-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-auto-rows: minmax(210px, auto);
    gap: 1px;
    background: rgba(216, 173, 69, 0.12);
    border-top: 1px solid rgba(216, 173, 69, 0.2);
    border-bottom: 1px solid rgba(216, 173, 69, 0.16);
}

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 24px;
    background: #050505;
}

.category-card-food {
    grid-row: span 2;
    display: flex;
    align-items: flex-end;
    padding: 0;
}

.category-card:nth-child(4) {
    grid-column: span 2;
}

.category-card-food img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    opacity: 0.58;
    filter: brightness(0.7) saturate(1.06) contrast(1.06);
}

.category-card-food::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(0deg, rgba(3, 3, 3, 0.92), rgba(3, 3, 3, 0.18)),
        linear-gradient(90deg, rgba(3, 3, 3, 0.68), transparent 68%);
}

.category-card-food div {
    position: relative;
    z-index: 2;
    padding: 28px;
}

.menu-section {
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.92), rgba(3, 3, 3, 0.96)),
        var(--panel);
}

.section-note {
    max-width: 740px;
    margin: -10px 0 26px;
}

.menu-image-row {
    position: relative;
    height: clamp(170px, 22vw, 280px);
    margin: 0 0 28px;
    overflow: hidden;
    border-top: 1px solid rgba(216, 173, 69, 0.2);
    border-bottom: 1px solid rgba(216, 173, 69, 0.16);
    background: #050505;
}

.menu-image-row::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 3, 3, 0.48), transparent 42%, rgba(3, 3, 3, 0.2)),
        linear-gradient(0deg, rgba(3, 3, 3, 0.46), transparent 50%);
}

.menu-image-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    opacity: 0.82;
    filter: brightness(0.74) saturate(1.02) contrast(1.08);
}

.menu-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-pill,
.menu-search input,
.menu-count {
    min-height: 44px;
    border: 1px solid rgba(244, 234, 216, 0.12);
    border-radius: 2px;
    color: rgba(244, 234, 216, 0.88);
    background: rgba(255, 255, 255, 0.045);
}

.filter-pill {
    padding: 0 14px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
}

.filter-pill:hover,
.filter-pill.is-active {
    color: #050505;
    background: var(--ember);
    border-color: var(--ember);
}

.menu-search input {
    width: min(100%, 280px);
    padding: 0 14px;
}

.menu-search input::placeholder {
    color: rgba(185, 169, 150, 0.72);
}

.menu-count {
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.menu-grid {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(216, 173, 69, 0.18);
}

.menu-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 126px;
    padding: 22px;
    border-bottom: 1px solid rgba(216, 173, 69, 0.14);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-card[hidden] {
    display: none;
}

.menu-card:hover {
    transform: none;
    background: rgba(216, 173, 69, 0.055);
}

.item-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin-bottom: 10px;
    padding: 0 10px;
    border-radius: 2px;
    color: var(--ember);
    background: rgba(216, 173, 69, 0.1);
    font-size: 12px;
    font-weight: 900;
}

.menu-card h3 {
    margin: 0;
    color: var(--cream);
    font-family: var(--display);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1;
    text-transform: uppercase;
}

.menu-card p {
    max-width: 680px;
    margin: 9px 0 0;
    color: var(--muted);
}

.menu-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 94px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 2px;
    color: var(--ember);
    background: transparent;
    border-left: 1px solid rgba(216, 173, 69, 0.24);
    font-family: var(--display);
    font-size: 24px;
}

.empty-state {
    padding: 22px;
    border: 1px solid rgba(244, 234, 216, 0.12);
    border-radius: 2px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.045);
}

.menu-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    padding: 22px;
    border: 1px solid rgba(216, 173, 69, 0.2);
    border-radius: 2px;
    background:
        linear-gradient(135deg, rgba(216, 173, 69, 0.1), rgba(244, 234, 216, 0.02)),
        rgba(255, 255, 255, 0.035);
}

.menu-cta p {
    margin: 0;
    color: rgba(244, 234, 216, 0.88);
    font-weight: 780;
}

.social-section {
    background: var(--bg-soft);
}

.social-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: center;
}

.social-grid p {
    max-width: 560px;
    margin: 18px 0 0;
    color: var(--muted);
}

.social-card {
    display: block;
    min-height: 210px;
    padding: 28px;
    border-left: 1px solid rgba(216, 173, 69, 0.28);
    color: inherit;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-card:hover {
    transform: none;
    background: rgba(216, 173, 69, 0.055);
}

.social-card span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 2px;
    color: var(--ember);
    background: transparent;
    border: 1px solid rgba(216, 173, 69, 0.22);
    font-weight: 900;
}

.social-card strong {
    margin-top: 24px;
}

.visit-section {
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.84), rgba(3, 3, 3, 0.96)),
        var(--bg);
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    background: transparent;
    border-top: 1px solid rgba(216, 173, 69, 0.2);
    border-bottom: 1px solid rgba(216, 173, 69, 0.16);
}

.visit-panel {
    min-height: 360px;
    padding: 30px;
    background: transparent;
}

.contact-panel {
    border-left: 1px solid rgba(216, 173, 69, 0.16);
}

.visit-panel h2 {
    margin-bottom: 18px;
    font-size: clamp(36px, 4.6vw, 58px);
    line-height: 1;
    text-transform: uppercase;
}

.contact-list {
    display: grid;
    gap: 15px;
    margin: 26px 0 0;
}

.contact-list div {
    padding-top: 15px;
    border-top: 1px solid rgba(244, 234, 216, 0.11);
}

.contact-list dt {
    color: var(--ember);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-list dd {
    margin: 3px 0 0;
    color: var(--muted);
}

.site-footer {
    border-top: 1px solid rgba(216, 173, 69, 0.18);
    background: #030303;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 126px;
    padding-top: 24px;
    padding-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand p {
    margin: 0;
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 20px;
    max-width: 520px;
    text-align: right;
}

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

.footer-links a:last-child {
    color: rgba(244, 234, 216, 0.74);
}

.footer-links strong {
    color: var(--ember);
}

.toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    max-width: 320px;
    padding: 13px 16px;
    border-radius: 2px;
    color: #050505;
    background: var(--ember);
    box-shadow: var(--shadow);
    font-weight: 900;
}

.menu-search input:focus,
.filter-pill:focus,
.button:focus,
.nav-toggle:focus,
.site-nav a:focus,
.intent-card:focus,
.social-card:focus {
    outline: 3px solid rgba(216, 173, 69, 0.42);
    outline-offset: 3px;
}

.has-js .reveal-ready {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 420ms var(--ease), transform 420ms var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.has-js .reveal-ready.is-visible {
    opacity: 1;
    transform: none;
}

@keyframes targetPress {
    0% {
        transform: scale(1);
    }
    45% {
        transform: scale(0.975);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes navItemIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes smokeDrift {
    from {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }
    to {
        transform: translate3d(2%, 2%, 0) scale(1.04);
    }
}

@keyframes smokeSlide {
    from {
        transform: translate3d(-3%, -4%, 0);
    }
    to {
        transform: translate3d(4%, 5%, 0);
    }
}

@media (max-width: 1040px) {
    .proof-inner,
    .intent-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-layout,
    .social-grid,
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        border-top: 1px solid rgba(216, 173, 69, 0.16);
        border-left: 0;
    }

    .experience-layout .section-heading {
        max-width: 760px;
    }

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

    .category-card-food {
        grid-column: span 2;
        min-height: 330px;
    }

    .menu-tools {
        align-items: stretch;
        flex-wrap: wrap;
    }

    .menu-search,
    .menu-search input,
    .menu-count {
        flex: 1 1 240px;
        width: 100%;
    }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 74px;
    }

    body {
        font-size: 15px;
    }

    .site-header {
        min-height: 70px;
        padding: 0 18px;
    }

    .brand {
        min-width: 0;
    }

    .brand-word {
        font-size: 28px;
    }

    .brand-sub {
        font-size: 10px;
    }

    .nav-toggle {
        position: relative;
        display: inline-grid;
        place-items: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 1px solid rgba(244, 234, 216, 0.2);
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.055);
        transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
    }

    .nav-toggle span:not(.sr-only) {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 22px;
        height: 2px;
        margin: 0;
        background: currentColor;
        transform: translate(-50%, calc(-50% + var(--line-offset, 0px))) rotate(0deg);
        transform-origin: center;
        transition: transform 230ms var(--ease), opacity 160ms ease, background 180ms ease;
    }

    .nav-toggle span:nth-child(1) {
        --line-offset: -7px;
    }

    .nav-toggle span:nth-child(2) {
        --line-offset: 0px;
    }

    .nav-toggle span:nth-child(3) {
        --line-offset: 7px;
    }

    .nav-toggle.is-open,
    .nav-toggle[aria-expanded="true"] {
        border-color: rgba(216, 173, 69, 0.46);
        background: rgba(216, 173, 69, 0.12);
        transform: translateY(-1px);
    }

    .nav-toggle.is-open span:nth-child(1),
    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2),
    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
        transform: translate(-50%, -50%) scaleX(0.2);
    }

    .nav-toggle.is-open span:nth-child(3),
    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        top: 70px;
        right: 14px;
        left: 14px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        border: 1px solid rgba(216, 173, 69, 0.2);
        border-radius: 2px;
        background: #030303;
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px) scale(0.98);
        visibility: hidden;
        transition: opacity 210ms ease, transform 230ms var(--ease), visibility 0s linear 230ms;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        visibility: visible;
        transition-delay: 0s;
    }

    .site-nav a {
        justify-content: center;
    }

    .site-nav.is-open a {
        animation: navItemIn 260ms var(--ease) both;
        animation-delay: var(--menu-stagger, 0ms);
    }

    .hero,
    .hero-content {
        min-height: 760px;
    }

    .hero-content {
        padding: 112px 22px 62px;
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 58px);
    }

    .hero h1 span {
        display: block;
    }

    .hero-actions,
    .visit-actions {
        gap: 10px;
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: calc(100vw - 44px);
    }

    .button {
        width: 100%;
        max-width: 100%;
    }

    .hero-copy {
        max-width: calc(100vw - 44px);
    }

    .hero-proof {
        display: none;
    }

    .proof-strip {
        padding: 18px 0;
    }

    .proof-inner,
    .section-inner {
        padding-right: 22px;
        padding-left: 22px;
    }

    .proof-inner,
    .intent-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .proof-cell {
        min-height: 116px;
        border-left: 0;
        border-top: 1px solid rgba(216, 173, 69, 0.16);
    }

    .proof-cell:first-child {
        border-top: 0;
    }

    .section {
        padding: 76px 0;
    }

    .section::before {
        width: calc(100% - 44px);
    }

    .section-heading {
        display: block;
        margin-bottom: 26px;
    }

    .section-heading h2 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .section-heading a {
        display: inline-flex;
        margin-top: 16px;
    }

    .intent-card {
        min-height: 158px;
    }

    .lounge-lines div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .category-card-food {
        grid-column: auto;
        min-height: 280px;
    }

    .category-card:nth-child(4) {
        grid-column: auto;
    }

    .menu-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .menu-card:hover {
        transform: none;
    }

    .menu-card strong {
        min-width: 0;
    }

    .menu-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .visit-panel {
        min-height: 0;
        padding: 24px;
    }

    .footer-inner,
    .footer-brand,
    .footer-links {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        text-align: left;
    }

    .toast {
        right: 16px;
        left: 16px;
        bottom: 16px;
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .reveal-ready {
        opacity: 1;
        transform: none;
    }
}
