/* ===== CSS Variables ===== */
:root {
    --primary: #1e3a5f;
    --accent: #4a90c4;
    --accent-dark: #2e6d9e;
    --accent-light: #e8f1f8;
    --dark: #162d4a;
    --white: #ffffff;
    --cream: #f5f8fb;
    --warm-gray: #edf2f7;
    --text: #1e2d3d;
    --text-light: #4a6380;
    --text-muted: #7a94ad;
    --gold: #c9a96e;
    --gold-dark: #b08c4a;
    --border: #d0dce8;
    --transition: all 0.3s ease;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-main); color: var(--text); line-height: 1.6; background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Top Bar ===== */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-contact { display: flex; gap: 24px; align-items: center; }
.top-bar-contact a { color: rgba(255,255,255,0.8); }
.top-bar-contact a:hover { color: var(--gold); }
.top-bar-social { display: flex; gap: 16px; align-items: center; }
.top-bar-social a { color: rgba(255,255,255,0.8); font-size: 0.8rem; }
.top-bar-social a:hover { color: var(--accent); }

/* ===== Header / Nav ===== */
header {
    background: var(--white);
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 var(--border);
    transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}
.logo a { display: flex; align-items: center; gap: 10px; }
.logo a:hover { opacity: 0.85; }
.logo img { height: 40px; width: auto; }
.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}
nav ul { display: flex; gap: 32px; align-items: center; }
nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 0;
    position: relative;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: var(--transition);
}
nav a:hover::after, nav a.active::after { width: 100%; }
nav a:hover { color: var(--primary); }
.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 4px;
    font-size: 0.8rem !important;
    letter-spacing: 2px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; padding: 4px; }
.hamburger span { width: 26px; height: 2px; background: var(--primary); transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    border-radius: 4px;
    text-align: center;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.3); }
.btn-dark { background: var(--primary); color: var(--white); }
.btn-dark:hover { background: #333; transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-dark { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ===== Hero ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    padding-top: 100px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 0 24px;
    text-align: center;
    margin: 0 auto;
}
.hero-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
    opacity: 1;
}
.hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4.2rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: 3px;
}
.hero h1 span { color: var(--gold); white-space: nowrap; }
.hero h1 .hero-line2 { color: var(--white); white-space: nowrap; }
.hero p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 44px; line-height: 1.7; max-width: 580px; margin-left: auto; margin-right: auto; }
.hero p strong { color: var(--white); font-weight: 600; }
.hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-gold {
    background: var(--gold);
    color: var(--white);
    padding: 16px 40px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.8);
    color: var(--white);
    padding: 14px 40px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--primary); color: var(--white); }
.section-cream { background: var(--cream); }
.section-warm { background: var(--warm-gray); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}
.section-dark .section-header h2 { color: var(--white); }

/* ===== Menu Showcase Scroll ===== */
.menu-showcase-section { padding-bottom: 60px; }
.menu-scroll-wrapper {
    width: 100%;
    overflow: hidden;
}
.menu-scroll-track {
    display: flex;
    gap: 20px;
    animation: menuScroll 40s linear infinite;
    width: max-content;
}
.menu-scroll-track img {
    height: 280px;
    width: auto;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}
@keyframes menuScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.menu-scroll-wrapper:hover .menu-scroll-track {
    animation-play-state: paused;
}
.section-header .subtitle {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }
.divider { width: 50px; height: 2px; background: var(--accent); margin: 0 auto 24px; }

/* ===== Brand Story ===== */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-text h2 { font-family: var(--font-display); font-size: 2.4rem; margin-bottom: 24px; line-height: 1.3; }
.story-text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.story-highlights { margin: 32px 0; }
.story-highlights li { padding: 12px 0 12px 32px; position: relative; color: var(--text); font-weight: 500; }
.story-highlights li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.story-image { position: relative; }
.story-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.story-image::after {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 100%; height: 100%;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    z-index: -1;
}

/* ===== Chef Section ===== */
.chef-section .container { max-width: 900px; }
.chef-content h2 { font-family: var(--font-display); font-size: 2.4rem; text-align: center; margin-bottom: 32px; }
.chef-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; }
.chef-list { max-width: 600px; margin: 32px auto; }
.chef-list li { padding: 10px 0 10px 28px; position: relative; }
.chef-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ===== Exact Quote ===== */
.quote-section {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}
.quote-section blockquote {
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    opacity: 0.95;
}

/* ===== FAQ Accordion ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text);
    gap: 16px;
}
.faq-question:hover { color: var(--accent-dark); }
.faq-icon {
    width: 24px; height: 24px;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text);
    transition: var(--transition);
}
.faq-icon::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.faq-icon::after { width: 2px; height: 14px; top: 5px; left: 11px; }
.faq-item.active .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 24px; color: var(--text-light); line-height: 1.8; }

/* ===== Locations / Chips ===== */
.locations-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.chip {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text);
    transition: var(--transition);
    cursor: default;
}
.chip:hover { border-color: var(--accent); color: var(--accent-dark); }
.chip-group { margin-bottom: 24px; }
.chip-group-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Services Cards ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-card-icon { font-size: 2.5rem; margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.7; }

/* ===== Testimonials ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: 16px; left: 24px;
    line-height: 1;
    opacity: 0.3;
}
.testimonial-text { font-style: italic; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.testimonial-author { font-weight: 600; color: var(--primary); }
.testimonial-role { font-size: 0.85rem; color: var(--text-muted); }

/* ===== Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 1;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: var(--radius-sm); }
.lightbox-close {
    position: absolute;
    top: 24px; right: 32px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ===== Menu Page ===== */
.menu-sticky-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    position: sticky;
    top: 100px;
    z-index: 100;
}
.menu-sticky-nav ul { display: flex; gap: 32px; justify-content: center; }
.menu-sticky-nav a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    padding: 8px 0;
    position: relative;
}
.menu-sticky-nav a:hover, .menu-sticky-nav a.active { color: var(--primary); }
.platter-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 32px;
}
.platter-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}
.platter-category { margin-bottom: 24px; }
.platter-category h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-dark); margin-bottom: 12px; }
.platter-category .total { font-weight: 600; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 8px; }
.platter-items { display: flex; flex-wrap: wrap; gap: 8px; }
.platter-item { background: var(--cream); padding: 6px 16px; border-radius: 100px; font-size: 0.9rem; }
.platter-item-desc { color: var(--text-light); font-size: 0.85rem; font-style: italic; }
.menu-intro { max-width: 800px; margin: 0 auto 48px; }
.menu-intro p { color: var(--text-light); line-height: 1.8; margin-bottom: 12px; }
.menu-disclaimer {
    background: var(--cream);
    border-left: 3px solid var(--accent);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 32px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Contact Page ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-family: var(--font-display); font-size: 2.2rem; margin-bottom: 20px; }
.contact-info p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.contact-detail { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.contact-detail .icon {
    width: 48px; height: 48px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-dark);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-detail a { color: var(--gold); font-weight: 500; }
.contact-detail a:hover { color: var(--gold-dark); }
.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 24px; }

/* ===== Forms ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200,169,126,0.15);
}
textarea { height: 120px; resize: vertical; }
.form-error { color: #e74c3c; font-size: 0.8rem; margin-top: 4px; display: none; }
.form-group.error input, .form-group.error select, .form-group.error textarea { border-color: #e74c3c; }
.form-group.error .form-error { display: block; }

/* ===== Book Now Page ===== */
.booking-steps { display: flex; justify-content: center; gap: 48px; margin-bottom: 48px; }
.step-indicator {
    display: flex; align-items: center; gap: 12px;
    color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
}
.step-indicator.active { color: var(--primary); }
.step-indicator.completed { color: var(--accent-dark); }
.step-number {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem;
}
.step-indicator.active .step-number { border-color: var(--primary); background: var(--primary); color: var(--white); }
.step-indicator.completed .step-number { border-color: var(--accent); background: var(--accent); color: var(--white); }
.booking-form-container { max-width: 720px; margin: 0 auto; }
.booking-step { display: none; }
.booking-step.active { display: block; }
.step-nav { display: flex; justify-content: space-between; margin-top: 32px; }
.phone-booking {
    max-width: 720px;
    margin: 60px auto 0;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    border: 1px solid var(--border);
}
.phone-booking h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 16px; }
.phone-booking .phone-number { font-size: 2rem; font-weight: 700; color: var(--gold); margin: 20px 0; }
.phone-booking .phone-number a { color: inherit; }
.phone-checklist { text-align: left; max-width: 400px; margin: 24px auto; }
.phone-checklist li { padding: 8px 0 8px 28px; position: relative; color: var(--text-light); }
.phone-checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.area-chip {
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}
.area-chip:hover, .area-chip.selected { background: var(--accent); color: var(--primary); border-color: var(--accent); }

/* ===== Booking Confirmation ===== */
.booking-confirmation {
    display: none;
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}
.booking-confirmation.active { display: block; }
.confirmation-icon { font-size: 4rem; margin-bottom: 24px; }
.booking-confirmation h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 16px; }
.booking-confirmation p { color: var(--text-light); margin-bottom: 12px; line-height: 1.7; }

/* ===== Page Hero (inner pages) ===== */
.page-hero {
    background: var(--primary);
    color: var(--white);
    padding: 160px 0 60px;
    text-align: center;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.page-hero-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}
.cta-section h2 { font-family: var(--font-display); font-size: 2.4rem; margin-bottom: 16px; }
.cta-section p { opacity: 0.8; font-size: 1.05rem; margin-bottom: 36px; max-width: 550px; margin-left: auto; margin-right: auto; }

/* ===== Lead Form Section ===== */
.lead-form-section { background: var(--cream); padding: 100px 0; }
.lead-form-container {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.lead-form-container h2 { font-family: var(--font-display); font-size: 2rem; text-align: center; margin-bottom: 8px; }
.lead-form-container .subtitle-text { text-align: center; color: var(--text-light); margin-bottom: 32px; }

/* ===== Footer ===== */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 64px 0 24px;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.6); line-height: 1.8; margin: 16px 0; }
.footer-section h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--accent);
}
.footer-section p,
.footer-section a { color: rgba(255,255,255,0.6); line-height: 2; display: block; }
.footer-section a:hover { color: var(--accent); }
.footer-cta { margin-top: 20px; }
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}
.footer-bottom p { margin-bottom: 6px; }
.footer-partner { margin-top: 12px; color: rgba(255,255,255,0.5); }
.footer-partner a { color: var(--accent); }
.footer-partner a:hover { color: var(--white); }

/* ===== Mobile Sticky CTA ===== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--white);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    gap: 8px;
}
.mobile-sticky-cta .btn { flex: 1; padding: 14px; font-size: 0.8rem; text-align: center; }
.mobile-call-btn {
    position: fixed;
    bottom: 80px; right: 16px;
    width: 56px; height: 56px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 16px rgba(200,169,126,0.4);
    z-index: 998;
    transition: var(--transition);
}
.mobile-call-btn:hover { transform: scale(1.1); }

/* ===== Availability Note ===== */
.availability-note {
    background: var(--accent-light);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin: 24px 0;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
}

/* ===== Success Message ===== */
.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}
.form-success.active { display: block; }
.form-success h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 12px; color: var(--primary); }
.form-success p { color: var(--text-light); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-image { order: -1; }
    .story-image::after { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .logo img { height: 30px; }
    .top-bar { display: none; }
    header { top: 0; }
    .hamburger { display: flex; }
    nav {
        position: fixed;
        top: 56px; left: 0; right: 0;
        background: var(--white);
        padding: 24px;
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
        box-shadow: var(--shadow-lg);
    }
    nav.active { transform: translateY(0); opacity: 1; pointer-events: all; }
    nav ul { flex-direction: column; gap: 0; }
    nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
    nav a::after { display: none; }
    .nav-cta { text-align: center; margin-top: 8px; display: block !important; border-bottom: none !important; }

    .hero { min-height: auto; max-height: none; height: auto; padding: 80px 0 50px; }
    .hero h1 { font-size: 1.8rem; letter-spacing: 1px; }
    .hero h1 span { white-space: normal; }
    .hero h1 .hero-line2 { white-space: normal; }
    .hero-tagline { font-size: 0.7rem; letter-spacing: 2px; }
    .hero p { font-size: 0.9rem; margin-bottom: 28px; line-height: 1.6; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .hero-btns .btn-gold, .hero-btns .btn-outline-white { width: 100%; text-align: center; padding: 12px 24px; font-size: 0.8rem; }
    .btn-group { flex-direction: column; }
    .btn { width: 100%; }

    .section { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
    .page-hero { padding: 90px 0 40px; }
    .page-hero h1 { font-size: 2rem; }

    .services-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 32px; }

    .lead-form-container { padding: 32px 20px; }
    .booking-steps { gap: 16px; flex-wrap: wrap; }
    .step-indicator span:not(.step-number) { display: none; }
    .phone-booking { padding: 32px 20px; }

    .menu-sticky-nav ul { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .platter-card { padding: 24px; }

    .mobile-sticky-cta { display: flex; }
    .mobile-call-btn { display: flex; }
    body { padding-bottom: 64px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.5rem; }
    .hero p { font-size: 0.85rem; }
    .hero-btns .btn-gold, .hero-btns .btn-outline-white { padding: 10px 20px; font-size: 0.75rem; }
    .locations-chips { gap: 6px; }
    .chip { padding: 6px 14px; font-size: 0.8rem; }
}
