:root {
    --bg: #0a0a0c;
    --bg-elevated: #121214;
    --bg-panel: #161618;
    --bg-green: #0d1f17;
    --gold: #c5a059;
    --gold-dim: #9a7b3a;
    --text: #f4f0e8;
    --text-muted: #a8a29a;
    --text-dim: #6b6560;
    --border: rgba(197, 160, 89, 0.28);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --green-accent: #2d6a4f;
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --header-h: 168px;
    --classic-green: #6dad3a;
    --classic-yellow: #f0e040;
    --classic-red: #d40000;
    --classic-blue: #3d9ee8;
    --container: min(1180px, 92%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.mobile-nav-open { overflow: hidden; }

img { max-width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }

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

.kicker {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.kicker::before {
    content: "◆ ";
    font-size: 0.5rem;
    vertical-align: middle;
}

.display-serif {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.12;
    color: var(--text);
}

.muted { color: var(--text-muted); }

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    background: var(--gold);
    color: #0a0a0c;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: filter 0.2s, transform 0.2s;
}

.btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); }

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.25rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-outline-gold:hover { background: var(--gold); color: #0a0a0c; }

/* ── Classic header (logo banner + yellow nav) ── */
.site-header--classic {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--classic-green);
    border-bottom: 2px solid #4a8a28;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.classic-header {
    width: min(920px, 96%);
    margin: 0 auto;
    padding: 0.65rem 0 0.75rem;
}

.classic-banner {
    display: flex;
    align-items: stretch;
    min-height: 88px;
    background:
        linear-gradient(90deg, rgba(135, 206, 235, 0.55) 0%, rgba(135, 206, 235, 0.15) 38%, transparent 55%),
        url('../images/welcome.png') center center / cover no-repeat;
    border: 2px solid #1a1a1a;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    text-decoration: none;
    overflow: hidden;
}

.classic-banner-logo {
    width: 88px;
    min-width: 88px;
    height: auto;
    align-self: center;
    margin: 0.35rem 0.5rem 0.35rem 0.45rem;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
    background: #fff;
    object-fit: contain;
    padding: 2px;
}

.classic-banner-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08) 30%, rgba(255, 255, 255, 0.12) 100%);
}

.classic-banner-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.35rem, 4.5vw, 2rem);
    font-weight: 800;
    color: var(--classic-red);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.35);
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.classic-banner-amharic {
    font-family: 'Nyala', 'Ebrima', 'Segoe UI', sans-serif;
    font-size: clamp(1.1rem, 3.5vw, 1.55rem);
    font-weight: 700;
    color: var(--classic-blue);
    margin-top: 0.15rem;
    line-height: 1.2;
}

.classic-header-bar {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.55rem;
}

.classic-nav {
    flex: 1;
    min-width: 0;
}

.classic-nav-list {
    display: flex;
    list-style: none;
    gap: 0.35rem;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.classic-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.35rem 0.65rem;
    background: var(--classic-yellow);
    border: 2px solid #1a1a1a;
    color: #111;
    font-family: 'Times New Roman', Times, Georgia, serif;
    font-size: clamp(0.78rem, 2.6vw, 0.95rem);
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease, filter 0.15s ease;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.classic-nav-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.classic-nav-btn.active {
    background: #fff8b0;
    outline: 2px solid var(--classic-red);
    outline-offset: 1px;
}

.classic-header-utils {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.lang-switch {
    display: inline-flex;
    border: 2px solid #1a1a1a;
    background: #fff;
    padding: 1px;
}

.lang-switch a {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.22rem 0.4rem;
    color: #333;
    font-family: Arial, sans-serif;
}

.lang-switch a.active {
    background: var(--classic-yellow);
    color: #111;
}

.classic-reserve-btn {
    display: none;
    padding: 0.35rem 0.55rem;
    background: var(--classic-red);
    border: 2px solid #1a1a1a;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
}

.classic-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    padding: 0.35rem 0.75rem;
    background: var(--classic-yellow);
    border: 2px solid #1a1a1a;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    touch-action: manipulation;
}

/* ── Hero split ── */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--header-h));
    scroll-margin-top: var(--header-h);
}

.hero-visual {
    position: relative;
    min-height: 420px;
    background: #111;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: calc(100vh - var(--header-h));
}

.hero-visual-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-visual-caption span { display: block; color: var(--text-muted); margin-top: 0.25rem; }

.hero-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4rem);
    background: var(--bg-elevated);
    border-left: 1px solid var(--border-subtle);
}

.hero-panel .kicker { margin-bottom: 1rem; }

.hero-panel h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-panel .lead {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 38ch;
    margin-bottom: 2rem;
}

.hero-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.hero-form-grid .field-full { grid-column: 1 / -1; }

.field label {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    color: var(--text);
    font-family: inherit;
    font-size: 0.88rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold-dim);
}

.hero-form-note {
    margin-top: 0.85rem;
    font-size: 0.72rem;
    color: var(--text-dim);
}

/* ── Quote band ── */
.quote-band {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}

.quote-band blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-style: italic;
    color: var(--text-muted);
    max-width: 28ch;
    margin: 0 auto;
}

/* ── Story ── */
.story-section {
    padding: 5rem 0;
    scroll-margin-top: var(--header-h);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-geez {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--green-accent);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.story-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
}

.story-section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    max-width: 52ch;
}

.about-subline {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--gold);
    font-style: italic;
}

.about-stat-suffix {
    font-size: 0.5em;
}

.story-images {
    position: relative;
    min-height: 480px;
}

.story-images .main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.story-images .inset-img {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 42%;
    aspect-ratio: 1;
    border: 4px solid var(--bg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ── Stats ── */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 4rem 0;
}

.stat-item {
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-num {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dim);
}

/* ── Table / Menu section ── */
.menu-section-wrap {
    padding: 5rem 0;
    scroll-margin-top: var(--header-h);
}

.menu-section-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2.5rem;
}

.menu-section-head h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 0.5rem;
}

.menu-section-aside {
    text-align: right;
    max-width: 28ch;
}

.menu-section-aside p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }

.menu-section-aside a {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--gold);
}

.menu-gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.menu-gallery-row img {
    aspect-ratio: 4/3;
    width: 100%;
    filter: brightness(0.92);
}

.menu-scroll-hint {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.menu-scroll-hint::before {
    content: "";
    width: 48px;
    height: 1px;
    background: var(--gold);
}

.menu-scroll-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dim) transparent;
}

.menu-scroll-track::-webkit-scrollbar { height: 4px; }
.menu-scroll-track::-webkit-scrollbar-thumb { background: var(--gold-dim); }

.menu-luxury-card {
    flex: 0 0 min(300px, 78vw);
    scroll-snap-align: start;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    min-height: 420px;
    background: #111;
}

.menu-luxury-card .card-bg {
    position: absolute;
    inset: 0;
}

.menu-luxury-card .card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-luxury-card .card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(13, 31, 23, 0.55) 60%, rgba(13, 31, 23, 0.95) 100%);
}

.menu-luxury-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.menu-luxury-card .card-cat {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.menu-luxury-card h3 {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    margin-bottom: 0.5rem;
}

.menu-luxury-card .card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.menu-luxury-card .card-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.menu-luxury-card .menu-discount-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #dc2626;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
}

.menu-cta-row {
    text-align: center;
    margin-top: 2rem;
}

/* ── Special offers ── */
.special-offers {
    padding: 4rem 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.special-offers-head { margin-bottom: 2rem; }

.special-offers-head h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin: 0.5rem 0;
}

.special-offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.special-offer-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

.special-offer-card.is-highlighted { border-color: var(--gold-dim); }

.special-offer-media { position: relative; aspect-ratio: 16/10; }
.special-offer-media img { width: 100%; height: 100%; object-fit: cover; }

.special-offer-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #dc2626;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
}

.special-offer-body { padding: 1.1rem; }
.special-offer-category { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.special-offer-name { font-family: var(--font-serif); font-size: 1.25rem; margin: 0.35rem 0; }
.special-offer-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.5rem; }

.menu-price-original { text-decoration: line-through; color: var(--text-dim); margin-right: 0.5rem; }
.menu-price-sale { color: var(--gold); font-weight: 700; }
.menu-price-regular { color: var(--text); font-weight: 600; }
.menu-discount-countdown { font-size: 0.72rem; color: var(--gold-dim); display: block; margin-top: 0.25rem; }

/* ── Experience (green) ── */
.experience-section {
    padding: 5rem 0;
    background: var(--bg-green);
    scroll-margin-top: var(--header-h);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.experience-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    margin-bottom: 1.25rem;
}

.experience-section .lead { color: var(--text-muted); margin-bottom: 2rem; max-width: 48ch; }

.experience-list { list-style: none; }

.experience-list li {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
}

.experience-list .exp-icon { color: var(--gold); font-size: 1.1rem; }
.experience-list h4 { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 0.25rem; }
.experience-list p { font-size: 0.85rem; color: var(--text-muted); }

.experience-images { position: relative; min-height: 400px; }
.experience-images .main { width: 100%; height: 400px; object-fit: cover; }
.experience-images .inset {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 45%;
    aspect-ratio: 1;
    border: 3px solid var(--bg-green);
}

/* ── Gallery strip ── */
.gallery-section {
    padding: 4rem 0;
    scroll-margin-top: var(--header-h);
}

.gallery-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin: 0.5rem 0 0.75rem;
}

.gallery-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}

.gallery-scroll img {
    flex: 0 0 min(320px, 75vw);
    height: 220px;
    scroll-snap-align: start;
    filter: brightness(0.9);
}

/* ── Press / testimonials ── */
.press-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border-subtle);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.press-card {
    padding: 1.5rem 0;
    border-top: 2px solid var(--gold);
}

.press-card .quote-mark {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.press-card blockquote {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.press-card cite {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dim);
    font-style: normal;
}

.award-panel {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
}

.award-gallery {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.award-gallery img {
    flex: 0 0 auto;
    height: 180px;
    width: auto;
}

.guest-reviews { margin-top: 2rem; }
.guest-reviews-title { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 1rem; }

.guest-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.guest-review-card {
    padding: 1.25rem;
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
}

.guest-review-stars { color: var(--gold); margin-bottom: 0.5rem; }
.guest-review-text { font-size: 0.88rem; color: var(--text-muted); font-style: italic; }
.guest-review-author { font-size: 0.75rem; color: var(--text-dim); margin-top: 0.75rem; }

/* ── Reserve section ── */
.reserve-section {
    padding: 5rem 0;
    scroll-margin-top: var(--header-h);
}

.reserve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.reserve-copy h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0.75rem 0 1rem;
}

.reserve-copy h2 em { color: var(--gold); font-style: normal; }

.reserve-meta { list-style: none; margin-top: 1.5rem; }
.reserve-meta li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.reserve-meta .icon { color: var(--gold); flex-shrink: 0; }

.reserve-form-panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    padding: 2rem;
}

.reserve-form-panel h3 {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    margin-bottom: 1.5rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-grid-2 .field-full { grid-column: 1 / -1; }

.reserve-form-panel textarea {
    width: 100%;
    min-height: 90px;
    padding: 0.65rem 0.75rem;
    background: var(--bg);
    border: 1px solid var(--border-subtle);
    color: var(--text);
    font-family: inherit;
    resize: vertical;
    margin-bottom: 1rem;
}

.reserve-form-note { font-size: 0.72rem; color: var(--text-dim); margin-top: 0.75rem; text-align: center; }

/* ── Events ── */
.events-section {
    padding: 4rem 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-subtle);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.event-card {
    padding: 1.5rem;
    border: 1px solid var(--border-subtle);
    background: var(--bg-panel);
}

.event-card h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 0.35rem; }
.event-date { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.event-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ── Footer ── */
.site-footer {
    padding: 4rem 0 2rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.footer-map {
    height: 200px;
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    margin-bottom: 3rem;
    display: grid;
    place-items: center;
    color: var(--text-dim);
    font-size: 0.85rem;
    overflow: hidden;
}

.footer-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.6) brightness(0.7); }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-brand .logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.footer-brand .tagline {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.footer-col h4 {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.footer-col a:hover { color: var(--gold); }

.footer-actions { display: flex; flex-direction: column; gap: 0.65rem; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.75rem;
    color: var(--text-dim);
}

.footer-bottom a { color: var(--text-muted); margin-left: 1rem; }
.footer-bottom a:hover { color: var(--gold); }

.newsletter-inline {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.newsletter-inline input {
    flex: 1;
    min-width: 0;
    padding: 0.55rem 0.7rem;
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    color: var(--text);
    font-size: 0.85rem;
}

/* ── Modals ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0, 0, 0, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-card {
    width: min(720px, 100%);
    max-height: 90vh;
    overflow: auto;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
}

.modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.modal-head h3 { font-family: var(--font-serif); font-size: 1.35rem; }

.modal-close {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 0.85rem;
}

.modal-body { padding: 1.5rem; }

.menu-modal-card { width: min(960px, 100%); }

/* ── PDF menu viewer ── */
.menu-pdf-modal { padding: 0.75rem; align-items: stretch; }

.menu-pdf-card {
    width: min(1100px, 100%);
    max-height: 96vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
}

.menu-pdf-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-panel);
}

.menu-pdf-toolbar-title h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin: 0;
}

.menu-pdf-toolbar-sub {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 0.15rem;
}

.menu-pdf-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.menu-pdf-action {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--border);
    transition: background 0.2s, color 0.2s;
}

.menu-pdf-action:hover {
    background: var(--gold);
    color: #0a0a0c;
}

.menu-pdf-body {
    position: relative;
    flex: 1;
    min-height: 0;
    height: calc(96vh - 72px);
    background: #1a1a1c;
}

.menu-pdf-frame,
.menu-pdf-object {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #fff;
}

.menu-pdf-object { display: none; }

.menu-pdf-body.is-mobile .menu-pdf-frame { display: none; }
.menu-pdf-body.is-mobile .menu-pdf-object { display: block; }

.menu-pdf-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    background: var(--bg-elevated);
    z-index: 2;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.menu-pdf-loading.is-hidden { display: none; }

.menu-pdf-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(197, 160, 89, 0.25);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: menuPdfSpin 0.8s linear infinite;
}

@keyframes menuPdfSpin {
    to { transform: rotate(360deg); }
}

.menu-pdf-fallback {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
    background: var(--bg-elevated);
}

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

.menu-pdf-fallback p {
    color: var(--text-muted);
    max-width: 36ch;
    line-height: 1.6;
}

.menu-pdf-missing {
    display: grid;
    place-items: center;
    height: 100%;
    padding: 2rem;
    color: var(--text-muted);
    text-align: center;
}

.menu-pdf-object-fallback {
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.menu-pdf-object-fallback a { color: var(--gold); }

@media (max-width: 640px) {
    .menu-pdf-modal { padding: 0; }
    .menu-pdf-card { max-height: 100vh; height: 100vh; width: 100%; border: none; }
    .menu-pdf-body { height: calc(100vh - 64px); }
    .menu-pdf-toolbar-actions .menu-pdf-action { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .menu-pdf-spinner { animation: none; }
}


.menu-search {
    width: 100%;
    padding: 0.65rem 0.85rem;
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    color: var(--text);
    font-size: 0.9rem;
}

.menu-category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.menu-chip {
    padding: 0.35rem 0.75rem;
    font-size: 0.72rem;
    border: 1px solid var(--border);
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.menu-chip.is-active,
.menu-chip:hover { background: var(--gold); color: #0a0a0c; border-color: var(--gold); }

.menu-section { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-subtle); }
.menu-section-title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--gold); margin-bottom: 0.25rem; }
.menu-section-sub { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 1rem; }

.menu-item-list { display: grid; gap: 0.75rem; }

.menu-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.85rem;
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
}

.menu-item-with-media { grid-template-columns: 72px 1fr; }

.menu-item-media {
    width: 72px;
    height: 72px;
    position: relative;
    overflow: hidden;
}

.menu-item-media img { width: 100%; height: 100%; object-fit: cover; }

.menu-item-title { font-family: var(--font-serif); font-size: 1rem; margin-bottom: 0.2rem; }
.menu-item-desc { font-size: 0.82rem; color: var(--text-muted); }
.menu-item-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 0.35rem; }
.menu-item-info { font-size: 0.65rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }

.menu-item--discounted { border-color: var(--gold-dim); }

.menu-item-discount-flag {
    position: absolute;
    top: 0.2rem;
    left: 0.2rem;
    font-size: 0.55rem;
    background: #dc2626;
    color: #fff;
    padding: 0.1rem 0.3rem;
}

.menu-modal-lang-switch {
    display: inline-flex;
    gap: 0.35rem;
    margin-top: 0.35rem;
}

.menu-modal-lang-switch a {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.45rem;
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.menu-modal-lang-switch a.active { background: var(--gold); color: #0a0a0c; }

.promo-discount-banner {
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.12), rgba(197, 160, 89, 0.04));
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.85rem 0;
}

.promo-discount-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.promo-discount-text { flex: 1; font-size: 0.88rem; }
.promo-discount-link { color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 960px) {
    :root { --header-h: 188px; }

    .classic-header-bar {
        flex-wrap: wrap;
        align-items: center;
        gap: 0.45rem;
    }

    .classic-header-utils {
        justify-content: flex-end;
        margin-left: auto;
    }

    .classic-nav-list {
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .classic-reserve-btn {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
    }

    .hero-split,
    .story-grid,
    .experience-grid,
    .reserve-grid,
    .menu-section-head { grid-template-columns: 1fr; }

    .menu-section-aside {
        text-align: left;
        max-width: none;
    }

    .hero-visual img { min-height: 45vh; }
    .hero-panel { border-left: none; border-top: 1px solid var(--border-subtle); }

    .story-images .inset-img { left: 1rem; bottom: -1rem; width: 50%; }
    .stats-bar { grid-template-columns: repeat(3, 1fr); }
    .menu-gallery-row { grid-template-columns: repeat(2, 1fr); }
    .press-grid,
    .guest-reviews-grid,
    .events-grid,
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --header-h: 152px; }

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

    .classic-header-bar {
        flex-wrap: wrap;
    }

    .classic-nav {
        flex: 1 1 100%;
        order: 4;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.25s ease;
        margin-top: 0;
    }

    .classic-nav.is-open {
        max-height: 520px;
        opacity: 1;
        margin-top: 0.35rem;
    }

    .classic-nav-list {
        flex-direction: column;
        overflow-x: visible;
        gap: 0.35rem;
        padding-bottom: 0;
    }

    .classic-nav-list li {
        width: 100%;
    }

    .classic-nav-btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .quote-band { padding: 2.5rem 0; }
    .story-section,
    .menu-section-wrap,
    .experience-section,
    .press-section,
    .reserve-section,
    .special-offers,
    .gallery-section,
    .events-section { padding: 3rem 0; }

    .story-grid,
    .experience-grid,
    .reserve-grid { gap: 2rem; }

    .story-images {
        min-height: auto;
        overflow: hidden;
    }

    .story-images .main-img {
        height: min(52vw, 320px);
    }

    .story-images .inset-img {
        position: relative;
        left: auto;
        bottom: auto;
        width: min(55%, 220px);
        margin: -2.5rem auto 0;
        display: block;
    }

    .experience-images {
        min-height: auto;
        overflow: hidden;
    }

    .experience-images .main {
        height: min(52vw, 320px);
    }

    .experience-images .inset {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(55%, 220px);
        margin: -2rem auto 0;
        display: block;
    }

    .stats-bar { margin: 2.5rem 0; }

    .stat-item {
        padding: 1.25rem 0.65rem;
    }

    .stat-num {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .stat-label {
        font-size: 0.58rem;
        letter-spacing: 0.12em;
    }

    .hero-visual-caption {
        left: 1rem;
        bottom: 1rem;
        font-size: 0.62rem;
    }

    .hero-panel {
        padding: 1.75rem 1.25rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .footer-bottom a {
        margin-left: 0;
        margin-right: 1rem;
    }

    .modal-overlay {
        padding: 0.5rem;
        align-items: flex-end;
    }

    .modal-card {
        width: 100%;
        max-height: min(92dvh, 720px);
        border-radius: 12px 12px 0 0;
    }

    .modal-body {
        max-height: calc(min(92dvh, 720px) - 64px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .menu-pdf-toolbar {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.65rem 0.75rem;
    }

    .menu-pdf-toolbar-title h3 {
        font-size: 1.1rem;
    }

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

@media (max-width: 640px) {
    :root { --header-h: 148px; --container: min(1180px, 94%); }

    .classic-header {
        padding: 0.5rem 0 0.65rem;
    }

    .classic-banner {
        min-height: 72px;
    }

    .classic-banner-logo {
        width: 56px;
        min-width: 56px;
    }

    .classic-banner-copy {
        padding: 0.35rem 0.5rem;
    }

    .hero-form-grid { grid-template-columns: 1fr; }
    .menu-gallery-row { grid-template-columns: 1fr; }
    .press-grid,
    .guest-reviews-grid,
    .events-grid { grid-template-columns: 1fr; }

    .menu-luxury-card {
        flex: 0 0 min(280px, 88vw);
        min-height: 360px;
    }

    .award-panel {
        padding: 1.5rem 1rem;
    }

    .award-gallery img {
        height: 140px;
    }

    .footer-map {
        height: 160px;
        margin-bottom: 2rem;
    }

    .field input,
    .field select,
    .field textarea,
    .reserve-form-panel input,
    .reserve-form-panel select,
    .reserve-form-panel textarea,
    .newsletter-inline input {
        font-size: 16px;
    }

    .btn-gold,
    .btn-outline-gold {
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    :root { --header-h: 140px; }

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .newsletter-inline {
        flex-direction: column;
    }

    .newsletter-inline .btn-gold {
        width: 100%;
    }

    .special-offers-grid {
        grid-template-columns: 1fr;
    }

    .classic-header-utils {
        width: 100%;
        justify-content: space-between;
    }
}

@supports (padding: max(0px)) {
    .site-header--classic {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }

    .modal-overlay.open,
    .menu-pdf-modal.open {
        padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}
