/* ============================================================
   LIBERTY KABOB — MAIN STYLESHEET
   Dark warm amber theme · Mobile-first · Production CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

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

:root {
    --gold:        #c9932a;
    --gold-light:  #e8b84b;
    --gold-dim:    rgba(201,147,42,0.15);
    --gold-border: rgba(201,147,42,0.2);
    --bg:          #0a0806;
    --bg2:         #141008;
    --bg3:         #0d0a06;
    --bg4:         #1a1208;
    --text:        #f0e6d3;
    --muted:       #aaaaaa;
    --dim:         #555555;
    --red:         #ef4444;
    --green:       #4ade80;
    --font-d:      'Playfair Display', Georgia, serif;
    --font-b:      'DM Sans', system-ui, sans-serif;
    --r-sm:        8px;
    --r-md:        12px;
    --r-lg:        16px;
    --r-xl:        20px;
    --r-full:      50px;
    --shadow-gold: 0 8px 32px rgba(201,147,42,0.4);
    --transition:  0.25s ease;
}

html { scroll-behavior: smooth; }

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

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-d); line-height: 1.1; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-b); cursor: pointer; border: none; outline: none; }
img { display: block; max-width: 100%; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(-8px); }
}
@keyframes pop {
    0%   { transform: scale(0.5); opacity: 0; }
    70%  { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes slideIn {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.anim-fade-up { animation: fadeUp 0.75s ease both; }
.anim-1 { animation-delay: 0.1s; }
.anim-2 { animation-delay: 0.2s; }
.anim-3 { animation-delay: 0.3s; }
.anim-4 { animation-delay: 0.4s; }

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── LAYOUT UTILS ────────────────────────────────────────── */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 60px);
}
.section-pad  { padding: 100px clamp(16px, 4vw, 60px); }
.section-pad-sm { padding: 60px clamp(16px, 4vw, 60px); }
.text-center  { text-align: center; }
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.gap-8        { gap: 8px; }
.gap-12       { gap: 12px; }
.gap-16       { gap: 16px; }
.gap-20       { gap: 20px; }
.gap-24       { gap: 24px; }
.gap-32       { gap: 32px; }

/* ── SECTION LABEL ───────────────────────────────────────── */
.section-label {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-label::before,
.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gold-border);
}
.section-label.left::before { display: none; }
.section-label.left::after  { display: none; }

.section-title {
    font-family: var(--font-d);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.section-title .gold { color: var(--gold-light); }

.section-sub {
    color: var(--dim);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-b);
    font-weight: 800;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover { box-shadow: 0 12px 44px rgba(201,147,42,0.55); }

.btn-outline {
    background: transparent;
    border: 2px solid rgba(201,147,42,0.45);
    color: var(--gold-light);
}
.btn-outline:hover {
    background: rgba(201,147,42,0.1);
    border-color: var(--gold-light);
}

.btn-sm {
    font-size: 13px;
    padding: 8px 20px;
    border-radius: var(--r-full);
}

.btn-ghost {
    background: var(--gold-dim);
    border: 1px solid rgba(201,147,42,0.35);
    color: var(--gold-light);
    font-weight: 700;
}

/* ── BADGE ───────────────────────────────────────────────── */
.badge {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── SPICE BAR ───────────────────────────────────────────── */
.spice-bar {
    display: flex;
    align-items: center;
    gap: 6px;
}
.spice-pips {
    display: flex;
    gap: 3px;
}
.spice-pip {
    width: 16px;
    height: 5px;
    border-radius: 3px;
    background: #2a2018;
    transition: background 0.3s;
}
.spice-pip.active-1 { background: #4ade80; }
.spice-pip.active-2 { background: #fbbf24; }
.spice-pip.active-3 { background: #f97316; }
.spice-pip.active-4 { background: #ef4444; }
.spice-label {
    font-size: 11px;
    font-weight: 600;
}
.spice-label-1 { color: #4ade80; }
.spice-label-2 { color: #fbbf24; }
.spice-label-3 { color: #f97316; }
.spice-label-4 { color: #ef4444; }
.spice-none    { font-size: 11px; color: #666; }

/* ── NAVBAR ──────────────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 clamp(16px, 4vw, 60px);
    transition: background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s;
}
#navbar.scrolled {
    background: rgba(10,8,6,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold-border);
}

.nav-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.nav-logo-name {
    font-family: var(--font-d);
    font-size: 20px;
    color: var(--gold-light);
    font-weight: 700;
    line-height: 1;
}
.nav-logo-sub {
    font-size: 11px;
    color: #666;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: #ccc;
    padding: 8px 14px;
    border-radius: var(--r-sm);
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
    letter-spacing: 0.03em;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-phone {
    font-size: 13px;
    color: var(--gold-light);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

#cart-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    cursor: pointer;
    border-radius: var(--r-full);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-b);
    font-size: 14px;
    font-weight: 800;
    color: #000;
    box-shadow: 0 4px 20px rgba(201,147,42,0.4);
    position: relative;
    transition: box-shadow var(--transition);
}
#cart-btn:hover { box-shadow: 0 8px 32px rgba(201,147,42,0.6); }
#cart-count {
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    width: 20px; height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    margin-left: -4px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 26px;
    cursor: pointer;
    padding: 4px;
}

/* Mobile Nav */
#mobile-nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,8,6,0.99);
    z-index: 999;
    padding: 8px 0;
    border-bottom: 1px solid var(--gold-border);
}
#mobile-nav.open { display: block; }
#mobile-nav a {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color var(--transition);
}
#mobile-nav a:hover,
#mobile-nav a.active { color: var(--gold-light); }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #0a0806 0%, #1a0e04 40%, #0d0a06 100%);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201,147,42,0.11) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(180,60,20,0.07) 0%, transparent 60%);
    pointer-events: none;
}

.hero-img-strip {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 45%;
    overflow: hidden;
}
.hero-img-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0a0806 0%, transparent 40%);
    z-index: 2;
}
.hero-img-strip img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.55;
    filter: saturate(1.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 80px clamp(24px, 5vw, 80px) 60px;
}
.hero-inner { max-width: 660px; }

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.hero-eyebrow-line { height: 1px; width: 40px; background: var(--gold); }
.hero-eyebrow-text {
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
}

.hero-title {
    font-family: var(--font-d);
    font-size: clamp(42px, 6vw, 82px);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 24px;
}
.hero-title .gold {
    color: var(--gold-light);
    display: inline-block;
}

.hero-desc {
    font-size: clamp(15px, 2vw, 18px);
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-stat-num {
    font-family: var(--font-d);
    font-size: 28px;
    color: var(--gold-light);
    font-weight: 800;
}
.hero-stat-lbl {
    font-size: 11px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
}
.hero-scroll span { font-size: 11px; color: #444; letter-spacing: 0.1em; }
.hero-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── FEATURES BAR ────────────────────────────────────────── */
#features-bar {
    background: #111008;
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    overflow: hidden;
}
.features-scroll {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}
.features-scroll::-webkit-scrollbar { display: none; }
.feature-item {
    flex: 0 0 auto;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid rgba(201,147,42,0.1);
    min-width: 200px;
}
.feature-icon { font-size: 28px; }
.feature-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--gold-light);
}
.feature-sub { font-size: 12px; color: #555; }

/* ── MENU CARD ───────────────────────────────────────────── */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 24px;
}

.menu-card {
    background: var(--bg2);
    border: 1px solid var(--gold-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.menu-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201,147,42,0.45);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.card-img-wrap {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
}
.card-img-wrap img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.menu-card:hover .card-img-wrap img { transform: scale(1.07); }
.card-img-badge {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 2;
}
.card-img-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--bg2), transparent);
}

.card-body { padding: 20px; }
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 10px;
}
.card-name {
    font-family: var(--font-d);
    font-size: 18px;
    color: var(--text);
    font-weight: 700;
    line-height: 1.2;
    flex: 1;
}
.card-price {
    font-family: var(--font-d);
    font-size: 20px;
    color: var(--gold-light);
    font-weight: 800;
    white-space: nowrap;
}
.card-ingredients {
    font-size: 12px;
    color: #444;
    margin-bottom: 8px;
}
.card-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.55;
    margin-bottom: 16px;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.add-to-cart {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    cursor: pointer;
    border-radius: var(--r-full);
    font-family: var(--font-b);
    font-size: 13px;
    font-weight: 800;
    color: #000;
    padding: 8px 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(201,147,42,0.3);
    white-space: nowrap;
}
.add-to-cart:hover {
    box-shadow: 0 8px 24px rgba(201,147,42,0.5);
    transform: translateY(-1px);
}
.add-to-cart.added {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: 0 4px 16px rgba(34,197,94,0.4);
}

/* ── CATEGORY TABS ───────────────────────────────────────── */
.cat-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    margin-bottom: 40px;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
    flex: 0 0 auto;
    padding: 10px 20px;
    border-radius: var(--r-full);
    font-family: var(--font-b);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    border: 1px solid rgba(201,147,42,0.3);
    background: transparent;
    color: var(--gold);
}
.cat-tab:hover { border-color: var(--gold); background: var(--gold-dim); }
.cat-tab.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-color: var(--gold-light);
    color: #000;
}

/* ── SEARCH ──────────────────────────────────────────────── */
.menu-search {
    width: 100%;
    max-width: 500px;
    background: var(--bg2);
    border: 1px solid rgba(201,147,42,0.3);
    border-radius: var(--r-full);
    padding: 14px 24px;
    font-family: var(--font-b);
    font-size: 15px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
    display: block;
    margin: 0 auto 32px;
}
.menu-search:focus { border-color: var(--gold-light); }

/* ── CART DRAWER ─────────────────────────────────────────── */
#cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    z-index: 1100;
    backdrop-filter: blur(4px);
}
#cart-overlay.open { display: block; }

#cart-drawer {
    position: fixed;
    right: 0; top: 0; bottom: 0;
    width: min(420px, 100vw);
    background: #0d0a06;
    border-left: 1px solid var(--gold-border);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#cart-drawer.open { transform: translateX(0); }

.cart-header {
    padding: 24px;
    border-bottom: 1px solid rgba(201,147,42,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-header h2 {
    font-family: var(--font-d);
    font-size: 24px;
    color: var(--gold-light);
}
.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 26px;
    padding: 4px;
    transition: color 0.2s;
}
.cart-close:hover { color: #fff; }

#cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    color: #444;
    gap: 12px;
}
.cart-empty-icon { font-size: 60px; }
.cart-empty-text { font-size: 16px; }

.cart-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-item img {
    width: 72px; height: 72px;
    object-fit: cover;
    border-radius: var(--r-md);
    flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name {
    font-size: 15px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 4px;
}
.cart-item-unit { font-size: 13px; color: #666; }
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.qty-btn {
    background: var(--bg4);
    border: 1px solid rgba(201,147,42,0.3);
    color: var(--gold-light);
    width: 30px; height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.qty-btn:hover { background: rgba(201,147,42,0.2); }
.qty-num {
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}
.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}
.cart-item-total {
    font-family: var(--font-d);
    font-size: 18px;
    color: var(--gold-light);
    font-weight: 800;
}
.cart-remove {
    background: none;
    border: none;
    color: var(--red);
    cursor: pointer;
    font-size: 18px;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.cart-remove:hover { opacity: 1; }

.cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(201,147,42,0.15);
}
.cart-totals { margin-bottom: 20px; }
.cart-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}
.cart-row.total {
    font-family: var(--font-d);
    font-size: 22px;
    color: var(--gold-light);
    font-weight: 800;
    border-top: 1px solid var(--gold-border);
    padding-top: 12px;
    margin-top: 4px;
}

.cart-checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    cursor: pointer;
    border-radius: var(--r-md);
    font-family: var(--font-b);
    font-size: 16px;
    font-weight: 800;
    color: #000;
    padding: 18px;
    box-shadow: var(--shadow-gold);
    margin-bottom: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cart-checkout-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 40px rgba(201,147,42,0.5);
}
.cart-clear-btn {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    border-radius: var(--r-sm);
    font-family: var(--font-b);
    font-size: 13px;
    font-weight: 600;
    color: #555;
    padding: 10px;
    transition: border-color 0.2s, color 0.2s;
}
.cart-clear-btn:hover { border-color: var(--red); color: var(--red); }

/* Recommendations */
.cart-recs {
    padding: 20px 24px;
    border-top: 1px solid rgba(201,147,42,0.1);
    background: rgba(201,147,42,0.03);
}
.cart-recs-label {
    font-size: 11px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.rec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.rec-item img {
    width: 40px; height: 40px;
    object-fit: cover;
    border-radius: var(--r-sm);
}
.rec-name { font-size: 13px; color: var(--text); font-weight: 600; flex: 1; }
.rec-price { font-size: 12px; color: #666; }
.rec-add {
    background: var(--gold-dim);
    border: 1px solid rgba(201,147,42,0.4);
    color: var(--gold-light);
    border-radius: var(--r-sm);
    padding: 5px 12px;
    cursor: pointer;
    font-family: var(--font-b);
    font-size: 12px;
    font-weight: 700;
    transition: background 0.2s;
}
.rec-add:hover { background: rgba(201,147,42,0.3); }

/* ── ORDER PAGE ──────────────────────────────────────────── */
.order-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.order-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-box {
    background: var(--bg2);
    border: 1px solid var(--gold-border);
    border-radius: var(--r-xl);
    padding: 28px;
    margin-bottom: 16px;
}
.sidebar-box h3 {
    font-family: var(--font-d);
    font-size: 22px;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.order-item-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg2);
    border: 1px solid rgba(201,147,42,0.1);
    border-radius: var(--r-md);
    padding: 14px;
    margin-bottom: 10px;
    transition: border-color 0.2s;
}
.order-item-row:hover { border-color: rgba(201,147,42,0.3); }
.order-item-row img {
    width: 68px; height: 68px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}
.order-row-info { flex: 1; }
.order-row-name { font-size: 15px; color: var(--text); font-weight: 700; }
.order-row-desc { font-size: 12px; color: #555; margin-top: 2px; }
.order-row-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.order-row-price {
    font-family: var(--font-d);
    font-size: 18px;
    color: var(--gold-light);
    font-weight: 800;
}

.order-category-label {
    font-family: var(--font-d);
    font-size: 20px;
    color: var(--gold-light);
    margin: 32px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201,147,42,0.2);
}
.order-category-label:first-child { margin-top: 0; }

/* Order Form */
.form-group { margin-bottom: 14px; }
.form-label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid rgba(201,147,42,0.25);
    border-radius: var(--r-sm);
    padding: 12px 16px;
    font-family: var(--font-b);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    color-scheme: dark;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold-light); }
.form-select option { background: #1a1208; color: #fff; }
.form-textarea { resize: vertical; }

.payment-methods {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.pay-method {
    background: var(--bg4);
    border: 1px solid var(--gold-border);
    border-radius: var(--r-sm);
    padding: 8px 14px;
    font-size: 12px;
    color: #666;
}

.place-order-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    cursor: pointer;
    border-radius: var(--r-md);
    font-family: var(--font-b);
    font-size: 16px;
    font-weight: 800;
    color: #000;
    padding: 18px;
    box-shadow: var(--shadow-gold);
    transition: transform 0.2s, box-shadow 0.2s;
}
.place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,147,42,0.55);
}
.place-order-btn:disabled {
    background: #333;
    color: #555;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}
.order-disclaimer {
    font-size: 11px;
    color: #3a3028;
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

/* Confirmation Screen */
#order-confirm {
    display: none;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    padding-top: 132px;
}
#order-confirm.show { display: flex; }
.confirm-icon { font-size: 80px; animation: pop 0.5s ease both; margin-bottom: 24px; }
.confirm-title {
    font-family: var(--font-d);
    font-size: 40px;
    color: var(--gold-light);
    margin-bottom: 12px;
}
.confirm-num { font-size: 16px; color: #666; margin-bottom: 8px; }
.confirm-box {
    background: var(--bg2);
    border: 1px solid var(--gold-border);
    border-radius: var(--r-lg);
    padding: 24px;
    margin: 24px auto;
    max-width: 480px;
    text-align: left;
}
.confirm-item-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #aaa;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.confirm-total-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-d);
    font-size: 20px;
    color: var(--gold-light);
    font-weight: 800;
    padding-top: 12px;
    margin-top: 4px;
}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-grid {
    columns: 3 280px;
    gap: 16px;
}
.gallery-item {
    margin-bottom: 16px;
    break-inside: avoid;
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid rgba(201,147,42,0.1);
    cursor: zoom-in;
    transition: transform 0.3s, border-color 0.3s;
}
.gallery-item:hover {
    transform: scale(1.02);
    border-color: rgba(201,147,42,0.4);
}
.gallery-item img { width: 100%; display: block; }
.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: zoom-out;
}
#lightbox.open { display: flex; }
#lightbox img {
    max-width: 700px;
    width: 100%;
    border-radius: var(--r-lg);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
#lightbox-cap {
    font-family: var(--font-d);
    font-size: 22px;
    color: var(--gold-light);
    margin-top: 16px;
    text-align: center;
}
#lightbox-inner { text-align: center; }

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg2);
    border: 1px solid var(--gold-border);
    border-radius: var(--r-full);
    padding: 14px 28px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
}
.social-link:hover { background: var(--bg4); border-color: var(--gold-light); }
.social-link .icon { font-size: 22px; }

/* ── CATERING ────────────────────────────────────────────── */
.catering-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}
.pkg-card {
    background: var(--bg2);
    border: 2px solid var(--gold-border);
    border-radius: var(--r-xl);
    padding: 36px;
    position: relative;
    transition: transform 0.3s;
}
.pkg-card:hover { transform: translateY(-4px); }
.pkg-card.featured { border-color: var(--gold-light); box-shadow: 0 0 60px rgba(232,184,75,0.15); }
.pkg-popular {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}
.pkg-name {
    font-family: var(--font-d);
    font-size: 24px;
    color: var(--gold-light);
    margin-bottom: 4px;
}
.pkg-guests { font-size: 14px; color: #666; margin-bottom: 16px; }
.pkg-price {
    font-family: var(--font-d);
    font-size: 28px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 24px;
}
.pkg-include {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
}
.pkg-include .check { color: var(--gold-light); }

.catering-form-box {
    background: var(--bg2);
    border: 1px solid var(--gold-border);
    border-radius: 24px;
    padding: clamp(32px, 4vw, 60px);
}
.catering-form-box h2 {
    font-family: var(--font-d);
    font-size: 32px;
    color: var(--gold-light);
    margin-bottom: 8px;
}
.catering-form-box p { color: #555; margin-bottom: 32px; font-size: 15px; }
.form-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}
.contact-icon-box {
    width: 52px; height: 52px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.contact-lbl { font-size: 12px; color: #555; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-val { font-size: 16px; color: #ccc; line-height: 1.5; white-space: pre-line; }
.contact-val a { color: var(--gold-light); font-weight: 600; }
.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.map-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--gold-border);
    min-height: 420px;
}
.map-wrap iframe { display: block; }

.traveler-banner {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(201,147,42,0.08), rgba(201,147,42,0.04));
    border: 1px solid rgba(201,147,42,0.2);
    border-radius: var(--r-xl);
    padding: 48px;
    text-align: center;
}
.traveler-banner h3 {
    font-family: var(--font-d);
    font-size: 28px;
    color: var(--gold-light);
    margin-bottom: 8px;
}
.traveler-banner p { color: #666; font-size: 16px; max-width: 520px; margin: 0 auto 28px; line-height: 1.7; }
.traveler-checklist {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.traveler-check { font-size: 14px; color: var(--gold); font-weight: 700; }

/* ── CHEF SECTION ────────────────────────────────────────── */
.chef-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.chef-img-wrap {
    position: relative;
}
.chef-img-wrap img {
    width: 100%;
    border-radius: var(--r-xl);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: saturate(1.2);
}
.chef-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: var(--r-lg);
    padding: 20px 24px;
    box-shadow: 0 20px 60px rgba(201,147,42,0.4);
}
.chef-badge-num { font-family: var(--font-d); font-size: 36px; color: #000; font-weight: 800; }
.chef-badge-lbl { font-size: 13px; color: #000; font-weight: 700; }

.chef-chips {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.chef-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #ccc;
    font-weight: 600;
}

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.review-card {
    background: var(--bg2);
    border: 1px solid rgba(201,147,42,0.1);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(201,147,42,0.3); }
.review-stars { font-size: 18px; color: #fbbf24; margin-bottom: 12px; }
.review-text { font-size: 15px; color: #888; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-name { font-size: 15px; color: var(--gold-light); font-weight: 700; }
.review-loc { font-size: 13px; color: #444; }

/* ── TRAVELER CTA SECTION ────────────────────────────────── */
.traveler-cta {
    padding: 80px clamp(16px, 4vw, 60px);
    background: linear-gradient(135deg, #0d0805, #1a0e04);
    text-align: center;
}
.traveler-cta h2 {
    font-family: var(--font-d);
    font-size: clamp(28px, 4vw, 48px);
    color: #fff;
    font-weight: 800;
    margin-bottom: 16px;
}
.traveler-cta p { font-size: 18px; color: #666; margin-bottom: 40px; line-height: 1.7; max-width: 680px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ──────────────────────────────────────────────── */
#footer {
    background: #060503;
    border-top: 1px solid rgba(201,147,42,0.1);
    padding: 60px clamp(16px, 4vw, 60px) 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.footer-brand-name { font-family: var(--font-d); font-size: 20px; color: var(--gold-light); font-weight: 700; }
.footer-brand-sub { font-size: 11px; color: #444; letter-spacing: 0.15em; }
.footer-desc { font-size: 14px; color: #444; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
    width: 36px; height: 36px;
    border-radius: var(--r-sm);
    background: var(--bg2);
    border: 1px solid var(--gold-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: border-color 0.2s;
    text-decoration: none;
}
.footer-social:hover { border-color: var(--gold-light); }

.footer-col-title {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-link {
    display: block;
    font-size: 14px;
    color: #555;
    padding: 5px 0;
    transition: color 0.2s;
    cursor: pointer;
}
.footer-link:hover { color: var(--gold-light); }
.footer-info { font-size: 14px; color: #555; line-height: 1.7; }
.footer-info a { color: var(--gold-light); font-weight: 600; }
.footer-open { color: #4ade80; font-weight: 700; font-size: 14px; margin-top: 12px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy { font-size: 13px; color: #333; }
.footer-keywords { font-size: 13px; color: #333; }

/* ── PAGE NAV (tab routing) ──────────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .nav-links, .nav-phone { display: none; }
    .hamburger { display: block; }
    .hero-img-strip { display: none; }
    .chef-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .chef-badge { bottom: 10px; right: 10px; }
    .order-grid { grid-template-columns: 1fr; }
    .order-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-2col { grid-template-columns: 1fr; }
    .traveler-banner { padding: 36px 24px; }
}
@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { justify-content: center; }
    .gallery-grid { columns: 2 180px; }
    .traveler-cta p { margin-bottom: 32px; }
}
