:root {
    --ink: #14121F;
    --ink-soft: #211D33;
    --porcelain: #F7F4EF;
    --porcelain-dim: #ECE7DD;
    --amber: #FF8A3D;
    --amber-deep: #E86A1E;
    --violet: #6C5CE0;
    --mint: #2BD4A6;
    --pink: #E85D75;
    --pink-deep: #C93F58;
    --line: rgba(20, 18, 31, 0.10);
    --line-dark: rgba(247, 244, 239, 0.12);
    --shadow-soft: 0 20px 60px -20px rgba(20, 18, 31, 0.25);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Instrument Serif', serif;
    --font-mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(.22, .9, .3, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--porcelain);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; }
.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 9999;
    background: var(--ink); color: var(--porcelain); padding: 14px 22px;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap-slim { max-width: 480px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
em { font-family: var(--font-accent); font-style: italic; font-weight: 400; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--amber-deep);
}
.eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 24px; border-radius: 100px; font-weight: 600; font-size: 0.95rem;
    border: 1px solid transparent; transition: transform .3s var(--ease), background .25s, box-shadow .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--amber); color: var(--ink); box-shadow: 0 14px 30px -10px rgba(255, 138, 61, 0.55); }
.btn-primary:hover { background: var(--amber-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--ink); color: var(--porcelain); }
.btn-sm { padding: 10px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn-danger { background: transparent; color: var(--pink-deep); border-color: rgba(232,93,117,.35); }
.nav { position: sticky; top: 0; z-index: 500; padding: 14px 0; }
.nav-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    background: rgba(247, 244, 239, 0.8); backdrop-filter: blur(18px);
    border: 1px solid rgba(20, 18, 31, 0.08); border-radius: 100px;
    padding: 10px 10px 10px 22px; box-shadow: 0 8px 30px -12px rgba(20, 18, 31, 0.12);
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.logo-sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.65rem; color: rgba(20,18,31,0.5); letter-spacing: .04em; text-transform: uppercase; }
.logo-mark {
    width: 30px; height: 30px; border-radius: 10px;
    background: linear-gradient(135deg, var(--amber), var(--violet));
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark svg { width: 16px; height: 16px; }
.nav-links { display: none; gap: 20px; align-items: center; font-size: 0.88rem; font-weight: 500; }
.nav-links a { opacity: .82; }
.nav-links a:hover { opacity: 1; }
@media (min-width: 980px) { .nav-links { display: flex; } }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-cta .btn-text { display: none; padding: 10px; opacity: .75; font-weight: 500; }
@media (min-width: 640px) { .nav-cta .btn-text { display: inline-flex; } }
.nav-user { font-size: 0.82rem; font-weight: 600; opacity: .7; display: none; }
@media (min-width: 720px) { .nav-user { display: inline; } }
.nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: transparent;
}
@media (min-width: 980px) { .nav-toggle { display: none; } }
.nav-mobile {
    display: none; flex-direction: column; gap: 4px; margin-top: 10px;
    background: var(--porcelain); border: 1px solid var(--line); border-radius: 20px; padding: 10px;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a { padding: 12px 16px; border-radius: 12px; font-weight: 500; }
.nav-mobile a:hover { background: var(--porcelain-dim); }
.page-hero {
    padding: 40px 0 24px;
    background:
        radial-gradient(500px 280px at 15% 0%, rgba(255, 138, 61, 0.16), transparent 70%),
        radial-gradient(520px 300px at 90% 10%, rgba(108, 92, 224, 0.14), transparent 70%);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-top: 10px; }
.page-hero p { margin-top: 10px; color: rgba(20,18,31,0.65); max-width: 54ch; }
.section { padding: 40px 0 70px; }
.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
    padding: 22px; box-shadow: 0 10px 30px -20px rgba(20,18,31,0.2);
}
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.stack { display: flex; flex-direction: column; gap: 14px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea, .field select {
    width: 100%; border: 1px solid var(--line); border-radius: 14px;
    padding: 12px 14px; background: #fff; font-size: 0.95rem; outline: none;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(255,138,61,.55); }
.role-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.role-pill {
    border: 1px solid var(--line); border-radius: 16px; padding: 14px; text-align: left; background: #fff;
}
.role-pill.active { border-color: var(--amber); background: rgba(255,138,61,.1); }
.role-pill strong { display: block; font-family: var(--font-display); }
.role-pill span { font-size: 0.78rem; color: rgba(20,18,31,.55); }
.alert {
    padding: 12px 14px; border-radius: 12px; font-size: 0.9rem;
    background: rgba(232,93,117,.1); color: var(--pink-deep); border: 1px solid rgba(232,93,117,.25);
}
.alert.ok { background: rgba(43,212,166,.12); color: #0f7a5a; border-color: rgba(43,212,166,.35); }
.muted { color: rgba(20,18,31,.55); }
.small { font-size: 0.84rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 10px; }
.grid-2 { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 860px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-cards { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .grid-cards { grid-template-columns: repeat(3, 1fr); } }
.offer-card h3 { font-size: 1.05rem; margin: 6px 0 8px; }
.offer-cat { font-size: 0.7rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; color: var(--amber-deep); font-family: var(--font-mono); }
.offer-desc { font-size: 0.9rem; color: rgba(20,18,31,.65); }
.skills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.skill {
    font-size: 0.7rem; padding: 5px 10px; border-radius: 100px;
    background: var(--porcelain-dim); color: rgba(20,18,31,.7); font-family: var(--font-mono);
}
.offer-meta {
    display: flex; justify-content: space-between; align-items: center; gap: 10px;
    margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 0.84rem;
}
.offer-meta b { font-family: var(--font-display); }
.pro-chip { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.pro-chip img { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; }
.search-bar {
    display: flex; gap: 8px; background: #fff; border: 1px solid var(--line);
    border-radius: 18px; padding: 8px; box-shadow: var(--shadow-soft); margin-bottom: 22px;
}
.search-bar input {
    flex: 1; border: none; outline: none; padding: 12px 14px; font-size: 1rem; background: transparent; min-width: 0;
}
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.filter-chip {
    border: 1px solid var(--line); background: #fff; border-radius: 100px;
    padding: 8px 14px; font-size: 0.8rem; font-family: var(--font-mono);
}
.filter-chip.active { background: rgba(255,138,61,.14); border-color: rgba(255,138,61,.45); color: var(--amber-deep); font-weight: 600; }
.empty { padding: 40px; text-align: center; color: rgba(20,18,31,.55); }
.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.chat-layout { display: grid; gap: 16px; grid-template-columns: 1fr; min-height: 520px; }
@media (min-width: 900px) { .chat-layout { grid-template-columns: 300px 1fr; } }
.chat-list { overflow: auto; max-height: 70vh; }
.chat-item {
    display: block; padding: 14px; border-radius: 14px; border: 1px solid transparent; margin-bottom: 6px;
}
.chat-item:hover, .chat-item.active { background: var(--porcelain-dim); border-color: var(--line); }
.chat-item strong { display: block; font-size: 0.92rem; }
.chat-item span { font-size: 0.78rem; color: rgba(20,18,31,.55); }
.chat-pane { display: flex; flex-direction: column; min-height: 480px; }
.chat-head { padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.chat-messages { flex: 1; overflow: auto; display: flex; flex-direction: column; gap: 10px; padding: 8px 0; max-height: 52vh; }
.bubble {
    max-width: 78%; padding: 10px 14px; border-radius: 16px; font-size: 0.92rem; line-height: 1.45;
}
.bubble.me { align-self: flex-end; background: var(--ink); color: var(--porcelain); border-bottom-right-radius: 6px; }
.bubble.them { align-self: flex-start; background: var(--porcelain-dim); border-bottom-left-radius: 6px; }
.bubble time { display: block; font-size: 0.68rem; opacity: .55; margin-top: 4px; }
.chat-compose { display: flex; gap: 8px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.chat-compose input { flex: 1; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; outline: none; }
.footer-mini {
    border-top: 1px solid var(--line); padding: 22px 0; color: rgba(20,18,31,.5); font-size: 0.84rem;
}
.footer-mini .wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-mini a:hover { color: var(--amber-deep); }
.check-grid { display: grid; gap: 8px; grid-template-columns: 1fr; max-height: 180px; overflow: auto; padding: 8px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
@media (min-width: 560px) { .check-grid { grid-template-columns: 1fr 1fr; } }
.check-grid label { display: flex; gap: 8px; align-items: flex-start; font-size: 0.82rem; font-weight: 500; }
.badge-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 0.72rem; font-weight: 700; color: #0f7a5a; background: rgba(43,212,166,.15); padding: 3px 8px; border-radius: 100px; }
.landing-hero { padding: 56px 0 48px; }
.landing-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); max-width: 16ch; }
.landing-hero p.lead { margin-top: 14px; font-size: 1.05rem; color: rgba(20,18,31,.68); max-width: 48ch; }
.landing-hero-grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 900px) { .landing-hero-grid { grid-template-columns: 1.05fr 0.95fr; } }
.landing-hero-photo {
    border-radius: 28px; overflow: hidden; border: 6px solid #fff;
    box-shadow: var(--shadow-soft); aspect-ratio: 4/3; background: var(--ink-soft);
}
.landing-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn-secondary { background: var(--violet); color: #fff; box-shadow: 0 14px 30px -10px rgba(108, 92, 224, 0.5); }
.btn-secondary:hover { background: #5a4bc4; }
.feature-list { display: grid; gap: 10px; margin-top: 18px; }
.feature-list li { padding-left: 22px; position: relative; color: rgba(20,18,31,.72); }
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--mint); font-weight: 700; }
.proforma { max-width: 100%; }
.proforma legend {
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
    padding: 0; margin-bottom: 8px; width: 100%;
}
.proforma fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.section-note { font-size: 0.88rem; color: rgba(20,18,31,.55); margin-bottom: 12px; }
.radio-grid, .check-stack { display: grid; gap: 8px; }
.radio-grid label, .check-stack label {
    display: flex; gap: 8px; align-items: flex-start; font-size: 0.9rem; font-weight: 500;
    padding: 8px 10px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
}
.check-grid.tall { max-height: 280px; }
.step-nav {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px;
}
.step-dot {
    width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line);
    background: #fff; font-size: 0.72rem; font-weight: 700; color: rgba(20,18,31,.55);
}
.step-dot.active { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.step-dot.done { background: rgba(43,212,166,.18); border-color: rgba(43,212,166,.45); color: #0f7a5a; }
.form-nav {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end;
    padding-top: 8px; border-top: 1px solid var(--line); margin-top: 8px;
}
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
.proforma-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.proforma-table th, .proforma-table td {
    border-bottom: 1px solid var(--line); padding: 8px 10px; text-align: left; vertical-align: middle;
}
.proforma-table th { background: var(--porcelain-dim); font-size: 0.75rem; text-transform: uppercase; letter-spacing: .04em; }
.proforma-table input {
    width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; background: #fff;
}
.demo-note {
    margin-top: 16px; padding: 12px 14px; border-radius: 12px; background: rgba(108,92,224,.08);
    border: 1px solid rgba(108,92,224,.2); font-size: 0.82rem; color: rgba(20,18,31,.7);
}
.demo-note code { font-family: var(--font-mono); font-size: 0.78rem; }

/* ===== Home landing ===== */
.home-hero {
    position: relative; min-height: min(88vh, 760px); display: flex; align-items: flex-end;
    background: var(--ink-soft) center/cover no-repeat;
    background-image: linear-gradient(120deg, rgba(20,18,31,.72), rgba(20,18,31,.35)), var(--hero-img);
    color: #fff; padding: 100px 0 56px; overflow: hidden;
}
.home-hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(600px 320px at 20% 80%, rgba(255,138,61,.28), transparent 70%),
        radial-gradient(520px 280px at 90% 20%, rgba(108,92,224,.22), transparent 70%);
    pointer-events: none;
}
.home-hero-inner { position: relative; z-index: 1; width: 100%; }
.home-hero-copy { max-width: 38rem; }
.home-hero-eyebrow { color: #ffc89a; }
.home-hero-eyebrow::before { background: var(--amber); }
.home-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.05; margin-top: 14px;
    text-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.home-hero h1 em { color: #ffd7b0; }
.home-hero .lead {
    margin-top: 16px; font-size: 1.08rem; color: rgba(255,255,255,.84); max-width: 40ch; line-height: 1.55;
}
.btn-outline-light {
    background: transparent; color: #fff; border-color: rgba(255,255,255,.4);
}
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.home-stats {
    display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px;
    margin-top: 36px; max-width: 420px;
}
@media (min-width: 640px) { .home-stats { grid-template-columns: repeat(4, minmax(0,1fr)); max-width: none; } }
.home-stats div {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px; padding: 14px 12px; backdrop-filter: blur(10px);
}
.home-stats strong { display: block; font-family: var(--font-display); font-size: 1.45rem; }
.home-stats span { font-size: 0.75rem; letter-spacing: .04em; text-transform: uppercase; opacity: .75; }

.section-head { margin-bottom: 28px; max-width: 46rem; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 10px; }
.section-head .muted { margin-top: 10px; }

.service-tiles {
    display: grid; gap: 14px; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .service-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .service-tiles { grid-template-columns: repeat(3, 1fr); } }
.service-tile {
    background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 22px;
    transition: transform .3s var(--ease), box-shadow .3s;
}
.service-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.service-tile h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-tile p { color: rgba(20,18,31,.62); font-size: 0.92rem; }

.dest-section { background: linear-gradient(180deg, transparent, rgba(255,138,61,.06), transparent); }
.dest-grid {
    display: grid; gap: 16px; grid-template-columns: 1fr;
}
@media (min-width: 560px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .dest-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1180px) { .dest-grid { grid-template-columns: repeat(4, 1fr); } }
.dest-card {
    position: relative; display: block; border-radius: 22px; overflow: hidden;
    aspect-ratio: 4/3; background: var(--ink-soft); isolation: isolate;
    box-shadow: 0 16px 40px -24px rgba(20,18,31,.45);
    transition: transform .35s var(--ease), box-shadow .35s;
}
.dest-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 24px 50px -20px rgba(20,18,31,.5); }
.dest-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s var(--ease);
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card-shade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(20,18,31,.85) 100%);
}
.dest-card-body {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 18px;
    display: flex; flex-direction: column; gap: 4px; color: #fff;
}
.dest-card-body strong { font-family: var(--font-display); font-size: 1.12rem; }
.dest-card-body span { font-size: 0.8rem; opacity: .82; line-height: 1.35; }
.dest-card-body em {
    font-family: var(--font-body); font-style: normal; font-size: 0.75rem; font-weight: 700;
    margin-top: 8px; color: #ffc89a; letter-spacing: .04em; text-transform: uppercase;
}

.how-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .how-grid { grid-template-columns: repeat(3, 1fr); } }
.how-step {
    background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 26px 22px;
}
.how-num {
    display: inline-block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
    color: var(--amber); margin-bottom: 10px;
}
.how-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.how-step p { color: rgba(20,18,31,.65); font-size: 0.94rem; }

.audience-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 860px) { .audience-grid { grid-template-columns: 1fr 1fr; } }
.audience-panel {
    border-radius: 28px; padding: 32px 28px; color: #fff;
    display: flex; flex-direction: column; gap: 16px; min-height: 360px;
}
.audience-firm {
    background:
        linear-gradient(145deg, rgba(20,18,31,.92), rgba(108,92,224,.75)),
        #211D33;
}
.audience-student {
    background:
        linear-gradient(145deg, rgba(232,106,30,.95), rgba(255,138,61,.75)),
        #E86A1E;
}
.audience-panel .eyebrow { color: rgba(255,255,255,.85); }
.audience-panel .eyebrow::before { background: var(--mint); }
.audience-panel h2 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); max-width: 16ch; }
.audience-panel .feature-list li { color: rgba(255,255,255,.88); }
.audience-panel .feature-list li::before { color: var(--mint); }
.audience-panel .btn { align-self: flex-start; margin-top: auto; }

.why-grid {
    display: grid; gap: 16px; grid-template-columns: 1fr;
}
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-grid article {
    background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 22px;
}
.why-grid h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-grid p { color: rgba(20,18,31,.65); font-size: 0.92rem; }

.cta-band {
    background:
        radial-gradient(500px 240px at 15% 0%, rgba(255,138,61,.25), transparent 70%),
        radial-gradient(480px 260px at 90% 100%, rgba(108,92,224,.28), transparent 70%),
        var(--ink);
    color: #fff; padding: 64px 0;
}
.cta-band .muted { color: rgba(255,255,255,.7); }
.cta-band .btn-ghost:hover { background: #fff; color: var(--ink); }

/* Destination detail page */
.dest-hero {
    position: relative; min-height: 420px; display: flex; align-items: flex-end;
    background: var(--ink-soft) center/cover no-repeat;
    background-image: linear-gradient(180deg, rgba(20,18,31,.25), rgba(20,18,31,.82)), var(--dest-img);
    color: #fff; padding: 80px 0 48px;
}
.dest-hero-overlay { position: absolute; inset: 0; pointer-events: none; }
.dest-hero-content { position: relative; z-index: 1; }
.dest-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 10px 0; }
.dest-hero p { max-width: 40ch; color: rgba(255,255,255,.85); }
.dest-back {
    display: inline-block; font-size: 0.85rem; font-weight: 600; opacity: .8; margin-bottom: 14px;
}
.dest-back:hover { opacity: 1; }
.skill-active { background: rgba(255,138,61,.2); color: var(--amber-deep); font-weight: 700; }

/* Legacy landing helpers kept for other pages */
.landing-hero { padding: 56px 0 48px; }
.landing-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); max-width: 16ch; }
.landing-hero p.lead { margin-top: 14px; font-size: 1.05rem; color: rgba(20,18,31,.68); max-width: 48ch; }
.landing-hero-grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 900px) { .landing-hero-grid { grid-template-columns: 1.05fr 0.95fr; } }
.landing-hero-photo {
    border-radius: 28px; overflow: hidden; border: 6px solid #fff;
    box-shadow: var(--shadow-soft); aspect-ratio: 4/3; background: var(--ink-soft);
}
.landing-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn-secondary { background: var(--violet); color: #fff; box-shadow: 0 14px 30px -10px rgba(108, 92, 224, 0.5); }
.btn-secondary:hover { background: #5a4bc4; }
.feature-list { display: grid; gap: 10px; margin-top: 18px; }
.feature-list li { padding-left: 22px; position: relative; color: rgba(20,18,31,.72); }
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--mint); font-weight: 700; }
