/* --- DESIGN TOKENS (LUXURY UI) --- */
:root {
    --primary: #0d0d0f;       /* Near-black ink */
    --accent: #b8965b;        /* Warm brass/gold */
    --accent-hover: #9c7c46;
    --accent-soft: rgba(184, 150, 91, 0.12);
    --bg-color: #faf7f2;      /* Warm ivory */
    --text-main: #1a1a1c;
    --text-muted: #6f6d68;
    --card-bg: #ffffff;
    --hairline: rgba(13, 13, 15, 0.08);
    --border-radius: 10px;
    --shadow-soft: 0 20px 40px -22px rgba(13, 13, 15, 0.18);
    --shadow-hover: 0 30px 60px -20px rgba(184, 150, 91, 0.28);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* --- GLOBAL STYLES --- */
* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: var(--font-body);
}
/* Matches the hero/footer color so mobile Safari's overscroll bounce doesn't flash white. */
html { background: var(--primary); }
body { background-color: var(--bg-color); color: var(--text-main); line-height: 1.7; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
section { padding: 120px 0; }

/* Typography */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: 2.6rem; text-align: center; margin-bottom: 1.2rem; }
.subtitle { text-align: center; color: var(--text-muted); max-width: 600px; margin: 0 auto 4rem; }
.eyebrow {
    display: block; text-align: center; font-family: var(--font-body);
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 16px;
}

/* Buttons */
.btn {
    display: inline-block; padding: 17px 38px; border-radius: 4px;
    font-weight: 600; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
    cursor: pointer; transition: var(--transition);
    border: 1px solid transparent; text-align: center;
}
.btn-primary { background: var(--accent); color: var(--primary); box-shadow: 0 14px 28px -10px rgba(184, 150, 91, 0.45); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 18px 32px -10px rgba(184, 150, 91, 0.55); }
.btn-secondary { background: transparent; color: white; border: 1px solid rgba(255, 255, 255, 0.4); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: white; transform: translateY(-2px); }

/* --- GLASS NAVIGATION --- */
header {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--hairline);
    transition: var(--transition);
    padding: 22px 0;
}
header.scrolled { padding: 14px 0; box-shadow: var(--shadow-soft); }

/* Transparent over the hero until scrolled; legal pages hardcode .scrolled so are unaffected. */
header:not(.scrolled) {
    background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
    border-bottom-color: transparent; box-shadow: none;
}
header:not(.scrolled) .logo { color: white; }
header:not(.scrolled) .nav-toggle span { background: white; }
/* Below 1200px the links live in the always-white mobile panel, so keep them dark there. */
@media (min-width: 1201px) {
    header:not(.scrolled) .nav-links > li > a { color: white; }
}
header:not(.scrolled) .lang-toggle { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.3); }
header:not(.scrolled) .lang-btn { color: rgba(255, 255, 255, 0.75); }
header:not(.scrolled) .lang-btn.active { background: white; color: var(--primary); }

/* Offsets in-page nav-link jumps so content doesn't land under the fixed header. */
#about, #brands, #reviews, #faq { scroll-margin-top: 100px; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.logo {
    display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
    font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; font-style: italic; color: var(--primary);
    line-height: 1; /* keeps text vertically centered against the icon */
}
.logo-icon { height: 36px; width: auto; display: block; }
.logo-accent { color: var(--accent); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links li { position: relative; font-weight: 500; font-size: 0.92rem; letter-spacing: 0.02em; cursor: pointer; white-space: nowrap; }
.nav-links li:hover { color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
/* Header CTA: compact and never allowed to wrap onto two lines (Spanish label is long) */
.nav-actions .btn-book { padding: 14px 24px; font-size: 0.78rem; white-space: nowrap; }

/* Language toggle */
.lang-toggle {
    display: flex; align-items: center; gap: 2px; background: rgba(13, 13, 15, 0.04);
    border: 1px solid var(--hairline); border-radius: 100px; padding: 3px;
}
.lang-btn {
    border: none; background: none; padding: 6px 11px; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.03em; color: var(--text-muted); border-radius: 100px; cursor: pointer;
    transition: var(--transition); font-family: var(--font-body);
}
.lang-btn.active { background: var(--primary); color: white; }
.lang-btn:hover:not(.active) { color: var(--accent); }

/* Hamburger toggle (mobile only) */
.nav-toggle {
    display: none; width: 28px; height: 20px; position: relative;
    background: none; border: none; cursor: pointer; padding: 0;
    flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
    display: block; width: 100%; height: 2px; background: var(--primary);
    border-radius: 2px; transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-overlay { display: none; }
.nav-mobile-cta { display: none; }

/* Dropdown basics */
.dropdown { position: absolute; top: 100%; left: 0; background: var(--card-bg); padding: 1rem; border-radius: 8px; box-shadow: var(--shadow-soft); border: 1px solid var(--hairline); opacity: 0; visibility: hidden; transition: var(--transition); width: 200px; display: flex; flex-direction: column; gap: 10px; }
.nav-links li:hover .dropdown { opacity: 1; visibility: visible; top: calc(100% + 10px); }

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 140px 0 80px;
    color: white; text-align: center; position: relative; overflow: hidden;
    background: #0d0d0f;
}
.hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(13,13,15,0.94), rgba(13,13,15,0.8));
}
.hero::before {
    content: ''; position: absolute; inset: 0; z-index: 2;
    background: radial-gradient(ellipse at top, rgba(184,150,91,0.18), transparent 60%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 3; width: 100%; }
.hero .eyebrow { color: var(--accent); }
.hero h1 { font-size: 4rem; max-width: 900px; margin: 0 auto 24px; line-height: 1.15; }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 44px; color: #d8d5cf; font-weight: 300; }
.hero-btns { display: flex; justify-content: center; gap: 20px; margin-bottom: 64px; }

/* Trust Bar */
.trust-bar {
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
    background: rgba(255,255,255,0.04); backdrop-filter: blur(10px);
    padding: 24px 40px; border-radius: 100px; max-width: max-content; margin: 0 auto;
    border: 1px solid rgba(184, 150, 91, 0.25);
}
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 0.92rem; }
.trust-item i { color: var(--accent); }

/* --- WHY CHOOSE US --- */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.feature-card {
    background: var(--card-bg); padding: 44px 32px; border-radius: var(--border-radius);
    border: 1px solid var(--hairline);
    box-shadow: var(--shadow-soft); transition: var(--transition); text-align: center;
    opacity: 0; transform: translateY(24px);
}
.feature-card.in-view { opacity: 1; transform: translateY(0); }
.feature-card.in-view:hover { transform: translateY(-8px); }
.feature-card:hover { box-shadow: var(--shadow-hover); border-color: rgba(184, 150, 91, 0.3); }
.feature-icon { width: 60px; height: 60px; border-radius: 50%; background: transparent; border: 1px solid var(--accent); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 22px; }

/* --- SERVICES CAROUSEL --- */
.services-bg {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85) 45%, rgba(255,255,255,0.96)),
        url('/assets/backgrounds/services-bg.jpg') center 25%/cover;
}
.services-bg .container { position: relative; z-index: 1; }
.services-carousel { display: flex; align-items: center; gap: 20px; }
.services-track {
    display: flex; gap: 24px; flex: 1; overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; padding: 4px 4px 12px; scrollbar-width: none; -ms-overflow-style: none;
}
.services-track::-webkit-scrollbar { display: none; }
.service-card {
    scroll-snap-align: start; flex: 0 0 clamp(260px, 31%, 360px);
    padding: 32px; border-radius: var(--border-radius); border: 1px solid var(--hairline);
    display: flex; align-items: flex-start; gap: 20px; transition: var(--transition);
    background: var(--bg-color);
}
.service-card:hover { background: var(--card-bg); border-color: var(--accent); box-shadow: var(--shadow-soft); }
.service-icon { font-size: 1.8rem; color: var(--accent); }
.service-info h3 { font-size: 1.2rem; margin-bottom: 8px; font-weight: 600; }
.service-info p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 15px; }
.link-text { color: var(--accent); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.03em; display: flex; align-items: center; gap: 5px; }
.link-text i { transition: transform 0.3s; }
.service-card:hover .link-text i { transform: translateX(5px); }

.carousel-arrow {
    flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid var(--hairline); background: var(--card-bg); color: var(--primary);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    transition: var(--transition); box-shadow: var(--shadow-soft);
}
.carousel-arrow:hover:not(:disabled) { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.carousel-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 36px; }
.carousel-dot {
    width: 8px; height: 8px; border-radius: 4px; padding: 0; border: none;
    background: var(--hairline); cursor: pointer; transition: var(--transition);
}
.carousel-dot.active { width: 24px; background: var(--accent); }

@media (max-width: 640px) {
    .carousel-arrow { display: none; }
    .service-card { flex: 0 0 85%; }
}

/* --- BRANDS CAROUSEL --- */
.brands-carousel {
    overflow: hidden; position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.brands-track {
    display: flex; align-items: center; gap: 56px; width: max-content;
    opacity: 0.6; filter: grayscale(100%); transition: opacity 0.35s ease, filter 0.35s ease;
    animation: brand-scroll 56s linear infinite;
}
/* hover/pointer-fine guard: on touch devices a tap triggers :hover with no way to un-hover,
   which would otherwise leave the carousel stuck paused after the first touch. */
@media (hover: hover) and (pointer: fine) {
    .brands-carousel:hover .brands-track { opacity: 1; filter: grayscale(0%); animation-play-state: paused; }
}
.brand-item { display: flex; align-items: center; flex-shrink: 0; }
.brand-item img {
    height: 34px; width: auto; max-width: 160px;
    object-fit: contain; display: block;
}
@keyframes brand-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .brands-track { animation: none; }
}

/* --- HOW IT WORKS --- */
.process-bg {
    position: relative; overflow: hidden;
    background: var(--primary); color: white;
}
.process-bg::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(ellipse at top left, rgba(184,150,91,0.16), transparent 60%);
    pointer-events: none;
}
.process-bg > * { position: relative; z-index: 1; }
.process-bg h2 { color: white; }
.process-timeline {
    position: relative; display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; margin-top: 70px;
}
/* Connecting line runs through the marker centers (marker is 72px tall). */
.process-line {
    position: absolute; top: 36px; left: 16.666%; right: 16.666%; height: 1px;
    background: rgba(255, 255, 255, 0.12);
}
.process-line-fill {
    display: block; height: 100%; width: var(--fill, 0%);
    background: var(--accent); box-shadow: 0 0 12px rgba(184, 150, 91, 0.6);
    transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1), height 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-step {
    position: relative; text-align: center; padding: 0 16px;
    opacity: 0.2; transform: translateY(14px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.process-step.active { opacity: 1; transform: translateY(0); }
.process-marker {
    position: relative; z-index: 1; width: 72px; height: 72px; margin: 0 auto 26px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 1px solid var(--accent);
    background: var(--primary); color: var(--accent);
    font-family: var(--font-display); font-size: 1.7rem; font-weight: 700;
    transition: var(--transition);
}
.process-step.focused .process-marker {
    background: var(--accent); color: var(--primary);
    transform: scale(1.1); box-shadow: 0 0 30px rgba(184, 150, 91, 0.45);
}
.process-step h3 { font-size: 1.25rem; color: white; margin-bottom: 12px; transition: var(--transition); }
.process-step.focused h3 { color: var(--accent); }
.process-step p { color: #a9a6a0; font-size: 0.95rem; line-height: 1.7; max-width: 300px; margin: 0 auto; }

@media (max-width: 768px) {
    .process-timeline { grid-template-columns: 1fr; gap: 56px; margin-top: 50px; }
    /* Connector line removed on mobile — numbered markers + the JS reveal stay as-is. */
    .process-line { display: none; }
}

/* --- REVIEWS --- */
.reviews-bg {
    position: relative; color: white; overflow: hidden;
    background:
        linear-gradient(135deg, rgba(13,13,15,0.93), rgba(13,13,15,0.9)),
        url('/assets/backgrounds/reviews-bg.jpg') center 30%/cover;
}
.reviews-bg::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at bottom right, rgba(184,150,91,0.12), transparent 60%);
    pointer-events: none;
}
.reviews-bg .container { position: relative; z-index: 1; }
.reviews-bg h2 { color: white; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; }
.review-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(184, 150, 91, 0.15); padding: 44px;
    border-radius: var(--border-radius); backdrop-filter: blur(10px);
    opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.review-card.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .feature-card, .review-card { opacity: 1; transform: none; }
}
.stars { color: var(--accent); margin-bottom: 15px; font-size: 1.1rem; }
.review-text { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; font-weight: 500; margin-bottom: 22px; color: #e7e4de; line-height: 1.5; }
.review-author { font-weight: 600; color: var(--accent); font-size: 0.9rem; letter-spacing: 0.03em; text-transform: uppercase; }

/* --- STATS --- */
.stats-container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; text-align: center; padding: 70px 0; }
.stat-number { font-family: var(--font-display); font-size: 3.4rem; font-weight: 700; color: var(--accent); margin-bottom: 10px; }
.stat-label { font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.85rem; }

/* --- FAQ --- */
.faq-container { max-width: 800px; margin: 0 auto; }
details { background: var(--card-bg); border: 1px solid var(--hairline); margin-bottom: 15px; border-radius: 8px; box-shadow: var(--shadow-soft); }
summary { padding: 26px; font-weight: 600; font-size: 1.05rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f067'; font-family: 'FontAwesome'; color: var(--accent); transition: transform 0.3s; }
details[open] summary::after { transform: rotate(45deg); }
.faq-content { padding: 0 26px 26px; color: var(--text-muted); }
details[open] .faq-content { animation: faqFadeIn 0.35s ease; }
@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    details[open] .faq-content { animation: none; }
}

/* --- FINAL CTA --- */
.final-cta {
    background: linear-gradient(135deg, #1a1a1d, var(--primary));
    border: 1px solid rgba(184, 150, 91, 0.3);
    padding: 110px 24px; border-radius: 16px; text-align: center; color: white;
    margin: 40px 24px 100px; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.35);
}
.final-cta h2 { margin-bottom: 20px; font-size: 3rem; }
.final-cta p { font-size: 1.15rem; max-width: 600px; margin: 0 auto 44px; color: #cfcbc3; font-weight: 300; }

/* --- BOOKING MODAL & FORM --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(13, 13, 15, 0.7); backdrop-filter: blur(5px);
    z-index: 2000; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    background: var(--card-bg); width: 90%; max-width: 500px;
    border-radius: var(--border-radius); padding: 44px; position: relative;
    transform: translateY(20px); transition: var(--transition);
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.35);
}
/* Wider, scrollable variant for the detailed booking form */
.modal-content.modal-large {
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-content.modal-large::-webkit-scrollbar { width: 8px; }
.modal-content.modal-large::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }

.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close {
    position: absolute; top: 22px; right: 22px; background: none; border: none;
    font-size: 1.3rem; color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.modal-close:hover { color: var(--accent); transform: rotate(90deg); }
.modal-header { margin-bottom: 28px; text-align: center; }
.modal-header h2 { font-size: 1.7rem; margin-bottom: 10px; color: var(--primary); }
.modal-header p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

/* Form Elements inside Modal */
.form-row { display: flex; gap: 15px; }
.form-row .form-group { flex: 1; }
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--text-main); font-size: 0.85rem; letter-spacing: 0.02em; }
.luxury-input {
    width: 100%; padding: 14px; border-radius: 6px; border: 1px solid #ded9d0;
    font-size: 1rem; background: var(--bg-color); transition: var(--transition); outline: none;
    font-family: var(--font-body);
}
.luxury-input:focus {
    border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); background: white;
}
textarea.luxury-input {
    resize: vertical;
    min-height: 100px;
}

/* Honeypot: present in the DOM for bots to fill, invisible and unreachable for real visitors. */
.hp-field {
    position: absolute; left: -9999px; top: -9999px;
    width: 1px; height: 1px; overflow: hidden;
}

/* Custom Styled Dropdown */
.custom-select-wrapper {
    position: relative;
}
.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 45px; /* Space for the icon */
    cursor: pointer;
}
.select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none; /* Allows clicks to pass through to the select element */
    transition: transform 0.3s ease, color 0.3s ease;
}
.custom-select:focus + .select-icon {
    color: var(--accent);
    transform: translateY(-50%) rotate(180deg);
}
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}
input[type="date"]:focus::-webkit-calendar-picker-indicator {
    opacity: 1;
}

/* --- SERVICE DETAIL MODAL --- */
#service-modal .modal-content { text-align: center; }
.service-modal-icon {
    width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--accent);
    color: var(--accent); display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin: 0 auto 22px;
}
#service-modal h2 { font-size: 1.6rem; margin-bottom: 14px; color: var(--primary); }
#service-modal > .modal-content > p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }
#service-modal h4 {
    text-align: left; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 16px;
}
#service-modal-issues { text-align: left; list-style: none; margin-bottom: 30px; display: flex; flex-direction: column; gap: 12px; }
#service-modal-issues li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-main); font-size: 0.95rem; }
#service-modal-issues li::before {
    content: '\f00c'; font-family: 'FontAwesome'; color: var(--accent); font-size: 0.75rem; margin-top: 4px;
}

/* --- LEGAL PAGES (Privacy Policy / Terms of Service) --- */
.legal-page { max-width: 780px; padding-top: 160px; padding-bottom: 100px; }
.legal-page h1 { font-size: 2.4rem; text-align: center; margin-bottom: 8px; }
.legal-updated { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 48px; }
.legal-content h2 { font-family: var(--font-display); font-size: 1.3rem; margin: 36px 0 14px; color: var(--primary); }
.legal-content p { color: var(--text-main); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { margin: 0 0 18px 20px; color: var(--text-main); line-height: 1.8; }
.legal-content a { color: var(--accent); font-weight: 600; }
.legal-content a:hover { color: var(--accent-hover); }
.legal-disclaimer { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--hairline); color: var(--text-muted); font-size: 0.82rem; font-style: italic; }

/* --- FOOTER --- */
.site-footer { background: var(--primary); color: #cfcbc3; padding-top: 90px; }
.footer-brand .logo { color: white; }
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 0.85fr 1fr 1.3fr; gap: 40px;
    padding-bottom: 56px; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p { font-size: 0.92rem; line-height: 1.7; max-width: 320px; margin: 16px 0 24px; color: #a9a6a0; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex; align-items: center; justify-content: center; color: white; transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.footer-col h4 { font-family: var(--font-display); color: white; font-size: 1.05rem; margin-bottom: 22px; }
.footer-col a, .footer-col span {
    display: block; color: #a9a6a0; font-size: 0.92rem; margin-bottom: 14px; transition: var(--transition); cursor: pointer;
}
.footer-col a:hover { color: var(--accent); }
.footer-col i { color: var(--accent); width: 16px; margin-right: 8px; }

/* Icon + content as a two-column row, so multi-line content lines up under itself. */
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px;
}
.footer-contact-item i {
    margin-right: 0; margin-top: 3px; flex-shrink: 0; text-align: center;
}
.footer-contact-item a, .footer-contact-item span { margin-bottom: 0; }
.footer-hours { display: flex; flex-direction: column; gap: 3px; cursor: default; }
.footer-hours-time { color: #7d7a74; font-size: 0.85rem; }

.footer-map { margin-top: 6px; }
.footer-map iframe {
    display: block; width: 100%; height: 150px; border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px; filter: invert(90%) hue-rotate(180deg) brightness(0.95) contrast(0.9);
}
.footer-col .footer-map-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin: 12px 0 0; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
    color: var(--accent);
}
.footer-col .footer-map-link:hover { color: var(--accent-hover); }
.footer-map-link i { margin: 0; font-size: 0.7rem; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
    gap: 12px; padding: 28px 24px; font-size: 0.85rem; color: #8b8880;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: #8b8880; transition: var(--transition); }
.footer-legal a:hover { color: var(--accent); }

/* Responsive */
/* Must match NAV_BREAKPOINT in script.js */
@media(max-width: 1200px) {
    .nav-toggle { display: flex; z-index: 1002; position: relative; }
    .nav-actions > .btn-book { display: none; }
    .nav-mobile-cta { display: block; border-bottom: none !important; margin-top: 12px; }
    .nav-mobile-cta .btn { display: block; width: 100%; white-space: normal; }

    .nav-links {
        position: fixed; top: 0; right: 0; height: 100vh; width: min(80vw, 320px);
        background: var(--card-bg); z-index: 1001;
        flex-direction: column; align-items: flex-start; justify-content: flex-start;
        gap: 8px; padding: 110px 32px 40px;
        transform: translateX(100%); transition: var(--transition);
        box-shadow: -20px 0 50px rgba(13, 13, 15, 0.2);
    }
    .nav-links.active { transform: translateX(0); }
    .nav-links li { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--hairline); font-size: 1.05rem; white-space: normal; }

    .dropdown {
        position: static; opacity: 1; visibility: visible; display: none;
        width: 100%; box-shadow: none; border: none; padding: 10px 0 0 12px; margin-top: 8px;
    }
    .nav-links li.dropdown-open .dropdown { display: flex; }
    .nav-links li:hover .dropdown { top: auto; }

    .nav-overlay {
        display: block; position: fixed; inset: 0; background: rgba(13, 13, 15, 0.5);
        opacity: 0; visibility: hidden; transition: var(--transition); z-index: 1000;
    }
    .nav-overlay.active { opacity: 1; visibility: visible; }

    header .logo { font-size: 1.3rem; }
    header .logo-icon { height: 32px; }
}

/* Phones: icon-only header (font-size: 0 hides the text, the img is unaffected) */
@media(max-width: 480px) {
    header .logo { font-size: 0; gap: 0; }
    header .logo-icon { height: 34px; }
    .lang-btn { padding: 5px 9px; font-size: 0.68rem; }
}

@media(max-width: 768px) {
    section { padding: 80px 0; }
    .hero h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .trust-bar { border-radius: 20px; padding: 20px; }
    .final-cta { padding: 60px 20px; border-radius: 16px; }
    .modal-content { padding: 30px 20px; }
    .form-row { flex-direction: column; gap: 0; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
