:root {
    --bg: #050505;
    --bg-soft: #0f1115;
    --panel: rgba(15, 17, 21, 0.84);
    --panel-strong: #171b25;
    --text: #f5f7fb;
    --muted: #a8b4ca;
    --line: rgba(255, 255, 255, 0.10);
    --accent: #6366f1;
    --accent-strong: #8b5cf6;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    --radius: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(ellipse at 80% 0%, rgba(99, 102, 241, 0.22) 0%, transparent 40%),
        radial-gradient(ellipse at 10% 90%, rgba(139, 92, 246, 0.18) 0%, transparent 38%),
        linear-gradient(180deg, #050505 0%, #080a10 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* ─── Navigation ─────────────────────────────────────────── */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(5, 5, 5, 0.82);
    border-bottom: 1px solid var(--line);
}

.nav-shell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 72px;
    gap: 24px;
}

.brand {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--text);
    transition: opacity 0.2s;
}

.brand:hover { opacity: 0.75; }

.site-nav {
    display: flex;
    gap: 8px;
}

.site-nav a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.site-nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--line);
}

.site-nav a.nav-active {
    color: var(--text);
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
}

/* ─── Shared Components ──────────────────────────────────── */

.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 800;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #f8fafc;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
    color: var(--text);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ─── Hero ───────────────────────────────────────────────── */

.hero {
    padding: 100px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 32px;
    align-items: center;
}

.hero-copy {
    animation: fadeUp 0.7s ease both;
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    margin-top: 16px;
    font-size: clamp(2.4rem, 4.5vw, 4.4rem);
    line-height: 1.04;
    max-width: 11ch;
    letter-spacing: -0.02em;
}

.hero-text {
    margin-top: 20px;
    max-width: 52ch;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.hero-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-meta span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ─── Destination Cards (hero panel) ────────────────────── */

.hero-panel {
    display: grid;
    gap: 16px;
    animation: fadeUp 0.7s 0.15s ease both;
}

.dest-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    text-decoration: none;
    color: inherit;
}

.dest-card:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(99, 102, 241, 0.15);
}

.dest-card-accent {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(139, 92, 246, 0.10));
}

.dest-tag {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 800;
}

.dest-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 2px;
}

.dest-desc {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.6;
}

.dest-arrow {
    margin-top: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent);
    transition: gap 0.2s;
}

/* ─── Focus Section ──────────────────────────────────────── */

.focus {
    padding: 48px 0 96px;
}

.section-intro {
    margin-bottom: 32px;
}

.section-intro h2 {
    font-family: 'Sora', sans-serif;
    margin-top: 10px;
    font-size: clamp(1.9rem, 3.2vw, 3.2rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.focus-card {
    padding: 32px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.25s, border-color 0.25s;
}

.focus-card:hover {
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.25);
}

.focus-num {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(99, 102, 241, 0.35);
    line-height: 1;
    margin-bottom: 16px;
}

.focus-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.focus-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ─── Contact ────────────────────────────────────────────── */

.contact-strip {
    padding: 0 0 96px;
}

.contact-shell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 36px 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.16), rgba(139, 92, 246, 0.09));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.contact-shell h2 {
    font-family: 'Sora', sans-serif;
    margin: 10px 0 14px;
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    letter-spacing: -0.02em;
}

.contact-copy {
    max-width: 52ch;
    color: var(--muted);
    line-height: 1.65;
}

.contact-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ─── Footer ─────────────────────────────────────────────── */

.site-footer {
    padding: 28px 0 44px;
    border-top: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.7);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 8px;
}

.footer-copy {
    color: var(--muted);
    font-size: 0.85rem;
}

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

.footer-links a {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
}

.footer-links a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

/* ─── Animation ──────────────────────────────────────────── */

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

.focus-card:nth-child(1) { animation: fadeUp 0.6s 0.1s ease both; }
.focus-card:nth-child(2) { animation: fadeUp 0.6s 0.2s ease both; }
.focus-card:nth-child(3) { animation: fadeUp 0.6s 0.3s ease both; }

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 900px) {
    .hero-grid,
    .focus-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        max-width: none;
    }

    .contact-shell {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .nav-shell,
    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .site-nav {
        gap: 4px;
    }

    .hero {
        padding-top: 64px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .focus {
        padding-bottom: 64px;
    }

    .contact-strip {
        padding-bottom: 64px;
    }
}
