:root {
    --sand: #C8A96E;
    --sand-light: #E8D5B0;
    --sand-pale: #F5ECD7;
    --dark: #1A1510;
    --dark-mid: #2C2318;
    --earth: #6B4F2A;
    --earth-light: #8B6840;
    --sky: #7B9BAD;
    --white: #FAF7F2;
    --text-muted: #BFB09A;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Josefin Sans', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* ── HEADER ─────────────────────────────────────────── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background: rgba(26, 21, 16, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    transition: padding 0.4s;
}

header.scrolled { padding: 12px 60px; }

.logo-img {
    height: 52px;
    width: auto;
    filter: brightness(1.1);
}

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

nav a {
    color: var(--sand-light);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--sand);
    transition: width 0.3s;
}

nav a:hover { color: var(--sand); }
nav a:hover::after { width: 100%; }

.nav-cta {
    background: var(--sand);
    color: var(--dark) !important;
    padding: 10px 24px;
    font-weight: 600 !important;
    letter-spacing: 0.12em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.72rem;
    transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--sand-light) !important;
    transform: translateY(-1px);
}

.nav-cta::after { display: none; }

/* ── HAMBURGER ──────────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--sand-light);
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,21,16,0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

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

.mobile-nav a {
    color: var(--sand-light);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 200;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.mobile-nav a:hover { color: var(--sand); }

.mobile-close {
    position: absolute;
    top: 24px; right: 30px;
    font-size: 2rem;
    color: var(--sand-light);
    cursor: pointer;
    background: none;
    border: none;
}

/* ── HERO ───────────────────────────────────────────── */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26,21,16,0.25) 0%,
        rgba(26,21,16,0.1) 40%,
        rgba(26,21,16,0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    animation: heroIn 1.6s ease forwards;
}

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

.hero-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
    text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.hero-title em {
    font-style: italic;
    color: var(--sand-light);
}

.hero-sub {
    font-size: 0.8rem;
    font-weight: 200;
    letter-spacing: 0.2em;
    color: rgba(250,247,242,0.75);
    margin-bottom: 48px;
    text-transform: uppercase;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--sand);
    color: var(--dark);
    padding: 14px 36px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--sand-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 13px 36px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(250,247,242,0.4);
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--sand);
    color: var(--sand);
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(250,247,242,0.5);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll i { font-size: 0.9rem; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTION COMMON ─────────────────────────────────── */
section { padding: 100px 60px; }

.section-label {
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: var(--sand-light);
}

.section-divider {
    width: 48px; height: 1px;
    background: var(--sand);
    margin-bottom: 24px;
}

.section-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 560px;
}

/* ── INTRO / WELCOME ────────────────────────────────── */
#intro {
    background: var(--dark-mid);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 12px;
}

.intro-img {
    overflow: hidden;
}

.intro-img:first-child {
    grid-row: span 2;
}

.intro-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.intro-text .section-body { max-width: 100%; }

.intro-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(200,169,110,0.2);
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--sand);
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ── TOURS ──────────────────────────────────────────── */
#tours {
    background: var(--dark);
}

.tours-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 24px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.tour-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.tour-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.tour-card:hover img { transform: scale(1.06); }

.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,21,16,0.9) 0%, rgba(26,21,16,0.1) 60%, transparent 100%);
    transition: background 0.4s;
}

.tour-card:hover .tour-card-overlay {
    background: linear-gradient(to top, rgba(26,21,16,0.95) 0%, rgba(26,21,16,0.3) 60%, rgba(26,21,16,0.1) 100%);
}

.tour-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px 28px;
}

.tour-nights {
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 8px;
}

.tour-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 10px;
}

.tour-card-desc {
    font-size: 0.75rem;
    font-weight: 200;
    color: rgba(250,247,242,0.65);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s;
    opacity: 0;
}

.tour-card:hover .tour-card-desc {
    max-height: 120px;
    opacity: 1;
}

.tour-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--sand);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s;
}

.tour-card:hover .tour-card-link {
    max-height: 40px;
    opacity: 1;
}

.tour-card-link i { font-size: 0.7rem; transition: transform 0.3s; }
.tour-card-link:hover i { transform: translateX(4px); }

/* ── DESTINATIONS ───────────────────────────────────── */
#destinations {
    background: var(--dark-mid);
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 60px;
}

.dest-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.dest-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

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

.dest-card-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(26,21,16,0.9), transparent);
}

.dest-card-country {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 4px;
}

.dest-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--white);
}

.dest-card-link {
    display: inline-block;
    margin-top: 8px;
    color: rgba(250,247,242,0.6);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}

.dest-card-link:hover { color: var(--sand); }

/* ── PACKAGES STRIP ─────────────────────────────────── */
#packages-strip {
    background: var(--sand);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.packages-strip-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.2;
}

.packages-strip-text em { font-style: italic; }

.strip-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.strip-link {
    background: var(--dark);
    color: var(--sand-light);
    padding: 12px 24px;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s;
    white-space: nowrap;
}

.strip-link:hover { background: var(--dark-mid); }

/* ── ABOUT ──────────────────────────────────────────── */
#about {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 6px solid var(--dark);
}

.about-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--sand);
    color: var(--dark);
    padding: 20px 24px;
    text-align: center;
}

.about-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1;
    display: block;
}

.about-badge-text {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ── GALLERY PREVIEW ────────────────────────────────── */
#gallery-preview {
    background: var(--dark-mid);
    padding: 100px 60px;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 200px 200px;
    gap: 4px;
}

.gallery-grid .g-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.g-item {
    overflow: hidden;
}

.g-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.g-item:hover img { transform: scale(1.06); }

/* ── PLAN YOUR TRIP ─────────────────────────────────── */
#plan {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.plan-text {
    padding: 100px 80px 100px 60px;
}

.plan-form-wrap {
    background: var(--dark-mid);
    padding: 80px 60px;
}

.plan-hint {
    font-size: 0.96rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    margin-top: 24px;
}

.plan-features {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.plan-feature i {
    color: var(--sand);
    font-size: 1rem;
    margin-top: 2px;
}

.plan-feature-text {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

.plan-feature-title {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2px;
}

/* ── FORM ───────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,169,110,0.2);
    color: var(--white);
    padding: 12px 16px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 200;
    transition: border-color 0.3s;
    outline: none;
    -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(250,247,242,0.25); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--sand); }

.form-select option { background: var(--dark-mid); color: var(--white); }

.form-textarea { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
    width: 100%;
    background: var(--sand);
    color: var(--dark);
    border: none;
    padding: 16px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
}

.form-submit:hover { background: var(--sand-light); }

/* ── CONTACT ────────────────────────────────────────── */
#contact {
    background: var(--dark-mid);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
}

.contact-info {
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px; height: 44px;
    border: 1px solid rgba(200,169,110,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sand);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-detail-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--white);
}

.contact-detail-value a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail-value a:hover { color: var(--sand); }

.contact-social {
    display: flex;
    gap: 16px;
    margin-top: 48px;
}

.social-btn {
    width: 44px; height: 44px;
    border: 1px solid rgba(200,169,110,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sand-light);
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.social-btn:hover {
    background: var(--sand);
    color: var(--dark);
    border-color: var(--sand);
}

.contact-map {
    height: 100%;
    min-height: 460px;
}

.contact-map iframe {
    width: 100%; height: 100%;
    border: none;
    display: block;
    filter: grayscale(60%) sepia(20%);
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(200,169,110,0.15);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 0.68rem;
    font-weight: 200;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.68rem;
    font-weight: 200;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--sand); }

/* ── QUOTE POPUP ─────────────────────────────────────── */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,21,16,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-overlay.open { display: flex; }

.popup-box {
    background: var(--dark-mid);
    border: 1px solid rgba(200,169,110,0.2);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px;
    position: relative;
    animation: popIn 0.4s ease;
}

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

.popup-close {
    position: absolute;
    top: 18px; right: 22px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    transition: color 0.3s;
}

.popup-close:hover { color: var(--sand); }

.popup-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 8px;
}

.popup-sub {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 180px 180px; }
    .gallery-grid .g-item:first-child { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 900px) {
    section { padding: 70px 30px; }
    header { padding: 16px 30px; }
    header.scrolled { padding: 12px 30px; }
    nav { display: none; }
    .hamburger { display: flex; }
    #intro, #about, #plan, #contact { grid-template-columns: 1fr; gap: 40px; }
    .about-img-accent { display: none; }
    .about-badge { top: 16px; left: 16px; }
    .tours-grid { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-grid .g-item:first-child { grid-column: span 2; }
    #packages-strip { padding: 40px 30px; }
    footer { padding: 30px; flex-direction: column; text-align: center; }
    .plan-text { padding: 70px 30px; }
    .plan-form-wrap { padding: 50px 30px; }
    .contact-info { padding: 60px 30px; }
    .contact-map { min-height: 300px; }
    .intro-images { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
    .intro-img:first-child { grid-row: span 1; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.6rem; }
    .tours-grid { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .popup-box { padding: 32px 24px; }
    .strip-links { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════
   SUB-PAGE STYLES
   ═══════════════════════════════════════════════════════ */

/* ── PAGE HERO ───────────────────────────────────────── */
.page-hero {
    height: 52vh;
    min-height: 340px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 60px 60px;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,21,16,0.85) 0%, rgba(26,21,16,0.3) 60%, rgba(26,21,16,0.5) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow {
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 12px;
}
.page-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
}
.page-hero-title em { font-style: italic; color: var(--sand-light); }

/* ── SECTION COMMON (sub-pages) ──────────────────────── */
.section { padding: 90px 60px; }
.section-label {
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 14px;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--sand-light); }
.section-divider { width: 48px; height: 1px; background: var(--sand); margin-bottom: 22px; }
.section-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-muted);
}

/* ── PACKAGES GRID ───────────────────────────────────── */
.packages-section { background: var(--dark-mid); }
.packages-intro {
    max-width: 680px;
    margin: 0 auto 64px;
    text-align: center;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2px;
}
.pkg-card {
    background: var(--dark-card, #231D14);
    padding: 40px 36px;
    position: relative;
    border-left: 2px solid transparent;
    transition: border-color 0.3s, background 0.3s;
    display: flex;
    flex-direction: column;
}
.pkg-card:hover { border-left-color: var(--sand); background: #281F15; }
.pkg-nights {
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 12px;
}
.pkg-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}
.pkg-route {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    flex: 1;
}
.pkg-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    color: var(--sand);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: gap 0.3s;
}
.pkg-link:hover { gap: 14px; }
.pkg-card-num {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(200,169,110,0.08);
    line-height: 1;
}

/* ── DESTINATIONS STRIP ─────────────────────────────── */
.dest-strip { background: var(--dark); }
.dest-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.dest-strip-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}
.dest-strip-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.dest-strip-card:hover img { transform: scale(1.05); }
.dest-strip-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 18px;
    background: linear-gradient(to top, rgba(26,21,16,0.85), transparent);
}
.dest-strip-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--white);
}
.dest-strip-sub {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 4px;
}

/* ── CONTACT STRIP ───────────────────────────────────── */
.contact-strip {
    background: var(--sand);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.contact-strip-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.2;
}
.contact-strip-text em { font-style: italic; }
.contact-strip-links { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.contact-strip-links a {
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-strip-links a:hover { color: var(--earth); }

/* ── FOOTER SOCIAL ───────────────────────────────────── */
.footer-social { display: flex; gap: 16px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(200,169,110,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}
.footer-social a:hover { background: var(--sand); color: var(--dark); border-color: var(--sand); }

/* ── TERMS ───────────────────────────────────────────── */
.terms-section { background: var(--dark-mid); }
.terms-block { max-width: 780px; margin: 0 auto; }
.terms-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--sand-light);
    margin: 48px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(200,169,110,0.2);
}
.terms-block p {
    font-size: 0.96rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* ── POPUP ───────────────────────────────────────────── */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,21,16,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.popup-overlay.open { display: flex; }
.popup-box {
    background: var(--dark-mid);
    border: 1px solid rgba(200,169,110,0.2);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px;
    position: relative;
    animation: popIn 0.4s ease;
}
.popup-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    transition: color 0.3s;
}
.popup-close:hover { color: var(--sand); }
.popup-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 8px;
}
.popup-sub {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ── SUB-PAGE RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
    .section { padding: 60px 30px; }
    .page-hero { padding: 0 30px 40px; }
    .dest-strip-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .contact-strip { padding: 40px 30px; flex-direction: column; }
    .popup-box { padding: 32px 24px; }
}
@media (max-width: 600px) {
    .page-hero-title { font-size: 2.2rem; }
    .form-row { grid-template-columns: 1fr; }
}
