/* Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --forest:      #1E3A0E;
    --forest-dark: #122408;
    --moss:        #3A5C1A;
    --sage:        #7A9A5A;
    --amber:       #B8710E;
    --amber-warm:  #D4891A;
    --paper:       #FAF8F4;
    --linen:       #F0EBE1;
    --ink:         #1A1A18;
    --muted:       #5C5C54;
    --rule:        #DED8CC;
    --wa:          #25D366;
    --wa-dark:     #1EBE58;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px;
}

.eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 14px;
}

.section-head { margin-bottom: 52px; }

.section-head h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 300;
    color: var(--forest);
    line-height: 1.12;
}

.section-head h2 em { font-style: italic; font-weight: 300; }

.section-note {
    margin-top: 14px;
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.7;
    font-weight: 300;
}


/* ── Navigation ─────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 24px 0;
    transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
}

.nav.solid {
    background: var(--forest-dark);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.03em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-wa {
    display: flex !important;
    align-items: center;
    gap: 7px;
    background: var(--wa);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 3px;
    font-weight: 500 !important;
    font-size: 0.82rem !important;
    transition: background 0.2s !important;
}

.nav-wa svg { width: 15px; height: 15px; }
.nav-wa:hover { background: var(--wa-dark) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 23px; height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: 0.25s;
}


/* ── Hero ────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(8, 20, 3, 0.52);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 32px 0;
    max-width: 960px;
    width: 100%;
}

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--amber-warm);
    margin-bottom: 22px;
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    line-height: 1.0;
    margin-bottom: 26px;
}

.hero-title em {
    font-style: italic;
    color: var(--amber-warm);
    font-weight: 600;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--wa);
    color: #fff;
    padding: 14px 30px;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s;
}

.hero-wa svg { width: 19px; height: 19px; }
.hero-wa:hover { background: var(--wa-dark); transform: translateY(-2px); }

.hero-credit {
    position: absolute;
    bottom: 22px; right: 28px;
    z-index: 2;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* ── Ticker ──────────────────────────────────── */
.ticker {
    background: var(--forest);
    padding: 11px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    animation: ticker-scroll 32s linear infinite;
}

.ticker-track span {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    padding: 0 18px;
}

.ticker-track .sep {
    color: var(--amber-warm);
    padding: 0 2px;
    letter-spacing: 0;
}

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}


/* ── Intro ───────────────────────────────────── */
.intro {
    padding: 104px 0;
    border-bottom: 1px solid var(--rule);
}

.intro-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 88px;
    align-items: start;
}

.intro-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--forest);
    line-height: 1.45;
    border-left: 2px solid var(--amber);
    padding-left: 28px;
}

.intro-text p {
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 18px;
}

.intro-text p:last-child { margin-bottom: 0; }


/* ── Destinations ────────────────────────────── */
.destinations {
    padding: 104px 0;
    border-bottom: 1px solid var(--rule);
}

.mosaic {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    grid-template-rows: 330px 270px;
    gap: 10px;
    margin-bottom: 36px;
}

.mosaic-cell {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: var(--linen);
}

.mosaic-cell.tall { grid-row: 1 / 3; }

.mosaic-cell img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.mosaic-cell:hover img { transform: scale(1.05); }

.cell-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 48px 20px 18px;
    background: linear-gradient(transparent, rgba(8, 20, 3, 0.72));
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cell-caption strong {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #fff;
}

.cell-caption span {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.dest-also {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
    flex-wrap: wrap;
}

.dest-also p {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 300;
}

.dest-also strong { color: var(--ink); font-weight: 500; }

.text-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--forest);
    border-bottom: 1px solid var(--sage);
    padding-bottom: 2px;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}

.text-link:hover { color: var(--amber); border-color: var(--amber); }


/* ── Packages ────────────────────────────────── */
.packages {
    padding: 104px 0;
    border-bottom: 1px solid var(--rule);
    background: var(--linen);
}

.pkg-list { border-top: 1px solid var(--rule); }

.pkg-item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 28px;
    align-items: start;
    padding: 34px 0;
    border-bottom: 1px solid var(--rule);
    transition: padding 0.2s;
}

.pkg-item:hover {
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 -16px;
    background: rgba(255,255,255,0.55);
}

.pkg-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    color: var(--rule);
    font-weight: 300;
    padding-top: 6px;
    letter-spacing: 0.04em;
}

.pkg-body h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 8px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pkg-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--amber);
    color: #fff;
    padding: 3px 9px;
    border-radius: 2px;
    vertical-align: middle;
    line-height: 1.8;
}

.pkg-body p {
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.5;
}

.pkg-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    padding-top: 6px;
    min-width: 160px;
}

.pkg-duration {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--muted);
    white-space: nowrap;
}

.pkg-wa {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--wa);
    white-space: nowrap;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}

.pkg-wa:hover { color: var(--wa-dark); border-color: var(--wa-dark); }


/* ── Airport Transfer ────────────────────────── */
.transfer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.transfer-photo { overflow: hidden; }

.transfer-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.transfer-photo:hover img { transform: scale(1.04); }

.transfer-content {
    background: var(--forest-dark);
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transfer-content .eyebrow { color: var(--amber-warm); margin-bottom: 16px; }

.transfer-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 20px;
}

.transfer-content > p {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 28px;
    max-width: 400px;
}

.transfer-list { margin-bottom: 36px; }

.transfer-list li {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.68);
    padding: 10px 0 10px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: relative;
    font-weight: 300;
}

.transfer-list li:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

.transfer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 1px;
    background: var(--amber-warm);
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--wa);
    color: #fff;
    padding: 13px 26px;
    border-radius: 3px;
    font-size: 0.88rem;
    font-weight: 500;
    width: fit-content;
    transition: background 0.2s, transform 0.2s;
}

.wa-btn svg { width: 18px; height: 18px; }
.wa-btn:hover { background: var(--wa-dark); transform: translateY(-1px); }


/* ── Footer ──────────────────────────────────── */
.footer { background: var(--forest-dark); }

.footer-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 68px 40px 52px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em;
}

.footer-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 10px;
}

.footer-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.1rem;
    font-weight: 300;
    color: var(--wa);
    transition: color 0.2s;
    letter-spacing: 0.02em;
}

.footer-number:hover { color: var(--wa-dark); }

.footer-bottom {
    max-width: 1160px;
    margin: 0 auto;
    padding: 20px 40px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.22);
    letter-spacing: 0.04em;
}


/* ── Floating WhatsApp ───────────────────────── */
.fab {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 999;
    width: 54px; height: 54px;
    background: var(--wa);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37,211,102,0.4);
    transition: transform 0.2s, background 0.2s;
    animation: breathe 3.5s ease-in-out infinite;
}

.fab svg { width: 27px; height: 27px; }

.fab:hover {
    background: var(--wa-dark);
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

@keyframes breathe {
    0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.4); }
    50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.65); }
}


/* ── Scroll reveal ───────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.in { opacity: 1; transform: none; }


/* ── Responsive ──────────────────────────────── */
@media (max-width: 960px) {
    .intro-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px 220px;
    }

    .transfer {
        grid-template-columns: 1fr;
    }

    .transfer-photo { height: 320px; }

    .transfer-content { padding: 52px 40px; }

    .pkg-item {
        grid-template-columns: 44px 1fr;
    }

    .pkg-aside {
        grid-column: 2;
        align-items: flex-start;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-wrap { align-items: flex-start; }
}

@media (max-width: 640px) {
    .wrap { padding: 0 24px; }

    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        gap: 18px;
        background: var(--forest-dark);
    }

    .nav-links.open { display: flex; }

    .nav {
        background: rgba(18, 36, 8, 0.95);
        backdrop-filter: blur(8px);
    }

    .hero-content { padding: 0 24px 64px; }

    .mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: 280px 220px 200px;
    }

    .mosaic-cell.tall { grid-row: auto; }

    .intro { padding: 68px 0; }
    .destinations, .packages { padding: 76px 0; }

    .dest-also { flex-direction: column; gap: 14px; }

    .pkg-item {
        grid-template-columns: 1fr;
        padding: 26px 0;
    }

    .pkg-num { display: none; }

    .pkg-item:hover { padding-left: 0; padding-right: 0; margin: 0; background: none; }

    .pkg-aside {
        grid-column: 1;
        align-items: flex-start;
    }

    .transfer-content { padding: 44px 24px; }

    .footer-wrap { padding: 48px 24px 36px; }
    .footer-bottom { padding: 18px 24px; }

    .fab { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .fab svg { width: 24px; height: 24px; }
}
