/* ==========================================================================
   LE DOMAINE DES SOURCES - GORDES
   Design System: Quiet Luxury & Mediterranean Elegance
   ========================================================================== */

/* ─── VARIABLES & DESIGN TOKENS ─── */
:root {
    --bg-stone: #faf8f5;
    --bg-white: #ffffff;
    --bg-input: #fdfdfc;
    --primary: #4a5740;     /* Vert Olive Provençal */
    --primary-light: #607055;
    --secondary: #c99d63;   /* Or Ocre de Gordes */
    --secondary-dark: #b2864f;
    --text-dark: #232720;    /* Anthracite / Écorce */
    --text-muted: #6e7468;
    --text-light: #f7f9f5;
    
    --border-color: rgba(74, 87, 64, 0.08);
    --border-gold: rgba(201, 157, 99, 0.25);
    --border-gold-active: rgba(201, 157, 99, 0.6);
    
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #353f2d 100%);
    --gradient-gold: linear-gradient(135deg, var(--secondary) 0%, #a47a46 100%);
    --gradient-soft: linear-gradient(180deg, rgba(250, 248, 245, 0) 0%, rgba(250, 248, 245, 1) 100%);
    
    --shadow-sm: 0 4px 15px rgba(35, 39, 32, 0.03);
    --shadow-md: 0 10px 30px rgba(35, 39, 32, 0.06);
    --shadow-lg: 0 20px 45px rgba(35, 39, 32, 0.1);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-round: 50%;
    
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
    
    --font-title: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-stone);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-stone);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

::selection {
    background: var(--primary);
    color: var(--text-light);
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-style: italic;
    font-weight: 300;
}

h2 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    text-align: center;
    position: relative;
    margin-bottom: 12px;
    font-weight: 400;
}

h2 .accent-word {
    font-style: italic;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 300;
    font-style: italic;
    max-width: 650px;
    margin: 0 auto 3.5rem;
    font-family: var(--font-title);
    letter-spacing: 0.5px;
}

.section-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: clamp(80px, 12vw, 130px) 0;
    position: relative;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 6px 20px rgba(74, 87, 64, 0.15);
}
.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 87, 64, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid rgba(35, 39, 32, 0.25);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    background: rgba(74, 87, 64, 0.02);
}

.btn-gold {
    background: var(--secondary);
    color: var(--text-light);
}
.btn-gold:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

/* ─── HEADER & NAVIGATION ─── */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(74, 87, 64, 0.05);
    transition: var(--transition);
}
header.scrolled {
    padding: 14px 0;
    background: rgba(250, 248, 245, 0.98);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.logo h2 {
    font-size: 1.6rem;
    font-family: var(--font-title);
    letter-spacing: 2px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
}
.logo span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--secondary);
    font-weight: 500;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-fast);
    padding: 6px 0;
}
.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    border: 1px solid var(--primary) !important;
    padding: 8px 20px !important;
    color: var(--primary) !important;
    font-weight: 500 !important;
    border-radius: var(--radius-sm);
    transition: var(--transition) !important;
}
.nav-cta:hover {
    background: var(--primary);
    color: var(--text-light) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--text-dark);
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO SECTION ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(201, 157, 99, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(74, 87, 64, 0.03) 0%, transparent 40%),
                var(--bg-stone);
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
}
/* Tiny separator line style */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 1px; height: 100px;
    background: linear-gradient(180deg, transparent, var(--secondary));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.05;
}
.hero h1 span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 520px;
    line-height: 1.7;
}

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

/* Hero Vignette Layout with Photo & Glassmorphism overlay */
.hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--bg-white);
    border: 1px solid rgba(74, 87, 64, 0.05);
    padding: 12px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition);
}
.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    transition: var(--transition);
}
.hero-visual:hover img {
    transform: scale(1.03);
}
.hero-visual-glass {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(250, 248, 245, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(35, 39, 32, 0.08);
    z-index: 5;
    transition: var(--transition);
}
.hero-visual:hover .hero-visual-glass {
    background: rgba(250, 248, 245, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(35, 39, 32, 0.12);
}
.hero-visual-glass h3 {
    font-size: 1.8rem;
    font-family: var(--font-title);
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--text-dark);
}
.hero-visual-glass p {
    font-family: var(--font-title);
    font-style: italic;
    color: var(--secondary-dark);
    font-size: 0.95rem;
    margin-bottom: 8px;
}
.hero-location-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--text-light);
    padding: 4px 10px;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ─── CHAMBRES & GÎTES ─── */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 20px;
}
.room-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 157, 99, 0.2);
}
.room-img-container {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--bg-stone);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}
.room-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.room-card:hover .room-img-container img {
    transform: scale(1.04);
}
.room-price-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(250, 248, 245, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 12px;
    border: 1px solid var(--border-gold);
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 500;
    z-index: 2;
}
.room-price-badge span {
    font-size: 0.72rem;
    color: var(--text-muted);
}
.room-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.room-content h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
    font-weight: 400;
}
.room-specs {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    margin-bottom: 16px;
    font-weight: 500;
}
.room-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 24px;
    flex-grow: 1;
}
.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(74, 87, 64, 0.05);
    padding-top: 16px;
}
.room-amenities {
    display: flex;
    gap: 10px;
    color: var(--primary-light);
    align-items: center;
}
.room-amenities svg {
    width: 18px;
    height: 18px;
    opacity: 0.75;
    transition: var(--transition-fast);
}
.room-amenities svg:hover {
    color: var(--secondary);
    opacity: 1;
    transform: translateY(-1px);
}
.room-book-link {
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}
.room-book-link:hover {
    color: var(--secondary);
}

/* ─── SIMULATEUR DE SÉJOUR ─── */
.simulator-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: start;
    margin-top: 20px;
}

.simulator-form {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.sim-label {
    font-family: var(--font-title);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: block;
}

.sim-accommodation-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}
.sim-accommodation-item {
    background: var(--bg-stone);
    border: 1px solid var(--border-color);
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}
.sim-accommodation-item:hover {
    border-color: rgba(74, 87, 64, 0.25);
}
.sim-accommodation-item.active {
    border-color: var(--secondary);
    background: rgba(201, 157, 99, 0.03);
    box-shadow: 0 0 10px rgba(201, 157, 99, 0.1);
}
.sim-accommodation-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.sim-accommodation-item .price {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 500;
}
.sim-accommodation-item .price span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Slider nights */
.sim-nights-wrapper {
    background: var(--bg-stone);
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-bottom: 30px;
}
.sim-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.sim-slider-title h5 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
}
.sim-slider-title p {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.sim-nights-badge {
    background: var(--primary);
    color: var(--text-light);
    font-family: var(--font-title);
    font-size: 1.1rem;
    padding: 2px 12px;
    border-radius: 2px;
}
.sim-slider-control {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sim-range-input {
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: rgba(74, 87, 64, 0.15);
    outline: none;
}
.sim-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}
.sim-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Options */
.sim-options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}
.sim-option-item {
    background: var(--bg-stone);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-fast);
}
.sim-option-item:hover {
    border-color: rgba(74, 87, 64, 0.2);
}
.sim-option-item.active {
    border-color: var(--secondary);
    background: var(--bg-white);
}
.sim-opt-info {
    display: flex;
    align-items: center;
    gap: 14px;
}
.sim-opt-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid var(--text-muted);
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.sim-option-item.active .sim-opt-checkbox {
    background: var(--secondary);
    border-color: var(--secondary);
}
.sim-opt-checkbox::after {
    content: '✓';
    color: var(--text-light);
    font-size: 0.65rem;
    font-weight: bold;
    opacity: 0;
}
.sim-option-item.active .sim-opt-checkbox::after {
    opacity: 1;
}
.sim-opt-details h5 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
}
.sim-opt-details p {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.sim-opt-price {
    font-family: var(--font-title);
    font-size: 1.05rem;
    color: var(--primary);
}

/* Breakfast counter (inside option list) */
.sim-breakfast-counter {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sim-breakfast-counter label {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.sim-counter-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sim-counter-btn {
    width: 24px;
    height: 24px;
    border: 1px solid var(--text-muted);
    background: var(--bg-white);
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.sim-counter-btn:hover {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}
.sim-counter-val {
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 16px;
    text-align: center;
}

/* Simulator Summary Panel */
.sim-summary-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(201, 157, 99, 0.25);
    border-top: 4px solid var(--secondary);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 110px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.sim-summary-box:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(201, 157, 99, 0.5);
    box-shadow: 0 15px 45px rgba(35, 39, 32, 0.12);
}
.sim-summary-box h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(74, 87, 64, 0.05);
    padding-bottom: 12px;
}
.sim-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.sim-summary-line.hotel {
    color: var(--text-dark);
    font-weight: 500;
}
.sim-summary-divider {
    border-top: 1px dashed rgba(74, 87, 64, 0.1);
    margin: 20px 0;
}
.sim-total-display {
    text-align: center;
    margin: 30px 0;
}
.sim-total-price {
    font-family: var(--font-title);
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--primary);
}
.sim-total-price span {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
}
.sim-book-btn {
    width: 100%;
}

/* ─── GUIDE LUBERON ─── */
.guide-container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.guide-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-stone);
    padding: 4px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}
.guide-tab-btn {
    background: transparent;
    border: none;
    font-family: var(--font-title);
    font-size: 1.1rem;
    padding: 12px 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: capitalize;
    color: var(--text-muted);
}
.guide-tab-btn:hover {
    color: var(--text-dark);
}
.guide-tab-btn.active {
    background: var(--primary);
    color: var(--text-light);
}

.guide-panes {
    position: relative;
    min-height: 250px;
}
.guide-pane {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    animation: fadeIn 0.4s ease forwards;
}
.guide-pane.active {
    display: grid;
}
.guide-item-card {
    background: var(--bg-stone);
    border: 1px solid var(--border-color);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}
.guide-item-card:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 157, 99, 0.2);
}
.guide-item-meta {
    font-size: 0.72rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 6px;
}
.guide-item-title {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 8px;
}
.guide-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 16px;
}
.guide-item-route {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    border-top: 1px solid rgba(74, 87, 64, 0.05);
    padding-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.guide-item-route:hover {
    color: var(--secondary);
}

/* Destination Checker Widget */
.distance-widget {
    background: var(--bg-stone);
    border: 1px solid var(--border-color);
    padding: 40px;
    margin-top: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.distance-form {
    display: flex;
    max-width: 500px;
    margin: 24px auto 16px;
    gap: 8px;
}
.distance-input {
    flex-grow: 1;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 15px 18px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}
.distance-input:focus {
    border-color: var(--primary);
}
.distance-btn {
    padding: 15px 24px;
}
.distance-result {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dist-msg {
    display: none;
    font-size: 0.9rem;
    animation: fadeIn 0.3s ease;
}
.dist-msg.success {
    color: var(--primary);
}
.dist-msg.success strong {
    color: var(--secondary);
    font-weight: 600;
}
.dist-msg.error {
    color: var(--text-muted);
}

/* ─── GALLERY ─── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    aspect-ratio: 4/3;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(35, 39, 32, 0.85) 100%);
    opacity: 0.8;
    z-index: 1;
    transition: var(--transition);
}
.gallery-item-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    transform: translateY(8px);
    opacity: 0.9;
    transition: var(--transition);
}
.gallery-item-content h4 {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2px;
    font-family: var(--font-title);
    font-weight: 400;
}
.gallery-item-content p {
    font-size: 0.72rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-body);
    font-weight: 500;
    margin: 0;
}
.gallery-item:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}
.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}
.gallery-item:hover::before {
    opacity: 0.9;
}
.gallery-item:hover .gallery-item-content {
    transform: translateY(0);
    opacity: 1;
}

/* ─── FAQ INTERACTIVE ACCORDIONS ─── */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active {
    border-color: rgba(201, 157, 99, 0.3);
    box-shadow: var(--shadow-sm);
}
.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    outline: none;
}
.faq-trigger h3 {
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--text-dark);
}
.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text-muted);
    transition: var(--transition-fast);
}
.faq-icon::before {
    width: 12px; height: 1px;
}
.faq-icon::after {
    width: 1px; height: 12px;
}
.faq-item.active .faq-icon::before {
    background: var(--secondary);
}
.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.faq-content {
    padding: 0 30px 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
}

/* ─── CONTACT & RESERVATION ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: start;
}
.contact-info-box {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.contact-info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(74, 87, 64, 0.05);
    padding-bottom: 12px;
}
.contact-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-detail-icon {
    width: 38px;
    height: 38px;
    background: rgba(74, 87, 64, 0.04);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-detail-text h4 {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}
.contact-detail-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 300;
}

.contact-map-sim {
    background: var(--bg-stone);
    border: 1px solid var(--border-color);
    padding: 24px;
    margin-top: 30px;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.contact-map-sim h4 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Contact Form */
.contact-form-panel {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.contact-form-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}
.form-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    outline: none;
}
.form-input:focus {
    border-color: var(--primary);
    background: var(--bg-white);
}
textarea.form-input {
    min-height: 120px;
    resize: vertical;
}
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236e7468' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}
select.form-input option {
    background: var(--bg-white);
    color: var(--text-dark);
}

/* Form Info Badge */
.form-info-badge {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(201, 157, 99, 0.08);
    border: 1px solid var(--secondary);
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--secondary-dark);
    animation: fadeIn 0.3s ease;
}
.form-info-badge-close {
    margin-left: auto;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-muted);
}

/* ─── FOOTER ─── */
footer {
    background: #1c2018;
    color: #92998e;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(74, 87, 64, 0.05);
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.footer-top .logo h2 {
    color: var(--text-light);
}
.footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.footer-links a {
    color: #92998e;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-fast);
}
.footer-links a:hover {
    color: var(--secondary);
}
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 300;
}
.footer-bottom strong {
    color: var(--secondary);
    font-weight: 400;
}
.footer-bottom a {
    color: #92998e;
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-bottom a:hover {
    color: var(--text-light);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero h1 {
        margin: 0 auto 24px;
    }
    .hero p {
        margin: 0 auto 40px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-visual {
        max-width: 440px;
        margin: 0 auto;
        aspect-ratio: 4/3;
    }
    
    .simulator-grid {
        grid-template-columns: 1fr;
    }
    .sim-summary-box {
        position: static;
        top: 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(250, 248, 245, 0.98);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
        z-index: 999;
    }
    .nav-links.active {
        right: 0;
    }
    .hamburger {
        display: flex;
    }
    
    .guide-tabs {
        overflow-x: auto;
        display: flex;
        gap: 4px;
        scrollbar-width: none;
    }
    .guide-tabs::-webkit-scrollbar {
        display: none;
    }
    .guide-tab-btn {
        flex: 1 0 auto;
        padding: 10px 20px;
    }
    .guide-pane {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero {
        padding-top: 100px;
    }
    .sim-accommodation-selector {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .guide-container, .simulator-form, .contact-info-box, .contact-form-panel {
        padding: 24px 16px;
    }
}
