/* =============================================
   SPLINE HERO SPLIT LAYOUT
============================================= */
.hero-split {
    display: flex;
    height: 100vh;
    min-height: 700px;
    padding-top: 0;
    overflow: hidden;
}
.hs-left {
    flex: 1;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hs-left-texture {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=900&q=50&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.07;
    pointer-events: none;
}
.hs-left-inner {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
    padding-bottom: 4rem;
}
.hs-right {
    flex: 1;
    background: #050d08;
    position: relative;
    overflow: hidden;
}
.hs-right spline-viewer {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
}
.hs-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: clamp(1.5rem, 5vw, 3rem);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.hs-spline-label {
    position: absolute;
    bottom: 2rem; right: 2rem;
    z-index: 10;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    pointer-events: none;
}
.hs-spline-gradient {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 80px;
    background: linear-gradient(to right, #050d08 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}
.spline-loader {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: #050d08; z-index: 1;
    transition: opacity 0.5s ease;
}
.spline-loader.hidden { opacity: 0; pointer-events: none; }
.spline-dot-ring {
    width: 48px; height: 48px;
    border: 2px solid rgba(196,151,63,0.15);
    border-top-color: #C4973F;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── 3D tilt card styles ── */
.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tilt-card:hover {
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.tilt-card .tilt-inner {
    transform-style: preserve-3d;
}
.tilt-card .dest-info,
.tilt-card .pillar-content {
    transform: translateZ(18px);
    transform-style: preserve-3d;
}

/* ── Spotlight animation ── */
@keyframes animate-spotlight {
    from { opacity: 0; transform: translate(-72%, -62%) rotate(30deg) scale(0.5); }
    to   { opacity: 1; transform: translate(-50%, -40%) rotate(30deg) scale(1); }
}
.animate-spotlight {
    animation: animate-spotlight 2s ease forwards;
}

@media (max-width: 900px) {
    .hero-split { flex-direction: column; }
    .hs-left { flex: 1.2; min-height: 60vh; }
    .hs-right { flex: 0 0 40vh; }
    .hs-spline-gradient { display: none; }
}
@media (max-width: 480px) {
    .hs-right { flex: 0 0 35vh; }
}

/* =============================================
   CSS VARIABLES
============================================= */
:root {
    --bg:            #EAE7E3;
    --bg-dark:       #1B3A2D;
    --text:          #2D2D2D;
    --text-muted:    #7A7A7A;
    --accent:        #8B6914;
    --accent-light:  #C4973F;
    --border:        rgba(45, 45, 45, 0.12);
    --font-display:  'Cormorant Garamond', Georgia, serif;
    --font-body:     'Plus Jakarta Sans', sans-serif;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

/* =============================================
   SCROLL ANIMATIONS
============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* =============================================
   NAVIGATION
============================================= */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.3rem 0;
    background: rgba(27, 58, 45, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: padding 0.3s;
}
nav.scrolled { padding: 0.85rem 0; }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.04em;
}
.nav-logo span { color: var(--accent-light); }
.nav-links {
    display: flex;
    gap: 2.25rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--accent-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 2px;
    transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-light) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: rgba(255,255,255,0.8);
    padding: 0.8rem 0;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu a.active { color: var(--accent-light); }

/* =============================================
   PAGE HERO (for inner pages)
============================================= */
.page-hero {
    position: relative;
    height: 52vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
    overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(27,58,45,0.82) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 0.9rem;
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.04;
    color: #fff;
    letter-spacing: -0.01em;
}
.page-hero-title em { font-style: italic; }

/* =============================================
   BUTTONS
============================================= */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.9rem 2.2rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-outline {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.55);
    color: #fff;
    padding: 0.9rem 2.2rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* =============================================
   SECTION HEADERS
============================================= */
.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.section-label.light { color: var(--accent-light); }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--text);
}
.section-title em { font-style: italic; }
.section-title.light { color: #fff; }
.section-divider {
    width: 48px;
    height: 1px;
    background: var(--accent);
    margin: 1.5rem auto 0;
}
.section-divider.light { background: var(--accent-light); }

/* =============================================
   INTRO STRIP
============================================= */
.intro-strip { background: var(--bg-dark); padding: 6rem 0; }
.intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.intro-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1.1rem;
}
.intro-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 300;
    line-height: 1.08;
    color: #fff;
}
.intro-heading em { font-style: italic; }
.intro-body { color: rgba(255,255,255,0.62); font-size: 1rem; line-height: 1.8; }
.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
    margin-top: 2.5rem;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--accent-light);
    line-height: 1;
}
.stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.35rem;
}

/* =============================================
   PILLARS
============================================= */
.pillars { padding: 8rem 0 0; background: var(--bg); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.pillar { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.pillar img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.pillar:hover img { transform: scale(1.06); }
.pillar-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(27,58,45,0.93) 0%, rgba(0,0,0,0.05) 60%);
}
.pillar-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem; }
.pillar-num { font-size: 0.68rem; color: var(--accent-light); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.7rem; }
.pillar-title { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: #fff; line-height: 1.1; margin-bottom: 0.75rem; }
.pillar-text { font-size: 0.85rem; color: rgba(255,255,255,0.72); line-height: 1.7; }

/* =============================================
   DESTINATIONS
============================================= */
.destinations { background: var(--bg-dark); padding: 8rem 0; }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.dest-card { position: relative; aspect-ratio: 4/5; overflow: hidden; cursor: pointer; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.dest-card:hover img { transform: scale(1.07); }
.dest-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
    transition: background 0.35s;
}
.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(27,58,45,0.92) 0%, rgba(0,0,0,0.18) 55%); }
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.8rem; }
.dest-date { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 0.4rem; }
.dest-name { font-family: var(--font-display); font-size: 1.85rem; font-weight: 400; color: #fff; line-height: 1.1; }
.dest-detail { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 0.5rem; line-height: 1.55; }
.dest-spots { display: inline-block; margin-top: 0.85rem; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-light); border: 1px solid rgba(196,151,63,0.55); padding: 0.28rem 0.8rem; }
.dest-list { margin-top: 3px; display: grid; grid-template-columns: repeat(3, 1fr); }
.dest-list-item { padding: 2.2rem 2rem; border-right: 1px solid rgba(255,255,255,0.07); border-top: 1px solid rgba(255,255,255,0.07); transition: background 0.25s; }
.dest-list-item:last-child { border-right: none; }
.dest-list-item:hover { background: rgba(255,255,255,0.04); }
.dest-list-date { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 0.4rem; }
.dest-list-name { font-family: var(--font-display); font-size: 1.6rem; color: #fff; font-weight: 400; }
.dest-list-detail { font-size: 0.78rem; color: rgba(255,255,255,0.48); margin-top: 0.45rem; line-height: 1.55; }

/* =============================================
   DETAIL CARDS — card-7 hover reveal animation
============================================= */
.detail-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    /* lift + shadow on hover like card-7 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}

/* Full-bleed background image — zooms on hover */
.dc-bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.detail-card:hover .dc-bg-img { transform: scale(1.1); }

/* Gradient overlay */
.dc-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.45) 50%,
        transparent 100%
    );
    transition: background 0.35s ease;
}
.detail-card:hover .dc-gradient {
    background: linear-gradient(
        to top,
        rgba(27,58,45,0.96) 0%,
        rgba(10,30,20,0.6) 55%,
        rgba(0,0,0,0.1) 100%
    );
}

/* Full-height content wrapper */
.dc-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.75rem;
}

/* Top spacer (pushes content down) */
.dc-top { flex: 1; }

/* Middle: date + name + bullet list
   Slides UP 72px on hover to make room for the CTA */
.dc-middle {
    transition: transform 0.5s ease;
}
.detail-card:hover .dc-middle {
    transform: translateY(-72px);
}

.dc-date {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 0.4rem;
}
.dc-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 0;
}

/* Bullet list — hidden at rest, fades in as middle slides up */
.dc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.35s ease 0.1s;
}
.detail-card:hover .dc-list { opacity: 1; }

.dc-list li {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    padding-left: 1rem;
    position: relative;
}
.dc-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-light);
}

/* Bottom CTA — starts hidden below card, slides up on hover */
.dc-bottom {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    padding: 1.5rem 1.75rem;
    opacity: 0;
    transition: bottom 0.5s ease, opacity 0.4s ease;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.detail-card:hover .dc-bottom {
    bottom: 0;
    opacity: 1;
}
.dc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #1B3A2D;
    padding: 0.75rem 1.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.dc-cta-btn:hover { background: var(--accent-light); color: #fff; }
.dc-cta-btn .arrow { transition: transform 0.2s; }
.dc-cta-btn:hover .arrow { transform: translateX(4px); }

@media (max-width: 900px) {
    .detail-card { height: 460px; }
}
@media (max-width: 640px) {
    .detail-card { height: 420px; }
}

/* =============================================
   SPLIT SECTION (relocation)
============================================= */
.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
.split-image { position: relative; overflow: hidden; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 8vw, 6rem); }
.split-content.dark { background: var(--bg-dark); }
.split-content.dark .section-label { color: var(--accent-light); }
.split-title { font-family: var(--font-display); font-size: clamp(2.2rem, 3.5vw, 3.4rem); font-weight: 300; line-height: 1.08; color: #fff; margin: 1rem 0 1.5rem; }
.split-title em { font-style: italic; }
.split-text { font-size: 0.98rem; line-height: 1.8; color: rgba(255,255,255,0.62); }
.split-list { list-style: none; margin-top: 1.75rem; display: flex; flex-direction: column; }
.split-list li { display: flex; align-items: flex-start; gap: 0.85rem; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.split-list li::before { content: '—'; color: var(--accent-light); flex-shrink: 0; }

/* =============================================
   MILESTONES
============================================= */
.milestone-banner { display: grid; grid-template-columns: 1fr 1.3fr; overflow: hidden; min-height: 520px; background: var(--bg-dark); }
.milestone-img { position: relative; }
.milestone-img img { width: 100%; height: 100%; object-fit: cover; }
.milestone-content { padding: clamp(3rem, 6vw, 5.5rem); display: flex; flex-direction: column; justify-content: center; }
.milestone-quote { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 300; font-style: italic; color: #fff; line-height: 1.28; margin-bottom: 1.75rem; }
.milestone-text { color: rgba(255,255,255,0.58); font-size: 0.95rem; line-height: 1.8; }
.milestone-detail { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; gap: 2.5rem; flex-wrap: wrap; }
.milestone-detail-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 0.3rem; }
.milestone-detail-val { font-size: 0.88rem; color: rgba(255,255,255,0.72); }

/* =============================================
   APPLY
============================================= */
.apply-section { background: var(--bg-dark); padding: 8rem 0; }
.apply-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.apply-steps { list-style: none; margin-top: 2.5rem; }
.apply-steps li { display: flex; align-items: flex-start; gap: 1.5rem; padding: 1.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.step-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--accent-light); line-height: 1; flex-shrink: 0; width: 2.5rem; }
.step-title { font-size: 0.88rem; font-weight: 600; color: #fff; letter-spacing: 0.04em; margin-bottom: 0.3rem; }
.step-text { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.65; }
.apply-image { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.apply-image img { width: 100%; height: 100%; object-fit: cover; }
.apply-image-caption { position: absolute; bottom: 2rem; left: 2rem; right: 2rem; background: rgba(27,58,45,0.92); padding: 1.5rem 1.75rem; }
.apply-image-caption p { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: #fff; line-height: 1.45; }

/* =============================================
   CTA BANNER
============================================= */
.cta-banner { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; }
.cta-banner-bg { position: absolute; inset: 0; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.cta-banner-overlay { position: absolute; inset: 0; background: rgba(27,58,45,0.87); }
.cta-banner-content { position: relative; z-index: 2; text-align: center; }
.cta-banner-title { font-family: var(--font-display); font-size: clamp(2.4rem, 5.5vw, 5.2rem); font-weight: 300; color: #fff; line-height: 1.05; letter-spacing: -0.01em; max-width: 920px; margin: 0 auto 2.5rem; }
.cta-banner-title em { font-style: italic; }

/* =============================================
   FOOTER
============================================= */
footer { background: #111; padding: 4.5rem 0 2.5rem; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { font-family: var(--font-display); font-size: 1.35rem; color: #fff; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.83rem; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 240px; }
.footer-col-title { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 1.35rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.88); }
.footer-bottom { padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.73rem; color: rgba(255,255,255,0.22); flex-wrap: wrap; gap: 0.5rem; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .pillar-grid { grid-template-columns: 1fr 1fr; }
    .pillar:last-child { grid-column: span 2; aspect-ratio: 16/7; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .intro-inner { grid-template-columns: 1fr; gap: 3rem; }
    .pillar-grid { grid-template-columns: 1fr; }
    .pillar:last-child { grid-column: span 1; aspect-ratio: 3/4; }
    .dest-grid { grid-template-columns: 1fr 1fr; }
    .dest-list { grid-template-columns: 1fr; }
    .dest-list-item { border-right: none; }
    .split-section { grid-template-columns: 1fr; }
    .split-image { aspect-ratio: 16/9; }
    .milestone-banner { grid-template-columns: 1fr; }
    .milestone-img { aspect-ratio: 16/9; }
    .apply-inner { grid-template-columns: 1fr; gap: 3.5rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .dest-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .intro-stats { grid-template-columns: 1fr 1fr; }
}
