/* ==========================================================================
   Foodie Cafe – Updated Premium Design System (Crawfish Mockup Style)
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --bg-color: #FAF7F2;
    /* Alabaster Warm Cream */
    --primary-color: #1A3C34;
    /* Deep Ralph Lauren Forest Green */
    --primary-hover: #122B25;
    /* Darker Forest Green */
    --secondary-color: #C5A880;
    /* Muted Rich Gold */
    --secondary-hover: #B4966E;
    /* Darker Gold */
    --accent-color: #F0ECE3;
    /* Soft Oatmeal Accent */

    /* Mockup Theme Colors */
    --dark-bg: #151716;
    /* Midnight Forest Charcoal */
    --teal-brand: #1A3C34;
    /* Deep Forest Green */
    --teal-brand-hover: #122B25;

    --text-color: #2F3331;
    /* Muted Forest Charcoal */
    --text-light: #FAF7F2;
    --text-muted: #707A75;
    /* Sage Gray */
    --success-color: #4C7C60;

    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Outfit', sans-serif;

    --shadow-sm: 0 4px 10px rgba(26, 60, 52, 0.02);
    --shadow-md: 0 10px 24px rgba(26, 60, 52, 0.04);
    --shadow-lg: 0 20px 40px rgba(26, 60, 52, 0.06);
    --shadow-lux: 0 40px 80px rgba(26, 60, 52, 0.08);

    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 9999px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Spacing Utilities */
.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 0.75rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

.mt-5 {
    margin-top: 1.25rem !important;
}

.mt-6 {
    margin-top: 1.5rem !important;
}

.mt-8 {
    margin-top: 2rem !important;
}

.mt-10 {
    margin-top: 2.5rem !important;
}

.mt-12 {
    margin-top: 3rem !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 0.75rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.mb-5 {
    margin-bottom: 1.25rem !important;
}

.mb-6 {
    margin-bottom: 1.5rem !important;
}

.mb-8 {
    margin-bottom: 2rem !important;
}

.mb-10 {
    margin-bottom: 2.5rem !important;
}

.mb-12 {
    margin-bottom: 3rem !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 0.75rem !important;
}

.pt-4 {
    padding-top: 1rem !important;
}

.pt-5 {
    padding-top: 1.25rem !important;
}

.pt-6 {
    padding-top: 1.5rem !important;
}

.pt-8 {
    padding-top: 2rem !important;
}

.pt-10 {
    padding-top: 2.5rem !important;
}

.pt-12 {
    padding-top: 3rem !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 0.75rem !important;
}

.pb-4 {
    padding-bottom: 1rem !important;
}

.pb-5 {
    padding-bottom: 1.25rem !important;
}

.pb-6 {
    padding-bottom: 1.5rem !important;
}

.pb-8 {
    padding-bottom: 2rem !important;
}

.pb-10 {
    padding-bottom: 2.5rem !important;
}

.pb-12 {
    padding-bottom: 3rem !important;
}

/* Typography Defaults */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

p {
    font-weight: 300;
    font-size: 16px;
    color: var(--text-muted);
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 0px;
}

.section-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-family: var(--font-main);
}

.section-title {
    font-size: 52px;
    font-weight: 600;
    color: var(--dark-bg);
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-white {
    background-color: transparent;
    border: 1.5px solid rgba(250, 247, 242, 0.4);
    color: var(--text-light);
}

.btn-outline-white:hover {
    border-color: rgba(250, 247, 242, 1);
    background-color: rgba(250, 247, 242, 0.05);
    transform: translateY(-2px);
}

.btn-secondary-light {
    background-color: #FFFFFF;
    color: var(--teal-brand);
}

.btn-secondary-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 12px;
}

.btn-block {
    width: 100%;
}

/* Global Premium Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 56px;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -2px;
    display: block;
    margin-bottom: 20px;
    animation: pulseLogo 1.5s infinite ease-in-out;
}

.loader-line {
    width: 140px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 45px;
    background-color: var(--primary-color);
    animation: loaderMove 1.5s infinite linear;
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes loaderMove {
    0% {
        left: -45px;
    }

    100% {
        left: 140px;
    }
}

/* Header & Navigation Styles */
#main-header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 64px);
    max-width: 1200px;
    z-index: 9999;
    padding: 14px 40px;
    transition: top 0.4s ease, width 0.4s ease, background-color 0.4s ease, padding 0.4s ease;
    background-color: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

#main-header.scrolled {
    top: 12px;
    width: calc(100% - 32px);
    background-color: rgba(255, 248, 240, 0.88);
    border-color: rgba(139, 94, 60, 0.12);
    box-shadow: 0 15px 50px rgba(139, 94, 60, 0.08);
    padding: 10px 32px;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 26px;
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

#main-header.scrolled .logo {
    color: var(--dark-bg);
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

#main-header.scrolled .logo-img {
    height: 40px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-align: left;
}

.logo-title-highlight {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--secondary-color);
    transition: var(--transition-smooth);
}

.logo-subtitle {
    font-family: var(--font-main);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition-smooth);
}

/* Scroll adjustments */
#main-header.scrolled .logo-title-highlight {
    color: var(--primary-color);
}

#main-header.scrolled .logo-subtitle {
    color: var(--text-muted);
}

/* Mobile Drawer adjustments */
.mobile-drawer .logo-title-highlight {
    color: var(--primary-color);
}

.mobile-drawer .logo-subtitle {
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding: 4px 0;
    transition: var(--transition-smooth);
}

#main-header.scrolled .nav-link {
    color: var(--text-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0;
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

#btn-nav-order {
    padding: 10px 24px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-main);
    font-weight: 700;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--secondary-color);
    background-color: transparent;
    color: var(--secondary-color);
    box-shadow: none;
    transition: var(--transition-smooth);
}

#main-header.scrolled #btn-nav-order {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

#btn-nav-order:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

#main-header.scrolled #btn-nav-order:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

/* Hamburger menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #FFFFFF; /* Always white on dark transparent header */
    transition: var(--transition-fast);
}

#main-header.scrolled .mobile-menu-toggle .bar {
    background-color: var(--dark-bg); /* Dark bars on light scrolled header */
}

/* Mobile Drawer Overlay */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-color);
    box-shadow: var(--shadow-lux);
    z-index: 10001; /* Must be above the sticky header z-index: 9999 */
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-close {
    font-size: 40px;
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.drawer-link {
    font-size: 20px;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--text-color);
    padding-bottom: 8px;
    border-bottom: 1.5px solid rgba(139, 94, 60, 0.08);
}



/* Native CSS hero entrance (replaces AOS to avoid mobile stacking context) */
@keyframes heroFadeUp {
    from { opacity: 0; translate: 0 24px; }
    to   { opacity: 1; translate: 0 0;   }
}

.hero-badge-container { animation: heroFadeUp 0.9s 0.10s cubic-bezier(0.16,1,0.3,1) both; }
.video-hero-title     { animation: heroFadeUp 0.9s 0.25s cubic-bezier(0.16,1,0.3,1) both; }
.video-hero-desc      { animation: heroFadeUp 0.9s 0.40s cubic-bezier(0.16,1,0.3,1) both; }
.video-hero-actions   { animation: heroFadeUp 0.9s 0.55s cubic-bezier(0.16,1,0.3,1) both; }
.hero-highlights-bar  { animation: heroFadeUp 0.9s 0.70s cubic-bezier(0.16,1,0.3,1) both; }

/* Hero Section (Cinematic Video Background Layout) */
.hero-video-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #08080a;
    overflow: hidden;
    /* No z-index here — avoids creating a stacking context that can trap fixed elements */
    padding: 140px 0 100px 0;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
}

/* Cinematic Dark Vignette Overlay - Perfectly Centered for balanced focus */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.85) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-video-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 0;
}

.hero-badge-container {
    margin-bottom: 8px;
    z-index: 5;
}

.video-hero-tag {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-block;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.video-hero-title {
    font-family: var(--font-main);
    font-size: 78px;
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    letter-spacing: -2px;
    margin: 0 auto;
}

.text-gold {
    font-family: var(--font-main);
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.video-hero-desc {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
    max-width: 650px;
    margin: 0 auto;
}

.video-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.btn-gold-lux {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    border: 1.5px solid var(--secondary-color);
    padding: 14px 32px;
    border-radius: 30px;
    color: var(--primary-color);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}

.btn-gold-lux:hover {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

.btn-gold-lux svg {
    transition: transform 0.3s ease;
}

.btn-gold-lux:hover svg {
    transform: translateX(4px);
}

.btn-outline-lux {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 14px 32px;
    border-radius: 30px;
    color: #FFFFFF;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-outline-lux:hover {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.hero-highlights-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 18px 40px;
    width: 100%;
    max-width: 950px;
    margin-top: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 5;
    transition: var(--transition-smooth);
}

.hero-highlights-bar:hover {
    border-color: rgba(197, 168, 128, 0.3);
    background: rgba(10, 10, 10, 0.55);
    transform: translateY(-2px);
}

.hl-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    flex: 1;
}

.hl-bar-num {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.95;
}

.hl-bar-content {
    display: flex;
    flex-direction: column;
}

.hl-bar-content h4 {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.hl-bar-content p {
    font-family: var(--font-main);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

.hl-bar-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 32px;
}

/* Scroll Down Indicator */
.video-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.scroll-label {
    font-family: var(--font-main);
    font-size: 9px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2.5px;
}

.scroll-dot-line {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 20px;
    animation: scrollDotAnim 2s infinite ease-in-out;
}

@keyframes scrollDotAnim {
    0% {
        top: -8px;
        opacity: 0;
    }

    50% {
        top: 15px;
        opacity: 1;
    }

    100% {
        top: 45px;
        opacity: 0;
    }
}



/* Welcome story section (Redesigned with Premium Cards) */
.story-section {
    padding: 70px 0 90px 0;
    background-color: var(--bg-color);
    position: relative;
}

.welcome-banner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.welcome-since {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--secondary-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.welcome-title {
    font-family: var(--font-main);
    font-size: 46px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.25;
    letter-spacing: -1px;
}

.text-gold-serif {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 300;
}

.title-divider-gold {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 168, 128, 0.4) 20%, var(--secondary-color) 50%, rgba(197, 168, 128, 0.4) 80%, transparent 100%);
    width: 220px;
    margin: 24px auto 0 auto;
}

.stories-list-layout {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.story-row {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.story-row-image-wrapper {
    width: 60%;
    height: 440px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-lux);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(197, 168, 128, 0.15);
}

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

.story-row:hover .story-row-img {
    transform: scale(1.05);
}

.story-row-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 60, 52, 0.15), transparent);
    pointer-events: none;
}

.story-row-content-card {
    width: 46%;
    margin-left: -6%;
    z-index: 2;
    background: #FFFFFF;
    border: 1px solid rgba(197, 168, 128, 0.16);
    border-radius: var(--radius-sm);
    padding: 48px 44px;
    box-shadow: 0 10px 30px rgba(26, 60, 52, 0.04);
    transition: var(--transition-smooth);
}

.story-row-content-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(26, 60, 52, 0.08);
    transform: translateY(-6px);
}

.story-row.row-reverse {
    flex-direction: row-reverse;
}

.story-row.row-reverse .story-row-content-card {
    margin-left: 0;
    margin-right: -6%;
}

.story-row-badge {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 16px;
}

.story-row-content-card h3 {
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.story-row-content-card:hover h3 {
    color: var(--secondary-color);
}

.story-row-content-card p {
    font-family: var(--font-main);
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 26px;
    margin-top: 0;
}

.story-row-link {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(26, 60, 52, 0.15);
    padding-bottom: 2px;
}

.story-row-link .arrow {
    transition: var(--transition-smooth);
}

.story-row-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.story-row-link:hover .arrow {
    transform: translateX(5px);
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.about-triptych-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

.about-col-left,
.about-col-right {
    position: relative;
    width: 100%;
}

.about-frame-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-lux);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

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

.about-frame-wrapper:hover .about-triptych-img {
    transform: scale(1.05);
}

.about-frame-border {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(197, 168, 128, 0.25);
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 2;
}

.about-frame-wrapper:hover .about-frame-border {
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border-color: var(--secondary-color);
}

.right-stagger {
    margin-top: 60px;
}

.about-col-center {
    padding: 0 10px;
}

.about-highlights-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 36px 0;
}

.highlight-strip-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 20px;
    background-color: #FAF8F5;
    border: 1px solid rgba(197, 168, 128, 0.12);
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.highlight-strip-item:hover {
    border-color: var(--secondary-color);
    background-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 60, 52, 0.03);
}

.highlight-icon {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.highlight-strip-item:hover .highlight-icon {
    background-color: var(--secondary-color);
    color: #FFFFFF;
}

.highlight-info h4 {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 3px 0;
}

.highlight-info span {
    font-family: var(--font-main);
    font-size: 12.5px;
    color: var(--text-color);
    opacity: 0.8;
}

.about-center-seal-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.about-seal-badge {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seal-text-svg {
    width: 100%;
    height: 100%;
    animation: spin-slow 22s linear infinite;
}

.seal-center {
    position: absolute;
    width: 62px;
    height: 62px;
    background-color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.seal-center::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px dashed rgba(197, 168, 128, 0.3);
    border-radius: var(--radius-full);
}

.seal-logo {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--secondary-color);
    font-style: italic;
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-subtitle-elegant {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.subtitle-line {
    height: 1px;
    background-color: rgba(197, 168, 128, 0.4);
    flex-grow: 1;
    max-width: 80px;
}

.section-title-elegant {
    font-family: var(--font-main);
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.about-lead-desc {
    font-family: var(--font-main);
    font-size: 17px;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 500;
}

.about-sub-desc {
    font-family: var(--font-main);
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 40px;
}

/* Split Menu List Section (Redesigned Interactive Spotlight & Dot-Connector Style) */
.menu-list-section {
    padding: 70px 0;
    background-color: var(--accent-color);
}

.grid-menu-list {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: start;
}

.menu-spotlight-column {
    position: sticky;
    top: 120px;
}

.menu-spotlight-frame {
    position: relative;
    width: 100%;
    height: 570px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(197, 168, 128, 0.2);
    box-shadow: var(--shadow-lux);
    display: flex;
    align-items: flex-end;
    background-color: var(--primary-color);
}

.menu-spotlight-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(21, 23, 22, 0.95) 0%, rgba(21, 23, 22, 0.5) 55%, rgba(21, 23, 22, 0.1) 100%);
    z-index: 2;
}

.menu-spotlight-content {
    position: relative;
    z-index: 3;
    padding: 40px;
    width: 100%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Crossfade transitions */
.menu-spotlight-frame.changing .menu-spotlight-img {
    opacity: 0.15;
    transform: scale(1.02);
}

.menu-spotlight-frame.changing .menu-spotlight-content {
    opacity: 0;
    transform: translateY(8px);
}

.spotlight-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 12px;
    border: 1px solid rgba(197, 168, 128, 0.4);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

#menu-spotlight-title {
    font-family: var(--font-serif);
    font-size: 30px;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.5px;
}

#menu-spotlight-desc {
    font-family: var(--font-main);
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-weight: 300;
}

.spotlight-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spotlight-price {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-color);
}

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

.menu-category-group {
    display: flex;
    flex-direction: column;
}

.menu-category-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--teal-brand);
    border-bottom: 1.5px solid rgba(197, 168, 128, 0.2);
    padding-bottom: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-interactive-item {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(197, 168, 128, 0.06);
    background-color: #FFFFFF;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.menu-interactive-item:hover,
.menu-interactive-item.active {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(26, 60, 52, 0.04);
}

.menu-interactive-item.active {
    background-color: #FAF8F5;
}

.menu-item-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.interactive-item-name {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.menu-interactive-item:hover .interactive-item-name,
.menu-interactive-item.active .interactive-item-name {
    color: var(--secondary-color);
}

.interactive-item-dots {
    flex-grow: 1;
    border-bottom: 1px dashed rgba(197, 168, 128, 0.2);
    margin: 0 12px;
    height: 1px;
}

.interactive-item-price {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 800;
    color: var(--secondary-color);
}

.interactive-item-summary {
    font-family: var(--font-main);
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.75;
    margin: 0;
}

/* Best Sellers Accordion Section */
.best-sellers-section {
    padding: 70px 0;
    background-color: #FAF8F5;
    /* Warmer background offset from white sections */
}

.best-sellers-accordion {
    display: flex;
    gap: 20px;
    width: 100%;
    height: 500px;
}

.bestseller-acc-card {
    position: relative;
    flex: 1;
    height: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1.5px solid rgba(197, 168, 128, 0.15);
    transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    background-color: var(--primary-color);
}

.bestseller-acc-card.active {
    flex: 3.2;
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lux);
}

.acc-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.acc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.05);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.bestseller-acc-card.active .acc-img {
    transform: scale(1.04);
    filter: brightness(0.4) contrast(1.1);
}

.acc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(21, 23, 22, 0.95) 0%, rgba(21, 23, 22, 0.3) 60%, rgba(21, 23, 22, 0.1) 100%);
    z-index: 2;
}

.acc-collapsed-title {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bestseller-acc-card.active .acc-collapsed-title {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.acc-num {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary-color);
}

.acc-vertical-text {
    font-family: var(--font-serif);
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
}

.acc-expanded-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s, visibility 0.4s ease 0.2s;
}

.bestseller-acc-card.active .acc-expanded-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.acc-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.acc-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    border: 1px solid rgba(197, 168, 128, 0.5);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.acc-stars-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.acc-stars-row .star-svg {
    width: 14px;
    height: 14px;
    fill: var(--secondary-color);
}

.acc-rating-val {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 800;
    color: #FFFFFF;
}

.acc-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-weight: 400;
}

.acc-desc {
    font-family: var(--font-main);
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    max-width: 85%;
}

.acc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.acc-price {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-color);
}


/* Gallery Slider (Cover Flow Carousel) Styles */
.gallery-section {
    padding: 70px 0;
    background-color: rgba(197, 168, 128, 0.08);
    overflow: hidden;
}

.gallery-slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0 auto;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.gallery-coverflow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.gallery-slide {
    position: absolute;
    width: 320px;
    height: 440px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1.5px solid rgba(197, 168, 128, 0.15);
    background-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, z-index 0.6s ease, border-color 0.4s ease;
}

.gallery-slide:hover {
    border-color: var(--secondary-color);
}

.gallery-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.05);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
    display: block;
}

.gallery-slide.active:hover .gallery-slide-img {
    transform: scale(1.05);
    filter: brightness(0.85) contrast(1.05);
}

.gallery-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(21, 23, 22, 0.95) 0%, rgba(21, 23, 22, 0.4) 75%, transparent 100%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-slide.active .gallery-slide-info {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.gallery-slide-tag {
    font-family: var(--font-main);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
}

.gallery-slide-title {
    font-family: var(--font-serif);
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 400;
    margin: 0;
}

/* Nav Buttons */
.gallery-nav-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(21, 23, 22, 0.85);
    border: 1.5px solid rgba(197, 168, 128, 0.3);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.gallery-nav-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.gallery-nav-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.gallery-nav-btn.prev-btn {
    left: -60px;
}

.gallery-nav-btn.next-btn {
    right: -60px;
}

.gallery-nav-btn.prev-btn:hover svg {
    transform: translateX(-2px);
}

.gallery-nav-btn.next-btn:hover svg {
    transform: translateX(2px);
}

/* Dots */
.gallery-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.gallery-slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(21, 23, 22, 0.2);
    border: 1.5px solid rgba(197, 168, 128, 0.35);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slider-dots .dot.active {
    width: 28px;
    border-radius: var(--radius-full);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Lightbox Pop-up Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 21, 21, 0.96);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 50px;
    color: #FFFFFF;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    text-align: center;
}

.lightbox-content img {
    max-height: 75vh;
    max-width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.lightbox.open .lightbox-content img {
    transform: scale(1);
}

.lightbox-caption {
    color: var(--accent-color);
    margin-top: 20px;
    font-size: 18px;
    font-family: var(--font-serif);
}


/* Contact Section Styles */
.contact-section {
    padding: 70px 0;
    background-color: var(--accent-color);
}

.contact-panel-card {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    background-color: #FFFFFF;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-lux);
    border: 1.5px solid rgba(197, 168, 128, 0.2);
    margin-top: 50px;
    min-height: 580px;
}

/* Left Panel (Noir Details) */
.contact-panel-left {
    background-color: var(--primary-color);
    padding: 60px 50px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-right: 1.5px solid rgba(197, 168, 128, 0.2);
}

.panel-left-content {
    position: relative;
    z-index: 2;
}

.panel-subtitle {
    font-family: var(--font-main);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    display: block;
}

.panel-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    line-height: 1.25;
}

.panel-desc {
    font-family: var(--font-main);
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 40px 0;
}

.contact-luxury-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.luxury-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.luxury-detail-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.12);
    border: 1px solid rgba(197, 168, 128, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.luxury-detail-item:hover .luxury-detail-icon {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.luxury-detail-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.luxury-detail-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-family: var(--font-main);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
}

.detail-val {
    font-family: var(--font-main);
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 300;
}

.detail-val a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-val a:hover {
    color: var(--secondary-color);
}

/* Right Panel (Form) */
.contact-panel-right {
    padding: 60px;
    background-color: #FAF6F0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.contact-luxury-form {
    display: flex;
    flex-direction: column;
}

.luxury-form-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0 0 8px 0;
}

.luxury-form-subtitle {
    font-family: var(--font-main);
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0 0 35px 0;
    font-weight: 300;
}

.luxury-form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.luxury-form-label {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
    transition: color 0.3s ease;
}

.luxury-form-group:focus-within .luxury-form-label {
    color: var(--secondary-color);
}

.luxury-form-input {
    background-color: #FFFFFF;
    border: 1px solid rgba(197, 168, 128, 0.35);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    font-family: var(--font-main);
    color: var(--primary-color);
    font-size: 15px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01), 0 2px 8px rgba(139, 94, 60, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.luxury-form-input::placeholder {
    color: rgba(21, 23, 22, 0.4);
    font-weight: 300;
}

.luxury-form-input:focus {
    background-color: #FFFFFF;
    border-color: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(197, 168, 128, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.01);
    outline: none;
}

.luxury-form-textarea {
    height: 120px;
    resize: none;
}

.btn-luxury-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 28px;
    background-color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    color: #FFFFFF;
    font-family: var(--font-main);
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.btn-luxury-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.15),
            transparent);
    transition: 0.5s;
}

.btn-luxury-submit:hover::before {
    left: 100%;
}

.btn-luxury-submit:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.25);
}

.btn-luxury-submit:active {
    transform: translateY(0);
}

/* Success State Panel */
.luxury-success-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    z-index: 10;
    opacity: 1;
    animation: fadeInSuccess 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.luxury-success-state.hidden {
    display: none !important;
}

.luxury-success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 360px;
    animation: bouncePop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.luxury-success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.12);
    border: 1.5px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.luxury-success-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.luxury-success-content h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--primary-color);
    margin: 0;
}

.luxury-success-content p {
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    font-weight: 300;
}

@keyframes fadeInSuccess {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bouncePop {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Map Section Styles */
.map-section {
    padding: 0;
    margin: 0;
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-overlay-button {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

/* Footer Section Styles */
#main-footer {
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 60px 0 20px 0;
    border-top: 1.5px solid rgba(197, 168, 128, 0.15);
}

.grid-footer {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-family: var(--font-main);
}

.footer-logo-link {
    margin-bottom: 20px;
}

.footer-brand-col .footer-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.footer-about-text {
    font-family: var(--font-main);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.1);
    border: 1px solid rgba(197, 168, 128, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-social-links svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Links Column */
.footer-links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-grid a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    font-size: 13.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-grid a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

/* Hours Column */
.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.day-label {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.time-label {
    font-family: var(--font-main);
    font-size: 13.5px;
    color: #FFFFFF;
    font-weight: 300;
}

.hour-note {
    font-family: var(--font-main);
    font-size: 12px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 10px;
}

/* Contact Column */
.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-line {
    font-family: var(--font-main);
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 300;
}

.contact-line a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-line a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #ffffffcf;
    font-size: 12px;
    font-weight: 300;
}

.footer-bottom p a {
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom p a:hover {
    color: #FFFFFF;
}

.footer-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.15);
}

/* Floating Actions Buttons (Desktop & general scroll) */
.floating-actions {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* z-index must be LOWER than mobile drawer (2000) and header (9999) but above page content */
    z-index: 1000;
    /* NO transform property here — would create a stacking context
       that traps fixed children on iOS Safari / Android Chrome */
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.float-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: block;
}

.float-call {
    background-color: var(--dark-bg);
    color: #FFFFFF;
}

.float-call:hover {
    background-color: #000000;
    transform: scale(1.08) translateY(-3px);
}

.float-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
}

.float-whatsapp:hover {
    background-color: #20BA5A;
    transform: scale(1.08) translateY(-3px);
}

.float-back-to-top {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.9);
}

.float-back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.float-back-to-top:hover {
    background-color: var(--secondary-hover);
    transform: scale(1.08) translateY(-3px);
}

/* Mobile Bottom CTA Bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(21, 23, 22, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1.5px solid rgba(197, 168, 128, 0.2);
    z-index: 1999; /* Below mobile drawer at 2000 */
    align-items: center;
    justify-content: space-around;
}

.mobile-cta-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    color: #FFFFFF;
    font-family: var(--font-main);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.mobile-cta-item svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-cta-call {
    border-right: 1px solid rgba(197, 168, 128, 0.15);
}

.mobile-cta-whatsapp {
    background-color: rgba(37, 211, 102, 0.08);
}

.mobile-cta-whatsapp svg {
    color: #25D366;
}

.mobile-cta-item:active {
    background-color: rgba(197, 168, 128, 0.12);
}





/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Tablet view styling */
@media (max-width: 1024px) {
    .grid-hero-ember {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-ember-left {
        min-height: auto;
        text-align: center;
        gap: 40px;
    }

    .ember-brand-title {
        margin-bottom: 24px;
    }

    .ember-title-red,
    .ember-title-white {
        font-size: 80px;
    }

    .btn-ember-pill {
        margin: 0 auto;
    }

    .ember-meta-desc {
        margin: 0 auto;
    }

    .ember-top-desc {
        align-self: center;
        text-align: center;
        margin-bottom: 40px;
    }

    .plates-stage {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .plate-3d {
        width: 170px;
        height: 170px;
    }

    .tag-top {
        top: 30px;
        left: -100px;
    }

    .tag-middle {
        top: 80px;
        left: -90px;
    }

    .tag-bottom {
        top: 40px;
        left: -100px;
    }



    .welcome-title {
        font-size: 32px;
    }

    .stories-list-layout {
        gap: 60px;
    }

    .story-row,
    .story-row.row-reverse {
        flex-direction: column;
        align-items: stretch;
    }

    .story-row-image-wrapper {
        width: 100%;
        height: 280px;
    }

    .story-row-content-card,
    .story-row.row-reverse .story-row-content-card {
        width: 92%;
        margin: -40px auto 0 auto;
        padding: 36px 24px;
    }

    .about-triptych-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-col-center {
        order: 1;
    }

    .about-col-left {
        order: 2;
    }

    .about-col-right {
        order: 3;
    }

    .about-frame-wrapper {
        height: 360px;
        max-width: 500px;
        margin: 0 auto;
    }

    .right-stagger {
        margin-top: 0;
    }

    .grid-menu-list {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-spotlight-column {
        position: static;
    }

    .menu-spotlight-frame {
        height: 400px;
    }

    .best-sellers-accordion {
        height: 440px;
        gap: 12px;
    }

    .gallery-slider-container {
        max-width: 90%;
    }

    .gallery-nav-btn.prev-btn {
        left: -20px;
    }

    .gallery-nav-btn.next-btn {
        right: -20px;
    }


    .contact-panel-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-panel-left {
        border-right: none;
        border-bottom: 1.5px solid rgba(197, 168, 128, 0.2);
    }

    .grid-footer {
        grid-template-columns: 1.2fr 1fr;
        gap: 50px;
    }
}

/* Mobile View styling */
@media (max-width: 768px) {
    #main-header {
        top: 12px;
        left: 12px !important;
        right: 12px !important;
        width: auto !important;
        max-width: none !important;
        transform: none !important; /* Override translateX(-50%) from desktop */
        padding: 10px 14px 10px 16px;
        border-radius: 18px;
    }

    #main-header.scrolled {
        top: 8px;
        left: 8px !important;
        right: 8px !important;
        padding: 9px 12px 9px 14px;
        border-radius: 14px;
    }

    /* Remove extra container padding inside mobile navbar */
    #main-header .navbar-container {
        padding: 0;
    }

    .section-title {
        font-size: 38px;
    }

    .hero-video-section {
        padding: 110px 0 50px 0;
        min-height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-video-centered {
        padding: 0 4px;
        gap: 18px;
    }

    .hero-video-centered > * {
        flex-shrink: 0;
    }

    .video-hero-title {
        font-size: 36px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .video-hero-desc {
        font-size: 13.5px;
        text-align: center;
        max-width: 100%;
        line-height: 1.6;
        margin-bottom: 4px;
    }

    .video-hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-gold-lux,
    .btn-outline-lux {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    .hero-highlights-bar {
        flex-direction: column;
        border-radius: var(--radius-md);
        padding: 16px 20px;
        gap: 14px;
        margin: 28px auto 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .hl-bar-item {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        flex-direction: row;
        gap: 14px;
    }

    .hl-bar-divider {
        display: none;
    }

    .video-scroll-indicator {
        display: none;
    }

    /* Show mobile hamburger toggle — no padding so bars aren't compressed by border-box */
    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
        width: 28px;
        height: 20px;
        padding: 0;
    }

    /* Logo stays left, doesn't steal all space */
    .logo-link {
        min-width: 0;
        overflow: hidden;
        flex-shrink: 1;
    }

    .logo-text-group {
        overflow: hidden;
    }

    .nav-links,
    #btn-nav-order {
        display: none;
    }

    .nav-actions {
        gap: 0;
        flex-shrink: 0;
    }

    .about-section,
    .story-section,
    .menu-list-section,
    .best-sellers-section,
    .gallery-section,
    .contact-section {
        padding: 70px 0;
    }



    .welcome-title {
        font-size: 28px;
    }

    .best-sellers-accordion {
        flex-direction: column;
        height: auto;
        gap: 12px;
    }

    .bestseller-acc-card {
        flex: none;
        height: 100px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    }

    .bestseller-acc-card.active {
        height: 380px;
        flex: none;
    }

    .acc-collapsed-title {
        left: 20px;
        right: 20px;
        transform: none;
        bottom: 50%;
        transform: translateY(50%);
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        overflow: hidden;
        max-width: calc(100% - 40px);
    }

    .acc-vertical-text {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        font-size: 15px;
        white-space: normal;
        word-break: break-word;
        line-height: 1.3;
    }

    .acc-expanded-content {
        padding: 24px;
    }

    .acc-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .acc-desc {
        font-size: 12.5px;
        line-height: 1.5;
        margin-bottom: 16px;
        max-width: 100%;
    }

    .acc-footer {
        padding-top: 15px;
    }

    .gallery-slider-container {
        height: 380px;
        max-width: 100%;
    }

    .gallery-slide {
        width: 240px;
        height: 320px;
    }

    .gallery-slide-info {
        padding: 20px;
    }

    .gallery-slide-title {
        font-size: 16px;
    }

    .gallery-nav-btn {
        width: 40px;
        height: 40px;
    }

    .gallery-nav-btn.prev-btn {
        left: 5px;
    }

    .gallery-nav-btn.next-btn {
        right: 5px;
    }


    .contact-panel-left {
        padding: 40px 30px;
    }

    .contact-panel-right {
        padding: 40px 30px;
    }

    .grid-footer {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .floating-actions {
        bottom: 28px;
        right: 20px;
        gap: 12px;
    }

    .float-btn {
        width: 46px;
        height: 46px;
        font-size: 17px;
    }
}

/* Mobile composition overrides */
@media (max-width: 480px) {
    .logo-img {
        height: 38px;
    }

    #main-header.scrolled .logo-img {
        height: 32px;
    }

    .logo-title-highlight {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .logo-subtitle {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .about-frame-wrapper {
        height: 260px;
    }

    .about-seal-badge {
        width: 80px;
        height: 80px;
    }

    .seal-center {
        width: 46px;
        height: 46px;
    }

    .seal-logo {
        font-size: 16px;
    }

    .section-title-elegant {
        font-size: 30px;
    }

    .menu-spotlight-frame {
        height: 320px;
    }

    .menu-spotlight-content {
        padding: 24px;
    }

    #menu-spotlight-title {
        font-size: 24px;
    }

    .menu-interactive-item {
        padding: 14px 16px;
    }

    .interactive-item-dots {
        margin: 0 8px;
    }
}

/* ==========================================================================
   FAQ Section Styles (GEO / LLM Optimization)
   ========================================================================== */
.faq-section {
    padding: 70px 0;
    background-color: var(--bg-color);
    border-top: 1px solid rgba(197, 168, 128, 0.2);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(26, 60, 52, 0.06);
}

.faq-item.active {
    border-color: var(--primary-color);
    background: rgba(197, 168, 128, 0.05);
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question-btn:focus {
    outline: none;
}

.faq-question-btn span:first-child {
    padding-right: 20px;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    display: inline-block;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-panel p {
    padding: 0 24px 22px;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.85;
}

/* ==========================================================================
   Premium Toast Notifications
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
    width: calc(100vw - 60px);
    pointer-events: none;
}

.luxury-toast {
    background-color: var(--dark-bg);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.luxury-toast.success {
    border-left: 4px solid var(--success-color);
}

.luxury-toast.error {
    border-left: 4px solid #D32F2F;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.toast-icon svg {
    width: 100%;
    height: 100%;
}

.luxury-toast.success .toast-icon svg {
    fill: var(--success-color);
}

.luxury-toast.error .toast-icon svg {
    fill: #D32F2F;
}

.toast-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toast-title {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin: 0;
}

.toast-message {
    font-family: var(--font-main);
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

.toast-close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    transition: var(--transition-fast);
}

.toast-close-btn:hover {
    color: var(--text-light);
}

/* ==========================================================================
   Testimonials / Reviews Section (Local SEO Update)
   ========================================================================== */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: var(--text-light);
    border-top: 1.5px solid rgba(197, 168, 128, 0.2);
    border-bottom: 1.5px solid rgba(197, 168, 128, 0.2);
}

.testimonials-section .section-subtitle {
    color: var(--secondary-color);
}

.testimonials-section .section-title {
    color: var(--text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(26, 60, 52, 0.15);
    border: 1.5px solid rgba(197, 168, 128, 0.15);
    border-radius: var(--radius-sm);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    background: rgba(26, 60, 52, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.stars-rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(250, 247, 242, 0.85);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar-initials {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 1.5px solid var(--secondary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-main);
    flex-shrink: 0;
}

.author-info h4 {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 2px 0;
}

.author-info span {
    font-size: 12px;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    display: block;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}