/* ============== RESET & TOKENS ============== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Manrope', system-ui, sans-serif;
    background: #FDFBF7;
    color: #1C1A18;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: #C75B3E; color: #FDFBF7; }

:root {
    --bg: #FDFBF7;
    --bg-alt: #F2F0EB;
    --dark: #2C3C33;
    --ink: #1C1A18;
    --muted: #5C5A56;
    --accent: #C75B3E;
    --accent-dark: #A84A30;
    --warm: #E8A87C;
    --border: #E5E3DB;
    --wa: #25D366;
    --wa-dark: #1FAD52;
}

/* ============== TYPOGRAPHY HELPERS ============== */
.serif { font-family: 'Cormorant Garamond', serif; font-weight: 500; letter-spacing: -0.01em; }
.serif em { font-style: italic; color: var(--accent); }
h1, h2 { line-height: 1.05; }
h2.serif { font-size: clamp(2.4rem, 5vw, 4rem); }
h3 { font-size: 1.5rem; font-weight: 500; }
.eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.eyebrow-light { color: rgba(255,255,255,0.8); }
.eyebrow-accent { color: var(--warm); }
.title-light { color: var(--bg); }

/* ============== LAYOUT ============== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

.section { padding: 6rem 0; }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }
.section-alt { background: var(--bg-alt); padding: 6rem 0; }
@media (min-width: 1024px) { .section-alt { padding: 8rem 0; } }
.section-dark { background: var(--dark); color: var(--bg); padding: 6rem 0; position: relative; overflow: hidden; }
@media (min-width: 1024px) { .section-dark { padding: 8rem 0; } }

/* ============== NAVBAR ============== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.5rem; color: white; }
.navbar.scrolled .brand { color: var(--ink); }
.brand-icon { width: 1.5rem; height: 1.5rem; color: var(--accent); flex-shrink: 0; }
.brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.15;
    font-weight: 500;
}
@media (min-width: 768px) { .brand-text { font-size: 1.15rem; } }
.nav-links { display: none; align-items: center; gap: 2.2rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a { font-size: 0.875rem; transition: color 0.2s; color: rgba(255,255,255,0.85); }
.nav-links a:hover { color: white; }
.navbar.scrolled .nav-links a { color: var(--muted); }
.navbar.scrolled .nav-links a:hover { color: var(--accent); }
.nav-toggle { background: none; border: none; cursor: pointer; color: white; padding: 0.25rem; }
.nav-toggle svg { width: 1.5rem; height: 1.5rem; }
.navbar.scrolled .nav-toggle { color: var(--ink); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 0.5rem 0; color: var(--ink); font-weight: 500; }
.mobile-menu .btn { margin-top: 0.5rem; text-align: center; }

/* ============== BUTTONS ============== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
    white-space: nowrap;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.3); color: white; background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-dark { background: var(--ink); color: white; width: 100%; justify-content: space-between; }
.btn-dark:hover { background: var(--accent); }
.btn-whatsapp { background: var(--wa); }
.btn-whatsapp:hover { background: var(--wa-dark); }
.btn-block { width: 100%; padding: 1.05rem 1.5rem; font-size: 1rem; }
.wa-icon { width: 1.15rem; height: 1.15rem; }
.wa-icon-sm { width: 0.95rem; height: 0.95rem; }

/* ============== HERO ============== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        url("images/hero.jpg")
        center/cover no-repeat;
    background-color: #2C3C33;
    color: white;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.35) 35%, rgba(0,0,0,0.8));
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 9rem 1.5rem 6rem;
    max-width: 60rem;
    margin: 0 auto 0 0;
}
@media (min-width: 1024px) {
    .hero-content {
        padding-left: 3rem; padding-right: 3rem;
        padding-bottom: 8rem;
        padding-top: 12rem;
        margin: 0;
        max-width: 100%;
    }
}
.hero-content { max-width: 1240px; }
.hero-content > * { max-width: 56rem; }
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 500;
    line-height: 0.95;
    margin-bottom: 2rem;
}
.hero-title em { font-style: italic; color: var(--warm); }
.hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    max-width: 36rem;
    line-height: 1.6;
}
.hero-ctas { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* Marquee */
.marquee {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
    animation: scroll 40s linear infinite;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}
.marquee-track .dot { color: var(--accent); }
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============== ABOUT ============== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
}
.about-image img { width: 100%; max-height: 80vh; object-fit: cover; border-radius: 2px; }
.about-text p { color: var(--muted); margin-bottom: 1.5rem; font-size: 1.1rem; max-width: 36rem; }
.about-text h2 { margin-bottom: 2.5rem; }
.about-text em { font-style: italic; }

.stats {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (min-width: 1024px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat-v { font-family: 'Cormorant Garamond', serif; font-size: 2.7rem; color: var(--accent); }
.stat-l { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); margin-top: 0.5rem; }

/* ============== ITINERARY ============== */
.itinerary { color: var(--bg); }
.itinerary-bg {
    position: absolute; inset: 0;
    background-image: url("https://images.unsplash.com/photo-1700745286959-8658de43a15c?auto=format&fit=crop&w=1800&q=70");
    background-size: cover; background-position: center;
    opacity: 0.18;
}
.itinerary .container { position: relative; z-index: 2; }
.itinerary h2 { max-width: 30rem; margin-bottom: 4rem; }

.timeline { position: relative; }
.timeline-line {
    position: absolute;
    left: 1rem; top: 0.5rem; bottom: 0.5rem;
    width: 1px;
    background: rgba(232,168,124,0.3);
}
@media (min-width: 1024px) { .timeline-line { left: 50%; } }

.timeline-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-left: 3rem;
}
@media (min-width: 1024px) {
    .timeline-row { padding-left: 0; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 6rem; }
    .timeline-row.left .timeline-card { text-align: right; padding-right: 2rem; }
    .timeline-row.right .timeline-card { grid-column: 2; padding-left: 2rem; }
}

.timeline-card { position: relative; }
.timeline-dot {
    position: absolute;
    left: -3rem; top: 0.5rem;
    width: 1rem; height: 1rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--dark);
}
@media (min-width: 1024px) {
    .timeline-row.left .timeline-dot { left: auto; right: -2.5rem; transform: translateX(50%); }
    .timeline-row.right .timeline-dot { left: -2.5rem; transform: translateX(-50%); }
}
.timeline-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin: 0.5rem 0;
}
.timeline-card .meta { font-size: 0.85rem; color: var(--warm); margin-bottom: 1rem; }
.timeline-card p { color: rgba(253,251,247,0.78); font-size: 1rem; line-height: 1.65; }

/* ============== PACKAGES ============== */
.section-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}
@media (min-width: 1024px) {
    .section-head { grid-template-columns: 5fr 6fr; gap: 4rem; align-items: end; }
}
.section-head-desc { color: var(--muted); font-size: 1.1rem; line-height: 1.6; padding-top: 2rem; }
.package-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .package-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .package-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.pkg-card {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(0,0,0,0.15); }
.pkg-card.featured { box-shadow: inset 0 0 0 2px var(--accent); }
.pkg-badge {
    position: absolute;
    top: -0.75rem; left: 2rem;
    background: var(--accent);
    color: white;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    padding: 0.4rem 0.75rem;
    border-radius: 2px;
}
.pkg-card h3 { font-size: 1.75rem; margin-bottom: 1rem; line-height: 1.1; }
.pkg-desc { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.55; }
.pkg-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.pkg-price .from { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.15em; }
.pkg-price .amount { font-family: 'Cormorant Garamond', serif; font-size: 2.25rem; color: var(--accent); }
.pkg-price .per { font-size: 0.75rem; color: var(--muted); }
.pkg-list { margin-bottom: 2rem; flex: 1; }
.pkg-list li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.875rem;
    margin-bottom: 0.7rem;
    line-height: 1.5;
}
.pkg-list li::before {
    content: "✓"; position: absolute; left: 0; top: 0;
    color: var(--accent); font-weight: 700;
}
.pkg-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
}
.pkg-meta .meta-l { display: block; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); margin-bottom: 0.25rem; }
.pkg-meta > div > span:last-child { font-weight: 500; }

/* ============== GALLERY ============== */
.gallery h2 { margin-bottom: 3rem; }
.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    grid-auto-rows: 14rem;
}
@media (min-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(12, 1fr); grid-auto-rows: 16rem; gap: 1rem; }
    .g-1 { grid-column: span 7; grid-row: span 2; }
    .g-2 { grid-column: span 5; }
    .g-3 { grid-column: span 5; }
    .g-4 { grid-column: span 4; }
    .g-5 { grid-column: span 8; }
}
.g { overflow: hidden; border-radius: 2px; }
.g img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.g:hover img { transform: scale(1.05); }

/* ============== TESTIMONIALS ============== */
.testimonials h2 { margin-bottom: 4rem; max-width: 36rem; }
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .testi-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.testi {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 2.5rem;
    display: flex; flex-direction: column;
}
.testi .quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    color: rgba(199,91,62,0.3);
    line-height: 0.7;
}
.testi > p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 2rem;
    margin-top: -1rem;
    flex: 1;
}
.testi-foot { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.testi-name { font-weight: 500; color: var(--ink); }
.testi-place { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.2em; margin-top: 0.25rem; }

/* ============== FAQ ============== */
.faq-wrap { max-width: 64rem; }
.faq h2 { margin-bottom: 4rem; }
.faq-list details {
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
}
.faq-list summary {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    padding: 1.5rem 2rem 1.5rem 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: var(--ink);
    transition: color 0.2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "+";
    position: absolute; right: 0; top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem; color: var(--accent);
    transition: transform 0.2s;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list summary:hover { color: var(--accent); }
.faq-list details > p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
    padding: 0 2rem 2rem 0;
}

/* ============== BOOK ============== */
.book-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 1024px) { .book-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.book-desc { color: var(--muted); margin: 2rem 0; font-size: 1.05rem; line-height: 1.65; }
.book-info {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 2px;
}
.book-info p { font-size: 0.9rem; color: var(--ink); }
.book-info .eyebrow { margin-bottom: 0.5rem; }

.book-form { display: flex; flex-direction: column; gap: 1.25rem; }
.book-form label {
    display: flex; flex-direction: column; gap: 0.5rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
}
.book-form input, .book-form select, .book-form textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.75rem 0.9rem;
    height: 3rem;
    font-size: 1rem;
    color: var(--ink);
    letter-spacing: normal;
    text-transform: none;
    transition: border-color 0.2s;
    width: 100%;
    font-family: inherit;
}
.book-form textarea { height: auto; resize: vertical; }
.book-form input:focus, .book-form select:focus, .book-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.hint { font-size: 0.75rem; color: var(--muted); text-align: center; }

/* ============== CONTACT ============== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.contact-info { display: flex; flex-direction: column; gap: 1.75rem; color: rgba(253,251,247,0.85); }
.ci-item .ci-label {
    display: block;
    font-size: 0.72rem;
    color: var(--warm);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.4rem;
}
.ci-item p, .ci-item a { color: rgba(253,251,247,0.85); font-size: 1rem; line-height: 1.55; }
.ci-wa { display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.ci-wa:hover { color: var(--wa); }

/* ============== FOOTER ============== */
.footer { background: #0F0E0C; color: rgba(253,251,247,0.65); padding: 4rem 0 2rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; } }
.footer .brand span {
    font-family: 'Cormorant Garamond', serif;
    color: var(--bg);
    font-size: 1.1rem;
    line-height: 1.25;
}
.footer-brand p { max-width: 28rem; margin-top: 1rem; font-size: 0.875rem; }
.footer-h { text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.72rem; color: var(--warm); margin-bottom: 1rem; }
.footer ul li { margin-bottom: 0.5rem; }
.footer a { font-size: 0.875rem; transition: color 0.2s; }
.footer a:hover { color: var(--bg); }
.footer-bot {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: rgba(253,251,247,0.35);
}
@media (min-width: 768px) { .footer-bot { flex-direction: row; justify-content: space-between; } }

/* ============== WHATSAPP FAB ============== */
.wa-fab {
    position: fixed;
    bottom: 1.5rem; right: 1.5rem;
    z-index: 99;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.3rem;
    border-radius: 999px;
    background: var(--wa);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 14px 35px -10px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.wa-fab:hover { transform: scale(1.05); box-shadow: 0 20px 40px -8px rgba(37,211,102,0.5); }
.wa-fab svg { width: 1.25rem; height: 1.25rem; }
@media (max-width: 640px) { .wa-fab span { display: none; } .wa-fab { padding: 0.95rem; } }
