/*
Theme Name: Traveller Duo
Theme URI: https://thetravellerduo.com
Author: The Traveller Duo
Description: A premium travel magazine theme — cinematic photography, Swiss editorial typography and handcrafted storytelling layouts. National Geographic meets Airbnb Magazine meets Apple.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: traveller-duo
*/

/* ============================================================ Tokens */

:root {
	--primary: #0F172A;
	--secondary: #0EA5E9;
	--accent: #FF8C42;
	--bg: #FAFAFA;
	--bg-warm: #FBF9F6;
	--surface: #FFFFFF;
	--tint: #F5F5F5;
	--ink: #1E293B;
	--ink-soft: #55637A;
	--ink-faint: #94A3B8;
	--line: rgba(15, 23, 42, 0.09);
	--scrim: linear-gradient(180deg, rgba(15,23,42,0) 30%, rgba(15,23,42,0.72) 100%);
	--glass: rgba(255, 255, 255, 0.72);
	--glass-border: rgba(255, 255, 255, 0.45);
	--shadow-s: 0 1px 2px rgba(15,23,42,.05), 0 4px 12px rgba(15,23,42,.06);
	--shadow-m: 0 2px 6px rgba(15,23,42,.06), 0 14px 34px rgba(15,23,42,.10);
	--shadow-l: 0 8px 20px rgba(15,23,42,.10), 0 28px 60px rgba(15,23,42,.16);
	--radius-s: 12px;
	--radius: 20px;
	--radius-l: 28px;
	--font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
	--font-body: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--container: 1280px;
	--narrow: 880px;
	--prose: 700px;
	--header-h: 76px;
	--ease: cubic-bezier(.22, .8, .3, 1);
}

:root[data-theme="dark"] {
	--primary: #E2E8F0;
	--bg: #0B1120;
	--bg-warm: #0D1322;
	--surface: #131B2E;
	--tint: #0F1627;
	--ink: #E2E8F0;
	--ink-soft: #A5B4CB;
	--ink-faint: #64748B;
	--line: rgba(226, 232, 240, 0.10);
	--glass: rgba(15, 23, 42, 0.66);
	--glass-border: rgba(148, 163, 184, 0.18);
	--shadow-s: 0 1px 2px rgba(0,0,0,.3), 0 4px 12px rgba(0,0,0,.35);
	--shadow-m: 0 2px 6px rgba(0,0,0,.35), 0 14px 34px rgba(0,0,0,.45);
	--shadow-l: 0 8px 20px rgba(0,0,0,.45), 0 28px 60px rgba(0,0,0,.55);
}

/* ============================================================ Reset & base */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	transition: background .4s var(--ease), color .4s var(--ease);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--primary); margin: 0 0 .5em; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
dl, dt, dd, figure { margin: 0; }
::selection { background: var(--accent); color: #fff; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--primary); color: #fff; padding: .75rem 1.25rem; z-index: 200; border-radius: 0 0 var(--radius-s) 0; }
.skip-link:focus { left: 0; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; border-radius: 4px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.container--narrow { max-width: var(--narrow); }

/* ============================================================ Buttons, chips, misc */

.btn {
	display: inline-flex; align-items: center; gap: .5rem;
	padding: .8rem 1.7rem; border-radius: 999px;
	font-weight: 600; font-size: .95rem; letter-spacing: .01em;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 6px 20px rgba(255,140,66,.35); }
.btn--accent:hover { box-shadow: 0 10px 28px rgba(255,140,66,.45); }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.5); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,.24); }
.btn--line { background: transparent; color: var(--primary); border: 1.5px solid var(--line); }
.btn--line:hover { border-color: var(--secondary); color: var(--secondary); }

.chip {
	display: inline-flex; align-items: center;
	padding: .32rem .9rem; border-radius: 999px;
	font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
	background: var(--tint); color: var(--ink-soft);
	transition: background .25s, color .25s;
}
a.chip:hover { background: var(--secondary); color: #fff; }
.chip--media { background: rgba(255,255,255,.9); color: #0F172A; backdrop-filter: blur(6px); }
:root[data-theme="dark"] .chip--media { background: rgba(15,23,42,.8); color: #E2E8F0; }

.eyebrow {
	font-size: .8rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
	color: var(--accent); margin-bottom: .9rem;
}

.icon-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: 50%;
	color: inherit; transition: background .25s, color .25s, transform .25s var(--ease);
}
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn:hover { background: var(--tint); transform: translateY(-1px); }

.glass {
	background: var(--glass);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(16px) saturate(1.4);
	-webkit-backdrop-filter: blur(16px) saturate(1.4);
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================ Progress bar */

.progress-bar { position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 120; pointer-events: none; }
.progress-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--secondary), var(--accent)); transition: width .1s linear; }

/* ============================================================ Header */

.site-header {
	position: fixed; inset: 0 0 auto 0; z-index: 100;
	transition: background .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
	color: #fff;
}
.site-header.is-solid {
	background: var(--glass);
	backdrop-filter: blur(18px) saturate(1.5);
	-webkit-backdrop-filter: blur(18px) saturate(1.5);
	box-shadow: var(--shadow-s);
	color: var(--ink);
}
.site-header.is-hidden { transform: translateY(-100%); }
body.has-plain-hero .site-header { color: var(--ink); }

.header-inner {
	max-width: var(--container); margin: 0 auto;
	height: var(--header-h);
	padding: 0 clamp(1.25rem, 4vw, 2.5rem);
	display: flex; align-items: center; gap: 2rem;
}

.brand { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -.01em; }
.brand-mark { display: inline-flex; width: 34px; height: 34px; }
.brand-mark svg { width: 100%; height: 100%; }
.brand img { max-height: 44px; width: auto; }

.site-nav { margin-left: auto; }
.nav-list { display: flex; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-list > li { position: relative; }
.nav-list > li > a {
	display: block; padding: .55rem 1rem; border-radius: 999px;
	font-weight: 600; font-size: .95rem;
	transition: background .25s, color .25s;
}
.nav-list > li > a:hover { background: rgba(128,128,128,.14); }

.sub-menu {
	position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 8px);
	min-width: 200px; padding: .6rem; margin: 0; list-style: none;
	background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-s);
	box-shadow: var(--shadow-m);
	opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
	color: var(--ink);
}
.has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.sub-menu a { display: block; padding: .5rem .9rem; border-radius: 8px; font-size: .92rem; font-weight: 500; }
.sub-menu a:hover { background: var(--tint); color: var(--secondary); }

.header-actions { display: flex; align-items: center; gap: .3rem; }
.icon-moon { display: none; }
:root[data-theme="dark"] .icon-sun { display: none; }
:root[data-theme="dark"] .icon-moon { display: block; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 900px) {
	.nav-toggle { display: inline-flex; }
	.site-nav {
		position: fixed; inset: var(--header-h) 0 auto 0; margin: 0;
		background: var(--surface); color: var(--ink);
		border-bottom: 1px solid var(--line); box-shadow: var(--shadow-m);
		padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
		transform: translateY(-8px); opacity: 0; visibility: hidden;
		transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
	}
	.site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
	.nav-list { flex-direction: column; gap: 0; }
	.nav-list > li > a { padding: .8rem .5rem; border-radius: 10px; font-size: 1.05rem; }
	.sub-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; padding: 0 0 .5rem 1rem; display: none; }
	.has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu { display: block; }
}

/* ============================================================ Search overlay */

.search-overlay {
	position: fixed; inset: 0; z-index: 150;
	background: color-mix(in srgb, var(--bg) 88%, transparent);
	backdrop-filter: blur(22px) saturate(1.3);
	-webkit-backdrop-filter: blur(22px) saturate(1.3);
	display: grid; place-items: start center;
	padding: clamp(5rem, 16vh, 10rem) 1.5rem 2rem;
	opacity: 0; transition: opacity .35s var(--ease);
}
.search-overlay.is-open { opacity: 1; }
.search-overlay-inner { width: min(680px, 100%); position: relative; }
.search-close { position: absolute; top: -3.5rem; right: 0; }
.search-eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }

.search-form { display: flex; gap: .75rem; border-bottom: 2px solid var(--primary); padding-bottom: .9rem; }
.search-form input {
	flex: 1; border: 0; background: none; color: var(--ink);
	font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.2rem);
	outline: none;
}
.search-form input::placeholder { color: var(--ink-faint); }

.search-suggest { margin-top: 1rem; display: grid; gap: .25rem; }
.search-suggest a {
	display: flex; justify-content: space-between; gap: 1rem;
	padding: .7rem .9rem; border-radius: var(--radius-s);
	font-weight: 500; transition: background .2s;
}
.search-suggest a:hover, .search-suggest a.is-focus { background: var(--tint); }
.search-suggest a span { color: var(--ink-faint); font-size: .82rem; flex-shrink: 0; }

.search-popular { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; margin-top: 1.75rem; font-size: .92rem; color: var(--ink-soft); }
.search-popular a { font-weight: 600; color: var(--secondary); border-bottom: 1px solid transparent; transition: border-color .2s; }
.search-popular a:hover { border-color: var(--secondary); }

/* ============================================================ Hero */

.hero { position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden; color: #fff; }
.hero-media { position: absolute; inset: 0; }
.hero-slide {
	position: absolute; inset: -6% 0; background-size: cover; background-position: center;
	opacity: 0; transform: scale(1.06);
	transition: opacity 1.6s var(--ease), transform 8s linear;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,.42) 0%, rgba(15,23,42,.18) 40%, rgba(15,23,42,.66) 100%); }

.hero-content { position: relative; z-index: 2; text-align: center; padding: 7rem 1.5rem 5rem; max-width: 880px; }
.hero-eyebrow { font-size: .82rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 1.5rem; }
.hero-title {
	font-size: clamp(2.7rem, 7.5vw, 5.4rem); font-weight: 700; color: #fff;
	text-wrap: balance; margin-bottom: 1.2rem;
	text-shadow: 0 2px 30px rgba(15,23,42,.35);
}
.hero-title em { font-style: italic; font-weight: 500; color: #FFD9B8; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,.92); max-width: 560px; margin: 0 auto 2.4rem; }

.hero-search {
	display: flex; align-items: center; gap: .8rem;
	max-width: 620px; margin: 0 auto;
	padding: .55rem .55rem .55rem 1.3rem;
	border-radius: 999px; box-shadow: var(--shadow-l);
	position: relative; color: var(--ink);
}
.hero-search > svg { width: 22px; height: 22px; color: var(--ink-faint); flex-shrink: 0; }
.hero-search input { flex: 1; min-width: 0; border: 0; background: none; font-size: 1.02rem; color: var(--ink); outline: none; }
.hero-search input::placeholder { color: var(--ink-faint); }
.search-suggest--hero {
	position: absolute; top: calc(100% + 10px); left: 0; right: 0;
	background: var(--surface); border-radius: var(--radius-s);
	box-shadow: var(--shadow-l); padding: .5rem; text-align: left;
	max-height: 320px; overflow: auto;
}
.search-suggest--hero:empty { display: none; }

.hero-popular { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .5rem 1.1rem; margin-top: 1.6rem; font-size: .92rem; color: rgba(255,255,255,.8); }
.hero-popular a { color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.45); transition: border-color .2s, color .2s; }
.hero-popular a:hover { color: #FFD9B8; border-color: #FFD9B8; }

.hero-cta { margin-top: 2.4rem; }

.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll-line { display: block; width: 1.5px; height: 52px; background: rgba(255,255,255,.7); overflow: hidden; position: relative; }
.hero-scroll-line::after { content: ""; position: absolute; inset: 0; background: #fff; animation: scrollhint 2.2s var(--ease) infinite; }
@keyframes scrollhint { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }

/* ============================================================ Sections */

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section--tint { background: var(--bg-warm); }
:root[data-theme="dark"] .section--tint { background: var(--tint); }
.section--flush { padding-top: clamp(2rem, 4vw, 3rem); }
.section--bleed { overflow: hidden; }

.section-head { max-width: 640px; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head--row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.section-title { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: .3em; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; max-width: 560px; }

/* ============================================================ Cards */

.card {
	position: relative; display: flex; flex-direction: column;
	background: var(--surface); border-radius: var(--radius);
	box-shadow: var(--shadow-s); overflow: hidden;
	transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }

.card-media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--tint); }
.card--large .card-media { aspect-ratio: 16 / 10; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-media-fallback { position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary), var(--secondary)); opacity: .25; }
.card-media .chip--media { position: absolute; top: 1rem; left: 1rem; }

.bookmark {
	position: absolute; top: .85rem; right: .85rem;
	width: 38px; height: 38px; border-radius: 50%;
	display: grid; place-items: center;
	background: rgba(255,255,255,.88); color: #0F172A;
	backdrop-filter: blur(6px);
	opacity: 0; transform: translateY(-4px);
	transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s, color .25s;
}
.bookmark svg { width: 17px; height: 17px; }
.card:hover .bookmark, .bookmark:focus-visible, .bookmark.is-saved { opacity: 1; transform: none; }
.bookmark.is-saved { background: var(--accent); color: #fff; }
.bookmark.is-saved svg { fill: currentColor; }
:root[data-theme="dark"] .bookmark { background: rgba(15,23,42,.85); color: #E2E8F0; }
:root[data-theme="dark"] .bookmark.is-saved { background: var(--accent); color: #fff; }

.card-body { display: flex; flex-direction: column; gap: .55rem; padding: 1.4rem 1.5rem 1.6rem; flex: 1; }
.card-meta { display: flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 500; color: var(--ink-faint); letter-spacing: .02em; }
.card-title { font-size: 1.28rem; margin: 0; }
.card--large .card-title { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.card--mini .card-title { font-size: 1.05rem; font-family: var(--font-body); font-weight: 650; letter-spacing: -.01em; }
.card-title a { background-image: linear-gradient(currentColor, currentColor); background-repeat: no-repeat; background-size: 0 1.5px; background-position: 0 96%; transition: background-size .4s var(--ease); }
.card:hover .card-title a { background-size: 100% 1.5px; }
.card-excerpt { color: var(--ink-soft); font-size: .95rem; line-height: 1.65; margin: 0; }
.card-author { display: flex; align-items: center; gap: .6rem; margin-top: auto; padding-top: .6rem; font-size: .86rem; font-weight: 600; color: var(--ink-soft); }
.card-author img { width: 28px; height: 28px; border-radius: 50%; }

/* Masonry grid */
.masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); grid-auto-flow: dense; }
.masonry .card--large { grid-column: span 2; grid-row: span 2; }
.masonry .card--mini .card-media { aspect-ratio: 16 / 9; }
@media (max-width: 900px) { .masonry { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .masonry { grid-template-columns: 1fr; } .masonry .card--large { grid-column: span 1; grid-row: auto; } }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .grid-4 { grid-template-columns: 1fr; } }

/* ============================================================ Destination cards */

.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.dest-card--wide { grid-column: span 2; }
@media (max-width: 900px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .dest-grid { grid-template-columns: 1fr; } .dest-card--wide { grid-column: span 1; } }

.dest-card {
	position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden;
	border-radius: var(--radius); background: var(--primary);
	box-shadow: var(--shadow-s);
	transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.dest-card--wide { aspect-ratio: 8 / 5; }
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.dest-card:hover img { transform: scale(1.07); }
.dest-scrim { position: absolute; inset: 0; background: var(--scrim); }
.dest-info { position: absolute; left: 1.4rem; bottom: 1.3rem; right: 3.4rem; color: #fff; display: grid; gap: .15rem; }
.dest-name { font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 1.8rem); font-weight: 600; }
.dest-count { font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.82); }
.dest-arrow {
	position: absolute; right: 1.2rem; bottom: 1.2rem;
	width: 40px; height: 40px; border-radius: 50%;
	display: grid; place-items: center;
	background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(8px);
	font-size: 1.1rem;
	transition: background .3s, transform .45s var(--ease);
}
.dest-card:hover .dest-arrow { background: var(--accent); transform: translateX(3px); }

/* ============================================================ Guides */

.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
@media (max-width: 900px) { .guide-grid { grid-template-columns: 1fr; } }

.guide-card {
	display: flex; flex-direction: column;
	background: var(--surface); border-radius: var(--radius); overflow: hidden;
	box-shadow: var(--shadow-s);
	transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.guide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.guide-media { display: block; aspect-ratio: 7 / 5; overflow: hidden; background: var(--tint); }
.guide-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.guide-card:hover .guide-media img { transform: scale(1.06); }
.guide-body { padding: 1.6rem 1.7rem 1.9rem; display: flex; flex-direction: column; gap: .8rem; align-items: flex-start; flex: 1; }
.guide-body h3 { font-size: 1.35rem; margin: 0; }
.guide-body p { color: var(--ink-soft); font-size: .95rem; margin: 0; flex: 1; }

/* ============================================================ Categories */

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.9rem, 1.8vw, 1.4rem); }
@media (max-width: 800px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

.cat-card {
	display: flex; flex-direction: column; align-items: center; gap: .9rem;
	padding: 2.1rem 1rem 1.9rem;
	background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
	font-weight: 600; font-size: 1rem; color: var(--primary);
	transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.cat-card svg { width: 34px; height: 34px; color: var(--secondary); transition: transform .4s var(--ease), color .3s; }
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); border-color: transparent; }
.cat-card:hover svg { transform: scale(1.12); color: var(--accent); }

/* ============================================================ World map */

.world-map {
	position: relative; border-radius: var(--radius-l);
	background: linear-gradient(180deg, var(--bg-warm), var(--tint));
	border: 1px solid var(--line);
	padding: clamp(.5rem, 2vw, 1.5rem);
	box-shadow: var(--shadow-s);
}
:root[data-theme="dark"] .world-map { background: linear-gradient(180deg, #0E1526, #0B1120); }
.world-map svg { width: 100%; height: auto; display: block; }
.map-land path { fill: var(--primary); opacity: .08; transition: opacity .3s; }
:root[data-theme="dark"] .map-land path { fill: #94A3B8; opacity: .12; }
.map-grid line { stroke: var(--primary); stroke-width: .5; opacity: .05; }
:root[data-theme="dark"] .map-grid line { stroke: #94A3B8; }

.map-marker { cursor: pointer; }
.map-dot { fill: var(--accent); stroke: var(--bg); stroke-width: 2.5; transition: r .25s var(--ease); }
.map-marker:hover .map-dot, .map-marker:focus .map-dot { r: 8; fill: var(--secondary); }
.map-pulse { fill: var(--accent); opacity: .25; animation: pulse 2.6s var(--ease) infinite; transform-origin: center; }
@keyframes pulse { 0% { transform: scale(.35); opacity: .45; } 70%, 100% { transform: scale(1.1); opacity: 0; } }

.map-tooltip {
	position: absolute; z-index: 5; pointer-events: none;
	background: var(--primary); color: var(--bg);
	padding: .5rem .95rem; border-radius: 10px;
	font-size: .86rem; font-weight: 600; white-space: nowrap;
	box-shadow: var(--shadow-m);
	transform: translate(-50%, calc(-100% - 14px));
}
:root[data-theme="dark"] .map-tooltip { background: #E2E8F0; color: #0F172A; }
.map-tooltip small { display: block; font-weight: 500; opacity: .75; }

/* ============================================================ Horizontal scroller */

.scroller {
	display: flex; gap: clamp(1rem, 2vw, 1.5rem);
	overflow-x: auto; scroll-snap-type: x mandatory;
	padding: .5rem clamp(1.25rem, calc((100vw - var(--container)) / 2 + 2.5rem), 50vw) 1.5rem;
	scrollbar-width: none;
}
.scroller::-webkit-scrollbar { display: none; }
.scroller-nav { display: flex; gap: .4rem; }
.scroller-nav .icon-btn { border: 1.5px solid var(--line); }
.scroller-nav .icon-btn:hover { border-color: var(--secondary); color: var(--secondary); background: none; }

.trend-card {
	position: relative; flex: 0 0 clamp(240px, 26vw, 330px);
	aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden;
	scroll-snap-align: start; background: var(--primary);
	box-shadow: var(--shadow-s);
	transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.trend-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); }
.trend-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.trend-card:hover img { transform: scale(1.07); }
.trend-info { position: absolute; left: 1.3rem; right: 1.3rem; bottom: 1.2rem; color: #fff; display: grid; gap: .3rem; }
.trend-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.trend-tag { font-size: .86rem; color: rgba(255,255,255,.85); line-height: 1.5; }
.trend-card--photo { aspect-ratio: 4 / 3; flex-basis: clamp(280px, 32vw, 420px); }

/* ============================================================ Editorial */

.editorial {
	display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: center; margin-bottom: clamp(3rem, 7vw, 5.5rem);
}
.editorial:last-child { margin-bottom: 0; }
.editorial--flip .editorial-media { order: 2; }
@media (max-width: 780px) { .editorial { grid-template-columns: 1fr; } .editorial--flip .editorial-media { order: 0; } }

.editorial-media { display: block; border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-m); }
.editorial-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease); }
.editorial:hover .editorial-media img { transform: scale(1.05); }
.editorial-body h3 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin: .9rem 0 .7rem; }
.editorial-body h3 a:hover { color: var(--secondary); }
.editorial-body p { color: var(--ink-soft); }

/* ============================================================ Newsletter */

.glass-card {
	border-radius: var(--radius-l); overflow: hidden;
	background: var(--surface); border: 1px solid var(--line);
	box-shadow: var(--shadow-m);
}
.newsletter { display: grid; grid-template-columns: 1fr 1.3fr; min-height: 380px; }
@media (max-width: 780px) { .newsletter { grid-template-columns: 1fr; } .newsletter-media { min-height: 220px; } }
.newsletter-media { position: relative; overflow: hidden; }
.newsletter-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.newsletter-body { padding: clamp(2rem, 5vw, 3.8rem); display: flex; flex-direction: column; justify-content: center; }
.newsletter-body h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.newsletter-body > p { color: var(--ink-soft); max-width: 420px; }
.newsletter-form { display: flex; gap: .6rem; margin-top: 1.2rem; max-width: 460px; }
.newsletter-form input[type="email"] {
	flex: 1; min-width: 0;
	padding: .85rem 1.2rem; border-radius: 999px;
	border: 1.5px solid var(--line); background: var(--bg); color: var(--ink);
	font: inherit; font-size: .97rem; outline: none;
	transition: border-color .25s;
}
.newsletter-form input[type="email"]:focus { border-color: var(--secondary); }
.hp-field { position: absolute; left: -9999px; }
.newsletter-note { font-size: .9rem; color: var(--secondary); min-height: 1.4em; margin: .8rem 0 0; }
.newsletter-note.is-error { color: var(--accent); }
@media (max-width: 480px) { .newsletter-form { flex-direction: column; } }

/* ============================================================ Footer */

.site-footer { background: var(--primary); color: #CBD5E1; padding: clamp(3rem, 7vw, 5rem) 0 2rem; }
:root[data-theme="dark"] .site-footer { background: #070C18; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer .brand { color: #fff; }

.footer-gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: .8rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
@media (max-width: 720px) { .footer-gallery { grid-template-columns: repeat(3, 1fr); } }
.footer-photo { display: block; aspect-ratio: 1; border-radius: var(--radius-s); overflow: hidden; }
.footer-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .3s; }
.footer-photo:hover img { transform: scale(1.08); opacity: .85; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: span 2; } }
.footer-brand p { font-size: .95rem; line-height: 1.7; max-width: 340px; margin: 1.1rem 0 1.4rem; color: #94A3B8; }
.footer-social { display: flex; gap: .4rem; }
.social-link { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); color: #E2E8F0; transition: background .25s, border-color .25s, transform .25s var(--ease); }
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-col a { font-size: .95rem; color: #94A3B8; transition: color .2s, padding-left .3s var(--ease); }
.footer-col a:hover { color: #fff; padding-left: 4px; }

.footer-bottom {
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
	border-top: 1px solid rgba(255,255,255,.1);
	margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.8rem;
	font-size: .88rem; color: #64748B;
}
.footer-bottom p { margin: 0; }

/* ============================================================ Page hero (blog/archive/destination) */

.page-hero { position: relative; padding: calc(var(--header-h) + clamp(3rem, 8vw, 6rem)) 0 clamp(2.5rem, 6vw, 4.5rem); overflow: hidden; }
.page-hero--plain { background: var(--bg-warm); border-bottom: 1px solid var(--line); }
:root[data-theme="dark"] .page-hero--plain { background: var(--tint); }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero:not(.page-hero--plain) { color: #fff; min-height: 62vh; display: flex; align-items: flex-end; }
.page-hero:not(.page-hero--plain) .page-title, .page-hero:not(.page-hero--plain) .section-sub { color: #fff; }
.page-hero:not(.page-hero--plain) .section-sub { opacity: .85; }
.page-hero-content { position: relative; z-index: 2; width: 100%; }
.page-title { font-size: clamp(2.4rem, 6vw, 4.4rem); margin-bottom: .35em; text-wrap: balance; }
.page-tagline { font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 2.4vw, 1.5rem); max-width: 620px; opacity: .92; }

.crumbs { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .84rem; font-weight: 500; margin-bottom: 1.4rem; opacity: .85; }
.crumbs a:hover { text-decoration: underline; }
.crumbs-here { opacity: .7; }

/* ============================================================ Filter bar (blog) */

.filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.filter-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip--filter { border: 1.5px solid var(--line); background: var(--surface); cursor: pointer; padding: .45rem 1.1rem; font-size: .82rem; }
.chip--filter:hover { border-color: var(--secondary); color: var(--secondary); }
.chip--filter.is-active { background: var(--primary); border-color: var(--primary); color: var(--bg); }

.filter-search { display: flex; align-items: center; gap: .6rem; padding: .55rem 1.1rem; border: 1.5px solid var(--line); border-radius: 999px; background: var(--surface); min-width: 240px; transition: border-color .25s, box-shadow .25s; }
.filter-search:focus-within { border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(14,165,233,.12); }
.filter-search svg { width: 18px; height: 18px; color: var(--ink-faint); flex-shrink: 0; }
.filter-search input { flex: 1; min-width: 0; border: 0; background: none; color: var(--ink); font: inherit; font-size: .95rem; outline: none; }
.filter-search--page { max-width: 420px; margin-top: 1.5rem; }
.filter-search--center { margin: 1.5rem auto 0; }

/* Lead story */
.lead-story { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.lead-media { position: relative; display: block; border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 21 / 10; box-shadow: var(--shadow-m); background: var(--primary); }
@media (max-width: 700px) { .lead-media { aspect-ratio: 4 / 5; } }
.lead-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.lead-story:hover .lead-media img { transform: scale(1.04); }
.lead-content { position: absolute; left: clamp(1.4rem, 4vw, 3rem); right: clamp(1.4rem, 4vw, 3rem); bottom: clamp(1.4rem, 4vw, 2.6rem); color: #fff; display: grid; gap: .7rem; justify-items: start; max-width: 720px; }
.lead-title { font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 3rem); font-weight: 600; line-height: 1.12; text-wrap: balance; }
.lead-excerpt { font-size: clamp(.95rem, 1.6vw, 1.08rem); color: rgba(255,255,255,.88); }
.lead-content .card-meta { color: rgba(255,255,255,.75); }

.load-more-wrap { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: clamp(2rem, 5vw, 3.5rem); }
.load-spinner { width: 22px; height: 22px; border: 2.5px solid var(--line); border-top-color: var(--accent); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.pagination-wrap { margin-top: clamp(2rem, 5vw, 3.5rem); display: flex; justify-content: center; }
.pagination-wrap .nav-links, .pagination-wrap .pagination { display: flex; gap: .45rem; }
.pagination-wrap .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 .8rem; border-radius: 999px; border: 1.5px solid var(--line); font-weight: 600; font-size: .92rem; transition: all .25s; }
.pagination-wrap .page-numbers.current { background: var(--primary); border-color: var(--primary); color: var(--bg); }
.pagination-wrap a.page-numbers:hover { border-color: var(--secondary); color: var(--secondary); }

.empty-note { text-align: center; color: var(--ink-soft); padding: 3rem 1rem; }
.empty-note a { color: var(--secondary); font-weight: 600; }

/* ============================================================ Single story */

.story-hero { position: relative; min-height: 72vh; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.story-hero-media { position: absolute; inset: 0; }
.story-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.story-hero .hero-scrim { background: linear-gradient(180deg, rgba(15,23,42,.35) 0%, rgba(15,23,42,.15) 40%, rgba(15,23,42,.78) 100%); }
.story-hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--container); margin: 0 auto; padding: calc(var(--header-h) + 3rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2.5rem, 6vw, 4rem); }
.story-hero-content--plain { color: var(--ink); padding-bottom: 0; }
.story-hero-content .chip--media { margin-bottom: 1.1rem; }
.story-title { font-size: clamp(2.1rem, 5.5vw, 4rem); font-weight: 700; color: inherit; max-width: 900px; text-wrap: balance; margin-bottom: 1.4rem; }
.story-hero-content--plain .story-title { color: var(--primary); }

.story-byline { display: flex; align-items: center; gap: .9rem; }
.story-byline img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); }
.story-byline > div { display: grid; gap: .1rem; }
.byline-name { font-weight: 650; font-size: .98rem; }
.byline-meta { font-size: .86rem; opacity: .82; }

.story-layout { display: grid; grid-template-columns: 64px minmax(0, var(--prose)) 250px; gap: clamp(1.8rem, 4vw, 3.8rem); justify-content: center; padding-top: clamp(2.5rem, 6vw, 4.5rem); }
@media (max-width: 1080px) { .story-layout { grid-template-columns: 64px minmax(0, var(--prose)); } .toc { display: none; } }
@media (max-width: 760px) { .story-layout { grid-template-columns: minmax(0, 1fr); } .share-rail { flex-direction: row; position: static; margin-bottom: 1.5rem; } }

.share-rail { display: flex; flex-direction: column; gap: .35rem; align-items: center; position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }
.share-label { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .3rem; }
.share-rail .icon-btn { border: 1.5px solid var(--line); background: var(--surface); }
.share-rail .icon-btn:hover { border-color: var(--secondary); color: var(--secondary); transform: translateY(-2px); }
.share-rail .icon-btn.is-copied, .share-rail .icon-btn.is-saved { border-color: var(--accent); color: var(--accent); }

.toc { font-size: .9rem; }
.toc-inner { position: sticky; top: calc(var(--header-h) + 2rem); border-left: 2px solid var(--line); padding-left: 1.4rem; max-height: calc(100vh - var(--header-h) - 4rem); overflow: auto; }
.toc-title { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .9rem; }
.toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.toc a { display: block; padding: .22rem 0; color: var(--ink-soft); line-height: 1.45; transition: color .2s, transform .3s var(--ease); }
.toc a:hover { color: var(--primary); }
.toc li.is-active a { color: var(--secondary); font-weight: 600; transform: translateX(3px); }
.toc .toc-l3 a { padding-left: 1rem; font-size: .85rem; }

/* Prose — the reading column */
.prose { font-size: 1.13rem; line-height: 1.85; color: var(--ink); }
.prose > p:first-of-type::first-letter {
	font-family: var(--font-display); font-size: 3.4em; font-weight: 700;
	float: left; line-height: .82; padding: .07em .12em 0 0; color: var(--accent);
}
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 2.2em 0 .7em; scroll-margin-top: calc(var(--header-h) + 1.5rem); }
.prose h3 { font-size: 1.35rem; margin: 1.8em 0 .6em; scroll-margin-top: calc(var(--header-h) + 1.5rem); }
.prose a { color: var(--secondary); border-bottom: 1px solid color-mix(in srgb, var(--secondary) 35%, transparent); transition: border-color .2s; }
.prose a:hover { border-color: var(--secondary); }
.prose img { border-radius: var(--radius); box-shadow: var(--shadow-m); margin: 2.2rem auto; }
.prose figure { margin: 2.2rem 0; }
.prose figure img { margin: 0; }
.prose figcaption { text-align: center; font-size: .86rem; color: var(--ink-faint); font-style: italic; margin-top: .8rem; }
.prose ul, .prose ol { padding-left: 1.4rem; margin-bottom: 1.4em; }
.prose li { margin-bottom: .45em; }
.prose li::marker { color: var(--accent); }

.prose blockquote {
	margin: 2.6rem 0; padding: 0 0 0 1.8rem;
	border-left: 3px solid var(--accent);
	font-family: var(--font-display); font-style: italic;
	font-size: 1.45rem; line-height: 1.5; color: var(--primary);
}
.prose blockquote p { margin-bottom: .4em; }
.prose blockquote cite { font-family: var(--font-body); font-style: normal; font-size: .85rem; color: var(--ink-faint); }

.prose .wp-block-gallery, .prose .blocks-gallery-grid { gap: 1rem; }
.prose .wp-block-gallery img { margin: 0; }
.prose .wp-block-table table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.prose .wp-block-table td, .prose .wp-block-table th { padding: .8rem 1rem; border-bottom: 1px solid var(--line); text-align: left; }
.prose .wp-block-table th { font-weight: 650; color: var(--primary); }
.prose .wp-block-table { overflow-x: auto; margin: 2rem 0; }
.prose iframe { max-width: 100%; border-radius: var(--radius); border: 0; }
.prose .wp-block-embed { margin: 2.2rem 0; }
.prose code { background: var(--tint); padding: .15em .45em; border-radius: 6px; font-size: .9em; }

/* Quick facts */
.facts-panel {
	background: var(--bg-warm); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 1.8rem 2rem; margin-bottom: 2.5rem;
}
:root[data-theme="dark"] .facts-panel { background: var(--tint); }
.facts-title { font-size: 1.15rem; margin-bottom: 1.1rem; }
.facts-panel dl, .dest-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1.1rem 1.6rem; }
.fact dt { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .25rem; }
.fact dd { font-weight: 600; color: var(--primary); font-size: .98rem; line-height: 1.5; }
.fact--wide { grid-column: 1 / -1; }
.dest-facts { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-s); }

/* Story map */
.story-map { margin: 3rem 0 0; }
.story-map h2 { font-size: 1.5rem; }
.story-map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-m); aspect-ratio: 16 / 9; }
.story-map-frame iframe { width: 100%; height: 100%; border: 0; }

.story-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 2.6rem 0 0; }

/* Author bio */
.author-bio {
	display: flex; gap: 1.6rem; align-items: flex-start;
	background: var(--bg-warm); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 2rem 2.2rem; margin-top: 3rem;
}
:root[data-theme="dark"] .author-bio { background: var(--tint); }
.author-bio img { width: 76px; height: 76px; border-radius: 50%; flex-shrink: 0; }
.author-bio h2 { font-size: 1.4rem; margin-bottom: .4rem; }
.author-bio h2 a:hover { color: var(--secondary); }
.author-bio p:last-child { margin: 0; color: var(--ink-soft); font-size: .97rem; }
.author-bio .eyebrow { margin-bottom: .3rem; }
@media (max-width: 540px) { .author-bio { flex-direction: column; } }

/* Prev/next */
.story-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
@media (max-width: 560px) { .story-nav { grid-template-columns: 1fr; } }
.story-nav-item {
	display: grid; gap: .4rem; padding: 1.5rem 1.7rem;
	border: 1px solid var(--line); border-radius: var(--radius);
	transition: border-color .3s, transform .35s var(--ease), box-shadow .35s var(--ease);
}
.story-nav-item:last-child { text-align: right; }
.story-nav-item:hover { border-color: var(--secondary); transform: translateY(-3px); box-shadow: var(--shadow-s); }
.story-nav-item--empty { border: 0; pointer-events: none; }
.story-nav-label { font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.story-nav-title { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; line-height: 1.35; color: var(--primary); }

/* Comments */
.comments { margin-top: 3.5rem; border-top: 1px solid var(--line); padding-top: 2.5rem; }
.comments-title { font-size: 1.5rem; }
.comment-list { list-style: none; margin: 0 0 2rem; padding: 0; }
.comment-list .comment { padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.comment-list .children { list-style: none; padding-left: 2.2rem; }
.comment-author { display: flex; align-items: center; gap: .7rem; font-weight: 650; }
.comment-author .avatar { border-radius: 50%; }
.comment-metadata { font-size: .8rem; color: var(--ink-faint); margin: .3rem 0 .6rem; }
.comment-content { font-size: .98rem; }
.comment-reply-link { font-size: .84rem; font-weight: 600; color: var(--secondary); }
.comment-form { display: grid; gap: 1rem; }
.comment-form label { font-size: .86rem; font-weight: 600; display: block; margin-bottom: .3rem; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
	width: 100%; padding: .85rem 1.1rem; border-radius: var(--radius-s);
	border: 1.5px solid var(--line); background: var(--surface); color: var(--ink);
	font: inherit; font-size: .97rem; outline: none; transition: border-color .25s;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--secondary); }
.comment-form p { margin: 0; }
.form-submit .btn, .comment-form input[type="submit"] {
	background: var(--accent); color: #fff; border: 0; border-radius: 999px;
	padding: .8rem 1.8rem; font-weight: 600; cursor: pointer;
	box-shadow: 0 6px 20px rgba(255,140,66,.3); transition: transform .3s var(--ease);
}
.comment-form input[type="submit"]:hover { transform: translateY(-2px); }

/* ============================================================ Utilities */

.wp-block-image figcaption { text-align: center; font-size: .86rem; color: var(--ink-faint); font-style: italic; }
.alignwide { margin-left: calc(-1 * clamp(0px, 6vw, 90px)); margin-right: calc(-1 * clamp(0px, 6vw, 90px)); max-width: none; }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: none; }
@media (max-width: 1080px) { .alignwide { margin-left: 0; margin-right: 0; } }

/* ============================================================
   HERO v2 — "Journey Begins Here"
   ============================================================ */

/* ---------- Intro preloader */
.intro {
	position: fixed; inset: 0; z-index: 300;
	background: radial-gradient(120% 120% at 50% 40%, #10203A 0%, #070C18 70%);
	display: grid; place-items: center; color: #E2E8F0;
	transition: opacity .7s var(--ease), transform .9s var(--ease), visibility .9s;
}
.intro.is-done { opacity: 0; transform: scale(2.4); visibility: hidden; pointer-events: none; }
.intro-inner { text-align: center; display: grid; justify-items: center; gap: 1.3rem; }
.intro-compass { width: 72px; height: 72px; color: var(--accent); filter: drop-shadow(0 0 18px rgba(255,140,66,.55)); animation: introGlow 2.4s var(--ease) both; }
.intro-needle { transform-origin: 40px 40px; animation: introSpin 2.2s cubic-bezier(.45,.05,.2,1) both; }
@keyframes introSpin { 0% { transform: rotate(0); } 55% { transform: rotate(560deg); } 80% { transform: rotate(510deg); } 100% { transform: rotate(528deg); } }
@keyframes introGlow { 0% { opacity: 0; transform: scale(.7); } 25% { opacity: 1; transform: scale(1); } 100% { opacity: 1; } }
.intro-text { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: rgba(226,232,240,.75); letter-spacing: .04em; animation: introText 2.4s var(--ease) both; }
@keyframes introText { 0%, 28% { opacity: 0; transform: translateY(10px); } 55% { opacity: 1; transform: none; } 100% { opacity: 1; } }
body.is-intro { overflow: hidden; }

/* ---------- Scene & layers */
.hero2 { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; color: #fff; background: #0B1526; }
.hero2-scene { position: absolute; inset: -3.5%; transform: scale(1.14); transition: transform 2.2s var(--ease); }
.hero2.is-live .hero2-scene { transform: scale(1); }
.hero2-layer { position: absolute; inset: 0; will-change: transform; }

.hero2-sky { background: linear-gradient(180deg, #16263E 0%, #2C405C 45%, #6E86A0 100%); }
.hero2-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.92) saturate(1.05); transition: filter 1.2s var(--ease); animation: heroBreathe 18s ease-in-out infinite; }
@keyframes heroBreathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.025); } }

.hero2-clouds {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='320'%3E%3Cdefs%3E%3Cfilter id='b'%3E%3CfeGaussianBlur stdDeviation='28'/%3E%3C/filter%3E%3C/defs%3E%3Cg filter='url(%23b)' fill='white'%3E%3Cellipse cx='160' cy='90' rx='150' ry='38'/%3E%3Cellipse cx='430' cy='150' rx='190' ry='30'/%3E%3Cellipse cx='720' cy='70' rx='160' ry='42'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: repeat-x; background-size: 900px 320px;
	animation: cloudDrift linear infinite;
}
.hero2-clouds--far { opacity: .16; background-position: 0 6%; animation-duration: 140s; }
.hero2-clouds--near { opacity: .10; background-position: 0 -4%; background-size: 1300px 460px; animation-duration: 85s; }
@keyframes cloudDrift { from { background-position-x: 0; } to { background-position-x: -1300px; } }

.hero2-rays {
	background: conic-gradient(from 208deg at 78% -8%, rgba(255,214,168,0) 0deg, rgba(255,214,168,.20) 8deg, rgba(255,214,168,0) 16deg, rgba(255,220,180,0) 22deg, rgba(255,214,168,.13) 28deg, rgba(255,214,168,0) 36deg);
	mix-blend-mode: screen; animation: raysPulse 16s ease-in-out infinite;
}
@keyframes raysPulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }

.hero2-particles { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .6; }

.hero2-fog {
	background:
		radial-gradient(75% 42% at 22% 76%, rgba(226,236,246,.34) 0%, rgba(226,236,246,0) 100%),
		radial-gradient(60% 34% at 78% 64%, rgba(214,228,240,.26) 0%, rgba(214,228,240,0) 100%),
		linear-gradient(180deg, rgba(226,236,246,0) 46%, rgba(216,228,240,.30) 78%, rgba(226,236,246,.12) 100%);
	animation: fogSway 22s ease-in-out infinite;
}
@keyframes fogSway { 0%, 100% { transform: translateX(0) } 50% { transform: translateX(-2.2%) } }

.hero2-birds { position: absolute; inset: 0; pointer-events: none; }
.bird { position: absolute; width: 26px; height: 11px; color: rgba(20,30,45,.55); opacity: 0; }
.bird--1 { top: 24%; animation: birdFly 26s linear 6s infinite; }
.bird--2 { top: 28%; width: 18px; animation: birdFly 26s linear 7.2s infinite; }
.bird--3 { top: 21%; width: 15px; animation: birdFly 26s linear 8.1s infinite; }
@keyframes birdFly {
	0% { transform: translateX(-4vw) translateY(0); opacity: 0; }
	4% { opacity: .8; }
	20% { transform: translateX(40vw) translateY(-3vh); opacity: .8; }
	38% { opacity: .75; }
	44% { transform: translateX(88vw) translateY(-1vh); opacity: 0; }
	100% { transform: translateX(88vw); opacity: 0; }
}

.hero2-shimmer {
	position: absolute; inset: auto 0 0 0; height: 22%;
	background: repeating-linear-gradient(178deg, rgba(255,255,255,.05) 0 2px, rgba(255,255,255,0) 2px 7px);
	mask-image: linear-gradient(180deg, transparent, #000 55%);
	-webkit-mask-image: linear-gradient(180deg, transparent, #000 55%);
	animation: shimmer 9s ease-in-out infinite; mix-blend-mode: screen;
}
@keyframes shimmer { 0%, 100% { opacity: .35; transform: translateY(0); } 50% { opacity: .8; transform: translateY(3px); } }

.hero2-warm { position: absolute; inset: 0; background: linear-gradient(200deg, rgba(255,164,92,.16) 0%, rgba(255,164,92,0) 42%); mix-blend-mode: soft-light; animation: raysPulse 24s ease-in-out infinite; }

.hero2-grain {
	position: absolute; inset: 0; opacity: .05; mix-blend-mode: overlay; pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.hero2-scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(7,12,24,.78) 0%, rgba(7,12,24,.38) 46%, rgba(7,12,24,.16) 70%, rgba(7,12,24,.42) 100%), linear-gradient(180deg, rgba(7,12,24,.5) 0%, rgba(7,12,24,0) 30%, rgba(7,12,24,.55) 100%); }

/* ---------- Hero content */
.hero2-inner {
	position: relative; z-index: 3; width: 100%;
	display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, 1fr);
	gap: clamp(2rem, 5vw, 5rem); align-items: center;
	padding-top: calc(var(--header-h) + 3.5rem); padding-bottom: 10rem;
}
.hero2-copy { max-width: 640px; }
.hero2-eyebrow { font-size: .82rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: #7DD3FC; margin-bottom: 1.6rem; opacity: 0; animation: fadeUp 1s var(--ease) .2s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.hero2-title { font-size: clamp(3rem, 8.2vw, 6.2rem); font-weight: 800; color: #fff; line-height: .98; letter-spacing: .01em; text-transform: uppercase; margin-bottom: 1.6rem; }
.hero2-line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hero2-dot { font-style: normal; color: var(--accent); }
.hero2-title .char { display: inline-block; opacity: 0; transform: translateY(1.1em) rotate(4deg); animation: charUp .7s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes charUp { to { opacity: 1; transform: none; } }
.hero2-title.no-split .hero2-word { opacity: 0; animation: fadeUp 1s var(--ease) .3s forwards; }

.hero2-typed { display: flex; align-items: baseline; gap: 2px; min-height: 1.9em; font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 2.2vw, 1.45rem); color: #FFD9B8; margin: 0 0 .9rem; opacity: 0; animation: fadeUp 1s var(--ease) 1s forwards; }
.hero2-caret { width: 2px; height: 1.15em; background: #FFD9B8; align-self: center; animation: caretBlink 1.1s steps(1) infinite; }
@keyframes caretBlink { 50% { opacity: 0; } }

.hero2-desc { font-size: clamp(1rem, 1.7vw, 1.13rem); line-height: 1.8; color: rgba(255,255,255,.86); max-width: 480px; margin-bottom: 2.4rem; opacity: 0; animation: fadeUp 1s var(--ease) 1.15s forwards; }

.hero2-ctas { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s var(--ease) 1.3s forwards; }

/* Primary CTA — expand, arrow slide, glow, ripple */
.btn2 {
	position: relative; display: inline-flex; align-items: center; gap: .9rem;
	padding: 1rem 1.5rem 1rem 1.9rem; border-radius: 999px;
	background: linear-gradient(135deg, var(--secondary), #0284C7);
	color: #fff; font-weight: 650; font-size: 1rem; letter-spacing: .01em;
	box-shadow: 0 10px 30px rgba(14,165,233,.35);
	overflow: hidden;
	transition: box-shadow .45s var(--ease), padding .45s var(--ease), transform .3s var(--ease);
}
.btn2:hover { padding-right: 1.9rem; box-shadow: 0 14px 44px rgba(14,165,233,.55), 0 0 0 6px rgba(14,165,233,.14); }
.btn2-arrow { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.18); transition: transform .45s var(--ease), background .3s; }
.btn2-arrow svg { width: 17px; height: 17px; }
.btn2:hover .btn2-arrow { transform: translateX(5px); background: rgba(255,255,255,.3); }
.btn2 .ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,.45); transform: scale(0); animation: ripple .7s var(--ease) forwards; pointer-events: none; }
@keyframes ripple { to { transform: scale(3.2); opacity: 0; } }

/* Watch story */
.play-btn { display: inline-flex; align-items: center; gap: .95rem; color: #fff; font-weight: 600; font-size: 1rem; }
.play-ring {
	position: relative; display: inline-grid; place-items: center;
	width: 52px; height: 52px; border-radius: 50%;
	border: 1.5px solid rgba(255,255,255,.65);
	transition: transform .5s var(--ease), border-color .3s;
}
.play-ring svg { width: 19px; height: 19px; transition: transform .4s var(--ease); }
.play-ring::after { content: ""; position: absolute; inset: -1.5px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); opacity: 0; }
.play-btn:hover .play-ring { transform: rotate(120deg); border-color: #fff; }
.play-btn:hover .play-ring svg { transform: rotate(-120deg) scale(1.18); }
.play-btn:hover .play-ring::after { animation: playPulse 1.4s var(--ease) infinite; }
@keyframes playPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.55); opacity: 0; } }

/* ---------- Floating destination rotator */
.hero2-card {
	position: relative; border-radius: var(--radius-l);
	padding: 1.4rem 1.4rem 1.2rem;
	background: rgba(13, 22, 38, .55); border: 1px solid rgba(255,255,255,.14);
	backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
	box-shadow: var(--shadow-l);
	color: #fff; max-width: 380px; justify-self: end; width: 100%;
	opacity: 0; animation: fadeUp 1.1s var(--ease) 1.5s forwards;
}
.hero2-card-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin: 0 0 1rem; }
.rotator { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10.5; }
.rotator-slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.05); transition: opacity 1.1s var(--ease), transform 1.4s var(--ease); pointer-events: none; }
.rotator-slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.rotator-slide img { width: 100%; height: 100%; object-fit: cover; }
.rotator-info { position: absolute; left: 1.1rem; bottom: 1rem; right: 3.4rem; display: grid; gap: .1rem; }
.rotator-name { display: flex; align-items: center; gap: .45rem; font-weight: 650; font-size: 1.05rem; }
.rotator-name svg { width: 16px; height: 16px; opacity: .9; }
.rotator-count { font-size: .8rem; color: rgba(255,255,255,.8); letter-spacing: .04em; }
.rotator-slide .dest-arrow { width: 36px; height: 36px; bottom: 1rem; right: 1rem; }
.rotator-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.18); z-index: 2; }
.rotator-progress span { display: block; height: 100%; width: 0; background: var(--accent); transition: width .3s linear; }

.rotator-list { list-style: none; margin: .5rem 0 0; padding: 0; }
.rotator-list a { display: flex; justify-content: space-between; align-items: baseline; padding: .68rem .2rem; border-bottom: 1px solid rgba(255,255,255,.1); font-weight: 550; font-size: .95rem; transition: padding-left .3s var(--ease), color .2s; }
.rotator-list a:hover { padding-left: .5rem; color: #FFD9B8; }
.rotator-list small { color: rgba(255,255,255,.55); font-size: .8rem; }
.rotator-all { display: flex; justify-content: space-between; align-items: center; padding: .9rem .2rem 0; font-weight: 600; font-size: .92rem; color: #7DD3FC; }
.rotator-all:hover { color: #fff; }

/* Tilt */
.tilt { transform-style: preserve-3d; }

/* ---------- Category rail */
.hero2-rail {
	position: absolute; left: 50%; bottom: clamp(1rem, 3vh, 2.2rem); transform: translateX(-50%);
	z-index: 4; width: min(1180px, calc(100% - 2.5rem));
	display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem);
	padding: .9rem clamp(1rem, 2.5vw, 1.8rem);
	border-radius: 22px;
	background: rgba(13, 22, 38, .5); border: 1px solid rgba(255,255,255,.12);
	backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
	color: #fff;
	opacity: 0; animation: fadeUp 1.1s var(--ease) 1.7s forwards;
}
.rail-title { font-weight: 700; font-size: 1.02rem; margin: 0; white-space: nowrap; }
.rail-items { display: flex; gap: clamp(.8rem, 2vw, 1.9rem); overflow-x: auto; scrollbar-width: none; flex: 1; }
.rail-items::-webkit-scrollbar { display: none; }
.rail-item { position: relative; display: flex; align-items: center; gap: .65rem; flex-shrink: 0; padding: .25rem; border-radius: 999px; }
.rail-thumb { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,.35); flex-shrink: 0; transition: border-color .3s, box-shadow .3s, transform .4s var(--ease); background: rgba(255,255,255,.1); }
.rail-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.rail-item:hover .rail-thumb { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,140,66,.25), 0 0 22px rgba(255,140,66,.35); transform: scale(1.06); }
.rail-item:hover .rail-thumb img { transform: scale(1.18); }
.rail-label { font-weight: 600; font-size: .95rem; white-space: nowrap; display: grid; }
.rail-label small { font-weight: 500; font-size: .74rem; color: rgba(255,255,255,.65); max-height: 0; opacity: 0; overflow: hidden; transition: max-height .4s var(--ease), opacity .4s var(--ease); }
.rail-item:hover .rail-label small { max-height: 1.4em; opacity: 1; }
.rail-more { border: 1.5px solid rgba(255,255,255,.3); color: #fff; flex-shrink: 0; }
.rail-more:hover { background: var(--accent); border-color: var(--accent); }

@media (max-width: 1080px) {
	.hero2-inner { grid-template-columns: 1fr; padding-bottom: 12rem; }
	.hero2-card { justify-self: start; max-width: 420px; }
}
@media (max-width: 640px) {
	.hero2-inner { padding-bottom: 11rem; }
	.rail-title { display: none; }
	.hero2-ctas { gap: 1.1rem; }
}

/* ---------- Promises strip */
.section--promises { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.promises {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 3vw, 2.5rem);
	background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l);
	padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-s);
}
@media (max-width: 900px) { .promises { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .promises { grid-template-columns: 1fr; } }
.promise { display: flex; gap: 1rem; align-items: flex-start; }
.promise-icon {
	display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 14px;
	background: color-mix(in srgb, var(--secondary) 12%, transparent); color: var(--secondary); flex-shrink: 0;
	transition: transform .4s var(--ease);
}
.promise:hover .promise-icon { transform: rotate(-6deg) scale(1.08); }
.promise-icon svg { width: 23px; height: 23px; }
.promise strong { display: block; font-size: 1.02rem; color: var(--primary); margin-bottom: .15rem; }
.promise p { margin: 0; font-size: .9rem; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Header plan button + progressive glass */
.btn-plan { padding: .6rem 1.3rem; font-size: .9rem; gap: .5rem; margin-right: .35rem; }
.btn-plan svg { width: 16px; height: 16px; transition: transform .4s var(--ease); }
.btn-plan:hover svg { transform: translateX(3px) rotate(8deg); }
@media (max-width: 640px) { .btn-plan { display: none; } }
.site-header.is-tint { background: color-mix(in srgb, var(--bg) 24%, transparent); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.site-header .brand { transition: transform .4s var(--ease); transform-origin: left center; }
.site-header.is-solid .brand { transform: scale(.88); }

/* ---------- Search moods */
.search-moods { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin-top: 1.5rem; font-size: .92rem; color: var(--ink-soft); }
.chip--mood { cursor: pointer; border: 1.5px dashed var(--line); background: none; text-transform: none; letter-spacing: 0; font-size: .88rem; font-weight: 550; padding: .45rem 1rem; }
.chip--mood:hover { border-color: var(--accent); color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, transparent); }

/* ---------- Video modal */
.video-modal { position: fixed; inset: 0; z-index: 250; background: rgba(4, 8, 16, .92); backdrop-filter: blur(10px); display: grid; place-items: center; padding: 1.5rem; opacity: 0; transition: opacity .4s var(--ease); }
.video-modal.is-open { opacity: 1; }
.video-close { position: absolute; top: 1.5rem; right: 1.5rem; color: #fff; border: 1px solid rgba(255,255,255,.3); }
.video-frame { width: min(1080px, 100%); aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-l); }
.video-frame iframe, .video-frame video { width: 100%; height: 100%; border: 0; display: block; background: #000; }

/* ---------- Map routes */
.map-route { fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-dasharray: 5 7; opacity: 0; }
.world-map.in .map-route { animation: routeIn 1.6s var(--ease) forwards, routeFlow 30s linear 1.6s infinite; }
.world-map.in .map-route:nth-child(2) { animation-delay: .25s, 1.85s; }
.world-map.in .map-route:nth-child(3) { animation-delay: .5s, 2.1s; }
.world-map.in .map-route:nth-child(4) { animation-delay: .75s, 2.35s; }
.world-map.in .map-route:nth-child(5) { animation-delay: 1s, 2.6s; }
.world-map.in .map-route:nth-child(6) { animation-delay: 1.25s, 2.85s; }
.world-map.in .map-route:nth-child(7) { animation-delay: 1.5s, 3.1s; }
@keyframes routeIn { from { opacity: 0; stroke-dashoffset: 220; } to { opacity: .55; stroke-dashoffset: 0; } }
@keyframes routeFlow { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -600; } }

/* ---------- Custom cursor */
.cursor {
	position: fixed; left: 0; top: 0; z-index: 400; pointer-events: none;
	width: 34px; height: 34px; margin: -17px 0 0 -17px;
	border: 1.5px solid color-mix(in srgb, var(--secondary) 75%, transparent);
	border-radius: 50%;
	box-shadow: 0 0 18px rgba(14,165,233,.35), inset 0 0 8px rgba(14,165,233,.12);
	display: grid; place-items: center;
	transition: width .3s var(--ease), height .3s var(--ease), margin .3s var(--ease), background .3s, opacity .3s, border-color .3s;
	opacity: 0;
}
.cursor.is-on { opacity: 1; }
.cursor.is-down { transform: scale(.85); }
.cursor-icon { position: absolute; display: grid; place-items: center; opacity: 0; transform: scale(.4); transition: opacity .25s var(--ease), transform .25s var(--ease); color: #fff; }
.cursor-icon svg { width: 18px; height: 18px; }
.cursor[data-mode="arrow"], .cursor[data-mode="pin"], .cursor[data-mode="play"], .cursor[data-mode="compass"] {
	width: 56px; height: 56px; margin: -28px 0 0 -28px;
	background: color-mix(in srgb, var(--primary) 82%, transparent);
	border-color: transparent;
}
.cursor[data-mode="arrow"] .cursor-icon--arrow, .cursor[data-mode="pin"] .cursor-icon--pin,
.cursor[data-mode="play"] .cursor-icon--play, .cursor[data-mode="compass"] .cursor-icon--compass { opacity: 1; transform: scale(1); }
:root[data-theme="dark"] .cursor[data-mode] { background: rgba(226,232,240,.92); }
:root[data-theme="dark"] .cursor-icon { color: #0F172A; }
@media (pointer: coarse) { .cursor { display: none; } }
body.has-cursor a, body.has-cursor button { cursor: none; }
body.has-cursor { cursor: none; }
body.has-cursor input, body.has-cursor textarea, body.has-cursor select { cursor: auto; }

/* Reduced motion: kill the theatre, keep the content */
@media (prefers-reduced-motion: reduce) {
	.intro { display: none; }
	.hero2-scene { transform: none; }
	.hero2-img img, .hero2-clouds, .hero2-rays, .hero2-fog, .bird, .hero2-shimmer, .hero2-warm { animation: none !important; }
	.hero2-eyebrow, .hero2-typed, .hero2-desc, .hero2-ctas, .hero2-card, .hero2-rail { animation: none !important; opacity: 1 !important; }
	.hero2-title .char { animation: none !important; opacity: 1 !important; transform: none !important; }
	.hero2-caret { display: none; }
	.cursor { display: none; }
	.map-route { opacity: .5; }
	.world-map.in .map-route { animation: none; }
}

/* Print */
@media print {
	.site-header, .site-footer, .share-rail, .toc, .comments, .progress-bar, .story-nav, .cursor, .intro { display: none !important; }
	.story-layout { display: block; }
}
