/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-primary: #0c0a09;       /* Stone 950 */
    --bg-secondary: #1c1917;     /* Stone 900 */
    --bg-tertiary: #292524;      /* Stone 800 */
    --bg-glass: rgba(28, 25, 23, 0.85);
    
    --text-primary: #fafaf9;     /* Stone 50 */
    --text-secondary: #d6d3d1;   /* Stone 300 */
    --text-muted: #a8a29e;       /* Stone 400 */
    
    --accent-gold: #d97706;      /* Amber 600 */
    --accent-gold-hover: #b45309;/* Amber 700 */
    --accent-brass: #e2b76e;     /* Champagne/Brass */
    --accent-brass-rgb: 226, 183, 110;
    
    --accent-green: #16a34a;     /* Basil Green */
    --accent-green-bg: rgba(22, 163, 74, 0.12);
    --accent-red: #dc2626;       /* Tomato Red */
    --accent-red-bg: rgba(220, 38, 38, 0.12);
    
    --border-color: rgba(226, 183, 110, 0.12);
    --border-focus: rgba(226, 183, 110, 0.4);
    
    /* Typography */
    --font-serif: "Playfair Display", Georgia, serif;
    --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.6);
    
    /* Border Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 30px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

ul {
    list-style: none;
}

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

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

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

section {
    padding: 100px 0;
    position: relative;
}

.section-subtitle {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-brass);
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--text-primary);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-brass);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(226, 183, 110, 0.05);
    border-color: var(--accent-brass);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 24px 0;
}

.main-header.scrolled {
    background-color: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.logo-image {
    height: 34px;
    width: auto;
    display: block;
}

.logo-accent {
    color: var(--accent-gold);
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-brass);
    transition: var(--transition-smooth);
}

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

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

.nav-link.active {
    color: var(--accent-brass);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: url("assets/hero_pasta.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(12, 10, 9, 0.4) 0%, rgba(12, 10, 9, 0.95) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    display: block;
    color: var(--accent-brass);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    color: var(--accent-brass);
}

/* ==========================================================================
   HIGHLIGHTS SECTION
   ========================================================================== */
.highlights-section {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.highlight-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-brass);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(226, 183, 110, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent-brass);
    transition: var(--transition-smooth);
    border: 1px solid rgba(226, 183, 110, 0.1);
}

.highlight-card:hover .highlight-icon {
    background-color: var(--accent-gold);
    color: var(--text-primary);
    transform: scale(1.1);
}

.highlight-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.highlight-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   STORY / ABOUT SECTION
   ========================================================================== */
.story-section {
    background-color: var(--bg-primary);
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image-wrapper::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(226, 183, 110, 0.3);
    border-radius: calc(var(--radius-lg) - 5px);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.story-image-wrapper:hover::after {
    border-color: var(--accent-brass);
    transform: scale(0.98);
}

.story-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.story-image-wrapper:hover .story-img {
    transform: scale(1.03);
}

.story-experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-gold);
    color: var(--text-primary);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
    min-width: 120px;
}

.badge-years {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.story-content {
    display: flex;
    flex-direction: column;
}

.story-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.story-quote {
    margin-top: 20px;
    padding-left: 24px;
    border-left: 3px solid var(--accent-brass);
    font-style: italic;
}

.story-quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.quote-author {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--accent-brass);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   MENU SECTION
   ========================================================================== */
.menu-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    border-color: var(--accent-brass);
    color: var(--text-primary);
}

.filter-btn.active {
    background-color: var(--accent-gold);
    color: var(--text-primary);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.2);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.menu-item-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-item-card:hover {
    border-color: rgba(226, 183, 110, 0.35);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.menu-item-card.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border: none;
    overflow: hidden;
}

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

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.28rem;
    color: var(--text-primary);
}

.menu-item-price {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: var(--accent-brass);
    font-weight: 700;
    white-space: nowrap;
}

.menu-item-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-primary);
    background-color: rgba(226, 183, 110, 0.12);
    border: 1px solid rgba(226, 183, 110, 0.25);
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.menu-item-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.menu-item-desc--wine {
    white-space: normal;
    line-height: 1.7;
}

.menu-item-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.menu-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
}

.menu-badge--top {
    color: var(--accent-brass);
    background-color: rgba(226, 183, 110, 0.08);
    border-color: rgba(226, 183, 110, 0.25);
}

.menu-badge--veg {
    color: var(--accent-green);
    background-color: var(--accent-green-bg);
    border-color: rgba(16, 185, 129, 0.18);
}

.menu-badge--special {
    color: #f59e0b;
    background-color: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.25);
}

.tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag-veg {
    color: var(--accent-green);
    background-color: var(--accent-green-bg);
}

.tag-gf {
    color: var(--accent-brass);
    background-color: rgba(226, 183, 110, 0.08);
}

.tag-chef {
    color: #f59e0b; /* Yellow 500 */
    background-color: rgba(245, 158, 11, 0.1);
}

/* ==========================================================================
   RESERVATION SECTION
   ========================================================================== */
.reservation-section {
    background-image: url("assets/restaurant.png");
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}

.image-bank-section {
    background-color: var(--bg-secondary);
    padding: 90px 0;
}

.image-bank-scroll {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 8px 6px 18px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(226, 183, 110, 0.45) transparent;
}

.image-bank-scroll::-webkit-scrollbar {
    height: 10px;
}

.image-bank-scroll::-webkit-scrollbar-thumb {
    background: rgba(226, 183, 110, 0.45);
    border-radius: 999px;
}

.image-bank-card {
    flex: 0 0 280px;
    height: 380px;
    border-radius: 22px;
    overflow: hidden;
    scroll-snap-align: start;
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-sm);
}

.image-bank-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.image-bank-card:hover img {
    transform: scale(1.03);
}

.reservation-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12, 10, 9, 0.8) 0%, rgba(12, 10, 9, 0.92) 100%);
    z-index: 1;
}

.reservation-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.reservation-card {
    background-color: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 800px;
    box-shadow: var(--shadow-lg);
}

.reservation-header {
    text-align: center;
    margin-bottom: 40px;
}

.card-subtitle {
    display: block;
    color: var(--accent-brass);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 550px;
    margin: 0 auto;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    width: 16px;
    height: 16px;
    color: var(--accent-brass);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: rgba(12, 10, 9, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-brass);
    box-shadow: 0 0 0 3px rgba(226, 183, 110, 0.15);
}

/* Error States */
.form-group.invalid input,
.form-group.invalid select {
    border-color: var(--accent-red);
}

.error-message {
    font-size: 0.75rem;
    color: var(--accent-red);
    display: none;
    margin-top: 4px;
}

.form-group.invalid .error-message {
    display: block;
}

/* Spinner & Button States */
#submit-booking-btn {
    position: relative;
    overflow: hidden;
}

#submit-booking-btn.loading .btn-text {
    opacity: 0;
}

.spinner {
    display: none;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--text-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

#submit-booking-btn.loading .spinner {
    display: block;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background-color: var(--bg-primary);
    position: relative;
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.testimonial-slider {
    position: relative;
    min-height: 250px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-stars i {
    width: 20px;
    height: 20px;
}

.star-fill {
    color: #fbbf24; /* Amber star */
    fill: #fbbf24;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.author-title {
    font-size: 0.8rem;
    color: var(--accent-brass);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.carousel-arrow {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-arrow:hover {
    background-color: var(--accent-brass);
    color: var(--bg-primary);
    border-color: var(--accent-brass);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--accent-brass);
    transform: scale(1.3);
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 10, 9, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

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

.modal-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform: scale(0.9);
    transition: var(--transition-bounce);
}

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

.modal-icon-success {
    width: 72px;
    height: 72px;
    background-color: var(--accent-green-bg);
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.modal-icon-success i {
    width: 40px;
    height: 40px;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.modal-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.modal-details {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.detail-label {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-label i {
    width: 16px;
    height: 16px;
    color: var(--accent-brass);
}

.detail-val {
    color: var(--text-primary);
    font-weight: 600;
}

.modal-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px;
    margin-bottom: 60px;
    width: 100%;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.footer-about .about-text {
    color: var(--text-muted);
    margin-top: 20px;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.social-links a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

.social-links a:hover {
    background-color: var(--accent-brass);
    color: var(--bg-primary);
    border-color: var(--accent-brass);
    transform: translateY(-3px);
}

.social-links a i {
    width: 18px;
    height: 18px;
}

.contact-list,
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-list li {
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-list li i {
    width: 18px;
    height: 18px;
    color: var(--accent-brass);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-list li a:hover {
    color: var(--accent-brass);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 500;
}

.hours-list .hours {
    text-align: right;
}

.hours-list .hours.closed {
    color: var(--accent-red);
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 30px 0;
    margin-top: 60px;
}

.bottom-container {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.resources-list a {
    color: var(--text-muted);
}

.resources-list a:hover {
    color: var(--accent-brass);
}

.footer-bottom .copyright {
    margin: 0;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
    section {
        padding: 72px 0;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .highlights-grid {
        gap: 24px;
    }
    
    .story-container {
        gap: 40px;
    }
    
    .story-img {
        height: 450px;
    }

    .image-bank-card {
        flex-basis: 250px;
        height: 340px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    section {
        padding: 64px 0;
    }

    .container {
        padding: 0 18px;
    }

    /* Navigation drawer for mobile */
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(86vw, 320px);
        height: 100vh;
        background-color: var(--bg-secondary);
        z-index: 999;
        padding: 96px 28px 28px;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 22px;
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .btn-nav {
        display: none; /* Hide top reservation btn to avoid clutter, will use mobile menu or hero link */
    }

    .hero-title {
        font-size: clamp(2.1rem, 8vw, 2.8rem);
    }
    
    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .story-image-wrapper {
        order: 2; /* Put text first on mobile */
    }
    
    .story-img {
        height: 300px;
    }
    
    .menu-filters {
        justify-content: flex-start;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 8px;
        margin-bottom: 28px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

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

    .filter-btn {
        flex: 0 0 auto;
        padding: 9px 18px;
        font-size: 0.8rem;
    }

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

    .menu-item-card {
        padding: 18px;
    }

    .menu-item-name {
        font-size: 1.12rem;
    }

    .menu-item-desc {
        font-size: 0.9rem;
    }

    .menu-item-label,
    .menu-badge {
        font-size: 0.68rem;
        padding: 4px 9px;
    }

    .image-bank-section {
        padding: 72px 0;
    }

    .image-bank-scroll {
        gap: 14px;
        padding-bottom: 12px;
    }

    .image-bank-card {
        flex-basis: 72vw;
        height: 260px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reservation-card {
        padding: 28px 18px;
    }
    
    .testimonials-carousel {
        padding: 0;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
    }

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

    .social-links {
        gap: 12px;
    }

    .footer-bottom {
        margin-top: 40px;
        padding: 24px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .image-bank-card {
        flex-basis: 82vw;
        height: 240px;
    }
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


