/* ── Reset & tokens ────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #c9923a;
    --gold-light: #e8b96a;
    --cream: #f5ede0;
    --dark: #0d0800;
}

html,
body {
    background: var(--dark);
    font-family: 'Inter', sans-serif;
    color: var(--cream);
    overflow-x: hidden;
}

/* ════════════════════════════════════════════════════
   HERO IMAGE SLIDER
════════════════════════════════════════════════════ */
#hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--dark);
}

/* Individual slides — full-cover background image */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
}

/* Dark gradient vignette */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(13, 8, 0, 0.25) 0%,
            rgba(13, 8, 0, 0.55) 60%,
            rgba(13, 8, 0, 0.85) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 3rem;
    pointer-events: none;
}

/* Brand block */
.hero-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
}

.hero-eyebrow,
.hero-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 237, 224, 0.92);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.hero-gold-line {
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-wordmark {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(3rem, 9vw, 6rem);
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--cream);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-wordmark em {
    font-style: italic;
    color: var(--gold-light);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75), 0 1px 4px rgba(0, 0, 0, 0.9);
}

/* Logo + wordmark side-by-side */
.hero-wordmark-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-logo-img {
    height: clamp(4rem, 8vw, 5.4rem);
    max-height: clamp(4rem, 8vw, 5.4rem);
    max-width: clamp(4rem, 8vw, 5.4rem);
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.75));
    flex-shrink: 0;
}

@media (max-width: 432px) {
    .hero-wordmark-row {
        display: block;
    }
}

/* Prev / Next buttons */
.hero-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(13, 8, 0, 0.4);
    border: 1px solid rgba(201, 146, 58, 0.35);
    color: var(--gold-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.25s, border-color 0.25s;
}

.hero-btn:hover {
    background: rgba(201, 146, 58, 0.25);
    border-color: var(--gold);
}

.hero-btn svg {
    width: 20px;
    height: 20px;
}

#hero-prev {
    left: 1.25rem;
}

#hero-next {
    right: 1.25rem;
}

/* Dot indicators */
#hero-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(245, 237, 224, 0.35);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.hero-dot.active {
    background: var(--gold);
    transform: scale(1.4);
}

/* Gold progress bar */
#hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 10;
}

/* ── Slider shell ──────────────────────────────────── */
#slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 480px;
    overflow: hidden;
    background: var(--dark);
}

/* ── Slides ────────────────────────────────────────── */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: none;
    transition: none;
    animation: none;
}

/* dark vignette over each video */
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
            rgba(13, 8, 0, 0.25) 0%,
            rgba(13, 8, 0, 0.65) 100%);
    pointer-events: none;
}

/* ── Empty state ───────────────────────────────────── */
#slider-empty {
    display: none;
    position: absolute;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(245, 237, 224, 0.4);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

#slider-empty svg {
    opacity: 0.3;
}

/* ── Branded overlay (logo + wordmark) ─────────────── */
#brand-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    gap: 0.75rem;
}

#brand-overlay .wordmark {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.5rem, 8vw, 5rem);
    letter-spacing: 0.08em;
    color: var(--cream);
    text-shadow: 0 2px 40px rgba(13, 8, 0, 0.7);
    line-height: 1;
}

#brand-overlay .wordmark em {
    font-style: italic;
    color: var(--gold-light);
}

#brand-overlay .tagline {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 237, 224, 0.55);
}

#brand-overlay .divider {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0.25rem 0;
}

/* ── Nav buttons ───────────────────────────────────── */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(13, 8, 0, 0.45);
    border: 1px solid rgba(201, 146, 58, 0.35);
    color: var(--gold-light);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    backdrop-filter: blur(6px);
}

.slider-btn:hover {
    background: rgba(201, 146, 58, 0.25);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

#btn-prev {
    left: 1.5rem;
}

#btn-next {
    right: 1.5rem;
}

.slider-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Dot indicators ────────────────────────────────── */
#dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(245, 237, 224, 0.35);
    border: 1px solid rgba(201, 146, 58, 0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.5);
}

/* ── Mute toggle ───────────────────────────────────── */
#btn-mute {
    position: absolute;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 20;
    background: rgba(13, 8, 0, 0.45);
    border: 1px solid rgba(201, 146, 58, 0.35);
    color: var(--gold-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
    backdrop-filter: blur(6px);
}

#btn-mute:hover {
    background: rgba(201, 146, 58, 0.25);
    border-color: var(--gold);
}

#btn-mute svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Slide counter ─────────────────────────────────── */
#slide-counter {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    z-index: 20;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: rgba(245, 237, 224, 0.45);
    font-variant-numeric: tabular-nums;
}

/* ── Progress bar ──────────────────────────────────── */
#progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 20;
    transition: width linear;
}

/* ── Slide transition animations ─────────────────────── */
.slide-out {
    animation: slideOut 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    pointer-events: none;
}

.slide-in {
    animation: slideIn 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    pointer-events: none;
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 1;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ── Video ingredient title ────────────────────────── */
#video-title {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    text-align: center;
    padding: 0.6rem 1.75rem;
    background: rgba(13, 8, 0, 0.55);
    border: 1px solid rgba(201, 146, 58, 0.4);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    white-space: nowrap;
}

#video-title.visible {
    opacity: 1;
}

#video-title-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(0.85rem, 2.5vw, 1.2rem);
    letter-spacing: 0.12em;
    color: var(--cream);
}

/* ── Footer ────────────────────────────────────────── */
footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: rgba(245, 237, 224, 0.2);
    text-transform: uppercase;
    border-top: 1px solid rgba(201, 146, 58, 0.12);
}

/* ════════════════════════════════════════════════════
   SIDE-BY-SIDE SLIDERS ROW
════════════════════════════════════════════════════ */
.sliders-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    background: var(--dark);
}

.sliders-row__col {
    flex: 1 1 50%;
    min-width: 0;
    /* prevent flex blowout */
    display: flex;
    flex-direction: column;
}

/* Make each column's slider/video fill the remaining height equally */
.sliders-row__col #slider,
.sliders-row__col .iced-video-wrap {
    flex: 1 1 auto;
}

/* Vertical gold separator between the two columns */
.sliders-row__col:first-child {
    border-right: 1px solid rgba(201, 146, 58, 0.2);
}

/* ════════════════════════════════════════════════════
   ICED COFFEE SECTION
════════════════════════════════════════════════════ */
.iced-section {
    background: var(--dark);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.iced-video-wrap {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 480px;
    overflow: hidden;
    background: #000;
}

.iced-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: none;
    transition: none;
    animation: none;
}

.iced-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
            rgba(13, 8, 0, 0.2) 0%,
            rgba(13, 8, 0, 0.6) 100%);
    pointer-events: none;
}

.iced-mute-btn {
    position: absolute;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 20;
    background: rgba(13, 8, 0, 0.45);
    border: 1px solid rgba(201, 146, 58, 0.35);
    color: var(--gold-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
    backdrop-filter: blur(6px);
}

.iced-mute-btn:hover {
    background: rgba(201, 146, 58, 0.25);
    border-color: var(--gold);
}

.iced-mute-btn svg {
    width: 18px;
    height: 18px;
}

/* ════════════════════════════════════════════════════
   SECTION HEADER  (above the slider)
════════════════════════════════════════════════════ */
.section-header {
    background: var(--dark);
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.section-header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.section-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-divider {
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0.15rem 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.6rem, 7vw, 4.5rem);
    letter-spacing: 0.04em;
    line-height: 1.05;
    color: var(--cream);
}

.section-title em {
    font-style: italic;
    color: var(--gold-light);
}

.section-sub {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 237, 224, 0.45);
    margin-top: 0.25rem;
}

/* ════════════════════════════════════════════════════
   FULL MENU PAGE
════════════════════════════════════════════════════ */
.menu-page {
    background: var(--dark);
    padding: 5rem 2rem 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* Logo / wordmark block */
.menu-logo {
    text-align: center;
    margin-bottom: 4rem;
}

.menu-logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    letter-spacing: 0.06em;
    color: var(--cream);
    line-height: 1;
}

.menu-logo h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.logo-tagline {
    margin-top: 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245, 237, 224, 0.4);
}

/* 4-column responsive grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 3rem;
    margin-bottom: 3rem;
}

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

@media (max-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-page {
        padding: 3rem 1.25rem 2rem;
    }

    .section-header {
        padding: 3rem 1.25rem 2rem;
    }
}

/* ── Mobile: stack sliders vertically ─────────────── */
@media (max-width: 768px) {
    .sliders-row {
        flex-direction: column;
    }

    .sliders-row__col:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(201, 146, 58, 0.2);
    }

    #slider {
        width: 100%;
        margin-left: 0;
        height: 70vw;
        min-height: 220px;
        overflow: hidden;
    }

    .slide video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 220px;
    }

    /* Iced coffee — same proportional height on mobile */
    .iced-video-wrap {
        width: 100%;
        margin-left: 0;
        height: 70vw;
        min-height: 220px;
    }
}

/* Section headings */
.menu-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201, 146, 58, 0.3);
    margin-bottom: 0.6rem;
}

.menu-section-note {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 237, 224, 0.35);
    font-style: italic;
    margin-bottom: 0.5rem;
}

/* R / L column labels */
.price-cols-label {
    display: grid;
    grid-template-columns: 1fr 3.5rem 3.5rem;
    gap: 0;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.55;
    margin-bottom: 0.4rem;
    padding-bottom: 0.25rem;
}

.price-cols-label span:nth-child(2),
.price-cols-label span:nth-child(3) {
    text-align: center;
}

/* Menu list rows */
.menu-list {
    list-style: none;
}

.menu-list li {
    display: grid;
    grid-template-columns: 1fr 3.5rem 3.5rem;
    align-items: center;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(245, 237, 224, 0.07);
    gap: 0;
}

.menu-list li:last-child {
    border-bottom: none;
}

.item-name {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(245, 237, 224, 0.9);
    letter-spacing: 0.02em;
    line-height: 1.45;
    padding-right: 0.5rem;
}

/* Price cells — centred under their R / L header */
.item-price {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.03em;
    white-space: nowrap;
    text-align: center;
    position: relative;
}

/* Empty third column placeholder — keep grid aligned */
.menu-list li>span:nth-child(3):empty {
    display: block;
}

/* Extras strip */
.menu-extras {
    border-top: 1px solid rgba(201, 146, 58, 0.25);
    padding-top: 2.5rem;
    margin-top: 1rem;
}

.extras-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 2rem;
    margin-top: 0.75rem;
}

.extras-list li {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    min-width: 220px;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(245, 237, 224, 0.06);
}

/* ════════════════════════════════════════════════════
   INTERACTIVE MENU SECTION (index.html)
════════════════════════════════════════════════════ */
.imenu-section {
    background: var(--dark);
    padding: 5rem 0 4rem;
}

/* Section header */
.imenu-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    padding: 0 2rem 3.5rem;
}

.imenu-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
}

.imenu-divider-line {
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0.1rem 0;
}

.imenu-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.6rem, 7vw, 4.5rem);
    letter-spacing: 0.04em;
    line-height: 1.05;
    color: var(--cream);
}

.imenu-heading em {
    font-style: italic;
    color: var(--gold-light);
}

.imenu-sub {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245, 237, 224, 0.3);
    margin-top: 0.25rem;
}

/* ── Tab strip ─────────────────────────────────────── */
.imenu-tabs {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(201, 146, 58, 0.18);
    border-radius: 6px;
}

.imenu-tab {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.1rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(201, 146, 58, 0.1);
    color: rgba(245, 237, 224, 0.7);
    cursor: pointer;
    text-align: left;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    position: relative;
}

.imenu-tab:last-child {
    border-bottom: none;
}

.imenu-tab:hover {
    background: rgba(201, 146, 58, 0.06);
    color: var(--cream);
}

.imenu-tab.active {
    background: rgba(201, 146, 58, 0.1);
    color: var(--cream);
    border-bottom-color: rgba(201, 146, 58, 0.15);
}

.imenu-tab.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
    border-radius: 0 2px 2px 0;
}

.tab-icon {
    font-size: 1.15rem;
    line-height: 1;
    flex-shrink: 0;
    width: 1.6rem;
    text-align: center;
}

.tab-label {
    flex: 1;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    letter-spacing: 0.08em;
}

.tab-chevron {
    flex-shrink: 0;
    color: rgba(201, 146, 58, 0.5);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s;
}

.tab-chevron svg {
    width: 18px;
    height: 18px;
    display: block;
}

.imenu-tab.active .tab-chevron {
    transform: rotate(180deg);
    color: var(--gold);
}

/* ── Panels ────────────────────────────────────────── */
.imenu-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(201, 146, 58, 0.03);
    border-left: 1px solid rgba(201, 146, 58, 0.15);
    border-right: 1px solid rgba(201, 146, 58, 0.15);
    border-bottom: none;
    margin: 0;
}

.imenu-panel.open {
    border-bottom: 1px solid rgba(201, 146, 58, 0.15);
}

.imenu-panel-inner {
    padding: 1.5rem 1.5rem 1.75rem;
}

/* Column labels */
.imenu-col-labels {
    display: grid;
    grid-template-columns: 1fr 5rem 5rem;
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 0.5rem;
    padding: 0 0 0.25rem;
    border-bottom: 1px solid rgba(201, 146, 58, 0.12);
}

.imenu-col-labels span:nth-child(2),
.imenu-col-labels span:nth-child(3) {
    text-align: center;
}

/* List items */
.imenu-list {
    list-style: none;
}

.imenu-list li {
    display: grid;
    grid-template-columns: 1fr 5rem 5rem;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(245, 237, 224, 0.06);
    transition: background 0.2s;
}

.imenu-list li:last-child {
    border-bottom: none;
}

.imenu-list li:hover {
    background: rgba(201, 146, 58, 0.04);
}

.imenu-list .item-price {
    text-align: center;
}

/* Panel note */
.imenu-panel-note {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 1rem;
    font-style: italic;
}

/* ── Extras strip ──────────────────────────────────── */
.imenu-extras {
    max-width: 860px;
    margin: 2rem auto 0;
    padding: 1.5rem 1.5rem;
    border: 1px solid rgba(201, 146, 58, 0.18);
    border-radius: 4px;
    text-align: center;
}

.imenu-extras-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
    opacity: 0.7;
}

.imenu-extras-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 2rem;
}

.imenu-extras-row span {
    font-size: 0.8rem;
    color: rgba(245, 237, 224, 0.6);
    font-weight: 300;
    letter-spacing: 0.03em;
}

.imenu-extras-row strong {
    color: var(--gold-light);
    font-weight: 500;
}

/* ── CTA button ─────────────────────────────────────── */
.imenu-cta-wrap {
    text-align: center;
    padding-top: 2.5rem;
}

.imenu-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2.5rem;
    border: 1px solid rgba(201, 146, 58, 0.5);
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    transition: background 0.3s, color 0.3s, border-color 0.3s, gap 0.3s;
}

.imenu-cta:hover {
    background: rgba(201, 146, 58, 0.12);
    border-color: var(--gold);
    color: var(--cream);
    gap: 0.9rem;
}

.imenu-cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.imenu-cta:hover svg {
    transform: translateX(3px);
}

/* ── Back link (menu.html) ─────────────────────────── */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.25s, gap 0.25s;
}

.back-link:hover {
    color: var(--gold-light);
    gap: 0.65rem;
}

.back-link svg {
    width: 16px;
    height: 16px;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 600px) {

    .imenu-tabs,
    .imenu-extras {
        margin-left: 1rem;
        margin-right: 1rem;
        padding-left: 0;
        padding-right: 0;
    }

    .imenu-tab {
        padding: 0.9rem 1rem;
    }

    .imenu-panel-inner {
        padding: 1.25rem 1rem 1.5rem;
    }

    .imenu-col-labels,
    .imenu-list li {
        grid-template-columns: 1fr 4rem 4rem;
    }

    .imenu-section {
        padding: 3.5rem 0 3rem;
    }

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

/* ════════════════════════════════════════════════════
   MENU ITEM CARDS
════════════════════════════════════════════════════ */

/* Override panel-inner padding when in card mode */
.imenu-panel-inner.card-panel {
    padding: 1.75rem 1.5rem 2rem;
    background: transparent;
}

/* Card grid */
.mcard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 1rem;
}

/* Individual card */
.mcard {
    border-radius: 8px;
    overflow: hidden;
    background: rgba(20, 14, 4, 0.85);
    border: 1px solid rgba(201, 146, 58, 0.15);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.3s;
    cursor: default;
}

.mcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 146, 58, 0.3);
    border-color: rgba(201, 146, 58, 0.4);
}

/* Photo / image area — uses CSS custom property --card-bg */
.mcard-img {
    width: 100%;
    height: 150px;
    background-image: var(--card-bg);
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Subtle dark gradient over photo bottom for text bleed */
.mcard-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 40%,
            rgba(13, 8, 0, 0.65) 100%);
    pointer-events: none;
}

/* Text body */
.mcard-body {
    padding: 0.75rem 0.85rem 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    border-top: 1px solid rgba(201, 146, 58, 0.1);
}

.mcard-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--cream);
    line-height: 1.35;
}

.mcard-price {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.05em;
}

.mcard-desc {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(245, 237, 224, 0.52);
    line-height: 1.55;
    letter-spacing: 0.01em;
    margin-top: 0.1rem;
}

/* Sub-category label inside a panel (e.g. "Main Breakfast Plates") */
.mcard-section-label {
    grid-column: 1 / -1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(201, 146, 58, 0.25);
    margin-top: 1rem;
}

.mcard-section-label:first-child {
    margin-top: 0;
}


/* ── Gradient fallback cards (no photo) ──────────────── */
.mcard-gradient .mcard-img {
    background-image: none;
}

/* Freddo — deep espresso brown + bronze */
.mcard-freddo .mcard-img {
    background: linear-gradient(135deg, #1a0e00 0%, #3d1f00 40%, #201205 100%);
}

.mcard-freddo .mcard-img::before {
    content: '🧊';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    opacity: 0.55;
}

/* Iced Coffee — cool deep blue */
.mcard-iced .mcard-img {
    background: linear-gradient(135deg, #050d1a 0%, #0a1a2e 45%, #102035 100%);
}

.mcard-iced .mcard-img::before {
    content: '🧋';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    opacity: 0.55;
}

/* Tea — warm amber greens */
.mcard-tea .mcard-img {
    background: linear-gradient(135deg, #0a0f05 0%, #1a2a10 45%, #0d1a08 100%);
}

.mcard-tea .mcard-img::before {
    content: '🍵';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    opacity: 0.55;
}

/* Lemonade — deep golden yellow */
.mcard-lemonade .mcard-img {
    background: linear-gradient(135deg, #0f0c00 0%, #1f1800 45%, #2a2200 100%);
}

.mcard-lemonade .mcard-img::before {
    content: '🍋';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    opacity: 0.55;
}

/* Remove the ::after gradient on gradient cards, keep emoji visible */
.mcard-gradient .mcard-img::after {
    background: linear-gradient(to bottom, transparent 50%, rgba(13, 8, 0, 0.5) 100%);
}

@media (max-width: 600px) {
    .mcard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mcard-img {
        height: 120px;
    }

    .imenu-panel-inner.card-panel {
        padding: 1.25rem 0.75rem 1.5rem;
    }
}

/* ════════════════════════════════════════════════════
   SITE FOOTER  (shared across all pages)
════════════════════════════════════════════════════ */
.site-footer {
    background: #080400;
    border-top: 1px solid rgba(201, 146, 58, 0.2);
}

.site-footer__map iframe {
    filter: grayscale(30%) brightness(0.85) contrast(1.05);
    display: block;
}

/* Social bar — under the map (Instagram + TikTok) */
.site-footer__social-bar {
    background: rgba(10, 6, 0, 0.85);
    border-top: 1px solid rgba(201, 146, 58, 0.12);
    border-bottom: 1px solid rgba(201, 146, 58, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0.9rem 1.5rem;
    flex-wrap: wrap;
}

.site-footer__social-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: rgba(245, 237, 224, 0.55);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.25s;
    padding: 0.25rem 1.5rem;
}

.site-footer__social-bar-link:hover {
    color: rgba(245, 237, 224, 0.9);
}

.site-footer__social-bar-link svg {
    flex-shrink: 0;
    transition: filter 0.25s;
}

/* Instagram hover glow */
.site-footer__social-bar-link:first-child:hover svg {
    filter: drop-shadow(0 0 6px rgba(220, 39, 67, 0.55));
}

/* TikTok icon colour + hover glow */
.site-footer__tiktok-icon {
    stroke: rgba(245, 237, 224, 0.6);
}

.site-footer__social-bar-link:hover .site-footer__tiktok-icon {
    stroke: #69c9d0;
    filter: drop-shadow(0 0 6px rgba(105, 201, 208, 0.6));
}

/* Divider between social links */
.site-footer__social-bar-divider {
    display: block;
    width: 1px;
    height: 1.2rem;
    background: rgba(201, 146, 58, 0.25);
    flex-shrink: 0;
}

/* ── Mobile social bar ──────────────────────────────── */
@media (max-width: 600px) {
    .site-footer__social-bar {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .site-footer__social-bar-link {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.75rem;
        gap: 0.65rem;
    }

    /* Swap vertical stick for a full-width horizontal hairline */
    .site-footer__social-bar-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(201, 146, 58, 0.3), transparent);
    }
}

.site-footer__body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
}

/* Brand column */
.site-footer__wordmark {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: 0.06em;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.site-footer__wordmark em {
    font-style: italic;
    color: var(--gold-light);
}

.site-footer__tagline {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 237, 224, 0.4);
    margin-bottom: 1rem;
}

.site-footer__gold-rule {
    width: 52px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 0.9rem;
}

.site-footer__est {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 237, 224, 0.25);
}

/* Social links */
.site-footer__socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: rgba(245, 237, 224, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    transition: color 0.25s;
}

.site-footer__social-link:hover {
    color: rgba(245, 237, 224, 0.9);
}

.site-footer__social-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: filter 0.25s;
}

.site-footer__social-link:hover .site-footer__social-icon {
    filter: drop-shadow(0 0 6px rgba(220, 39, 67, 0.5));
}

/* Column headings */
.site-footer__col-heading {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

/* Address */
.site-footer__address {
    font-style: normal;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(245, 237, 224, 0.65);
    margin-bottom: 1.2rem;
}

.site-footer__map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
}

.site-footer__map-link svg {
    width: 14px;
    height: 14px;
}

.site-footer__map-link:hover {
    color: var(--gold-light);
    gap: 0.55rem;
}

/* Opening hours table */
.site-footer__hours {
    border-collapse: collapse;
    width: 100%;
}

.site-footer__hours td {
    padding: 0.45rem 0;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245, 237, 224, 0.65);
    border-bottom: 1px solid rgba(245, 237, 224, 0.06);
}

.site-footer__hours td:first-child {
    padding-right: 1.5rem;
    color: rgba(245, 237, 224, 0.5);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

.site-footer__hours td:last-child {
    text-align: right;
    white-space: nowrap;
    color: var(--gold-light);
}

.site-footer__hours tr:last-child td {
    border-bottom: none;
}

/* Copyright strip */
.site-footer__copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 2rem;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    color: rgba(245, 237, 224, 0.15);
    text-transform: uppercase;
    border-top: 1px solid rgba(201, 146, 58, 0.1);
}

/* Instagram in the copyright strip */
.site-footer__social-link--copy {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer__social-link--copy .site-footer__social-icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 600px) {
    .site-footer__social-link--copy span {
        display: none;
    }
}

.site-footer__codoro {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    opacity: 0.45;
    transition: opacity 0.25s;
}

.site-footer__codoro:hover {
    opacity: 0.75;
}

.site-footer__codoro span {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 237, 224, 0.6);
    white-space: nowrap;
}

.site-footer__codoro img {
    height: 22px;
    width: auto;
    display: block;
}

/* Responsive footer */
@media (max-width: 860px) {
    .site-footer__body {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 540px) {
    .site-footer__body {
        grid-template-columns: 1fr;
        padding: 3rem 1.25rem 2rem;
        gap: 2rem;
    }

    .site-footer__map iframe {
        height: 260px !important;
    }

    .site-footer__copy {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding: 1.25rem 1rem;
    }
}
/* ══ Food Menu — Coming Soon notice ══════════════════════ */
.food-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
}

.food-coming-soon__badge {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9923a;
  background: rgba(201, 146, 58, 0.08);
  border: 1px solid rgba(201, 146, 58, 0.35);
  border-radius: 3px;
  padding: 0.55rem 2rem;
  animation: coming-soon-pulse 2.8s ease-in-out infinite;
}

@keyframes coming-soon-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201, 146, 58, 0); }
  50%       { opacity: 0.82; box-shadow: 0 0 14px 2px rgba(201, 146, 58, 0.22); }
}

.food-coming-soon__copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(245, 237, 224, 0.55);
  max-width: 420px;
  line-height: 1.7;
  margin: 0;
}
