/* ==========================================================
   UPON — Mediterranean Restaurant
   Premium Design System
   ========================================================== */

/* Aeonik Pro */
@font-face { font-family: 'FTLTLT'; src: url('/fonts/FTLTLT.TTF') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'AeonikPro'; src: url('/fonts/AeonikPro-Regular_0.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'AeonikPro'; src: url('/fonts/AeonikPro-RegularItalic.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'AeonikPro'; src: url('/fonts/AeonikPro-Medium.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'AeonikPro'; src: url('/fonts/AeonikPro-MediumItalic.otf') format('opentype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'AeonikPro'; src: url('/fonts/AeonikPro-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'AeonikPro'; src: url('/fonts/AeonikPro-BoldItalic.otf') format('opentype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'AeonikPro'; src: url('/fonts/AeonikPro-Light.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'AeonikPro'; src: url('/fonts/AeonikPro-LightItalic.otf') format('opentype'); font-weight: 300; font-style: italic; font-display: swap; }

:root {
    /* Palette */
    --bg:          #3A1D10;
    --bg-deep:     #2A1409;
    --bg-card:     #1A120D;
    --bg-elevated: #241610;
    --bg-input:    #1A120D;

    --text:           #F5F0E8;
    --text-secondary: #B8A898;
    --text-muted:     #7A6B60;

    --gold:       #ded5c4;
    --gold-light: #DCC99A;
    --gold-dark:  #9E8555;
    --gold-glow:  rgba(200, 169, 110, 0.2);

    --green:    #5CB176;
    --green-bg: rgba(92, 177, 118, 0.1);
    --red:      #D45B5B;
    --amber:    #D4A34B;
    --amber-bg: rgba(212, 163, 75, 0.1);

    --border:      rgba(200, 169, 110, 0.08);
    --border-gold: rgba(200, 169, 110, 0.2);

    /* Typography */
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body:    'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing & Radius */
    --radius:      8px;
    --radius-lg:   16px;
    --radius-full: 9999px;

    --shadow:    0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.4);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { touch-action: manipulation; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

body.nav-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== GRAIN TEXTURE ===== */
.grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* ===== CONTAINERS ===== */
.container {
    max-width: 620px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.menu-page-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== SHARED TYPOGRAPHY ===== */
.label-sm {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.15), rgba(200, 169, 110, 0.05));
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.heading-lg {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: 0.02em;
    margin: 0.75rem 0 1.25rem;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    margin: 0.5rem 0 0.75rem;
}

.section-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 520px;
    text-align: justify;
}

.body-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1rem;
    text-align: justify;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-top: 0.5rem;
    transition: gap 0.3s;
}

.link-arrow:hover { gap: 0.85rem; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2.25rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-deep);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--gold-glow);
}

/* Keep .btn-reserve as alias */
.btn-reserve {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2.25rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-deep);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--gold-glow);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.25rem;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-deep);
    transform: translateY(-2px);
}

/* ===== SITE HEADER ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.site-header.scrolled {
    background: rgba(42, 20, 9, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 var(--border);
}

.site-header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 101;
    overflow: hidden;
}

.brand-logo {
    height: 30px;
    width: auto;
    max-width: 110px;
    display: block;
    object-fit: contain;
}

/* Desktop Nav — Liquid Glass */
.site-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem 0.5rem;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.07),
        rgba(255, 255, 255, 0.02) 40%,
        rgba(200, 169, 110, 0.04) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.site-nav-link {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.7);
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav-link:hover {
    color: var(--gold-light);
    background: rgba(200, 169, 110, 0.1);
}

.site-nav-link.active {
    color: var(--gold-light);
    background: rgba(200, 169, 110, 0.12);
    box-shadow: inset 0 1px 0 rgba(200, 169, 110, 0.1);
}

.site-nav-social {
    display: flex;
    gap: 0.35rem;
    margin-left: 0.5rem;
    padding-left: 0.6rem;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(245, 240, 232, 0.6);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--gold-light);
    background: rgba(200, 169, 110, 0.15);
    border-color: rgba(200, 169, 110, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 169, 110, 0.1);
}

.site-nav-cta {
    margin-left: 0.5rem;
    padding: 0.45rem 1.3rem;
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.25), rgba(200, 169, 110, 0.12));
    border: 1px solid rgba(200, 169, 110, 0.3);
    color: var(--gold-light) !important;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav-cta:hover {
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.4), rgba(200, 169, 110, 0.2));
    border-color: rgba(200, 169, 110, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(200, 169, 110, 0.15);
}

@media (min-width: 960px) {
    .site-nav { display: flex; }
    .hamburger { display: none; }
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

@media (min-width: 960px) {
    .hamburger { display: none; }
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
    letter-spacing: 0.03em;
}

.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--gold); }

.mobile-nav-cta {
    color: var(--gold) !important;
    margin-top: 0.75rem;
}

.mobile-nav-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.mobile-nav-social {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.mobile-nav-social a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.mobile-nav-social a:hover { color: var(--gold); }

.mobile-nav-info {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (min-width: 960px) {
    .mobile-nav { display: none !important; }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 7rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center 40%;
    filter: brightness(0.85) saturate(0.9);
    transform: scale(1.02);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(42, 20, 9, 0.5) 0%, rgba(42, 20, 9, 0.45) 30%, rgba(42, 20, 9, 0.55) 50%, rgba(42, 20, 9, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Hero Label with elegant side lines --- */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-label-line {
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light));
    opacity: 0.6;
}

.hero-label-line:last-child {
    background: linear-gradient(90deg, var(--gold-light), transparent);
}

/* --- Hero Logo --- */
.hero-logo {
    width: clamp(130px, 28vw, 220px);
    height: auto;
    margin: 0 auto 2.5rem;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3))
            drop-shadow(0 0 40px rgba(200, 169, 110, 0.2));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
        filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3))
                drop-shadow(0 0 40px rgba(200, 169, 110, 0.2));
    }
    50% {
        transform: translateY(-6px);
        filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.25))
                drop-shadow(0 0 60px rgba(200, 169, 110, 0.35));
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 14vw, 8rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 0.9;
    margin-bottom: 2.5rem;
    color: var(--text);
    text-shadow: 0 0 80px rgba(200, 169, 110, 0.15);
}

/* --- Hero Poem — elegant & refined --- */
.hero-poem {
    margin-bottom: 1.5rem;
    position: relative;
    padding: 2rem 2.5rem;
}

.hero-poem::before {
    content: '';
    position: absolute;
    inset: -10px -30px;
    background: radial-gradient(ellipse at center, rgba(42, 20, 9, 0.75) 0%, rgba(42, 20, 9, 0.5) 40%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.hero-poem::after {
    content: none;
}

.hero-poem p {
    font-family: 'AeonikPro', var(--font-body);
    font-size: clamp(1.15rem, 2.8vw, 1.45rem);
    font-weight: 300;
    font-style: normal;
    color: #ded5c4;
    line-height: 1;
    letter-spacing: 0.05em;
    padding: 0;
    margin: 0;
    position: relative;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.hero-poem p:nth-child(1) { animation: poemLine 0.8s 0.6s both ease-out; }
.hero-poem p:nth-child(2) { animation: poemLine 0.8s 1.0s both ease-out; }
.hero-poem p:nth-child(3) { animation: poemLine 0.8s 1.4s both ease-out; }

@keyframes poemLine {
    from {
        opacity: 0;
        transform: translateY(12px);
        letter-spacing: 0.12em;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 0.05em;
    }
}

/* --- Elegant CTA button --- */
.hero-cta {
    display: inline-block;
    position: relative;
    padding: 1rem 3rem;
    border: 1px solid rgba(200, 169, 110, 0.25);
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        rgba(200, 169, 110, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 40%,
        rgba(200, 169, 110, 0.08) 100%
    );
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background:
        radial-gradient(ellipse 120% 80% at 20% 20%, rgba(255, 255, 255, 0.15), transparent 50%),
        radial-gradient(ellipse 100% 60% at 80% 80%, rgba(200, 169, 110, 0.1), transparent 50%);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(255, 255, 255, 0.08) 45%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.08) 55%,
        transparent 60%
    );
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.hero-cta:hover {
    border-color: rgba(200, 169, 110, 0.5);
    transform: translateY(-3px);
    box-shadow:
        0 8px 32px rgba(200, 169, 110, 0.15),
        0 16px 48px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    background: linear-gradient(
        135deg,
        rgba(200, 169, 110, 0.18) 0%,
        rgba(255, 255, 255, 0.1) 40%,
        rgba(200, 169, 110, 0.12) 100%
    );
}

.hero-cta:hover::before {
    background:
        radial-gradient(ellipse 120% 80% at 20% 20%, rgba(255, 255, 255, 0.22), transparent 50%),
        radial-gradient(ellipse 100% 60% at 80% 80%, rgba(200, 169, 110, 0.15), transparent 50%);
}

.hero-cta:hover::after {
    transform: translate(30%, 30%);
}

.hero-cta-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.hero-note {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 1.1rem;
    border: 1px solid rgba(200, 169, 110, 0.25);
    border-radius: 50px;
    background: rgba(20, 10, 6, 0.35);
    backdrop-filter: blur(10px) saturate(1.3);
    -webkit-backdrop-filter: blur(10px) saturate(1.3);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.8; transform: scaleY(1); }
    50% { opacity: 0.2; transform: scaleY(0.6); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SPLIT CONTENT (HOME ATMOSPHERE) ===== */
.section-space {
    padding: 8rem 0;
}

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

.split-text {
    max-width: 480px;
}

.split-images {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 1rem;
}

.split-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.split-img img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.split-img:hover img {
    transform: scale(1.04);
}

.split-img--main {
    aspect-ratio: 4 / 5;
}

.split-img--accent {
    aspect-ratio: 3 / 4;
    margin-top: 2rem;
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.25rem 1rem;
    background: linear-gradient(0deg, rgba(26, 18, 13, 0.8) 0%, transparent 100%);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold-light);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s;
}

.split-img:hover .img-caption {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 800px) {
    .split-content {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

/* ===== CTA SECTION ===== */
.section-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Backwards compat */
.cta-strip {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content,
.cta-inner {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 0.75rem;
}

.cta-inner p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-actions,
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* ===== PAGE BACKGROUND WRAPPER ===== */
.page-bg {
    position: relative;
}

.page-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--page-bg-image, none) center / cover no-repeat fixed;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.page-bg > * {
    position: relative;
    z-index: 1;
}

/* ===== LIQUID GLASS HEADER ===== */
.glass-header {
    display: inline-block;
    padding: 2rem 2.5rem;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.07),
        rgba(255, 255, 255, 0.02) 40%,
        rgba(200, 169, 110, 0.04) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.res-header,
.about-intro,
.contact-section > .content-container > .contact-grid {
    position: relative;
    z-index: 1;
}

.res-header .section-heading,
.res-step-heading {
    font-family: 'FTLTLT', var(--font-display);
    position: relative;
    color: #dcd4c4;
    text-align: center;
}
.res-step-heading {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
}
.res-header .section-desc,
.about-intro .section-heading {
    font-family: 'FTLTLT', var(--font-display);
    position: relative;
}

.res-header,
.about-intro {
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero--short {
    min-height: 0;
    padding: 6rem 2rem 0;
}

.page-hero .hero-bg::after {
    background:
        linear-gradient(180deg, rgba(42, 20, 9, 0.6) 0%, rgba(42, 20, 9, 0.4) 40%, rgba(42, 20, 9, 0.85) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    animation: fadeUp 0.6s ease-out;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin: 0;
}

.page-hero-sub {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.75rem;
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 300;
}

/* ===== ABOUT PAGE ===== */
.about-section {
    padding: 8rem 0 1.5rem;
}

.about-intro {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    background: none;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.about-intro .section-heading {
    font-family: 'FTLTLT', var(--font-display);
    margin-bottom: 2rem;
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.25rem;
    text-align: justify;
}

.chef-section { padding: 0 0 2rem; }

.chef-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    max-width: 570px;
    margin: 0 auto;
}

.chef-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chef-image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chef-info .section-label,
.chef-info .label-sm { margin-bottom: 0.5rem; text-align: center; display: block; }

.chef-name {
    font-family: 'FTLTLT', var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 0.25rem;
}

.chef-title-text {
    font-family: 'FTLTLT', var(--font-display);
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-style: normal;
    text-align: center;
}

.chef-bio {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.9;
    text-align: justify;
}

@media (min-width: 700px) {
    .chef-card { grid-template-columns: auto 1fr; }
    .chef-image-placeholder { width: 220px; height: 220px; }
}

/* ===== GALLERY PAGE ===== */
.gallery-section { padding: 8rem 0 6rem; }

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16 / 10;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s;
}

.gallery-card:hover img {
    transform: scale(1.04);
    filter: brightness(0.75);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26, 18, 13, 0.7) 0%, transparent 40%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-card:hover .gallery-card-overlay { opacity: 1; }

.gallery-card-overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
}

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

@media (min-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(26, 18, 13, 0.95);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox-close {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    background: none; border: none;
    color: var(--text-secondary);
    cursor: pointer; z-index: 2;
    transition: color 0.2s;
}

.lightbox-close:hover { color: var(--gold); }

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 18, 13, 0.5);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer; z-index: 2;
    transition: all 0.25s;
}

.lightbox-prev:hover, .lightbox-next:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-content {
    max-width: 90vw; max-height: 85vh;
    display: flex; flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%; max-height: 78vh;
    object-fit: contain; border-radius: var(--radius);
}

.lightbox-caption {
    margin-top: 1rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
}

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 8rem 0 6rem; }

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

.contact-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.015) 40%,
        rgba(200, 169, 110, 0.03) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    text-align: center;
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-card:hover {
    border-color: rgba(200, 169, 110, 0.25);
    transform: translateY(-2px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-icon {
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-card a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-card a:hover { color: var(--gold); }

.contact-note {
    margin-top: 0.5rem;
    font-size: 0.78rem !important;
    color: var(--gold) !important;
    font-style: italic;
    font-family: var(--font-display);
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

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

@media (min-width: 900px) {
    .contact-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== MENUS PAGE ===== */
.menu-page-section { padding: 3rem 0 6rem; background: var(--bg-deep); }

/* Menu Landing Cards */
.menu-landing {
    padding: 2rem 0 3rem;
}
.menu-landing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    max-width: 480px;
    margin: 0 auto;
}
.menu-landing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(
        135deg,
        rgba(222, 213, 196, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(222, 213, 196, 0.04) 100%
    );
    border: 1px solid rgba(222, 213, 196, 0.1);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    text-align: center;
}
.menu-landing-card:hover {
    border-color: rgba(222, 213, 196, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(
        135deg,
        rgba(222, 213, 196, 0.1) 0%,
        rgba(255, 255, 255, 0.04) 50%,
        rgba(222, 213, 196, 0.07) 100%
    );
}
.menu-landing-card svg {
    color: var(--gold);
    opacity: 0.7;
    transition: opacity 0.3s;
}
.menu-landing-card.active {
    border-color: var(--gold);
    background: linear-gradient(
        135deg,
        rgba(222, 213, 196, 0.1) 0%,
        rgba(255, 255, 255, 0.04) 50%,
        rgba(222, 213, 196, 0.07) 100%
    );
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.menu-landing-title {
    font-family: 'FTLTLT', var(--font-display);
    font-size: 1.5rem;
    color: #ded5c4;
    font-weight: 400;
}
.menu-landing-time {
    font-family: 'AeonikPro', var(--font-body);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* Active menu view */
.menu-active {
    margin-bottom: 1rem;
}

/* PDF Link */
.menu-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'AeonikPro', var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold-dark);
    text-decoration: none;
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    margin-left: auto;
}
.menu-pdf-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(200, 169, 110, 0.06);
}
.menu-pdf-bottom {
    text-align: center;
    padding: 2rem 0 0;
}

.menu-cats {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    padding: 0 0.5rem;
}

.menu-cat-btn {
    padding: 0.55rem 1.25rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    font-family: 'AeonikPro', var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}

.menu-cat-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.menu-cat-btn.active {
    background: var(--gold);
    color: var(--bg-deep);
    border-color: var(--gold);
}

/* Subcategory buttons */
.menu-subcats {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.menu-sub-btn {
    padding: 0.65rem 1.6rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    font-family: 'AeonikPro', var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}
.menu-sub-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.menu-sub-btn.active {
    background: rgba(222, 213, 196, 0.12);
    color: var(--gold);
    border-color: var(--gold);
}

/* Menu search */
.menu-search-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    max-width: 320px;
    margin: 0 auto 2.5rem;
    padding: 0.6rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    transition: border-color 0.2s;
}
.menu-search-wrap:focus-within {
    border-color: var(--gold);
}
.menu-search-wrap svg {
    color: var(--text-muted);
    flex-shrink: 0;
}
.menu-search {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-family: 'AeonikPro', var(--font-body);
    font-size: 0.82rem;
    font-weight: 300;
}
.menu-search::placeholder {
    color: var(--text-muted);
}

.menu-cat-section {
    margin-bottom: 3.5rem;
}

.menu-cat-header {
    text-align: center;
    margin-bottom: 2rem;
}

.menu-cat-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.04em;
}

.menu-cat-time {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    letter-spacing: 0.08em;
    font-style: italic;
    font-family: var(--font-display);
}

.menu-cat-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 1rem auto 0;
    opacity: 0.4;
}

.menu-items {
    display: flex;
    flex-direction: column;
}

.menu-text-item {
    padding: 1.15rem 0.75rem;
    border-bottom: 1px solid var(--border);
    border-radius: 6px;
    transition: background 0.2s ease;
}

.menu-text-item:hover {
    background: rgba(200, 169, 110, 0.04);
}

.menu-text-item:first-child {
    border-top: 1px solid var(--border);
}

.menu-text-top {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.menu-text-name {
    font-family: 'AeonikPro', var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    flex-shrink: 0;
    letter-spacing: 0.01em;
}

.menu-text-tags {
    font-family: 'AeonikPro', var(--font-body);
    font-size: 0.62rem;
    font-weight: 400;
    color: var(--gold);
    margin-left: 0.3rem;
    opacity: 0.7;
}

.menu-text-dots {
    flex: 1;
    border-bottom: 1px dotted var(--text-muted);
    min-width: 30px;
    margin-bottom: 4px;
    opacity: 0.2;
}

.menu-text-price {
    font-family: 'AeonikPro', var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold);
    flex-shrink: 0;
}

.menu-text-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    line-height: 1.6;
    font-style: normal;
    font-family: 'AeonikPro', var(--font-body);
    font-weight: 300;
    padding-left: 0.1rem;
}

.menu-subsection { margin-bottom: 2.5rem; }

.menu-sub-title {
    font-family: 'AeonikPro', var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    letter-spacing: 0.04em;
    opacity: 0.85;
}

.menu-allergens {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 1rem;
    border-top: 1px solid var(--border);
}

.menu-allergens p {
    font-family: 'AeonikPro', var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 2;
}

.menu-allergens strong { color: var(--text-secondary); }

.menu-note {
    text-align: center;
    padding: 1.5rem 0 0;
}

.menu-note p {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: normal;
    font-family: 'AeonikPro', var(--font-body);
    line-height: 1.8;
}

.menu-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

/* ===== RESERVATION PAGE ===== */
.reserve-page-bg {
    position: relative;
    background: var(--bg-deep);
}

.reserve-page-bg::before {
    display: none;
}

.reserve-page-bg > * {
    position: relative;
    z-index: 1;
}

.reservation {
    padding: 4rem 0 6rem;
}

.res-header {
    text-align: center;
}

.booking-card {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.step {
    display: none;
    padding: 2rem 1.5rem;
    animation: fadeUp 0.4s ease-out;
}

.step-active { display: block; }

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.step-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 2px solid var(--text-muted);
    transition: all 0.3s;
    flex-shrink: 0;
}

.step-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 12px var(--gold-glow);
}

.step-dot.done {
    background: var(--green);
    border-color: var(--green);
}

.step-line {
    width: 60px; height: 2px;
    background: var(--bg-elevated);
    transition: background 0.3s;
}

.step-line.filled { background: var(--green); }

.step-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-align: center;
}

.booking-summary-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(200, 169, 110, 0.08);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: var(--radius);
    padding: 0.6rem 1rem;
    margin-bottom: 1.25rem;
}

.bsb-item {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold);
}

.bsb-sep {
    color: rgba(200, 169, 110, 0.4);
    font-size: 0.7rem;
}

/* Fields */
.field { margin-bottom: 1.25rem; }

.field label {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.field .optional {
    color: var(--text-muted);
    font-weight: 300;
    text-transform: none;
    letter-spacing: normal;
}

.terms-content {
    max-width: 820px;
    margin: 0 auto;
    color: var(--text, #FAF9F6);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.08rem;
    line-height: 1.7;
}
.terms-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--gold, #C8A96E);
    margin: 2.2rem 0 0.75rem;
    letter-spacing: 0.3px;
}
.terms-content h3:first-child { margin-top: 0; }
.terms-content ul {
    margin: 0 0 1.2rem;
    padding-left: 1.25rem;
}
.terms-content li {
    margin-bottom: 0.55rem;
}
.terms-content li::marker { color: var(--gold, #C8A96E); }
.terms-content strong { color: var(--gold, #C8A96E); font-weight: 600; }
.terms-footer-note {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(200, 169, 110, 0.2);
    font-style: italic;
    color: var(--text-muted, rgba(250, 249, 246, 0.7));
    text-align: center;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 300;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
}

/* Fix browser autofill white background */
.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus,
.field textarea:-webkit-autofill,
.field select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px var(--bg-input) inset !important;
    -webkit-text-fill-color: var(--text) !important;
    border-color: var(--border) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.08);
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--text-muted);
}

/* Country picker button + dropdown */
.country-picker {
    position: relative;
}
.country-picker-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.country-picker-btn:hover,
.country-picker-btn:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.08);
}
.country-picker-btn.picker-error {
    border-color: var(--red) !important;
    box-shadow: 0 0 0 3px rgba(212, 91, 91, 0.15) !important;
}
.country-picker-btn.picker-error .country-picker-label {
    color: var(--red);
}
.country-picker-label {
    flex: 1;
    text-align: left;
}
.country-picker-caret {
    flex-shrink: 0;
    opacity: 0.6;
    transition: transform 0.2s;
}
.country-picker.open .country-picker-caret {
    transform: rotate(180deg);
}
.country-dropdown {
    display: none;
    position: fixed;
    width: 320px;
    max-height: 340px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    z-index: 9999;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    flex-direction: column;
    overflow: hidden;
}
.country-picker.open .country-dropdown {
    display: flex;
}
.country-dropdown-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.8rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}
.country-dropdown-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.85rem;
}
.country-dropdown-search input::placeholder {
    color: var(--text-muted);
}
.country-dropdown-list {
    overflow-y: auto;
    flex: 1;
}
.country-dropdown-section {
    padding: 0.5rem 0.8rem 0.25rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.7;
}
.country-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.8rem;
    font-size: 0.84rem;
    color: var(--text);
    cursor: pointer;
    transition: background 0.12s;
}
.country-dropdown-item:hover,
.country-dropdown-item.highlighted {
    background: rgba(200, 169, 110, 0.12);
}
.country-dropdown-item.selected {
    background: rgba(200, 169, 110, 0.2);
}
.country-dropdown-item .country-iso {
    font-weight: 600;
    min-width: 24px;
    font-size: 0.8rem;
    opacity: 0.7;
}
.country-dropdown-item .country-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.country-dropdown-item .country-dial {
    font-size: 0.8rem;
    opacity: 0.5;
    white-space: nowrap;
}

.field textarea { resize: vertical; min-height: 80px; }

/* Date input icon white */
.field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.field input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Fully Booked Banner */
.fully-booked-banner {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.2rem;
    margin-bottom: 1rem;
    background: rgba(212, 91, 91, 0.1);
    border: 1px solid rgba(212, 91, 91, 0.3);
    border-radius: var(--radius);
    color: #e8a0a0;
    font-size: 0.9rem;
    font-family: var(--font-body);
    line-height: 1.4;
}
.fully-booked-banner svg {
    flex-shrink: 0;
    color: var(--red);
}

/* Calendar Widget */
.cal {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 1rem;
    user-select: none;
}
.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}
.cal-month {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.cal-nav {
    background: none;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.cal-nav:hover:not(:disabled) {
    color: var(--gold);
    border-color: var(--gold);
}
.cal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 0.4rem;
}
.cal-weekdays span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    padding: 0.3rem 0;
}
.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}
.cal-day {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.85rem;
    border: none;
    background: none;
    cursor: default;
    transition: all 0.15s;
}
.cal-day-num { position: relative; z-index: 1; }
.cal-empty { visibility: hidden; }

/* Past dates */
.cal-past {
    color: var(--text-muted);
    opacity: 0.35;
}

/* Blocked / fully booked dates */
.cal-blocked {
    color: #e07070;
    background: rgba(212, 91, 91, 0.1);
    cursor: not-allowed;
}
.cal-blocked .cal-day-num {
    text-decoration: line-through;
    text-decoration-color: rgba(212, 91, 91, 0.5);
}
.cal-full-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--red);
    position: absolute;
    bottom: 4px;
}

/* Available dates */
.cal-available {
    color: var(--text);
    cursor: pointer;
    background: rgba(200, 169, 110, 0.04);
}
.cal-available:hover {
    background: rgba(200, 169, 110, 0.12);
    color: var(--gold-light);
}

/* Selected date */
.cal-selected {
    background: var(--gold) !important;
    color: var(--bg-deep) !important;
    font-weight: 600;
}
.cal-selected .cal-day-num { color: inherit; }

/* Today indicator */
.cal-today:not(.cal-selected) .cal-day-num {
    border-bottom: 2px solid var(--gold);
    padding-bottom: 1px;
}

/* Blocked date tooltip */
.cal-tooltip {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(212, 91, 91, 0.95);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 500;
    font-family: var(--font-body);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 10;
}
.cal-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: rgba(212, 91, 91, 0.95);
}
.cal-tooltip.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 480px) {
    .cal { padding: 0.75rem; }
    .cal-day { font-size: 0.8rem; }
}

/* Time Sections */
.time-sections {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.time-section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* Time Grid */
.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.time-btn {
    padding: 0.65rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s;
}

.time-btn:hover { border-color: var(--gold); color: var(--text); }

.time-btn.selected {
    background: rgba(200, 169, 110, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.time-btn.unavailable {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

/* Guest Selector */
/* Guest limit modal */
.guest-limit-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.guest-limit-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.guest-limit-modal {
    position: relative;
    background: var(--bg-deep);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    max-width: 360px;
    width: 90%;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s;
}
.guest-limit-overlay.active .guest-limit-modal {
    transform: translateY(0);
}
.guest-limit-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.3rem;
    transition: color 0.2s;
}
.guest-limit-close:hover {
    color: var(--text);
}
.guest-limit-modal h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.75rem;
}
.guest-limit-modal p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.guest-limit-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border: 1px solid rgba(200, 169, 110, 0.25);
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.12) 0%, rgba(255, 255, 255, 0.06) 40%, rgba(200, 169, 110, 0.08) 100%);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all 0.3s;
}
.guest-limit-call:hover,
.guest-limit-whatsapp:hover {
    border-color: rgba(200, 169, 110, 0.5);
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.18) 0%, rgba(255, 255, 255, 0.1) 40%, rgba(200, 169, 110, 0.12) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.guest-limit-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 50px;
    background: rgba(37, 211, 102, 0.08);
    color: #25d366;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 0.5rem;
}
.guest-limit-whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.6);
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.guest-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0.75rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.guest-btn {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.guest-btn:hover { border-color: var(--gold); color: var(--gold); }

.guest-limit-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--gold);
    margin-top: 0.4rem;
    padding: 0.3rem 0.6rem;
    background: rgba(200, 169, 110, 0.1);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 6px;
}

/* Seating Area Toggle */
.seating-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.seating-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 0.75rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s;
}

.seating-btn svg {
    opacity: 0.6;
    transition: opacity 0.2s;
}

.seating-btn:hover {
    border-color: var(--gold);
    color: var(--text);
}

.seating-btn:hover svg {
    opacity: 1;
}

.seating-btn.selected {
    background: rgba(200, 169, 110, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.seating-btn.selected svg {
    opacity: 1;
    stroke: var(--gold);
}

.seating-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.seating-btn-sub {
    font-size: 0.7rem;
    opacity: 0.6;
    font-weight: 400;
}

.seating-btn.disabled .seating-btn-sub {
    color: var(--red, #D45B5B);
    opacity: 1;
}

.guest-count {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    min-width: 3rem;
    text-align: center;
}

/* Booking Buttons */
.btn-next, .btn-confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 3rem;
    border: 1px solid rgba(200, 169, 110, 0.25);
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        rgba(200, 169, 110, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 40%,
        rgba(200, 169, 110, 0.08) 100%
    );
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    margin-top: 0.5rem;
    overflow: hidden;
    position: relative;
}

.btn-next:hover, .btn-confirm:hover {
    border-color: rgba(200, 169, 110, 0.5);
    transform: translateY(-3px);
    box-shadow:
        0 8px 32px rgba(200, 169, 110, 0.15),
        0 16px 48px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    background: linear-gradient(
        135deg,
        rgba(200, 169, 110, 0.18) 0%,
        rgba(255, 255, 255, 0.1) 40%,
        rgba(200, 169, 110, 0.12) 100%
    );
}

.btn-next::before, .btn-confirm::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background:
        radial-gradient(ellipse 120% 80% at 20% 20%, rgba(255, 255, 255, 0.15), transparent 50%),
        radial-gradient(ellipse 100% 60% at 80% 80%, rgba(200, 169, 110, 0.1), transparent 50%);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
.btn-next:hover::before, .btn-confirm:hover::before {
    background:
        radial-gradient(ellipse 120% 80% at 20% 20%, rgba(255, 255, 255, 0.22), transparent 50%),
        radial-gradient(ellipse 100% 60% at 80% 80%, rgba(200, 169, 110, 0.15), transparent 50%);
}

.btn-next svg, .btn-confirm svg {
    color: var(--gold-light);
    position: relative;
    z-index: 1;
}

.btn-confirm {
    text-transform: none;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.btn-next:disabled, .btn-confirm:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 1.25rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 0;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-back:hover { border-color: var(--text-muted); color: var(--text); }

.btn-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-row .btn-next,
.btn-row .btn-confirm { flex: 1; margin-top: 0; }

/* Review Card */
.review-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.review-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
}

.review-row + .review-row { border-top: 1px solid var(--border); }

.review-label { font-size: 0.78rem; color: var(--text-muted); }
.review-value { font-size: 0.85rem; font-weight: 400; color: var(--text); }

.review-note {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: var(--green-bg);
    border-radius: var(--radius);
    font-size: 0.78rem;
    color: var(--green);
    text-align: center;
    line-height: 1.5;
}

.review-note--pending {
    background: var(--amber-bg);
    color: var(--amber);
}

/* ===== EXISTING BOOKING BANNER ===== */
.existing-booking-banner {
    display: none;
    position: fixed;
    z-index: 90;
}

.existing-booking-banner.active {
    display: block;
    animation: bookingSlideIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Mobile: fixed bottom banner */
.existing-booking-banner {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
}

.existing-booking-inner {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    background: linear-gradient(
        135deg,
        rgba(26, 18, 13, 0.97),
        rgba(42, 20, 9, 0.97)
    );
    border-top: 1px solid var(--border-gold);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.3);
}

.existing-booking-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: 50%;
    color: var(--gold);
}

.existing-booking-info {
    flex: 1;
    min-width: 0;
}

.existing-booking-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.15rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.existing-booking-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem 0.5rem;
    font-size: 0.68rem;
    color: var(--text-secondary);
}

.existing-booking-ref {
    font-weight: 600;
    color: var(--gold);
    font-size: 0.72rem;
}

.existing-booking-status {
    flex-shrink: 0;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Banner nav (prev/next) */
.booking-banner-nav {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.booking-banner-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.booking-banner-arrow:hover {
    color: var(--gold);
    background: rgba(200, 169, 110, 0.12);
    border-color: rgba(200, 169, 110, 0.25);
}

.booking-banner-counter {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    min-width: 22px;
    text-align: center;
}

/* Minimize button */
.booking-banner-minimize {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    margin-left: 0.3rem;
    transition: all 0.2s;
}

.booking-banner-minimize:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.1);
}

/* Minimized state */
.existing-booking-banner.minimized .existing-booking-icon,
.existing-booking-banner.minimized .existing-booking-info,
.existing-booking-banner.minimized .existing-booking-status,
.existing-booking-banner.minimized .booking-banner-nav {
    display: none;
}

.existing-booking-banner.minimized .existing-booking-inner {
    padding: 0.6rem 1rem;
    gap: 0.5rem;
    justify-content: flex-end;
}

.existing-booking-banner.minimized .booking-banner-minimize {
    margin-left: 0;
}

.existing-booking-banner.minimized::after {
    content: 'Reservations';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    pointer-events: none;
}

@keyframes bookingSlideIn {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Desktop: floating popup bottom-right */
@media (min-width: 768px) {
    .existing-booking-banner {
        bottom: 1.5rem;
        right: 1.5rem;
        left: auto;
        max-width: 420px;
    }

    .existing-booking-inner {
        border: 1px solid var(--border-gold);
        border-radius: var(--radius-lg);
        box-shadow:
            0 8px 40px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    @keyframes bookingSlideIn {
        from { transform: translateY(20px) scale(0.95); opacity: 0; }
        to { transform: translateY(0) scale(1); opacity: 1; }
    }
}

/* ===== OVERLAYS ===== */
.overlay {
    position: fixed; inset: 0;
    background: rgba(42, 20, 9, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0; visibility: hidden;
    transition: all 0.3s;
    padding: 1.25rem;
}

.overlay.active { opacity: 1; visibility: visible; }

.success-card, .waitlist-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    max-width: 440px; width: 100%;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s;
}

.overlay.active .success-card,
.overlay.active .waitlist-card { transform: translateY(0) scale(1); }

.success-icon { width: 72px; height: 72px; margin: 0 auto 1.5rem; }
.success-icon svg { width: 100%; height: 100%; }

.success-circle {
    stroke: var(--green); stroke-width: 2;
    stroke-dasharray: 166; stroke-dashoffset: 166;
    animation: drawCircle 0.6s ease forwards;
}

.success-check {
    stroke: var(--green); stroke-width: 3;
    stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 48; stroke-dashoffset: 48;
    animation: drawCheck 0.3s 0.6s ease forwards;
}

@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

.success-title {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 400;
    margin-bottom: 0.5rem;
}

.success-msg {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem; line-height: 1.6;
}

.success-details {
    background: var(--bg-elevated);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.82rem;
}

.detail-row + .detail-row { border-top: 1px solid var(--border); }
.detail-label { color: var(--text-muted); }
.detail-value { font-weight: 400; }

.btn-done {
    width: 100%; padding: 0.9rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 0;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.8rem; font-weight: 400;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-done:hover { border-color: var(--gold); }

.waitlist-icon { color: var(--gold); margin-bottom: 1rem; }

.waitlist-card h2 {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 400;
    margin-bottom: 0.5rem;
}

.waitlist-card p {
    font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6;
}

.waitlist-card .field { text-align: left; }

/* Seat limit overlay */
.seat-limit-icon { color: #f39c12; margin-bottom: 1rem; }

.seat-limit-details {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    margin-top: 1.25rem;
}

.sl-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
}

.sl-detail-row + .sl-detail-row {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.sl-detail-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.sl-detail-value {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
}

/* ===== FOOTER ===== */
.footer-divider {
    text-align: center;
    padding: 1rem 0 0;
    background: var(--bg-deep);
    color: var(--gold);
    opacity: 0.3;
}

.footer-ornament {
    width: 120px;
    height: 12px;
}

.site-footer {
    background: var(--bg-deep);
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand-link { display: inline-block; }

.footer-logo {
    height: 26px; width: auto;
    max-width: 110px;
    display: block;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    font-family: var(--font-display);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.footer-social a {
    color: var(--text-muted);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

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

.footer-col h4 {
    font-family: 'AeonikPro', var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.footer-col p {
    font-family: 'AeonikPro', var(--font-body);
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-col a {
    font-family: 'AeonikPro', var(--font-body);
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        text-align: left;
    }

    .footer-brand-col { align-items: flex-start; }
    .footer-social { justify-content: flex-start; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ===== SELECTION ===== */
::selection {
    background: rgba(200, 169, 110, 0.25);
    color: var(--text);
}

/* Dinner full-service duration notice — shown above guest count when a
   18:00–20:00 slot is selected. Full-width gold banner, dark text. */
.duration-notice {
    background: var(--gold);
    color: var(--bg);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 10px 16px;
    margin: 0 0 14px;
    border-radius: var(--radius, 12px);
    text-align: center;
    box-shadow: 0 2px 8px rgba(200, 169, 110, 0.3);
}
.duration-notice strong {
    font-weight: 700;
}
