/* =====================================================
   SEEN KITCHEN & LOUNGE — Stylesheet
   ===================================================== */

/* ---- Layout utility ---- */
.centered-header {
    text-align: center;
}

/* ---- Variables ---- */
:root {
    --black:        #080808;
    --black-light:  #101010;
    --black-card:   #141414;
    --black-border: #1c1c1c;
    --gold:         #C4973B;
    --gold-light:   #E0B96A;
    --gold-dark:    #8A6A24;
    --gold-pale:    #F0DCA0;
    --gold-dim:     rgba(196, 151, 59, 0.15);
    --white:        #FFFFFF;
    --off-white:    #F5F0E8;
    --gray:         #888888;
    --gray-light:   #555555;

    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body:    'Montserrat', 'Helvetica Neue', sans-serif;

    --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);

    --section-pad:  120px;
    --container:    1200px;
}

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

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

body {
    background: var(--black);
    color: var(--off-white);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: default;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
}

body.loading { overflow: hidden; }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* =====================================================
   LOADER
   ===================================================== */

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: background 0.5s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}

.nav.scrolled {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 1px 0 var(--black-border);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    max-width: 160px;
    mix-blend-mode: screen;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-logo-design {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.nld-seen {
    font-family: 'Cinzel', 'Trajan Pro', serif;
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    background: linear-gradient(
        180deg,
        #7A5818 0%,
        #C9973A 25%,
        #F0D870 48%,
        #FFFACC 52%,
        #E8C060 62%,
        #C9973A 78%,
        #7A5818 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nld-sub {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.2rem;
}

.nld-line {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--gold-dark);
    flex-shrink: 0;
}

.nld-text {
    font-family: var(--font-body);
    font-size: 0.36rem;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.05rem;
}

.nav-link {
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.75);
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { width: 100%; }
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { color: var(--gold-light); }

.nav-cta {
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    padding: 0.55rem 1.2rem;
    border: 1px solid var(--gold);
    margin-left: 0.4rem;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.nav-cta:hover {
    background: transparent;
    color: var(--gold-light);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s var(--ease);
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    /* Base colour matched to the logo's dark background */
    background: #080706;
}

/* Grain / leather texture — matches the logo surface */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='0.12'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    opacity: 1;
    mix-blend-mode: soft-light;
}

/* Spotlight from top-centre + edge vignette — matches the logo's lighting */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 45% at 50% -5%, rgba(240, 230, 200, 0.07) 0%, transparent 100%),
        radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(4, 3, 2, 0.65) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 0 1.5rem;
    animation: fadeInUp 1.2s 0.8s var(--ease-out) both;
}

.hero-logo-wrap {
    margin-bottom: 1.8rem;
}

.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.1rem;
}

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

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

.hero-orn-gem {
    color: var(--gold);
    font-size: 0.38rem;
    line-height: 1;
    opacity: 0.9;
}

.hero-descriptor {
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.46em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.4rem;
}

.hero-logo-img {
    width: min(420px, 78vw);
    height: auto;
    margin: 0 auto;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 80px rgba(196, 151, 59, 0.45));
    display: block;
}

.hero-logo-text {
    flex-direction: column;
    align-items: center;
}

.hero-title-wrap {
    position: relative;
    display: inline-block;
}

.hero-title-wrap::after {
    content: '';
    position: absolute;
    top: 4%;
    right: 16%;
    width: clamp(18px, 3vw, 42px);
    height: clamp(18px, 3vw, 42px);
    background: radial-gradient(circle,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 248, 200, 0.85) 20%,
        rgba(255, 220, 100, 0.45) 45%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    animation: shinePulse 3.5s ease-in-out infinite;
    filter: blur(1px);
}

.hero-title {
    font-family: 'Cinzel', 'Trajan Pro', serif;
    font-size: clamp(4.5rem, 14vw, 11rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    line-height: 1;
    background: linear-gradient(
        180deg,
        #5A3D10 0%,
        #A07828 12%,
        #C9973A 25%,
        #E8C060 38%,
        #F8E898 48%,
        #FFFACC 52%,
        #F0D870 58%,
        #D4A840 70%,
        #B08030 82%,
        #8A6020 92%,
        #5A3D10 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 45px rgba(196, 151, 59, 0.45));
}

@keyframes shinePulse {
    0%, 100% { opacity: 0.9; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(0.85); }
}

.hero-divider-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.hero-divider-line span:first-child,
.hero-divider-line span:last-child {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

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

.hero-subtitle {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.55em;
    color: var(--gold);
    width: auto;
    height: auto;
    background: none;
}

.hero-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.15rem, 2.7vw, 1.65rem);
    font-weight: 300;
    color: rgba(245, 240, 232, 0.9);
    margin-bottom: 0.9rem;
    letter-spacing: 0.04em;
}

.hero-quote {
    font-family: var(--font-body);
    font-size: clamp(0.58rem, 1.2vw, 0.7rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.32em;
    color: var(--gold-light);
    margin-bottom: 2.8rem;
    text-transform: uppercase;
}

.hero-ctas {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
    opacity: 0.55;
    transition: opacity 0.3s;
    animation: fadeInUp 1s 2s var(--ease-out) both;
}

.hero-scroll:hover { opacity: 1; }

.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.hero-scroll-arrow {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollArrow 2s ease infinite;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: 1px solid transparent;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 0 30px rgba(196, 151, 59, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--off-white);
    border-color: rgba(245, 240, 232, 0.3);
}

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

.btn-outline-gold {
    background: transparent;
    color: var(--gold-light);
    border-color: var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold-dim);
    box-shadow: 0 0 20px rgba(196, 151, 59, 0.15);
}

/* =====================================================
   SHARED SECTION STYLES
   ===================================================== */
.section {
    padding: var(--section-pad) 0;
}

.section-label {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: block;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.section-sub {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.9;
    margin: 0 auto 2.5rem;
}

.gold-rule {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    margin: 2rem 0;
}

.gold-rule.centered {
    margin: 2rem auto;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about {
    background: var(--black-light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 151, 59, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-body {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 1.4rem;
    line-height: 1.9;
}

.about-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--gold-light);
    border-left: 1px solid var(--gold-dark);
    padding-left: 1.5rem;
    margin-top: 2rem;
    line-height: 1.6;
}

.about-image-frame {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-inner {
    text-align: center;
    color: var(--gray-light);
}

.about-image-icon {
    font-size: 2rem;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 0.8rem;
}

.about-image-inner p {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-frame-accent {
    position: absolute;
    width: 40px;
    height: 40px;
}

.about-frame-accent.top-left {
    top: -10px;
    left: -10px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}

.about-frame-accent.bottom-right {
    bottom: -10px;
    right: -10px;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
}

.about-stat-row {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--black);
    border: 1px solid var(--black-border);
}

.about-stat {
    flex: 1;
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}

.about-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--black-border);
}

/* =====================================================
   AMBIANCE STRIP
   ===================================================== */

/* =====================================================
   CHEF SECTION
   ===================================================== */
.chef {
    background: var(--black-light);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
}

.chef-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.chef-container--reverse {
    direction: rtl;
}

.chef-container--reverse > * {
    direction: ltr;
}

.chef-visual {
    position: relative;
}

.chef-image-frame {
    position: relative;
}

.chef-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.chef-photo-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--gray-light);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.chef-photo-placeholder .about-image-icon {
    font-size: 2rem;
    color: var(--gold-dark);
}

.chef-credential {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--black), #1a1408);
    border-top: 1px solid var(--gold-dark);
    padding: 1.2rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.chef-credential-icon {
    color: var(--gold);
    font-size: 0.5rem;
    margin-bottom: 0.2rem;
}

.chef-credential span:nth-child(2) {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.chef-credential-venue {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--off-white);
    line-height: 1.2;
}

.chef-credential-location {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}

.chef-instagram {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.6rem;
    background: var(--black);
    border-top: 1px solid var(--black-border);
    color: var(--gray);
    transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.chef-instagram:hover {
    color: var(--gold-light);
    background: var(--black-card);
}

.chef-ig-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: color 0.3s var(--ease);
}

.chef-ig-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.chef-ig-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--off-white);
    transition: color 0.3s var(--ease);
}

.chef-instagram:hover .chef-ig-label {
    color: var(--gold-light);
}

.chef-ig-handle {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    color: var(--gray-light);
}

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

.chef-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
}

.chef-tag {
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-dark);
    padding: 0.4rem 0.9rem;
    background: var(--gold-dim);
}

@media (max-width: 900px) {
    .chef-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .chef-visual { max-width: 460px; margin: 0 auto; width: 100%; }
    /* Reset reversed layout when collapsed to single column */
    .chef-container--reverse { direction: ltr; }
    /* Show image before text on mobile, matching Valter's layout */
    .chef-container--reverse .chef-visual { order: -1; }
}

/* =====================================================
   AMBIANCE STRIP
   ===================================================== */
.ambiance-strip {
    background: var(--black);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
    padding: 2.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 100%;
    overflow: hidden;
}

.ambiance-item {
    flex: 1;
    text-align: center;
    max-width: 240px;
    padding: 0 2rem;
}

.ambiance-icon {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.7rem;
}

.ambiance-title {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.65);
}

.ambiance-divider {
    width: 1px;
    height: 40px;
    background: var(--black-border);
    flex-shrink: 0;
}

/* =====================================================
   MENU
   ===================================================== */
.menu {
    background: var(--black);
    position: relative;
}

.menu-header {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 1px solid var(--black-border);
    max-width: var(--container);
    margin: 0 auto 3.5rem;
    padding: 0 2.5rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray);
    padding: 1rem 2rem;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    font-style: italic;
}

.menu-tab.active,
.menu-tab:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold);
}

.menu-panel {
    display: none;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2.5rem;
    animation: fadeIn 0.4s var(--ease);
}

.menu-panel.active { display: block; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--black-border);
}

.menu-item {
    padding: 2rem 2.2rem;
    border-bottom: 1px solid var(--black-border);
    border-right: 1px solid var(--black-border);
    transition: background 0.3s;
    position: relative;
}

.menu-item:nth-child(even) { border-right: none; }
.menu-item:nth-last-child(-n+2) { border-bottom: none; }

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease);
}

.menu-item:hover { background: rgba(196, 151, 59, 0.03); }
.menu-item:hover::before { width: 100%; }

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
}

.menu-item-price {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-item-desc {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
}

.menu-note {
    text-align: center;
    font-size: 0.7rem;
    color: var(--gray-light);
    letter-spacing: 0.1em;
    margin-top: 2rem;
    font-style: italic;
}

.menu-section { margin-bottom: 2.5rem; }
.menu-section:last-child { margin-bottom: 0; }

.menu-section-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--black-border);
    opacity: 0.85;
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery {
    background: var(--black-light);
}

.gallery-header {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
}

/* ── Gallery Carousel ─────────────────────────────── */
.gallery-carousel {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 4.5rem;
}

.gallery-track {
    overflow: hidden;
}

.gallery-page {
    display: none;
}

.gallery-page.active {
    display: block;
    animation: galleryFadeIn 0.45s ease;
}

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

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* Center lone orphan in last row of 3-col grid (7 items → centres item 7) */
.gallery-page-grid:not(.gallery-page-grid--four) .gallery-item:last-child:nth-child(3n+1) {
    grid-column: 2 / 3;
}

.gallery-page-grid--four {
    grid-template-columns: repeat(2, 1fr);
    max-width: 66.66%;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.65s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(196, 151, 59, 0.1);
    border: 1px solid rgba(196, 151, 59, 0.35);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s, opacity 0.25s;
    z-index: 5;
}

.gallery-arrow:hover {
    background: rgba(196, 151, 59, 0.25);
    border-color: var(--gold);
}

.gallery-arrow:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.gallery-arrow--prev { left: 0; }
.gallery-arrow--next { right: 0; }

/* Dots */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.8rem;
}

.gallery-dot {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(196, 151, 59, 0.25);
    border: none;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
    padding: 0;
}

.gallery-dot.active {
    background: var(--gold);
    width: 44px;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(196,151,59,0.04) 0%, transparent 70%);
}

.gallery-item:hover .gallery-placeholder {
    border-color: var(--gold-dark);
}

.gallery-icon {
    font-size: 1.5rem;
    color: var(--gold-dark);
    display: block;
}

.gallery-placeholder span:last-child {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray-light);
}

/* =====================================================
   THE LOUNGE
   ===================================================== */
.lounge {
    position: relative;
    background: var(--black);
    overflow: hidden;
    text-align: center;
}

.lounge-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(196, 151, 59, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 0% 60%, rgba(80, 40, 120, 0.06) 0%, transparent 45%),
        radial-gradient(ellipse at 100% 60%, rgba(80, 40, 120, 0.06) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 100%, rgba(196, 151, 59, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #060606 0%, #080508 50%, #060606 100%);
    pointer-events: none;
}

.lounge-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.lounge-content {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2.5rem;
}

.lounge-intro {
    margin-bottom: 5rem;
}

.lounge-pills {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.lounge-pill {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-dark);
    padding: 0.4rem 1.1rem;
    background: rgba(196, 151, 59, 0.06);
}

.lounge-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.5);
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.lounge-time-badge strong { color: var(--gold-light); font-weight: 500; }

.lounge-time-icon {
    font-size: 0.45rem;
    color: var(--gold);
}

/* Vibe Pillars */
.lounge-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--black-border);
    border: 1px solid var(--black-border);
    margin-bottom: 5rem;
    text-align: left;
}

.lounge-pillar {
    background: var(--black-card);
    padding: 2.5rem;
    position: relative;
    transition: background 0.3s;
}

.lounge-pillar:hover { background: rgba(196, 151, 59, 0.04); }

.lounge-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.5s var(--ease);
}

.lounge-pillar:hover::before { width: 100%; }

.pillar-icon {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: block;
}

.pillar-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.pillar-body {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.85;
}

/* Events Header */
.lounge-events-header {
    margin-bottom: 2.5rem;
}

.lounge-events-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5rem;
}

/* Night Cards */
.lounge-nights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 4rem;
    text-align: left;
}

.night-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s, transform 0.35s var(--ease);
}

.night-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}

.night-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-4px);
}

.night-card:hover::before { opacity: 1; }

.night-card.featured {
    border-color: var(--gold-dark);
    background: linear-gradient(160deg, rgba(196,151,59,0.06) 0%, var(--black-card) 60%);
}

.night-card.featured::before { opacity: 1; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

.night-featured-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    padding: 0.3rem 0.7rem;
}

.night-card-date {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.night-day {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
}

.night-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
    color: rgba(245, 240, 232, 0.15);
    line-height: 1;
}

.night-genre-tag {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.4rem;
}

.night-dj {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.night-desc {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
}

.night-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--black-border);
    font-size: 0.68rem;
    font-weight: 300;
    color: var(--gray-light);
    letter-spacing: 0.08em;
}

.night-card-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    margin-top: auto;
}

.night-status {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.night-status.coming-soon { color: var(--gray-light); }
.night-status.live { color: #4CAF50; }

/* Follow CTA */
.lounge-follow {
    border-top: 1px solid var(--black-border);
    padding-top: 3rem;
}

.lounge-follow p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.lounge-follow-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .lounge-nights { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
    .lounge-pillars { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .lounge-content { padding: 0 1.5rem; }
    .lounge-nights { max-width: 100%; }
    .night-card-cta { flex-direction: row; align-items: center; flex-wrap: wrap; }
}

/* =====================================================
   RESERVATIONS
   ===================================================== */
.reservations {
    position: relative;
    background: var(--black);
    text-align: center;
    overflow: hidden;
}

.reservations-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(196, 151, 59, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse at 0% 100%, rgba(196, 151, 59, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(196, 151, 59, 0.04) 0%, transparent 50%);
}

.reservations-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold-dark));
}

.reservations-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.opentable-container {
    margin-top: 3rem;
}

.ot-widget-wrap {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    min-height: 220px;
}

.ot-widget-wrap iframe {
    max-width: 100%;
}

.ot-widget-area {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    min-height: 220px;
}

.opentable-placeholder {
    border: 1px solid var(--black-border);
    padding: 3.5rem;
    background: var(--black-card);
    position: relative;
    overflow: hidden;
}

.opentable-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.opentable-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
}

.opentable-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.opentable-sub {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 420px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.opentable-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.opentable-note {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-light);
}

/* =====================================================
   PRIVATE EVENTS
   ===================================================== */
.events {
    background: var(--black-light);
    position: relative;
}

.events-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.events-image-frame {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.events-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--gray-light);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.8;
}

.events-frame-deco {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(196, 151, 59, 0.15);
    pointer-events: none;
}

.events-features {
    list-style: none;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.events-features li {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.7);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-dot {
    color: var(--gold);
    font-size: 0.55rem;
    flex-shrink: 0;
}

/* =====================================================
   CATERING
   ===================================================== */
.catering {
    background: var(--black);
    position: relative;
}

.catering-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.catering-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .catering-ctas { flex-direction: column; }
    .catering-ctas .btn { width: 100%; max-width: 100%; text-align: center; }
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
    background: var(--black);
}

.contact-header {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2.5rem;
    margin-bottom: 4rem;
}

.contact-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-block-title {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.contact-block-body {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-link {
    display: block;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.55);
    transition: color 0.3s;
    margin-bottom: 0.3rem;
}

.contact-link:hover { color: var(--gold-light); }

.hours-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.35rem 2rem;
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.65);
}

.hours-grid span:nth-child(odd) { color: rgba(245, 240, 232, 0.45); }
.hours-grid span:nth-child(even) { text-align: right; color: rgba(245, 240, 232, 0.7); }

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s var(--ease);
}

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

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: var(--gold-dim);
}

.contact-map {
    border: 1px solid var(--black-border);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(90%) contrast(0.8) sepia(20%);
    opacity: 0.75;
    transition: opacity 0.3s;
}

.contact-map:hover iframe { opacity: 0.9; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--black);
    border-top: 1px solid var(--black-border);
    padding: 4rem 2.5rem 2rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin: 0 auto;
    mix-blend-mode: screen;
    opacity: 0.9;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-align: center;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.footer-logo-text small {
    display: block;
    font-size: 0.45em;
    letter-spacing: 0.55em;
    font-weight: 300;
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--gray-light);
}

.footer-mid {
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 2.5rem;
}

.footer-nav a {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-light);
    transition: color 0.3s;
}

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

.footer-rule {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    margin: 0 auto 1.5rem;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom-row p {
    font-size: 0.7rem;
    color: var(--gray-light);
    letter-spacing: 0.05em;
}

/* =====================================================
   RESERVATION FORM
   ===================================================== */
.res-form-wrap {
    max-width: 780px;
    margin: 0 auto;
}

.res-form {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    padding: 3rem;
    position: relative;
}

.res-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.res-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.res-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.res-field--full {
    margin-bottom: 1.5rem;
}

.res-label {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.res-input {
    background: var(--black);
    border: 1px solid var(--black-border);
    color: var(--off-white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 300;
    padding: 0.85rem 1rem;
    width: 100%;
    transition: border-color 0.3s var(--ease);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.res-input:focus {
    border-color: var(--gold-dark);
}

.res-input::placeholder {
    color: var(--gray-light);
    font-weight: 300;
}

.res-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.res-select option {
    background: var(--black-card);
    color: var(--off-white);
}

input[type="date"].res-input::-webkit-calendar-picker-indicator {
    filter: invert(0.6);
    cursor: pointer;
}

.res-textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.7;
}

.res-submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1.1rem;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
}

.res-note {
    text-align: center;
    font-size: 0.68rem;
    font-weight: 300;
    color: var(--gray-light);
    letter-spacing: 0.05em;
    margin-top: 1.2rem;
    font-style: italic;
    line-height: 1.7;
}

/* Success state */
.res-success {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--black-card);
    border: 1px solid var(--gold-dark);
    position: relative;
}

.res-success::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.res-success-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.res-success-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.res-success-body {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Mobile */
@media (max-width: 768px) {
    .res-form { padding: 2rem 1.5rem; }
    .res-row { grid-template-columns: 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
    .res-field--full { margin-bottom: 1.2rem; }
}

/* =====================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* =====================================================
   KEYFRAME ANIMATIONS
   ===================================================== */
@keyframes shimmerText {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes expandLine {
    from { width: 0; }
    to   { width: 120px; }
}

@keyframes scrollArrow {
    0%   { transform: scaleY(1); transform-origin: top; opacity: 1; }
    60%  { transform: scaleY(1); opacity: 0.2; }
    100% { transform: scaleY(1); opacity: 1; }
}

@keyframes particleFloat {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}

/* =====================================================
   RESPONSIVE — Tablet
   ===================================================== */
@media (max-width: 1024px) {
    :root { --section-pad: 80px; }

    .about-container,
    .events-container { grid-template-columns: 1fr; gap: 3rem; }

    .about-visual { order: -1; }
    .about-image-frame { aspect-ratio: 16/9; }

    .contact-container { grid-template-columns: 1fr; }
    .contact-map { aspect-ratio: 16/9; }

    /* Single column — remove any side borders from grid layout */
    .menu-grid { grid-template-columns: 1fr; }
    .menu-item { border-right: none !important; }

    /* ---- Navigation → drawer on tablet & iPad portrait ---- */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        height: 100dvh;
        width: min(320px, 82vw);
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.6rem;
        border-left: 1px solid var(--black-border);
        transition: right 0.4s var(--ease);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-links.open { right: 0; }
    .nav-link {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .nav-link.nav-cta {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        color: var(--black);
    }
    .nav-hamburger { display: flex; z-index: 1000; position: relative; }
    .nav-logo-img { height: 40px; width: auto; max-width: 140px; }
}

/* =====================================================
   RESPONSIVE — Mobile
   ===================================================== */
@media (max-width: 768px) {
    :root { --section-pad: 60px; }

    /* ---- Navigation ---- */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        height: 100dvh;
        width: min(300px, 84vw);
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.6rem;
        border-left: 1px solid var(--black-border);
        transition: right 0.4s var(--ease);
        z-index: 999;
    }

    .nav-links.open { right: 0; }

    .nav-link {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* CTA button in mobile menu — full width, centred, no desktop margin */
    .nav-link.nav-cta {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        color: var(--black);
    }

    .nav-hamburger { display: flex; z-index: 1000; position: relative; }
    .nav-logo-img { height: 36px; width: auto; max-width: 130px; }

    /* ---- Hero ---- */
    .hero { min-height: 560px; }
    .hero-logo-img { width: min(300px, 82vw); height: auto; }
    .hero-logo-wrap { margin-bottom: 1.2rem; }
    .hero-ornament { margin-bottom: 0.7rem; }
    .hero-descriptor { margin-bottom: 1rem; letter-spacing: 0.28em; }
    .hero-tagline { font-size: clamp(1rem, 4vw, 1.3rem); padding: 0 1rem; margin-bottom: 0.7rem; }
    .hero-quote { letter-spacing: 0.16em; font-size: 0.58rem; margin-bottom: 2rem; padding: 0 1rem; }
    .hero-ctas { flex-direction: column; align-items: center; gap: 0.7rem; }
    .hero-scroll { margin-top: 1.8rem; }

    /* ---- Buttons — proper touch targets ---- */
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* ---- About ---- */
    .about-container { padding: 0 1.5rem; }
    .about-stat-row {
        flex-direction: column;
        padding: 0;
        gap: 0;
        border-radius: 2px;
    }
    .about-stat-divider {
        width: 60%;
        height: 1px;
        margin: 0 auto;
    }
    .about-stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.2rem 1.4rem;
        text-align: center;
        gap: 0.3rem;
    }
    .stat-num {
        font-size: 1.15rem;
        flex-shrink: 0;
        margin-bottom: 0;
    }
    .stat-label {
        font-size: 0.64rem;
        letter-spacing: 0.14em;
        text-align: center;
    }
    .about-quote { font-size: 1.1rem; }

    /* ---- Chef ---- */
    .chef-container { padding: 0 1.5rem; gap: 2rem; }
    .chef-content { padding: 0 0 1rem; }
    .chef-credential { padding: 1rem 1.2rem; }
    .chef-credential-venue { font-size: 1rem; }
    .chef-instagram { padding: 0.8rem 1.2rem; }
    .chef-ig-label { font-size: 0.6rem; }
    .chef-tags { gap: 0.5rem; margin-top: 1.5rem; }
    .chef-tag { font-size: 0.55rem; padding: 0.4rem 0.75rem; }

    /* ---- Menu ---- */
    .menu-header,
    .menu-panel,
    .gallery-header,
    .contact-header { padding: 0 1.5rem; }

    /* Tabs scroll horizontally on mobile — no wrapping */
    .menu-tabs {
        padding: 0 1.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    .menu-tabs::-webkit-scrollbar { display: none; }
    .menu-tab {
        padding: 0.8rem 1.1rem;
        font-size: 0.62rem;
        white-space: nowrap;
        flex-shrink: 0;
        min-height: 44px;
    }

    .menu-item { padding: 1.2rem 1rem; }
    .menu-item-name { font-size: 0.85rem; }
    .menu-item-price { font-size: 0.85rem; }

    /* ---- Ambiance Strip ---- */
    .ambiance-strip { flex-wrap: wrap; gap: 1.5rem; padding: 2rem 1.5rem; }
    .ambiance-divider { display: none; }
    .ambiance-item { max-width: 45%; }

    /* ---- Gallery Carousel ---- */
    .gallery-carousel { padding: 0 3rem; }
    .gallery-page-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .gallery-page-grid--four { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
    .gallery-arrow { width: 38px; height: 38px; }

    /* ---- Chef reverse layout — reset direction on mobile (single column) ---- */
    .chef-container--reverse { direction: ltr; }

    /* ---- Lounge night cards ---- */
    .night-card { padding: 1.5rem; gap: 1rem; }
    .night-card-date { min-width: 52px; }
    .night-day { font-size: 0.55rem; }
    .night-num { font-size: 1.8rem; }
    .night-card-cta { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
    .lounge-pills { gap: 0.5rem; flex-wrap: wrap; }
    .lounge-pill { font-size: 0.6rem; padding: 0.4rem 1rem; }
    .lounge-time-badge { font-size: 0.75rem; padding: 0.6rem 1rem; flex-wrap: wrap; justify-content: center; }
    .lounge-content { padding: 0 1.5rem; }

    /* ---- Events & Contact ---- */
    .events-container,
    .contact-container { padding: 0 1.5rem; }

    /* ---- Reservations ---- */
    .reservations-bg::before { display: none; }
    .reservations-content { padding: 0 1.5rem; }
    .opentable-placeholder { padding: 2rem 1.5rem; }
    .opentable-actions { flex-direction: column; align-items: center; }

    /* ---- Social links — proper touch targets ---- */
    .social-link { width: 48px; height: 48px; }

    /* ---- Footer ---- */
    .footer { padding: 3rem 1.5rem 2rem; }
    .footer-nav { gap: 0.6rem 1.8rem; }
    .footer-bottom-row { flex-direction: column; text-align: center; gap: 0.5rem; }
}

@media (max-width: 480px) {
    :root { --section-pad: 50px; }

    /* ---- Section headings tighter on small phones ---- */
    .section-heading { font-size: clamp(1.9rem, 7vw, 2.5rem); }

    /* ---- Gallery Carousel ---- */
    .gallery-carousel { padding: 0 2.5rem; }
    .gallery-page-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .gallery-arrow { width: 32px; height: 32px; }

    /* ---- Chef ---- */
    .chef-photo,
    .chef-photo-placeholder { aspect-ratio: 4/5; }
    .chef-credential-venue { font-size: 0.95rem; }

    /* ---- Contact hours ---- */
    .hours-grid { gap: 0.3rem 0.8rem; font-size: 0.72rem; }

    /* ---- Ambiance — single column on tiny screens ---- */
    .ambiance-item { max-width: 100%; }

    /* ---- Night cards ---- */
    .night-dj { font-size: 1.1rem; }
    .night-desc { font-size: 0.78rem; }

    /* ---- Buttons — full width on tiny screens ---- */
    .btn { max-width: 100%; }

    /* ---- Lounge follow links ---- */
    .lounge-follow-links { flex-direction: column; align-items: center; gap: 0.8rem; }
    .lounge-follow-links .btn { width: 100%; max-width: 280px; }
}
