:root {
    --color-primary: #af4d26; /* Terracotta from back wall */
    --color-primary-light: #d66438;
    --color-background: #252b20; /* Very dark earthy olive */
    --color-surface: #3a4730; /* Olive green from walls */
    --color-surface-hover: #48573d;
    --color-foreground: #f0eadd; /* Warm rustic off-white */
    --color-muted: #b5baad;
    --color-accent: #cfa366; /* Rattan/Bronze accents */
    
    --transition-fast: 200ms cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-base: 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-premium: 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);

    
    --gap-large: 48px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-foreground);
    background-color: var(--color-background);
    background-image: url('dark_botanical_texture_1784837355372.png');
    background-size: 800px;
    background-repeat: repeat;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scroll Snapping */
.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y proximity;
}

.snap-section {
    scroll-snap-align: start;
}

/* Logo */
.logo-container {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    z-index: 10;
}
.top-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
    transition: transform var(--transition-base);
}
.top-logo:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100%;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.45); /* Neutral dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
}

.headline {
    color: var(--color-foreground);
    text-transform: uppercase;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
}

.hero-logo-img {
    width: clamp(280px, 60vw, 550px);
    height: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.8));
    object-fit: contain;
}

.divider {
    margin: 1rem 0 2rem 0;
    display: flex;
    justify-content: center;
}
.divider svg {
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

.subtitle-container {
    margin-bottom: var(--gap-large);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.curved-wrapper {
    display: flex;
    justify-content: center;
}

.subtitle-text {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.15em;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    fill: var(--color-foreground);
}

.subtitle-tagline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

.tag-left, .tag-right {
    flex: 1;
}

.tag-left {
    text-align: right;
}

.tag-right {
    text-align: left;
}

/* Fix visual offset caused by trailing letter-spacing on the last word */
.tag-right {
    padding-left: 0.1em; 
}

.button-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: var(--gap-large);
}

.btn-group-row {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    width: 100%;
}

.hero-button-container {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: var(--gap-large);
}

.contact-button-container {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.ghost-btn {
    display: inline-block;
    text-align: center;
    min-width: 220px;
    box-sizing: border-box;
    text-decoration: none;
    color: var(--color-foreground);
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    padding: 1rem 1.5rem;
    background-color: transparent;
    border: 2px solid rgba(240, 234, 221, 0.8);
    border-radius: var(--radius-pill);
    transition: all var(--transition-premium);
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.ghost-btn:hover, .ghost-btn:focus-visible {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-foreground);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px) scale(1.02);
    outline: none;
}

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

.social-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: all var(--transition-base);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.social-icon:hover, .social-icon:focus-visible {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg);
    outline: none;
}

.menu-section {
    background-color: var(--color-background);
    background-image: url('wood_leaves_bg.png'); /* Swapped to light background */
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
    width: 100%;
    min-height: 100vh;
}

.menu-inner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.menu-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #8C5C3B; /* Warm brown */
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.1rem; /* 1.5rem + ~10px */
    flex-wrap: wrap;
    background: transparent;
}

.tab-btn {
    background: transparent;
    border: 1px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c; /* Darker gray for better contrast */
    cursor: pointer;
    padding: 0.6rem 1.8rem;
    border-radius: var(--radius-pill);
    transition: all var(--transition-premium);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #6a4228; /* Darker bronze */
    transition: all var(--transition-premium);
    transform: translateX(-50%);
    border-radius: var(--radius-pill);
    opacity: 0;
}

.tab-btn:hover {
    color: #6a4228; /* Darker bronze */
    background: rgba(106, 66, 40, 0.08);
}

.tab-btn:hover::after {
    width: 50%;
    opacity: 1;
}

.tab-btn.active {
    background-color: transparent;
    color: #6a4228; /* Darker bronze */
    border-color: #6a4228;
    box-shadow: var(--shadow-sm);
}

.menu-tab:focus-visible {
    outline: 2px dashed #8C5C3B;
    outline-offset: 4px;
}

/* Menu Container */
.menu-category {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.menu-category.active {
    display: block;
    animation: fadeSlideIn 300ms ease forwards;
}

.menu-category.fade-out {
    display: block;
    animation: fadeOut 300ms ease forwards;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Menu Cards */
.menu-card {
    background-color: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-premium);
    position: relative;
    break-inside: avoid;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--shadow-lg);
}

.menu-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img {
    transform: scale(1.05);
}

.menu-card-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.8rem;
    gap: 1rem;
}

.menu-card-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.price {
    font-weight: 500;
    color: var(--color-accent);
    font-size: 1rem;
    white-space: nowrap;
    transition: transform 0.3s ease;
    border: 1px solid var(--color-accent);
    border-radius: 4px;
    padding: 0.2rem 0.6rem;
    background-color: transparent;
}

.menu-card:hover .price {
    transform: translateX(4px);
}

.menu-card p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    margin-bottom: 0.8rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feature-chips {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.chip {
    background: rgba(140, 92, 59, 0.08);
    color: #7a7a7a;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-premium);
}

.chip:hover {
    filter: brightness(1.05);
    background: rgba(140, 92, 59, 0.12);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.menu-card-content p strong {
    font-weight: 600;
    color: #1A1A1A;
}

/* --- BOOK A TABLE SECTION --- */
.book-section {
    padding: 8rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.book-headline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: 0.15em;
    margin-bottom: var(--gap-large);
    text-transform: uppercase;
    color: var(--color-foreground);
}

.book-container {
    background: var(--color-surface);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

/* --- RESERVATION INFO PANEL --- */
.reservation-info-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.info-panel-card {
    background-color: #F8F5EE; /* Warm cream */
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.info-panel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.info-panel-card i,
.info-panel-card svg {
    color: #4A3320; /* Deep rich brown */
    stroke: #4A3320; /* Ensure stroke is also colored for SVGs */
    width: 22px;
    height: 22px;
    stroke-width: 2px;
    flex-shrink: 0;
}

.info-panel-card span {
    color: #2b3d2b; /* Deep green text for readability */
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width: 600px) {
    .reservation-info-panel {
        grid-template-columns: 1fr;
    }
}

.book-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* --- PREMIUM BOOKING FIELDS --- */
.premium-field {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(37, 43, 32, 0.6);
    border: 1px solid rgba(240, 234, 221, 0.3);
    border-radius: 18px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
    height: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.premium-field:focus-within {
    border-color: #8C5C3B;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 0 12px rgba(140, 92, 59, 0.4);
}

.field-icon {
    margin-left: 1.2rem;
    color: rgba(240, 234, 221, 0.5);
    width: 22px;
    height: 22px;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.premium-field:focus-within .field-icon {
    color: #8C5C3B;
}

.premium-field input, 
.premium-field select, 
.premium-field textarea {
    background: transparent;
    border: none;
    color: #ffffff;
    flex: 1;
    height: 100%;
    padding: 1.2rem 1.2rem 0.2rem 1rem;
    font-size: 1.05rem;
    outline: none;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.premium-field select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23F0EADD%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 12px auto;
    padding-right: 3rem;
}

.premium-field select option {
    background: var(--color-surface);
    color: var(--color-foreground);
}

.premium-field label {
    position: absolute;
    left: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(240, 234, 221, 0.65);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    font-size: 1rem;
    font-weight: 500;
}

.premium-field input:focus ~ label,
.premium-field input:not(:placeholder-shown) ~ label,
.premium-field select:focus ~ label,
.premium-field select:valid ~ label,
.premium-field textarea:focus ~ label,
.premium-field textarea:not(:placeholder-shown) ~ label {
    top: 10px;
    font-size: 0.75rem;
    color: #8C5C3B;
}

.premium-field input[type="date"]:valid ~ label,
.premium-field input[type="time"]:valid ~ label {
    top: 14px;
    font-size: 0.75rem;
    color: #8C5C3B;
}

.premium-field input[type="date"]::-webkit-calendar-picker-indicator,
.premium-field input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1) opacity(0.6);
    cursor: pointer;
}

.premium-field.textarea-field {
    height: auto;
    min-height: 120px;
    align-items: flex-start;
}

.premium-field.textarea-field .field-icon {
    margin-top: 1.2rem;
}

.premium-field textarea {
    padding: 1.8rem 1.2rem 1rem 1rem;
    min-height: 120px;
    resize: vertical;
}

.premium-field.textarea-field label {
    top: 1.5rem;
}

.form-row {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

.form-row .half {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.full-width {
    width: 100%;
    margin-top: 1rem;
}

/* --- CONTACT SECTION --- */
.contact-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
}

.contact-split {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.contact-left {
    flex: 1;
    position: relative;
    padding: 3rem;
    overflow: hidden;
}

.contact-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('find_us_image_final.jpg');
    background-size: cover;
    background-position: 55% center;
    background-repeat: no-repeat;
    z-index: 0;
}

.contact-right {
    flex: 1;
    background-color: var(--color-background);
    background-image: url('dark_botanical_texture_1784837355372.png'); /* Swapped to dark green */
    background-size: 800px;
    background-repeat: repeat;
    padding: 3rem 4rem; /* Compact whitespace */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.contact-map-wrapper {
    width: 100%;
    position: relative;
    margin-bottom: 2rem;
}

.modern-map {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-md);
}

.map-floating-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    color: #2b3d2b;
    animation: pulse-pin 3s infinite;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.map-floating-pin svg {
    width: 48px;
    height: 48px;
    fill: #2b3d2b;
    stroke: white;
    stroke-width: 1.5px;
}

i.lucide {
    stroke-width: 1.5px;
}

@keyframes pulse-pin {
    0%, 85%, 100% { transform: translate(-50%, -50%) scale(1); }
    92% { transform: translate(-50%, -50%) scale(1.15); }
}

.travel-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.travel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(4px);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 500;
    color: #7a7a7a;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.travel-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.badge-icon {
    width: 16px;
    height: 16px;
    color: #2b3d2b;
}

.contact-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4.5vw, 2.8rem);
    letter-spacing: 0.05em;
    color: #eaddcf; /* Brighter color for dark background */
    margin-bottom: calc(1rem + 15px);
    text-transform: uppercase;
    white-space: nowrap;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 3rem;
    align-items: start;
}

.info-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.icon-wrapper {
    background: rgba(255, 255, 255, 0.15); /* Lightened background */
    padding: 0.8rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; /* White icon */
}

.icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.info-content {
    font-family: 'Inter', sans-serif;
}

.info-content strong {
    display: block;
    font-size: 1rem;
    color: #ffffff; /* White text for dark background */
    margin-bottom: 0.4rem;
}

.info-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #d1d5db; /* Light gray text for readability */
    line-height: 1.5;
}

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

.premium-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #2b3d2b;
    background-image: linear-gradient(rgba(43,61,43,0.85), rgba(43,61,43,0.85)), url('volcanic_texture_bg.png');
    background-size: 100% 100%, 300px;
    background-repeat: no-repeat, repeat;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.premium-cta:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background-image: linear-gradient(rgba(53,75,53,0.85), rgba(53,75,53,0.85)), url('volcanic_texture_bg.png');
}

.premium-cta .btn-icon {
    width: 20px;
    height: 20px;
}

.premium-cta .btn-arrow {
    transition: transform 0.3s ease;
}

.premium-cta:hover .btn-arrow {
    transform: translateX(6px);
}

.pulse-cta {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@media (max-width: 900px) {
    .contact-split {
        flex-direction: column;
    }
    .contact-left {
        min-height: 40vh;
    }
    .contact-right {
        padding: 3rem 1.5rem;
    }
    .info-cards {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "address"
            "contact"
            "hours"
            "parking";
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
    .book-container {
        padding: 1.5rem;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    /* Legacy menu fallback removed */
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        gap: 3rem;
    }
    .contact-map {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .logo-container {
        top: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
    }
    .top-logo {
        width: 90px;
    }
    .headline {
        margin-top: 4rem;
    }
    .button-container {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .btn-group-row {
        gap: 0.5rem;
        width: 90%;
        max-width: 350px;
    }
    
    .hero-button-container {
        gap: 0.25rem !important;
        padding: 0 0.5rem;
    }
    
    .hero-button-container .compact-btn {
        min-width: 0 !important;
        width: auto !important;
        flex: 1;
        padding: 0.8rem 0.25rem !important;
        font-size: 0.65rem !important;
        letter-spacing: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .contact-button-container .contact-compact-btn {
        min-width: 0 !important;
        width: auto !important;
        flex: 1;
        padding: 0.8rem 0.25rem !important;
        font-size: 0.75rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .contact-button-container .btn-icon {
        width: 16px;
        height: 16px;
        margin-right: 0.25rem;
    }
    
    .compact-btn {
        min-width: 0 !important;
        width: auto !important;
        flex: 1;
        padding: 1rem 0.5rem !important;
        font-size: 0.85rem !important;
        letter-spacing: 0.05em;
    }
    .ghost-btn {
        width: 85%;
        max-width: 320px;
        text-align: center;
    }
    .menu-tabs {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    .menu-tab {
        font-size: 1.1rem;
    }
    .card-image-fx {
        height: 200px;
    }
    .scroll-container {
        scroll-snap-type: none;
    }
    .contact-container {
        padding: 1.5rem;
    }
}

/* --- Scroll Reveal & Microinteractions --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1), transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.info-card i.lucide, .travel-badge i.badge-icon {
    transition: transform var(--transition-premium);
}

.info-card:hover i.lucide, .travel-badge:hover i.badge-icon {
    transform: scale(1.15);
}

/* --- SPLIT BOOKING PAGE --- */
body.split-page {
    background-color: var(--color-surface);
}

.split-layout {
    display: grid;
    grid-template-columns: 4fr 6fr;
    min-height: 100vh;
}

.split-left {
    background-image: linear-gradient(rgba(37, 43, 32, 0.75), rgba(37, 43, 32, 0.9)), url('bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 3rem;
    color: var(--color-foreground);
    display: flex;
    flex-direction: column;
}

.split-left-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
    height: 100%;
    position: sticky;
    top: 3rem;
    height: calc(100vh - 6rem);
}

.split-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}

.split-copy {
    margin-top: 2rem;
}

.split-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.split-header .split-headline {
    margin-bottom: 0;
}

.split-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 4.2rem);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    color: var(--color-foreground);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.split-desc {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(240, 234, 221, 0.85);
    margin-bottom: 2.5rem;
}

.split-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.split-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-foreground);
}

.split-feature i {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

.split-testimonial {
    margin-top: auto;
    padding-top: 3rem;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-foreground);
    margin-bottom: 0.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
}

.star-filled {
    width: 16px;
    height: 16px;
    fill: var(--color-accent);
    color: var(--color-accent);
    stroke: none;
}

.split-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background-color: transparent;
}

.split-right .book-container {
    width: 100%;
    max-width: 550px;
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
    .split-left {
        min-height: 50vh;
    }
    .split-left-content {
        position: relative;
        top: 0;
        height: auto;
        gap: 3rem;
    }
}

/* --- PREMIUM BOOKING BUTTON --- */
.booking-submit-btn {
    width: 100%;
    height: 50px;
    border-radius: 25px; /* Rounded pill shape */
    background: linear-gradient(135deg, #d36a4b 0%, #b84c30 100%); /* Warm terracotta gradient */
    border: none;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(184, 76, 48, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 0.5rem;
}

.booking-submit-btn .btn-arrow {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: 'Inter', sans-serif; /* For the arrow symbol */
}

.booking-submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(184, 76, 48, 0.5); /* Glow */
}

.booking-submit-btn:hover .btn-arrow {
    transform: translateX(8px);
}

.booking-submit-btn:active {
    transform: translateY(2px) scale(0.98); /* Compress slightly */
    box-shadow: 0 2px 8px rgba(184, 76, 48, 0.3);
}

/* --- CUSTOM PICKER POPUPS --- */
.picker-wrapper {
    position: relative;
}

.custom-calendar-popup,
.custom-time-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    min-width: 280px;
    background-color: var(--color-surface);
    border: 1px solid rgba(240, 234, 221, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

.custom-calendar-popup.show,
.custom-time-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Calendar Specifics */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cal-month-year {
    color: var(--color-foreground);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cal-nav-btn {
    background: transparent;
    border: none;
    color: var(--color-foreground);
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.cal-nav-btn i {
    width: 18px;
    height: 18px;
}

.cal-nav-btn:hover {
    background: rgba(240, 234, 221, 0.1);
    color: #8C5C3B;
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    color: rgba(240, 234, 221, 0.5);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border-radius: 50%;
    color: var(--color-foreground);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: rgba(140, 92, 59, 0.2);
    color: #8C5C3B;
}

.cal-day.selected {
    background: #8C5C3B;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(140, 92, 59, 0.4);
}

.cal-day.disabled {
    color: rgba(240, 234, 221, 0.2);
    cursor: not-allowed;
}

.cal-day.empty {
    cursor: default;
}

/* Time Dropdown Specifics */
.custom-time-dropdown {
    padding: 0.5rem;
    max-height: 250px;
}

.time-slots-container {
    max-height: 230px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom Scrollbar */
.time-slots-container::-webkit-scrollbar {
    width: 6px;
}
.time-slots-container::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
    border-radius: 3px;
}
.time-slots-container::-webkit-scrollbar-thumb {
    background: rgba(240, 234, 221, 0.2);
    border-radius: 3px;
}
.time-slots-container::-webkit-scrollbar-thumb:hover {
    background: rgba(240, 234, 221, 0.4);
}

.time-slot {
    padding: 0.8rem 1rem;
    color: var(--color-foreground);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 4px;
}

.time-slot:last-child {
    margin-bottom: 0;
}

.time-slot:hover:not(.disabled) {
    background: rgba(140, 92, 59, 0.2);
    color: #8C5C3B;
}

.time-slot.selected {
    background: #8C5C3B;
    color: white;
    font-weight: 600;
}

.time-slot.disabled {
    color: rgba(240, 234, 221, 0.3);
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Override premium field floating label logic for custom inputs */
.premium-field input.has-value ~ label {
    top: 14px;
    font-size: 0.75rem;
    color: #8C5C3B;
}

/* --- ENTRANCE ANIMATIONS (BOOKING PAGE) --- */
@keyframes premiumFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes premiumSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.split-left {
    opacity: 0;
    animation: premiumFadeIn 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.split-right {
    opacity: 0;
    animation: premiumFadeIn 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    animation-delay: 0s;
}

/* Set initial opacity for sequentially animated elements */
.reservation-info-panel,
.book-form > div,
.booking-submit-btn {
    opacity: 0;
}

.reservation-info-panel {
    animation: premiumSlideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    animation-delay: 0.3s;
}

.book-form > div:nth-child(1) {
    animation: premiumSlideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    animation-delay: 0.45s;
}

.book-form > div:nth-child(2) {
    animation: premiumSlideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    animation-delay: 0.60s;
}

.book-form > div:nth-child(3) {
    animation: premiumSlideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    animation-delay: 0.75s;
}

.book-form > div:nth-child(4) {
    animation: premiumSlideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    animation-delay: 0.90s;
}

.booking-submit-btn {
    animation: premiumSlideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    animation-delay: 1.1s;
}

/* ------------------------------------- */
/* EDITORIAL LEDGER MENU                 */
/* ------------------------------------- */
.menu-ledger-container {
    background: rgba(255, 255, 255, 0.85); /* Increased opacity from 0.6 */
    border-radius: 12px;
    padding: 2rem 4rem 1.5rem 4rem; /* Reduced bottom padding */
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.ledger-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.ledger-item {
    margin-bottom: 30px;
}

.ledger-item:last-child {
    margin-bottom: 0;
}

.ledger-item-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.ledger-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #4a3b32; /* Dark brown/bronze */
    margin: 0;
}

.ledger-leader {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(0, 0, 0, 0.2);
    margin: 0 10px;
    position: relative;
    top: -4px;
}

.ledger-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #6a4228; /* Darker bronze for better contrast on white */
    margin: 0;
}

.ledger-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--color-dark-green, #2b3d2b);
    line-height: 1.5;
    margin: 0;
}

.ledger-desc strong {
    font-weight: 600;
}

@media (max-width: 900px) {
    .ledger-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .menu-ledger-container {
        padding: 2rem;
    }
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--color-background);
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(214, 199, 175, 0.2);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-foreground);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgba(240, 234, 221, 0.7);
}

.footer-copy {
    color: rgba(240, 234, 221, 0.5);
    font-size: 0.8rem;
}
