/* ==========================================================================
   EMBER & SPICE - Luxury Fine Dining Style System
   Universal Multi-Device Adaptive Responsive Architecture
   (Supports: 320px ultra-compact phones -> Tablets -> 4K Ultrawide Displays)
   ========================================================================== */

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

:root {
    /* Color Palette */
    --color-bg-base: #08080a;
    --color-bg-surface: #101014;
    --color-bg-elevated: #16161c;
    --color-bg-glass: rgba(16, 16, 20, 0.85);

    --color-gold-primary: #d4a359;
    --color-gold-light: #f5d08a;
    --color-gold-dark: #9e7330;
    --color-gold-gradient: linear-gradient(135deg, #f5d08a 0%, #d4a359 50%, #9e7330 100%);
    --color-gold-gradient-hover: linear-gradient(135deg, #fae2b4 0%, #e0b06b 50%, #b8863b 100%);
    
    --color-ember-primary: #e65c00;
    --color-ember-gradient: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%);

    --color-text-primary: #f8fafc;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;
    --color-text-gold: #f3ce87;

    --color-border-subtle: rgba(212, 163, 89, 0.15);
    --color-border-medium: rgba(212, 163, 89, 0.3);
    --color-border-highlight: rgba(212, 163, 89, 0.55);

    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & UNIVERSAL BOX-SIZING
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-base);
    color: var(--color-text-primary);
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    background-color: var(--color-bg-base);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg, video, iframe {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #08080a;
}
::-webkit-scrollbar-thumb {
    background: #252530;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-dark);
}

/* Typography Helpers */
h1, h2, h3, h4, .font-heading {
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    color: var(--color-text-primary);
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
}

.font-serif {
    font-family: var(--font-serif);
}

.text-gold {
    color: var(--color-gold-light);
}

.text-gold-gradient {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-ember-gradient {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Section Title Accents */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-gold-light);
    margin-bottom: 0.75rem;
    padding: 5px 12px;
    background: rgba(212, 163, 89, 0.08);
    border: 1px solid var(--color-border-subtle);
    border-radius: 9999px;
    max-width: 100%;
}

.section-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--color-gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-gold-primary);
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(1.65rem, 5vw, 3.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    word-break: break-word;
}

.section-subtitle {
    font-size: clamp(0.86rem, 2.5vw, 1.05rem);
    color: var(--color-text-secondary);
    max-width: 640px;
    line-height: 1.6;
}

.section-header-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.25rem;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .section-header-center {
        margin-bottom: 3.75rem;
    }
}

/* Universal Responsive Container */
.container-custom {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 0.85rem;
}

@media (min-width: 480px) {
    .container-custom {
        padding: 0 1.25rem;
    }
}

@media (min-width: 768px) {
    .container-custom {
        padding: 0 2rem;
    }
}

@media (min-width: 1200px) {
    .container-custom {
        padding: 0 2.5rem;
    }
}

/* ==========================================================================
   PORTFOLIO DEMO BANNER (ALL DEVICES)
   ========================================================================== */
.demo-topbar {
    background: linear-gradient(90deg, #120e06 0%, #1c1508 50%, #120e06 100%);
    border-bottom: 1px solid rgba(212, 163, 89, 0.2);
    font-size: 0.7rem;
    padding: 5px 0.5rem;
    color: #e2c08d;
    position: relative;
    z-index: 60;
    width: 100%;
}

.demo-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-direction: row;
    gap: 8px;
}

.demo-topbar-left {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.demo-badge {
    background: var(--color-gold-gradient);
    color: #0d0d0f;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    flex-shrink: 0;
}

.demo-topbar-text {
    font-size: 0.68rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #cbd5e1;
}

.demo-topbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.demo-topbar a {
    color: #fce7c8;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

/* ==========================================================================
   HEADER & NAVIGATION (TOUCH & DESKTOP)
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: var(--transition-smooth);
    background: rgba(8, 8, 10, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.scrolled {
    background: rgba(10, 10, 14, 0.98);
    border-bottom: 1px solid var(--color-border-subtle);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 0.85rem;
    max-width: 1320px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .nav-container {
        height: 78px;
        padding: 0 1.75rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        height: 84px;
        padding: 0 2.5rem;
    }
}

/* Brand Logo */
.brand-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
    user-select: none;
}

.brand-logo .logo-main {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 3.8vw, 1.45rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.brand-logo .logo-amp {
    color: var(--color-gold-primary);
    font-style: italic;
    font-family: var(--font-serif);
    font-size: 1.35em;
    font-weight: 400;
}

.brand-logo .logo-sub {
    font-size: clamp(0.52rem, 1.5vw, 0.62rem);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold-light);
    opacity: 0.85;
}

/* Nav Menu Links (Tablet/Desktop) */
.nav-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }
}

@media (min-width: 1200px) {
    .nav-links {
        gap: 2.35rem;
    }
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #cbd5e1;
    text-decoration: none;
    position: relative;
    padding: 6px 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold-gradient);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-cta-btn {
    display: none;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .nav-cta-btn {
        display: inline-flex;
    }
}

/* Button System */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-gold-gradient);
    color: #09090b;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(212, 163, 89, 0.28);
    transition: var(--transition-smooth);
    min-height: 44px;
    text-align: center;
}

.btn-gold:hover {
    background: var(--color-gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 163, 89, 0.4);
    color: #000;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #f1f5f9;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid var(--color-border-medium);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    min-height: 44px;
    text-align: center;
}

.btn-outline:hover {
    border-color: var(--color-gold-light);
    color: var(--color-gold-light);
    background: rgba(212, 163, 89, 0.08);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 14px;
    font-size: 0.76rem;
    min-height: 38px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 60;
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--color-gold-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer (Responsive slide-out) */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 330px;
    height: 100vh;
    background: #0d0d12;
    border-left: 1px solid var(--color-border-subtle);
    padding: 4.5rem 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    z-index: 55;
    box-shadow: -20px 0 50px rgba(0,0,0,0.85);
    overflow-y: auto;
}

.mobile-drawer.open {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #e2e8f0;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
    padding: 4px 0;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--color-gold-light);
    transform: translateX(6px);
}

.mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    z-index: 52;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

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

/* ==========================================================================
   HERO SECTION (MULTI-DEVICE FLUID)
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 2.5rem 0 3rem;
    background: radial-gradient(circle at 75% 30%, rgba(230, 92, 0, 0.12) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(212, 163, 89, 0.08) 0%, transparent 50%),
                #08080a;
    overflow: hidden;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-section {
        min-height: 86vh;
        display: flex;
        align-items: center;
        padding: 4.5rem 0;
    }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 40px 70px, rgba(212, 163, 89, 0.15), rgba(0, 0, 0, 0));
    background-size: 180px 180px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 3.5rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-gold-light);
    margin-bottom: 1rem;
    padding: 5px 12px;
    background: rgba(212, 163, 89, 0.1);
    border: 1px solid var(--color-border-medium);
    border-radius: 9999px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(1.85rem, 6.5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.14;
    margin-bottom: 1.15rem;
    color: #ffffff;
    word-break: break-word;
}

.hero-subheading {
    font-size: clamp(0.92rem, 2.6vw, 1.22rem);
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    max-width: 580px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 2rem;
}

@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row;
        width: auto;
    }
    .hero-actions .btn-gold,
    .hero-actions .btn-outline {
        width: auto;
    }
}

.hero-actions .btn-gold,
.hero-actions .btn-outline {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

@media (max-width: 340px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    border: none !important;
    padding: 0 !important;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 700;
    color: var(--color-gold-light);
}

.stat-label {
    font-size: clamp(0.6rem, 1.8vw, 0.74rem);
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Hero Visual Media */
.hero-visual {
    position: relative;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8), 0 0 30px rgba(212, 163, 89, 0.12);
    border: 1px solid var(--color-border-subtle);
}

.hero-image-wrapper img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

@media (min-width: 480px) {
    .hero-image-wrapper img {
        height: 340px;
    }
}

@media (min-width: 768px) {
    .hero-image-wrapper img {
        height: 440px;
    }
}

@media (min-width: 1024px) {
    .hero-image-wrapper img {
        height: 490px;
    }
}

/* Floating Badges (Universal Safe Placement) */
.floating-award-card {
    position: relative;
    margin-top: 0.85rem;
    background: rgba(16, 16, 22, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--color-border-medium);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
    width: 100%;
}

@media (min-width: 768px) {
    .floating-award-card {
        position: absolute;
        bottom: -20px;
        left: -12px;
        width: auto;
        margin-top: 0;
        animation: floatSlow 4s ease-in-out infinite;
    }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.award-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d0d12;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.award-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.award-desc {
    font-size: 0.68rem;
    color: var(--color-gold-light);
    letter-spacing: 0.03em;
}

.floating-experience-pill {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(16, 16, 22, 0.92);
    border: 1px solid var(--color-border-subtle);
    border-radius: 9999px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: #f1f5f9;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    max-width: calc(100% - 20px);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 10px #22c55e;
    flex-shrink: 0;
}

/* ==========================================================================
   SIGNATURE DISHES (GRID BREAKPOINTS)
   ========================================================================== */
.signature-section {
    padding: 4rem 0;
    background: #0b0b0e;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

@media (min-width: 768px) {
    .signature-section {
        padding: 6.5rem 0;
    }
}

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

@media (min-width: 580px) {
    .signature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .signature-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

.signature-card {
    background: var(--color-bg-surface);
    border: 1px solid rgba(212, 163, 89, 0.12);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.signature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-medium);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 163, 89, 0.12);
}

.sig-image-holder {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .sig-image-holder {
        height: 220px;
    }
}

.sig-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.signature-card:hover .sig-image-holder img {
    transform: scale(1.06);
}

.sig-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(10, 10, 14, 0.88);
    border: 1px solid var(--color-border-medium);
    color: var(--color-gold-light);
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 7px;
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

.sig-price {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--color-gold-gradient);
    color: #0b0b0e;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.sig-body {
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sig-category {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold-light);
    margin-bottom: 0.3rem;
}

.sig-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
    color: #fff;
    line-height: 1.3;
}

.sig-desc {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.sig-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.74rem;
}

.sig-pairing {
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
}

/* ==========================================================================
   PHILOSOPHY & ABOUT STORY
   ========================================================================== */
.about-section {
    padding: 4rem 0;
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(212, 163, 89, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(230, 92, 0, 0.05) 0%, transparent 40%),
                #08080a;
}

@media (min-width: 1024px) {
    .about-section {
        padding: 7rem 0;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-visual-group {
    position: relative;
    width: 100%;
}

.about-main-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--color-border-subtle);
    box-shadow: 0 20px 45px rgba(0,0,0,0.8);
}

@media (min-width: 640px) {
    .about-main-img {
        width: 85%;
        height: 380px;
    }
}

.about-sub-img {
    display: none;
}

@media (min-width: 640px) {
    .about-sub-img {
        display: block;
        position: absolute;
        bottom: -20px;
        right: 0;
        width: 50%;
        height: 220px;
        object-fit: cover;
        border-radius: 10px;
        border: 2px solid #16161c;
        box-shadow: 0 20px 45px rgba(0,0,0,0.8);
    }
}

.about-badge-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #0d0d12;
    border: 1px solid var(--color-border-medium);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.about-badge-year {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-gold-light);
}

.about-badge-txt {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
}

.about-content h2 {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    margin-bottom: 1.15rem;
}

.about-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 3.2vw, 1.35rem);
    font-style: italic;
    color: var(--color-gold-light);
    line-height: 1.45;
    margin-bottom: 1.25rem;
    padding-left: 0.85rem;
    border-left: 3px solid var(--color-gold-primary);
}

.about-paragraph {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.15rem;
    font-size: 0.9rem;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 600px) {
    .about-pillars {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
}

.pillar-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 7px;
}

.pillar-title i {
    color: var(--color-gold-light);
}

.pillar-desc {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   INTERACTIVE MENU SECTION
   ========================================================================== */
.menu-section {
    padding: 4rem 0;
    background: #0d0d11;
    position: relative;
}

@media (min-width: 768px) {
    .menu-section {
        padding: 6.5rem 0;
    }
}

/* Filter Bar */
.menu-filter-bar {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.65rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.menu-filter-bar::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .menu-filter-bar {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        margin-bottom: 2.5rem;
    }
}

.menu-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 8px 14px;
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 38px;
}

.menu-filter-btn:hover {
    border-color: var(--color-border-medium);
    color: #fff;
    background: rgba(212, 163, 89, 0.08);
}

.menu-filter-btn.active {
    background: var(--color-gold-gradient);
    color: #0a0a0d;
    font-weight: 600;
    border-color: transparent;
    box-shadow: 0 4px 18px rgba(212, 163, 89, 0.3);
}

/* Search and Dietary Controls */
.menu-controls {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
    padding: 0.85rem;
    background: rgba(22, 22, 28, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
}

@media (min-width: 768px) {
    .menu-controls {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.25rem;
        border-radius: 12px;
    }
}

.menu-search-box {
    position: relative;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .menu-search-box {
        max-width: 320px;
    }
}

.menu-search-box input {
    width: 100%;
    background: #08080b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 12px 10px 36px;
    border-radius: 6px;
    font-size: 16px; /* iOS zoom prevention */
    outline: none;
    transition: var(--transition-smooth);
}

.menu-search-box input:focus {
    border-color: var(--color-gold-light);
    box-shadow: 0 0 12px rgba(212, 163, 89, 0.15);
}

.menu-search-icon {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
}

.menu-dietary-toggles {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
    gap: 0.45rem;
    scrollbar-width: none;
}

.menu-dietary-toggles::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .menu-dietary-toggles {
        flex-wrap: wrap;
        overflow-x: visible;
    }
}

.dietary-chip {
    font-size: 0.72rem;
    padding: 5px 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 32px;
}

.dietary-chip:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.dietary-chip.active {
    background: rgba(212, 163, 89, 0.15);
    border-color: var(--color-gold-light);
    color: var(--color-gold-light);
}

/* Menu Items Grid */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.menu-item-card {
    background: #121217;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.95rem;
    display: flex;
    flex-direction: row;
    gap: 0.85rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
}

@media (max-width: 420px) {
    .menu-item-card {
        flex-direction: column;
    }
}

.menu-item-card:hover {
    background: #171720;
    border-color: var(--color-border-subtle);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.menu-item-thumb {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 420px) {
    .menu-item-thumb {
        width: 100%;
        height: 150px;
        min-width: 100%;
    }
}

.menu-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-item-card:hover .menu-item-thumb img {
    transform: scale(1.06);
}

.menu-item-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

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

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    word-break: break-word;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-gold-light);
    white-space: nowrap;
}

.menu-item-description {
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    line-height: 1.45;
    margin-bottom: 0.6rem;
}

.menu-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: auto;
}

.menu-item-tag {
    font-size: 0.62rem;
    padding: 2px 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.menu-item-tag.sig-tag {
    background: rgba(212, 163, 89, 0.15);
    color: var(--color-gold-light);
    border-color: rgba(212, 163, 89, 0.3);
    font-weight: 600;
}

/* Tasting Menu Callout */
.tasting-menu-card {
    margin-top: 2rem;
    background: linear-gradient(135deg, #15151c 0%, #1a1714 100%);
    border: 1px solid var(--color-border-medium);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .tasting-menu-card {
        padding: 2.25rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-radius: 14px;
    }
}

.tasting-menu-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    width: 100%;
}

@media (min-width: 768px) {
    .tasting-menu-pricing {
        align-items: flex-end;
        width: auto;
    }
}

.tasting-menu-pricing .btn-gold {
    width: 100%;
}

@media (min-width: 768px) {
    .tasting-menu-pricing .btn-gold {
        width: auto;
    }
}

/* ==========================================================================
   CHEF & CULINARY TEAM
   ========================================================================== */
.chef-section {
    padding: 4rem 0;
    background: #08080a;
    position: relative;
}

@media (min-width: 768px) {
    .chef-section {
        padding: 6.5rem 0;
    }
}

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

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

@media (min-width: 1024px) {
    .chef-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.25rem;
    }
}

.chef-card {
    background: #111116;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.chef-card:hover {
    border-color: var(--color-border-medium);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.7);
}

.chef-img-box {
    position: relative;
    height: 260px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .chef-img-box {
        height: 320px;
    }
}

.chef-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chef-credentials-pill {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(8, 8, 12, 0.88);
    border: 1px solid var(--color-border-subtle);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    color: var(--color-gold-light);
    backdrop-filter: blur(8px);
}

.chef-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.chef-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.15rem;
}

.chef-role {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold-primary);
    margin-bottom: 0.75rem;
}

.chef-quote {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.chef-bio {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
}

/* ==========================================================================
   GALLERY SECTION (TOUCH GRID)
   ========================================================================== */
.gallery-section {
    padding: 4rem 0;
    background: #0b0b0f;
    position: relative;
}

@media (min-width: 768px) {
    .gallery-section {
        padding: 6.5rem 0;
    }
}

.gallery-filters {
    display: flex;
    justify-content: flex-start;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
}

.gallery-filters::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .gallery-filters {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
        margin-bottom: 2.5rem;
    }
}

.gallery-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.76rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 34px;
}

.gallery-btn:hover, .gallery-btn.active {
    background: var(--color-gold-gradient);
    color: #0b0b0e;
    border-color: transparent;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}

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

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 150px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 480px) {
    .gallery-item {
        height: 190px;
        border-radius: 10px;
    }
}

@media (min-width: 768px) {
    .gallery-item {
        height: 240px;
        border-radius: 12px;
    }
}

@media (min-width: 1200px) {
    .gallery-item {
        height: 280px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.85rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

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

.gallery-item-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0.1rem;
}

.gallery-item-sub {
    font-size: 0.65rem;
    color: var(--color-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ==========================================================================
   RESERVATIONS SECTION (TOUCH-FIRST)
   ========================================================================== */
.reservation-section {
    padding: 4rem 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 163, 89, 0.08) 0%, transparent 60%),
                #08080a;
    position: relative;
}

@media (min-width: 768px) {
    .reservation-section {
        padding: 6.5rem 0;
    }
}

.reservation-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: #111116;
    border: 1px solid var(--color-border-subtle);
    border-radius: 14px;
    padding: 1.25rem 0.95rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8);
    width: 100%;
}

@media (min-width: 640px) {
    .reservation-wrapper {
        padding: 2.25rem 1.75rem;
    }
}

@media (min-width: 1024px) {
    .reservation-wrapper {
        grid-template-columns: 0.9fr 1.1fr;
        padding: 3.5rem;
        gap: 4rem;
        border-radius: 18px;
    }
}

.res-info-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.res-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 1.25rem 0;
}

.res-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.res-icon-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(212, 163, 89, 0.15);
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.res-highlight-text h4 {
    font-size: 0.86rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.res-highlight-text p {
    font-size: 0.76rem;
    color: var(--color-text-secondary);
}

.concierge-card {
    background: #171720;
    border: 1px solid rgba(212, 163, 89, 0.2);
    border-radius: 8px;
    padding: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.concierge-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Reservation Form */
.res-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

@media (min-width: 600px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #cbd5e1;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: #09090d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 11px 12px;
    border-radius: 6px;
    font-size: 16px; /* Prevents auto-zoom in mobile Safari */
    font-family: var(--font-sans);
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--color-gold-light);
    box-shadow: 0 0 12px rgba(212, 163, 89, 0.15);
}

.form-select option {
    background: #111116;
    color: #fff;
}

.form-textarea {
    min-height: 75px;
    resize: vertical;
}

/* ==========================================================================
   TESTIMONIALS SLIDER
   ========================================================================== */
.testimonials-section {
    padding: 4rem 0;
    background: #0d0d12;
    position: relative;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 6.5rem 0;
    }
}

.testimonials-slider-container {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card-main {
    background: #14141c;
    border: 1px solid var(--color-border-subtle);
    border-radius: 14px;
    padding: 1.75rem 1.15rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    user-select: none;
}

@media (min-width: 768px) {
    .testimonial-card-main {
        padding: 2.75rem 2.25rem;
        border-radius: 18px;
    }
}

.test-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    color: #fbbf24;
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
}

.test-quote {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 3.2vw, 1.5rem);
    font-style: italic;
    color: #f1f5f9;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    word-break: break-word;
    transition: opacity 0.2s ease;
}

.test-author-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.test-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold-primary);
    margin-bottom: 0.35rem;
}

.test-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.test-role {
    font-size: 0.74rem;
    color: var(--color-gold-light);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.1rem;
    margin-top: 1.5rem;
}

.slider-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #181822;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background: var(--color-gold-gradient);
    color: #0b0b0e;
    border-color: transparent;
}

.slider-dots {
    display: flex;
    gap: 5px;
}

.slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--color-gold-light);
    width: 20px;
    border-radius: 9999px;
}

/* ==========================================================================
   LOCATION, HOURS & CONTACT
   ========================================================================== */
.contact-section {
    padding: 4rem 0;
    background: #08080a;
    position: relative;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 6.5rem 0;
    }
}

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

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.contact-card-box {
    background: #111116;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

@media (min-width: 640px) {
    .contact-card-box {
        padding: 2.25rem;
        border-radius: 14px;
    }
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.info-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 7px;
    background: rgba(212, 163, 89, 0.12);
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.info-content p, .info-content a {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    line-height: 1.45;
}

.info-content a:hover {
    color: var(--color-gold-light);
}

.hours-schedule {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 5px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-day {
    color: #e2e8f0;
}

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

/* Map */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 260px;
    min-height: 260px;
    border: 1px solid var(--color-border-subtle);
    box-shadow: 0 20px 45px rgba(0,0,0,0.7);
    background: #14141a;
}

@media (min-width: 768px) {
    .map-container {
        height: 100%;
        min-height: 340px;
        border-radius: 14px;
    }
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: none;
    filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(110%);
}

.map-card-floating {
    position: relative;
    margin-top: 8px;
    background: rgba(13, 13, 18, 0.94);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border-subtle);
    padding: 0.85rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

@media (min-width: 640px) {
    .map-card-floating {
        position: absolute;
        bottom: 12px;
        left: 12px;
        right: 12px;
        margin-top: 0;
    }
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 4rem 0;
    background: #0c0c10;
    position: relative;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 6.5rem 0;
    }
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #13131a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--color-border-medium);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.faq-question {
    padding: 1rem 1.15rem;
    font-family: var(--font-heading);
    font-size: 0.96rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 8px;
}

@media (min-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.6rem;
        font-size: 1.05rem;
    }
}

.faq-icon {
    font-size: 1rem;
    color: var(--color-gold-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 1.15rem;
    color: var(--color-text-secondary);
    font-size: 0.84rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .faq-answer {
        padding: 0 1.6rem;
        font-size: 0.9rem;
    }
}

.faq-item.active .faq-answer {
    max-height: 280px;
    padding: 0 1.15rem 1.15rem 1.15rem;
}

@media (min-width: 768px) {
    .faq-item.active .faq-answer {
        padding: 0 1.6rem 1.35rem 1.6rem;
    }
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta-section {
    padding: 4rem 0;
    position: relative;
    background: linear-gradient(180deg, #0c0c10 0%, #16120c 50%, #08080a 100%);
    text-align: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .final-cta-section {
        padding: 7rem 0;
    }
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0.5rem;
}

.cta-box h2 {
    font-size: clamp(1.75rem, 5vw, 3.6rem);
    margin-bottom: 0.85rem;
}

.cta-box p {
    font-size: clamp(0.9rem, 2.2vw, 1.05rem);
    color: #cbd5e1;
    margin-bottom: 1.75rem;
    max-width: 600px;
}

.cta-box .btn-gold, .cta-box .btn-outline {
    width: 100%;
}

@media (min-width: 480px) {
    .cta-box .btn-gold, .cta-box .btn-outline {
        width: auto;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #050507;
    border-top: 1px solid rgba(212, 163, 89, 0.15);
    padding: 3.5rem 0 2rem;
    color: #94a3b8;
    font-size: 0.84rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-bottom: 2.5rem;
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
        gap: 3rem;
    }
}

.footer-brand p {
    margin: 0.85rem 0;
    line-height: 1.6;
    color: #94a3b8;
    font-size: 0.82rem;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #111116;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--color-gold-gradient);
    color: #08080a;
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1.1rem;
    position: relative;
    padding-bottom: 5px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--color-gold-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.82rem;
    padding: 2px 0;
}

.footer-links a:hover {
    color: var(--color-gold-light);
    padding-left: 3px;
}

.newsletter-form {
    display: flex;
    gap: 6px;
    margin-top: 0.75rem;
    width: 100%;
}

.newsletter-form input {
    background: #0f0f15;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 16px; /* iOS zoom prevention */
    flex-grow: 1;
    min-width: 0;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--color-gold-light);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.74rem;
    color: #64748b;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ==========================================================================
   MODALS & LIGHTBOX (MULTI-DEVICE)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

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

.modal-content {
    background: #111116;
    border: 1px solid var(--color-border-medium);
    border-radius: 12px;
    max-width: 540px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    padding: 1.35rem 1rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.9), 0 0 35px rgba(212, 163, 89, 0.2);
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

@media (min-width: 640px) {
    .modal-content {
        padding: 2.25rem;
        border-radius: 16px;
    }
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close-btn:hover {
    background: var(--color-gold-gradient);
    color: #09090b;
}

/* Lightbox specific */
.lightbox-modal .modal-content {
    max-width: 900px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.lightbox-image-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.9);
    border: 1px solid rgba(212, 163, 89, 0.3);
}

.lightbox-image-wrap img {
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
    background: #000;
    display: block;
}

@media (min-width: 768px) {
    .lightbox-image-wrap img {
        max-height: 72vh;
    }
}

.lightbox-caption {
    background: rgba(10, 10, 14, 0.96);
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@media (min-width: 480px) {
    .lightbox-caption {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Booking Receipt */
.receipt-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.receipt-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gold-gradient);
    color: #0b0b0e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 0.65rem;
    box-shadow: 0 0 20px rgba(212, 163, 89, 0.4);
}

.receipt-code {
    display: inline-block;
    background: rgba(212, 163, 89, 0.1);
    border: 1px dashed var(--color-gold-light);
    color: var(--color-gold-light);
    font-family: monospace;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 5px;
    margin: 0.5rem 0;
    letter-spacing: 0.15em;
}

.receipt-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.25rem;
}

.receipt-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.receipt-table td {
    padding: 7px 0;
    font-size: 0.8rem;
    word-break: break-word;
}

.receipt-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #fff;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 15px;
    left: 15px;
    right: 15px;
    max-width: 380px;
    margin: 0 auto;
    background: #14141c;
    border: 1px solid var(--color-border-medium);
    border-radius: 8px;
    padding: 10px 15px;
    color: #fff;
    font-size: 0.82rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 20px rgba(212, 163, 89, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 200;
    transform: translateY(120px);
    opacity: 0;
    transition: var(--transition-smooth);
}

@media (min-width: 640px) {
    .toast-notification {
        left: auto;
        right: 20px;
        bottom: 20px;
    }
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    color: var(--color-gold-light);
    font-size: 1.05rem;
    flex-shrink: 0;
}
