/**
 * AlpineTaxi main stylesheet — dark/orange design system (MetroRide-inspired).
 *
 * Sections: tokens, reset/base, typography, layout, buttons, eyebrow, header,
 * hero, about, stats, why, services, fleet, coverage, process, testimonials,
 * faq, blog, cta, footer, blog/single, animations, responsive.
 */

/* ------------------------------------------------------------------ *
 * Design tokens
 * ------------------------------------------------------------------ */
:root {
	--bg: #0b0b0c;
	--bg-alt: #0f0f11;
	--surface: #141416;
	--surface-2: #1a1a1d;
	--surface-3: #202024;
	--line: rgba(255, 255, 255, 0.08);
	--line-strong: rgba(255, 255, 255, 0.18);

	--text: #ffffff;
	--muted: #aeaeae;
	--muted-2: #7c7c80;

	--accent: #ff6829;
	--accent-press: #e85617;
	--on-accent: #ffffff;

	--font-sans: "Schibsted Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;

	--radius: 8px;
	--radius-lg: 16px;
	--radius-xl: 24px;

	--container: 1320px;
	--gutter: clamp(1.25rem, 4vw, 3.75rem);

	--section-pad: clamp(4rem, 9vw, 7.5rem);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------------------------------------------ *
 * Contextual section themes — the Figma alternates light/dark blocks.
 * Components reference the tokens below, so flipping them per-section
 * recolors backgrounds, text, surfaces, lines and muted tones at once.
 * ------------------------------------------------------------------ */
.theme-dark {
	--bg: #0a0a0b;
	--bg-alt: #0f0f11;
	--surface: #141416;
	--surface-2: #1a1a1d;
	--surface-3: #202024;
	--line: rgba(255, 255, 255, 0.08);
	--line-strong: rgba(255, 255, 255, 0.18);
	--text: #ffffff;
	--muted: #aeaeae;
	--muted-2: #7c7c80;
	--on-accent: #ffffff;
}

.theme-light {
	--bg: #ffffff;
	--bg-alt: #f1f1f2;
	--surface: #f5f5f5;
	--surface-2: #ededee;
	--surface-3: #e4e4e6;
	--line: rgba(0, 0, 0, 0.10);
	--line-strong: rgba(0, 0, 0, 0.20);
	--text: #0a0a0b;
	--muted: #4a4a4d;
	--muted-2: #8a8a8f;
	--on-accent: #ffffff;
}

/* ------------------------------------------------------------------ *
 * Reset & base
 * ------------------------------------------------------------------ */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

/* Lenis controls scrolling; only use native smooth as a no-JS fallback. */
html:not(.has-js) {
	scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text);
	background-color: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

body h1, body h2, body h3, body h4, body h5, body h6 {
	margin: 0;
	line-height: 1.05;
	font-weight: 500;
	letter-spacing: -0.02em;
	/* Override WordPress global-styles `h1{font-family:…}` so headings stay
	   Schibsted Grotesk; `.serif` accents switch to Instrument Serif. */
	font-family: var(--font-sans);
}

p {
	margin: 0;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

::selection {
	background: var(--accent);
	color: var(--on-accent);
}

/* ------------------------------------------------------------------ *
 * Typography helpers
 * ------------------------------------------------------------------ */
.serif {
	font-family: var(--font-serif);
	font-weight: 400;
	letter-spacing: -0.01em;
}

.italic {
	font-style: italic;
}

.display {
	font-size: clamp(2.75rem, 7vw, 7.5rem);
	line-height: 1.04;
	font-weight: 500;
}

.h2 {
	font-size: clamp(2rem, 4.5vw, 4rem);
	line-height: 1.05;
}

.lead {
	font-size: clamp(1rem, 1.4vw, 1.25rem);
	color: var(--muted);
	line-height: 1.6;
}

/* ------------------------------------------------------------------ *
 * Layout
 * ------------------------------------------------------------------ */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.section {
	padding-block: var(--section-pad);
	position: relative;
	background: var(--bg);
	color: var(--text);
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	background: var(--accent);
	color: var(--on-accent);
	padding: 0.75rem 1rem;
	border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
	left: 0;
}

/* ------------------------------------------------------------------ *
 * Eyebrow (dot + label)
 * ------------------------------------------------------------------ */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	font-weight: 500;
}

.eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent);
	flex: none;
}

/* ------------------------------------------------------------------ *
 * Buttons
 * ------------------------------------------------------------------ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	font: inherit;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 1rem 1.5rem;
	border-radius: var(--radius);
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
		border-color 0.25s var(--ease), transform 0.2s var(--ease);
	white-space: nowrap;
}

.btn svg {
	width: 14px;
	height: 14px;
	transition: transform 0.25s var(--ease);
}

.btn:hover svg {
	transform: translateX(4px);
}

.btn--primary {
	background: var(--accent);
	color: var(--on-accent);
}

.btn--primary:hover {
	background: var(--accent-press);
}

.btn--ghost {
	background: transparent;
	border-color: var(--line-strong);
	color: var(--text);
}

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

.btn--light {
	background: var(--text);
	color: #0b0b0c;
}

.btn--light:hover {
	background: var(--accent);
	color: var(--on-accent);
}

/* Text link with arrow */
.arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	color: var(--text);
}

.arrow-link svg {
	width: 14px;
	height: 14px;
	transition: transform 0.25s var(--ease);
}

.arrow-link:hover svg {
	transform: translateX(4px);
}

html.nav-open body {
	overflow: hidden;
}

/* ------------------------------------------------------------------ *
 * Header / navigation
 * ------------------------------------------------------------------ */
/* Figma header: a floating dark pill, not a full-bleed bar. */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 60;
	padding: clamp(0.85rem, 1.6vw, 1.4rem) clamp(1rem, 3vw, 2rem) 0;
}

.site-header__inner {
	max-width: var(--container);
	margin-inline: auto;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: 64px;
	padding: 0.55rem 0.6rem 0.55rem 1.5rem;
	background: rgba(12, 12, 14, 0.78);
	backdrop-filter: saturate(150%) blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	transition: box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}

.site-header.is-stuck .site-header__inner {
	background: rgba(12, 12, 14, 0.9);
	box-shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.7);
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-right: auto;
}

.site-logo-link {
	display: inline-flex;
	line-height: 0;
}

/* Figma 146:948 — nav lockup (149×33) with mountain “A” + vector tagline */
.site-logo-mark--nav {
	position: relative;
	width: 149px;
	height: 33px;
	flex-shrink: 0;
}

.site-logo-mark__a {
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 22px;
	overflow: hidden;
}

.site-logo-mark__a img {
	display: block;
	max-width: none;
}

.site-logo-mark--nav .site-logo-mark__a-inner {
	position: absolute;
	left: 50%;
	top: -434px;
	width: 876px;
	height: 876px;
	transform: translateX(-50%);
}

.site-logo-mark--footer .site-logo-mark__a img {
	position: absolute;
	left: 50%;
	top: 0.11%;
	width: 88.84%;
	height: 97.65%;
	transform: translateX(-50%);
}

.site-logo-mark__alpine,
.site-logo-mark__taxi {
	position: absolute;
	display: block;
	max-width: none;
}

.site-logo-mark--nav .site-logo-mark__alpine {
	left: 20.55px;
	top: 0.53px;
	width: 72.35px;
	height: 21.47px;
}

.site-logo-mark--nav .site-logo-mark__taxi {
	left: 96.9px;
	top: 0.53px;
	width: 46.67px;
	height: 21.47px;
}

.site-logo-mark__tagline {
	position: absolute;
	left: 19.28px;
	top: 23.63px;
	display: block;
	width: 129.57px;
	height: 8.95px;
	max-width: none;
}

/* Figma 146:832 — footer logo reveal (1440×200 clip, wordmark 1440×220.66) */
.site-logo-mark--footer {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.3;
}

.site-logo-mark--footer .site-logo-mark__a {
	left: -0.9%;
	top: 0;
	width: 13.93%;
	height: 100%;
}

.site-logo-mark--footer .site-logo-mark__alpine {
	left: 13.41%;
	top: 2.39%;
	width: 50.39%;
	height: 97.65%;
}

.site-logo-mark--footer .site-logo-mark__taxi {
	left: 66.59%;
	top: 2.39%;
	width: 32.51%;
	height: 97.65%;
}

.brand {
	display: inline-flex;
	align-items: baseline;
	gap: 0;
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1;
	color: var(--text);
}

.brand__main { font-weight: 600; }

.brand__alt {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	color: inherit;
}

.site-description {
	margin: 0;
	font-size: 0.85rem;
	color: var(--muted);
}

.custom-logo {
	max-height: 44px;
	width: auto;
}

.local-time {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 0.85rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 0.78rem;
	color: var(--muted);
	letter-spacing: 0.04em;
}

.local-time__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 0 rgba(255, 104, 41, 0.6);
	animation: at-pulse 2.4s infinite;
}

@keyframes at-pulse {
	0% { box-shadow: 0 0 0 0 rgba(255, 104, 41, 0.5); }
	70% { box-shadow: 0 0 0 7px rgba(255, 104, 41, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 104, 41, 0); }
}

.main-navigation {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.primary-menu a {
	position: relative;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--text);
	padding-block: 0.25rem;
}

.primary-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: var(--accent);
	transition: width 0.3s var(--ease);
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .is-scroll-active > a::after {
	width: 100%;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .is-scroll-active > a {
	color: var(--accent);
}

/* On the homepage, scroll spy drives the active state — not WP's current-menu-item. */
.home.has-scroll-spy .primary-menu .current-menu-item:not(.is-scroll-active) > a {
	color: var(--text);
}

.home.has-scroll-spy .primary-menu .current-menu-item:not(.is-scroll-active) > a::after {
	width: 0;
}

.site-header__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.8rem 1.35rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 600;
	font-size: 0.9rem;
	background: #ffffff;
	color: #0a0a0b;
	transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}

.site-header__cta svg { width: 13px; height: 13px; }

.site-header__cta:hover {
	background: var(--accent);
	color: #ffffff;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius);
	position: relative;
	cursor: pointer;
}

.menu-toggle__bar,
.menu-toggle__bar::before,
.menu-toggle__bar::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 20px;
	height: 2px;
	background: var(--text);
	transform: translateX(-50%);
	transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.menu-toggle__bar {
	top: 50%;
	transform: translate(-50%, -50%);
}

.menu-toggle__bar::before { top: -6px; }
.menu-toggle__bar::after { top: 6px; }

.menu-toggle.is-active .menu-toggle__bar { background: transparent; }
.menu-toggle.is-active .menu-toggle__bar::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.menu-toggle.is-active .menu-toggle__bar::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ------------------------------------------------------------------ *
 * Hero
 * ------------------------------------------------------------------ */
.at-hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: clamp(3rem, 7vw, 7rem);
	padding-top: clamp(8rem, 14vw, 14rem);
	padding-bottom: clamp(3rem, 6vw, 6rem);
	color: #fff;
	overflow: hidden;
}

.at-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	background: #111 center/cover no-repeat;
}

.at-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.at-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(11, 11, 12, 0.92) 100%);
}

.at-hero__top {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.at-hero__facts {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.fact {
	min-width: 180px;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.fact__label {
	display: block;
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	color: #cfcfcf;
	margin-bottom: 0.4rem;
}

.fact__value {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.at-hero__bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: clamp(2rem, 5vw, 5.5rem);
	flex-wrap: wrap;
}

.at-hero__headline {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	flex: 1 1 520px;
}

.at-hero__title {
	font-size: clamp(3rem, 9vw, 8rem);
	line-height: 1.02;
}

.at-hero__title .serif {
	display: block;
}

.at-hero__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Hero status card */
.status-card {
	width: 300px;
	max-width: 100%;
	background: #171717;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.status-card__badge {
	align-self: flex-start;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	padding: 0.25rem 0.65rem;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.03);
	border-radius: 5px;
	color: #fff;
}

.status-card__title {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.2;
}

.status-card__meta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: var(--muted);
}

.status-card__meta::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #43d17a;
}

/* ------------------------------------------------------------------ *
 * Service single — hero banner (Figma 96:818)
 * ------------------------------------------------------------------ */
.at-svc-hero {
	background: var(--bg);
	color: #fff;
	padding-top: clamp(5.25rem, 6.5vw, 6.5rem);
	padding-bottom: clamp(4rem, 8vw, 7.5rem);
}

.at-svc-hero__grid {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: clamp(2.5rem, 5vw, 5rem);
}

.at-svc-hero__content {
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 2.5vw, 2.5rem);
	flex: 1 1 28rem;
	max-width: 39rem;
}

.eyebrow--light {
	color: #fff;
}

.eyebrow--light::before {
	background: #fff;
}

.at-svc-hero__title {
	font-size: clamp(2.75rem, 7vw, 6.25rem);
	line-height: 1.05;
	font-weight: 500;
}

.at-svc-hero__title .serif {
	display: block;
}

.at-svc-hero__subtitle {
	font-size: clamp(1.1rem, 2vw, 1.75rem);
	color: #aeaeae;
	line-height: 1.3;
}

.at-svc-hero__desc {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #aeaeae;
	max-width: 36rem;
}

.at-svc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.btn--ghost-light {
	border-color: rgba(255, 255, 255, 0.85);
	color: #fff;
}

.btn--ghost-light:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

.at-svc-hero__media {
	position: relative;
	flex: 1 1 22rem;
	max-width: 39rem;
	aspect-ratio: 624 / 600;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.at-svc-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
	pointer-events: none;
}

.at-svc-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.single--service .at-svc-article {
	display: contents;
}

.single--destination .at-dest-article {
	display: contents;
}

/* ------------------------------------------------------------------ *
 * Destination single — MetroRide car-details banner
 * ------------------------------------------------------------------ */
.at-dest-banner {
	padding-top: clamp(5.25rem, 6.5vw, 6.5rem);
}

.at-dest-banner .eyebrow {
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.dest-stage {
	display: grid;
	grid-template-columns: minmax(0, 418fr) minmax(0, 840fr);
	align-items: stretch;
	gap: clamp(2rem, 4vw, 3rem);
}

.dest-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: clamp(2rem, 3vw, 2.5rem);
	min-height: 100%;
}

.dest-info__head {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.dest-info__index {
	font-size: 2rem;
	line-height: 1.3;
	color: #454545;
}

.dest-info__name {
	font-size: clamp(2rem, 2.8vw, 2.5rem);
	font-weight: 500;
	line-height: 1.15;
	color: #16171a;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.dest-info__name .serif {
	color: var(--accent);
}

.dest-info__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.dest-showcase {
	display: flex;
	gap: 32px;
	align-items: stretch;
	justify-content: center;
	min-width: 0;
}

.dest-stage__main {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	max-width: 579px;
	aspect-ratio: 579 / 676;
	border-radius: 8px;
	overflow: hidden;
	background: var(--surface-2);
}

.dest-stage__main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dest-stage__alt {
	flex: 0 0 229px;
	max-width: 229px;
	border-radius: 4px;
	overflow: hidden;
	min-height: 0;
}

.dest-stage__alt img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dest-banner__desc {
	margin-top: clamp(2.5rem, 5vw, 4rem);
	max-width: 52rem;
	font-size: clamp(1.1rem, 1.8vw, 1.35rem);
	line-height: 1.65;
	color: var(--muted);
}

/* ------------------------------------------------------------------ *
 * Destination single — SEO content + local FAQ
 * ------------------------------------------------------------------ */
.at-dest-seo {
	border-top: 1px solid var(--line);
}

.at-dest-seo .container {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: clamp(2.5rem, 5vw, 4.5rem);
	align-items: start;
}

.at-dest-seo__title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.15;
	font-weight: 500;
	margin-bottom: 1.5rem;
}

.at-dest-seo__text {
	color: var(--muted);
	line-height: 1.7;
	font-size: 1.05rem;
	margin-bottom: 1.25rem;
}

.at-dest-seo__list {
	margin: 1.75rem 0 2rem;
	padding-left: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	color: var(--text);
}

.at-dest-seo__list li {
	line-height: 1.55;
}

.at-dest-seo__list li::marker {
	color: var(--accent);
}

.at-dest-seo__links {
	font-size: 0.95rem;
	color: var(--muted);
	line-height: 1.6;
}

.at-dest-seo__links a {
	color: var(--text);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.at-dest-seo__links a:hover {
	color: var(--accent);
}

.at-dest-seo__faq-title {
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	font-weight: 600;
	margin-bottom: 1.25rem;
}

/* ------------------------------------------------------------------ *
 * Destination single — similar routes
 * ------------------------------------------------------------------ */
.at-dest-similar {
	border-top: 1px solid var(--line);
}

.at-dest-similar__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.at-dest-similar__title {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 600;
}

.dest-similar-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.dest-similar-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	transition: transform 0.35s var(--ease);
}

.dest-similar-card:hover {
	transform: translateY(-4px);
}

.dest-similar-card__media {
	aspect-ratio: 16 / 11;
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 1.25rem;
}

.dest-similar-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s var(--ease);
}

.dest-similar-card:hover .dest-similar-card__media img {
	transform: scale(1.04);
}

.dest-similar-card__title {
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.3;
}

.dest-similar-card__meta {
	margin-top: 0.35rem;
	font-size: 0.92rem;
	color: var(--muted);
}

/* ------------------------------------------------------------------ *
 * Service single — info sidebar split
 * ------------------------------------------------------------------ */
.at-svc-info__grid {
	display: flex;
	align-items: flex-start;
	gap: clamp(2.5rem, 5vw, 4rem);
}

.at-svc-info__sidebar {
	flex: 0 0 16rem;
	max-width: 25rem;
}

.at-svc-info__sidebar-head {
	margin-bottom: 3rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--line);
}

.at-svc-info__sidebar-title {
	font-size: 2rem;
	line-height: 1.1;
}

.at-svc-specs {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 0;
}

.at-svc-specs__item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.at-svc-specs__item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.at-svc-specs dt {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}

.at-svc-specs dd {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text);
}

.at-svc-info__main {
	flex: 1 1 32rem;
	display: flex;
	flex-direction: column;
	gap: clamp(2.5rem, 4vw, 4rem);
}

.at-svc-info__lead {
	font-size: clamp(1.35rem, 2.5vw, 2rem);
	line-height: 1.6;
	font-weight: 500;
	max-width: 52rem;
}

.at-svc-info__gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.at-svc-info__photo {
	aspect-ratio: 1 / 1;
	border-radius: var(--radius);
	overflow: hidden;
}

.at-svc-info__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ------------------------------------------------------------------ *
 * Service single — airport cards
 * ------------------------------------------------------------------ */
.at-svc-airports .section-head {
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.at-svc-airports .section-head__title {
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	margin-top: 1.5rem;
}

.svc-airport-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.svc-airport-card {
	display: flex;
	flex-direction: column;
	background: #000;
	border: 1px solid #000;
	border-radius: var(--radius-lg);
	overflow: hidden;
	color: #fff;
	text-decoration: none;
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

a.svc-airport-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.45);
}

.svc-airport-card__visual {
	position: relative;
	height: clamp(14rem, 24vw, 21.875rem);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.svc-airport-card__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
}

.svc-airport-card__visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.svc-airport-card__code {
	position: relative;
	z-index: 1;
	font-size: clamp(4rem, 8vw, 7.5rem);
	font-weight: 600;
	opacity: 0.2;
	line-height: 1;
}

.svc-airport-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 2rem;
	padding: 2rem;
	background: #fff;
	color: #000;
	min-height: 15rem;
}

.svc-airport-card__head h3 {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.1;
}

.svc-airport-card__head p {
	margin-top: 0.5rem;
	color: var(--muted);
	font-size: 1rem;
}

.svc-airport-card__meta {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.svc-airport-card__duration {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
}

.svc-airport-card__duration .serif {
	font-size: 2.5rem;
	line-height: 1;
}

.svc-airport-card__duration span:last-child {
	font-size: 0.85rem;
	text-transform: uppercase;
	color: var(--muted);
}

.svc-airport-card__highlight {
	color: var(--accent);
	font-weight: 500;
	font-size: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.at-svc-cta {
	background: #f5f5f5;
}

/* ------------------------------------------------------------------ *
 * Section header (eyebrow + big title + optional description)
 * ------------------------------------------------------------------ */
.section-head {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head--split {
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 2rem;
}

.section-head__title {
	font-size: clamp(2rem, 4.5vw, 4rem);
	line-height: 1.05;
	max-width: 14ch;
}

.section-head__desc {
	max-width: 42ch;
	color: var(--muted);
	font-size: clamp(1rem, 1.3vw, 1.15rem);
}

/* ------------------------------------------------------------------ *
 * About
 * ------------------------------------------------------------------ */
.at-about__intro {
	display: grid;
	grid-template-columns: 0.8fr 2fr;
	gap: clamp(1.5rem, 4vw, 4rem);
	align-items: start;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.at-about__text {
	font-size: clamp(1.5rem, 2.6vw, 2.4rem);
	line-height: 1.3;
	font-weight: 400;
	letter-spacing: -0.01em;
}

.at-about__text .serif {
	color: var(--accent);
}

/* MetroRide-style gallery: large visuals filling a tall canvas. */
.at-about__gallery {
	display: grid;
	grid-template-columns: 1fr 0.82fr;
	gap: clamp(1rem, 2vw, 1.5rem);
	height: clamp(540px, 80vh, 880px);
}

.at-about__col {
	display: grid;
	gap: clamp(1rem, 2vw, 1.5rem);
	min-height: 0;
}

.at-about__col:first-child { grid-template-rows: 1.3fr 1fr; }

.at-about__gallery .media { height: 100%; }

.media {
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	position: relative;
}

.media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.media--tall { aspect-ratio: 3 / 4; }
.media--wide { aspect-ratio: 16 / 11; }
.media--square { aspect-ratio: 1 / 1; }

/* Parallax: oversize the image so the scrubbed translate never reveals gaps. */
[data-parallax] { overflow: hidden; }
[data-parallax] img {
	position: absolute;
	top: -14%;
	left: 0;
	width: 100%;
	height: 128%;
	object-fit: cover;
	will-change: transform;
}

/* ------------------------------------------------------------------ *
 * Stats
 * ------------------------------------------------------------------ */
/* Figma "Numbers Section" (109:1353): sticky title + a centered vertical
   stack of tall colour-blocked cards (orange / white / black / orange). */
.at-stats {
	background: #f5f5f5;
}

.at-stats__head {
	position: sticky;
	top: 96px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	text-align: center;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.at-stats__title {
	font-size: clamp(2.75rem, 6vw, 5rem);
	line-height: 1.05;
}

.at-stats__title .serif { color: var(--accent); }

.at-stats__stack {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(1.5rem, 3vw, 2rem);
}

.stat-card {
	width: 100%;
	max-width: 490px;
	border-radius: var(--radius);
	padding: 2rem;
	min-height: 380px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 3rem;
}

.stat-card--orange { background: var(--accent); color: #ffffff; }
.stat-card--white { background: #ffffff; color: #0a0a0b; }
.stat-card--black { background: #0a0a0b; color: #ffffff; }

.stat-card__head {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.stat-card__num {
	font-family: var(--font-sans);
	font-weight: 500;
	font-size: clamp(3.25rem, 6vw, 5rem);
	line-height: 1;
	letter-spacing: -0.02em;
}

.stat-card__label {
	font-size: 1.4rem;
	font-weight: 400;
}

.stat-card__desc {
	color: inherit;
	opacity: 0.88;
	font-size: 0.95rem;
}

/* ------------------------------------------------------------------ *
 * Services
 * ------------------------------------------------------------------ */
/* MetroRide "Why choose us": split header + staggered white cards. */
.at-services__head {
	display: grid;
	grid-template-columns: 1.5fr 0.9fr;
	gap: clamp(2rem, 4vw, 4rem);
	align-items: end;
	margin-bottom: clamp(3rem, 6vw, 5rem);
}

.at-services__title {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	line-height: 1.04;
	margin-top: 1.25rem;
}

.at-services__lead {
	display: flex;
	gap: 0.9rem;
	max-width: 40ch;
}

.at-services__plus {
	font-size: 1.1rem;
	line-height: 1.5;
	color: var(--accent);
}

.at-services__lead p {
	color: var(--muted);
	font-size: 0.98rem;
	line-height: 1.6;
}

.svc-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(1rem, 1.8vw, 1.5rem);
	align-items: start;
}

.svc-card {
	background: #ffffff;
	color: #0a0a0b;
	border-radius: var(--radius-lg);
	padding: clamp(1.25rem, 1.8vw, 1.75rem);
	min-height: 340px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 2rem;
	transition: box-shadow 0.4s var(--ease);
	text-decoration: none;
}

a.svc-card { cursor: pointer; }

/* Base state is aligned (flat row). The descending "staircase" offset is
   applied + scrubbed back to 0 on scroll by initServicesStagger() in main.js,
   so the cards settle into alignment when the block is centred in the viewport.
   GSAP owns `transform`, so hover lift uses shadow instead of translate. */
.svc-card:hover { box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.55); }

.svc-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

/* 84px box with 4 corner crop marks + a circular icon centred inside. */
.svc-card__icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 84px;
	height: 84px;
	flex-shrink: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84'%3E%3Cg stroke='%230a0a0b' stroke-width='1' opacity='0.35'%3E%3Cpath d='M2 7h10M7 2v10'/%3E%3Cpath d='M72 7h10M77 2v10'/%3E%3Cpath d='M2 77h10M7 72v10'/%3E%3Cpath d='M72 77h10M77 72v10'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 84px 84px;
}

.svc-card__icon svg {
	width: 50px;
	height: 50px;
	padding: 12px;
	color: #0a0a0b;
	border: 1px solid rgba(10, 10, 11, 0.18);
	border-radius: 50%;
}

.svc-card__num {
	font-size: clamp(2.25rem, 3vw, 3rem);
	color: var(--accent);
	line-height: 1;
}

.svc-card__kicker {
	display: block;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	color: #6b6b70;
	margin-bottom: 0.5rem;
}

.svc-card__title {
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.32;
	color: #0a0a0b;
}

/* ------------------------------------------------------------------ *
 * Fleet
 * ------------------------------------------------------------------ */
.at-fleet { border-block: 1px solid var(--line); }

.at-fleet__head { text-align: center; }

.at-fleet__head .eyebrow { justify-content: center; }

.at-fleet__title {
	font-size: clamp(2.5rem, 6vw, 5.5rem);
	line-height: 1;
	margin-top: 1rem;
}

.at-fleet__title .serif { color: var(--accent); }

/* MetroRide "Featured model" (Figma 96:441): left info+specs (418px) and a
   right block with a dominant portrait image (579×676) + a 229px thumbnail
   column. The stage is pinned and the vehicle advances on scroll. */
.at-fleet__body { margin-top: clamp(2.5rem, 5vw, 4rem); }

.fleet-stage {
	display: grid;
	grid-template-columns: minmax(0, 418fr) minmax(0, 579px) 229px;
	align-items: stretch;
	gap: 32px;
}

/* Left: stacked info panels that cross-fade between vehicles. */
.fleet-info {
	display: grid;
	grid-column: 1;
	grid-row: 1;
	position: relative;
}

.fleet-info__panel {
	grid-area: 1 / 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 2rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s var(--ease);
}

.fleet-info__panel.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.fleet-info__panel:not(.is-active) {
	pointer-events: none;
}

.fleet-info__head { display: flex; flex-direction: column; gap: 1rem; }

.fleet-info__index {
	font-size: 2rem;
	line-height: 1.3;
	color: #454545;
}

.fleet-info__name {
	font-size: clamp(2rem, 2.8vw, 2.5rem);
	font-weight: 500;
	line-height: 1.1;
	color: #16171a;
}

.fleet-specs-card {
	width: 250px;
	max-width: 100%;
	background: #f5f5f5;
	border-radius: 10px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.fleet-spec__label {
	font-size: 1rem;
	line-height: 1.5;
	color: #454545;
	margin-bottom: 1rem;
}

.fleet-spec__value {
	font-size: clamp(2rem, 2.8vw, 2.5rem);
	font-weight: 500;
	line-height: 1.1;
	color: #16171a;
}

.fleet-spec {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}

.fleet-stage__main {
	position: relative;
	grid-column: 2;
	grid-row: 1;
	min-width: 0;
	max-width: 579px;
	width: 100%;
	aspect-ratio: 579 / 676;
	border-radius: 8px;
	overflow: hidden;
	background: var(--surface-2);
	justify-self: center;
}

.fleet-main__item {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.6s var(--ease);
}

.fleet-main__item.is-active { opacity: 1; }

.fleet-main__item img { width: 100%; height: 100%; object-fit: cover; display: block; }

.fleet-thumbs {
	grid-column: 3;
	grid-row: 1;
	flex: 0 0 229px;
	max-width: 229px;
	width: 229px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.fleet-thumb {
	position: relative;
	flex: 1 1 0;
	min-height: 0;
	padding: 0;
	background: none;
	border: 1px solid transparent;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	transition: border-color 0.3s var(--ease);
}

.fleet-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.fleet-thumb.is-active { border-color: var(--accent); }

/* ------------------------------------------------------------------ *
 * Contact / booking page (MetroRide contact reference)
 * ------------------------------------------------------------------ */
.at-contact-banner {
	padding: clamp(7.5rem, 18vw, 10rem) 0 clamp(3rem, 8vw, 5rem);
	background: var(--bg);
	border-bottom: 1px solid var(--line);
}

.at-contact-banner__inner {
	display: flex;
	flex-direction: column;
	gap: clamp(2rem, 5vw, 3.5rem);
}

.at-contact-banner__title {
	font-size: clamp(2.75rem, 8vw, 6.25rem);
	line-height: 1.02;
	font-weight: 500;
	max-width: 14ch;
}

.at-contact-banner__title .serif {
	display: block;
	color: var(--accent);
}

.at-contact-banner__channels {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 3vw, 2rem);
	padding-top: 0.5rem;
	border-top: 1px solid var(--line);
}

.contact-channel {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	padding-top: clamp(1rem, 2.5vw, 1.5rem);
	color: inherit;
	text-decoration: none;
	transition: color 0.25s var(--ease);
}

a.contact-channel:hover {
	color: var(--accent);
}

.contact-channel__label {
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted-2);
	font-weight: 500;
}

.contact-channel__value {
	font-size: clamp(1.1rem, 2.2vw, 1.65rem);
	line-height: 1.25;
	font-weight: 500;
	word-break: break-word;
}

.contact-channel__value--sub {
	font-size: clamp(0.95rem, 1.8vw, 1.15rem);
	font-weight: 400;
	color: var(--muted);
	line-height: 1.45;
}

.contact-channel--whatsapp {
	position: relative;
	padding: clamp(1rem, 2.5vw, 1.35rem);
	margin-top: clamp(0.5rem, 1.5vw, 0.85rem);
	border-radius: var(--radius-lg);
	background: linear-gradient(145deg, rgba(37, 211, 102, 0.16), rgba(37, 211, 102, 0.06));
	border: 1px solid rgba(37, 211, 102, 0.35);
	gap: 0.5rem;
	transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}

a.contact-channel--whatsapp:hover {
	color: inherit;
	transform: translateY(-3px);
	border-color: rgba(37, 211, 102, 0.65);
	background: linear-gradient(145deg, rgba(37, 211, 102, 0.22), rgba(37, 211, 102, 0.1));
}

.contact-channel--whatsapp .contact-channel__label {
	color: #6dffb0;
}

.contact-channel__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #25d366;
	color: #ffffff;
	margin-bottom: 0.35rem;
}

.contact-channel__cta {
	margin-top: 0.35rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: #6dffb0;
}

.at-booking__wa-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1.75rem;
	padding: 1rem 1.15rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.14), rgba(37, 211, 102, 0.05));
	border: 1px solid rgba(37, 211, 102, 0.35);
	color: inherit;
	text-decoration: none;
	transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.at-booking__wa-card:hover {
	transform: translateY(-2px);
	border-color: rgba(37, 211, 102, 0.55);
	box-shadow: 0 12px 32px -18px rgba(37, 211, 102, 0.55);
}

.at-booking__wa-card-icon {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #25d366;
	color: #ffffff;
}

.at-booking__wa-card-body {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	min-width: 0;
}

.at-booking__wa-card-title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--text);
}

.at-booking__wa-card-text {
	font-size: 0.88rem;
	line-height: 1.45;
	color: var(--muted);
}

.at-booking__wa-card-arrow {
	flex: none;
	font-size: 1.25rem;
	font-weight: 600;
	color: #25d366;
}

/* Sticky WhatsApp — site-wide */
.wa-sticky {
	position: fixed;
	right: max(1rem, env(safe-area-inset-right, 0px));
	bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
	z-index: 58;
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.85rem 1.1rem 0.85rem 0.85rem;
	border-radius: 999px;
	background: #25d366;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 14px 40px -12px rgba(37, 211, 102, 0.75);
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.wa-sticky:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 18px 44px -10px rgba(37, 211, 102, 0.85);
	color: #ffffff;
}

.wa-sticky__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	flex: none;
}

.wa-sticky__label {
	padding-right: 0.15rem;
	white-space: nowrap;
}

html.nav-open .wa-sticky {
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
}

.site-header__wa {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 0.85rem;
	border-radius: 999px;
	background: rgba(37, 211, 102, 0.14);
	border: 1px solid rgba(37, 211, 102, 0.45);
	color: #6dffb0;
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
	flex: none;
}

.site-header__wa:hover {
	background: rgba(37, 211, 102, 0.24);
	border-color: rgba(37, 211, 102, 0.7);
	color: #9dffc8;
	transform: translateY(-1px);
}

.site-header__wa-icon {
	display: block;
}

.at-booking {
	padding-block: var(--section-pad);
	scroll-margin-top: 6rem;
}

.at-booking__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 6vw, 5rem);
	align-items: start;
}

.at-booking__form-title {
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	line-height: 1.08;
	font-weight: 500;
}

.at-booking__form-desc {
	margin-top: 1.25rem;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--muted);
	max-width: 34ch;
}

.at-booking__form-col {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.booking-form {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Filled pill inputs — reference-inspired, scoped to reservation form */
.at-booking .booking-form__section {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.at-booking .booking-form__section + .booking-form__section {
	margin-top: 1.75rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--line);
}

.at-booking .booking-form__section-title {
	margin: 0 0 0.15rem;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
	color: var(--text);
}

.at-booking .booking-form__required-note {
	margin: 0.25rem 0 0;
	font-size: 0.82rem;
	color: var(--muted-2);
}

.at-booking .form-field__req {
	color: var(--accent);
	margin-left: 0.15rem;
}

.at-booking .form-field__hint {
	margin: 0.35rem 0 0;
	padding-inline: 0.15rem;
	font-size: 0.8rem;
	line-height: 1.45;
	color: var(--muted-2);
	font-weight: 400;
}

.at-booking .booking-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	padding: 0;
	border: none;
}

.at-booking .form-field {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	min-width: 0;
	padding: 0;
	border: none;
}

.at-booking .booking-form__row .form-field {
	padding: 0;
	border: none;
}

.at-booking .form-field label,
.at-booking .form-field--radio legend {
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	color: var(--text);
}

.at-booking .form-field input:not([type="radio"]),
.at-booking .form-field textarea {
	width: 100%;
	font: inherit;
	font-size: 1rem;
	font-weight: 500;
	padding: 0.95rem 1.25rem;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--surface-2);
	color: var(--text);
	transition:
		background 0.2s var(--ease),
		border-color 0.2s var(--ease),
		box-shadow 0.2s var(--ease);
}

.at-booking .form-field textarea {
	border-radius: 1.25rem;
	min-height: 8.5rem;
	resize: vertical;
	line-height: 1.55;
	padding-block: 1rem;
}

.at-booking .form-field input[type="date"],
.at-booking .form-field input[type="time"] {
	min-height: 3.25rem;
}

.at-booking .form-field input:focus,
.at-booking .form-field textarea:focus {
	outline: none;
	background: var(--surface-3);
	border-color: rgba(0, 0, 0, 0.06);
	box-shadow: 0 0 0 3px rgba(255, 104, 41, 0.14);
}

.at-booking .form-field input:user-invalid:not(:placeholder-shown),
.at-booking .form-field textarea:user-invalid:not(:placeholder-shown) {
	border-color: rgba(220, 53, 69, 0.35);
	box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.at-booking .form-field input::placeholder,
.at-booking .form-field textarea::placeholder {
	color: var(--muted-2);
	font-weight: 400;
}

.at-booking .form-field--flight {
	padding: 0;
	border: none;
}

.at-booking .form-field--radio {
	padding: 0;
	border: none;
	margin: 0;
	min-width: 0;
}

.at-booking .form-field--radio legend {
	padding: 0;
	margin-bottom: 0;
}

.at-booking .radio-options {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	padding: 0.35rem;
	background: var(--surface-2);
	border-radius: 999px;
	width: fit-content;
	max-width: 100%;
}

.at-booking .radio-option {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.at-booking .radio-option input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.at-booking .radio-option__label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 4.75rem;
	padding: 0.72rem 1.4rem;
	border: none;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--muted);
	background: transparent;
	transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.at-booking .radio-option input:focus-visible + .radio-option__label {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

.at-booking .radio-option input:checked + .radio-option__label {
	background: var(--text);
	color: #fff;
}

.at-booking .booking-form__submit {
	margin-top: 1.25rem;
	align-self: flex-start;
	width: auto;
	min-width: 12rem;
	padding: 0.95rem 1.65rem;
	border: none;
	border-radius: 0.7rem;
	background: var(--text);
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
}

.at-booking .booking-form__submit:hover {
	background: #1f1f22;
	color: #fff;
}

.booking-form__section {
	padding-top: 0.25rem;
}

.booking-form__section + .booking-form__section {
	margin-top: 0.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
}

.booking-form__section-title {
	margin: 0 0 0.35rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
}

.booking-form__required-note {
	margin: 0.5rem 0 0;
	font-size: 0.82rem;
	color: var(--muted-2);
}

.form-field__req {
	color: var(--accent);
	margin-left: 0.15rem;
}

.form-field__hint {
	margin: 0.15rem 0 0;
	font-size: 0.82rem;
	line-height: 1.45;
	color: var(--muted-2);
	font-weight: 400;
}

.booking-form__row--triple {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	min-width: 0;
	padding-block: 1.15rem;
	border-bottom: 1px solid var(--line);
}

.booking-form__row .form-field {
	border-bottom: none;
	padding-block: 0;
}

.booking-form__row {
	padding-block: 1.15rem;
	border-bottom: 1px solid var(--line);
}

.form-field label {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted-2);
}

.form-field input,
.form-field textarea {
	width: 100%;
	font: inherit;
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 500;
	padding: 0.35rem 0 0.5rem;
	border: none;
	border-radius: 0;
	background: transparent;
	color: var(--text);
	transition: color 0.2s var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
	outline: none;
	color: var(--text);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
	color: var(--muted-2);
	font-weight: 400;
}

.form-field textarea {
	resize: vertical;
	min-height: 88px;
	line-height: 1.5;
}

.form-field--hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	padding: 0;
	border: none;
}

.form-field--flight {
	padding-block: 1.15rem;
	border-bottom: 1px solid var(--line);
}

.form-field--radio {
	padding-block: 1.15rem;
	border: 0;
	border-bottom: 1px solid var(--line);
	margin: 0;
	min-width: 0;
}

.form-field--radio legend {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted-2);
	padding: 0;
	margin-bottom: 0.85rem;
}

.radio-options {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.radio-option {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.radio-option input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.radio-option__label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 5.5rem;
	padding: 0.65rem 1.25rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--muted);
	background: transparent;
	transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}

.radio-option input:focus-visible + .radio-option__label {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

.radio-option input:checked + .radio-option__label {
	border-color: var(--accent);
	color: var(--on-accent);
	background: var(--accent);
}

.booking-form__submit {
	margin-top: 1.75rem;
	width: 100%;
	padding-block: 1.15rem;
	font-size: 1rem;
}

/* Legacy booking submit — overridden in .at-booking above */

.booking-notice {
	padding: 1rem 1.15rem;
	border-radius: var(--radius);
	border: 1px solid var(--line);
}

.booking-notice--success {
	background: rgba(34, 160, 107, 0.08);
	border-color: rgba(34, 160, 107, 0.25);
}

.booking-notice--error {
	background: rgba(220, 53, 69, 0.08);
	border-color: rgba(220, 53, 69, 0.25);
}

/* ------------------------------------------------------------------ *
 * Coverage / itineraries (NEW)
 * ------------------------------------------------------------------ */
.at-coverage { background: var(--bg-alt); }

.coverage-list {
	border-top: 1px solid var(--line);
}

.coverage-row {
	display: grid;
	grid-template-columns: 0.5fr 2fr 1fr auto;
	align-items: center;
	gap: 1.5rem;
	padding-block: 1.75rem;
	border-bottom: 1px solid var(--line);
	transition: padding-left 0.35s var(--ease), background-color 0.35s var(--ease);
	position: relative;
}

.coverage-row:hover {
	padding-left: 1.25rem;
	background: linear-gradient(90deg, rgba(255, 104, 41, 0.06), transparent 60%);
}

.coverage-row__index {
	font-size: 0.85rem;
	color: var(--muted-2);
	letter-spacing: 0.1em;
}

.coverage-row__route {
	font-family: var(--font-serif);
	font-size: clamp(1.5rem, 2.6vw, 2.4rem);
	line-height: 1.1;
	word-break: break-word;
}

.coverage-row__route-link {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s var(--ease);
}

.coverage-row__route-link:hover {
	color: var(--accent);
}

.coverage-row__meta {
	color: var(--muted);
	font-size: 0.95rem;
}

.coverage-row__cta {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.7rem 1.25rem;
	border-radius: 999px;
	border: 1px solid var(--line-strong);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text);
	white-space: nowrap;
	transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.coverage-row__cta svg { width: 15px; height: 15px; }

.coverage-row__cta:hover,
.coverage-row:hover .coverage-row__cta {
	background: var(--accent);
	border-color: var(--accent);
	color: #ffffff;
}

/* Floating destination preview that follows the cursor on row hover. */
.coverage-preview {
	position: fixed;
	top: 0;
	left: 0;
	width: clamp(220px, 22vw, 320px);
	aspect-ratio: 4 / 3;
	border-radius: 14px;
	overflow: hidden;
	pointer-events: none;
	opacity: 0;
	z-index: 70;
	box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.5);
	transition: opacity 0.35s var(--ease);
	will-change: transform;
}

.coverage-preview.is-visible { opacity: 1; }

.coverage-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ------------------------------------------------------------------ *
 * Process / how it works (NEW)
 * ------------------------------------------------------------------ */
.at-process { background: var(--bg-alt); border-block: 1px solid var(--line); }

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	counter-reset: step;
}

.process-step {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-top: 2rem;
	border-top: 2px solid var(--line);
	position: relative;
}

.process-step::before {
	counter-increment: step;
	content: "0" counter(step);
	font-family: var(--font-serif);
	font-size: 2.5rem;
	color: var(--accent);
	line-height: 1;
}

.process-step__title { font-size: 1.3rem; font-weight: 600; }
.process-step__desc { color: var(--muted); font-size: 0.95rem; }

/* ------------------------------------------------------------------ *
 * Testimonials
 * ------------------------------------------------------------------ */
.at-testimonials__head { text-align: center; }
.at-testimonials__head .eyebrow { justify-content: center; }

.at-testimonials__title {
	font-size: clamp(2.5rem, 6vw, 5.5rem);
	line-height: 1;
	margin-top: 1rem;
}

.at-testimonials__title .serif { color: inherit; }

.testi-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: clamp(3rem, 6vw, 4rem);
}

/* Figma: tilted cards (black / white / black) fanned out and overlapping. */
.testi-card {
	width: 350px;
	min-height: 460px;
	flex: 0 0 auto;
	padding: 3rem;
	border: 1px solid #1b1b1b;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 2.5rem;
	transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.testi-card:nth-child(1) { background: #000000; color: #ffffff; transform: rotate(-6deg); margin-right: -20px; }
.testi-card:nth-child(2) { background: #f5f5f5; color: #000000; transform: rotate(6deg) translateY(-12px); margin-right: -20px; z-index: 2; }
.testi-card:nth-child(3) { background: #000000; color: #ffffff; transform: rotate(-6deg); }

.testi-card:hover { transform: rotate(0deg) translateY(-10px) scale(1.03); z-index: 5; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.45); }

.testi-card__author { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.testi-card__name { font-size: 1.25rem; font-weight: 600; }
.testi-card__city { color: #aeaeae; font-size: 0.875rem; }

.testi-card__quote {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 2rem;
	line-height: 1.15;
	margin: 0;
}

.testi-card__check {
	width: 48px;
	height: 48px;
	border-radius: 100px;
	display: grid;
	place-items: center;
	align-self: flex-start;
	color: #ffffff;
}

.testi-card:nth-child(1) .testi-card__check,
.testi-card:nth-child(3) .testi-card__check { background: var(--accent); }
.testi-card:nth-child(2) .testi-card__check { background: #000000; }

.testi-card__check svg { width: 24px; height: 24px; }

/* ------------------------------------------------------------------ *
 * FAQ
 * ------------------------------------------------------------------ */
/* MetroRide-style mixed heading: sans question + serif-italic follow-up. */
.at-faq__title {
	max-width: 30ch;
}

.at-faq__title .serif {
	color: inherit;
}

.at-faq__body {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.at-faq__media { aspect-ratio: 4 / 5; }

.faq-list { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-item__q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-block: 1.5rem;
	background: none;
	border: none;
	color: var(--text);
	font: inherit;
	font-size: clamp(1.1rem, 1.6vw, 1.35rem);
	font-weight: 500;
	text-align: left;
	cursor: pointer;
}

.faq-item__icon {
	flex: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid var(--line-strong);
	display: grid;
	place-items: center;
	position: relative;
	transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.faq-item__icon::before,
.faq-item__icon::after {
	content: "";
	position: absolute;
	background: currentColor;
}

.faq-item__icon::before { width: 12px; height: 2px; }
.faq-item__icon::after { width: 2px; height: 12px; transition: transform 0.3s var(--ease); }

.faq-item.is-open .faq-item__icon {
	background: var(--accent);
	color: var(--on-accent);
	border-color: var(--accent);
}

.faq-item.is-open .faq-item__icon::after { transform: scaleY(0); }

.faq-item__a {
	overflow: hidden;
	height: 0;
	transition: height 0.4s var(--ease);
}

.faq-item__a-inner {
	padding-bottom: 1.5rem;
	color: var(--muted);
	max-width: 60ch;
}

/* ------------------------------------------------------------------ *
 * Blog — homepage showcase (1 featured left + 3 horizontal cards right)
 * ------------------------------------------------------------------ */
.at-blog__showcase {
	--blog-side-thumb: 108px;
	--blog-side-pad: 0.7rem;
	--blog-side-gap: 0.85rem;
	--blog-side-row: calc(var(--blog-side-thumb) + 2 * var(--blog-side-pad));
	--blog-stack-h: calc(3 * var(--blog-side-row) + 2 * var(--blog-side-gap));

	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(1.25rem, 2.5vw, 2rem);
	align-items: start;
}

.at-blog__featured {
	height: var(--blog-stack-h);
}

.at-blog__stack {
	display: flex;
	flex-direction: column;
	gap: var(--blog-side-gap);
	min-height: var(--blog-stack-h);
}

.at-blog__featured .blog-feature {
	display: flex;
	flex-direction: column;
	height: 100%;
	grid-template-columns: none;
	padding: clamp(0.75rem, 1.5vw, 0.9rem);
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	background: var(--surface);
	transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.at-blog__featured .blog-feature:hover {
	border-color: var(--line-strong);
	transform: translateY(-2px);
}

.at-blog__featured .blog-feature__media {
	flex: 1 1 auto;
	width: 100%;
	min-height: 0;
	aspect-ratio: unset;
	max-height: none;
	border-radius: calc(var(--radius-xl) - 6px);
	overflow: hidden;
}

.at-blog__featured .blog-feature__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.at-blog__featured .blog-feature--no-media {
	min-height: auto;
}

.at-blog__featured .blog-feature__body {
	flex: 0 0 auto;
	padding: clamp(0.65rem, 1.1vw, 0.85rem) clamp(0.35rem, 1vw, 0.5rem) 0.1rem;
}

.at-blog__featured .blog-feature__title {
	font-size: clamp(1.15rem, 1.85vw, 1.5rem);
	line-height: 1.22;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.at-blog__featured .blog-feature__more {
	font-size: 0.88rem;
	margin-top: 0.25rem;
}

/* Horizontal side cards — right column */
.blog-side {
	display: grid;
	grid-template-columns: var(--blog-side-thumb) minmax(0, 1fr);
	gap: 1rem;
	align-items: center;
	height: var(--blog-side-row);
	padding: var(--blog-side-pad);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--surface);
	transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.blog-side:hover {
	border-color: var(--line-strong);
	transform: translateY(-2px);
}

.blog-side__media,
.blog-side__placeholder {
	width: var(--blog-side-thumb);
	height: var(--blog-side-thumb);
	border-radius: calc(var(--radius-lg) - 4px);
	overflow: hidden;
	flex: none;
}

.blog-side__media {
	background: var(--surface-2);
	border: 1px solid var(--line);
}

.blog-side__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.blog-side__placeholder {
	display: grid;
	place-items: center;
	padding: 0.5rem;
	text-align: center;
	background: linear-gradient(145deg, var(--surface-2), var(--surface));
	border: 1px solid var(--line);
}

.blog-side__placeholder span {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--accent);
	line-height: 1.3;
}

.blog-side__body {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	min-width: 0;
}

.blog-side__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.75rem;
	font-size: 0.72rem;
	color: var(--muted-2);
}

.blog-side__badge {
	color: var(--accent);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.blog-side__title {
	font-size: clamp(0.95rem, 1.35vw, 1.1rem);
	font-weight: 600;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Legacy 3-column grid (unused on home, kept for compatibility) */
.at-blog__grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr 1fr;
	gap: 1.5rem;
	align-items: start;
}

.blog-card { display: flex; flex-direction: column; gap: 1.25rem; }

.blog-card__media {
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--surface-2);
	border: 1px solid var(--line);
}

.blog-card--feature .blog-card__media { aspect-ratio: 1 / 1; }

.blog-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.05); }

.blog-card__meta {
	display: flex;
	justify-content: space-between;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.blog-card__badge { color: var(--accent); }

.blog-card__title {
	font-size: clamp(1.2rem, 1.8vw, 1.6rem);
	font-weight: 600;
	line-height: 1.25;
}

.blog-card--feature .blog-card__title { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }

/* Text-only blog cards (no featured image) */
.blog-card--no-media,
.blog-compact--no-media {
	padding: clamp(1.1rem, 2vw, 1.35rem);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--surface);
	transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.blog-card--no-media:hover,
.blog-compact--no-media:hover {
	border-color: var(--line-strong);
	transform: translateY(-2px);
}

.blog-card__excerpt,
.blog-compact__excerpt,
.blog-feature__excerpt {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--muted);
}

.blog-card--no-media .blog-card__title,
.blog-compact--no-media .blog-compact__title {
	margin-top: 0.15rem;
}

.at-blog__grid--text-only {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
}

.at-blog__grid--text-only .blog-card--feature .blog-card__title {
	font-size: clamp(1.2rem, 1.8vw, 1.6rem);
}

.at-blog-archive--text-only .at-blog-archive__latest {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.at-blog-archive__latest--mixed {
	align-items: stretch;
}

.blog-compact--no-media {
	min-height: 100%;
}

.blog-feature--no-media {
	grid-template-columns: 1fr;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
}

.blog-feature--no-media .blog-feature__body {
	padding: 0;
}

.blog-feature--no-media .blog-feature__title {
	max-width: 24ch;
}

.blog-feature--no-media .blog-feature__excerpt {
	max-width: 58ch;
	font-size: clamp(1rem, 1.6vw, 1.15rem);
}

/* Blog archive page — Framer-style layout (full dark page) */
.archive--blog.site-main {
	padding-block: 0;
	background: #0a0a0b;
}

body.is-blog-archive {
	background: #0a0a0b;
}

.at-blog-archive-hero {
	padding-block: clamp(7rem, 12vw, 10rem) clamp(1.5rem, 3vw, 2.5rem);
}

.at-blog-archive-hero__title {
	margin-top: clamp(2rem, 4vw, 3rem);
	font-size: clamp(2.75rem, 6vw, 4.5rem);
	font-weight: 500;
	line-height: 1.02;
	letter-spacing: -0.02em;
}

.at-blog-archive-hero__desc {
	margin-top: 1rem;
	max-width: 46ch;
	font-size: clamp(1.05rem, 1.8vw, 1.25rem);
	line-height: 1.6;
	color: var(--muted);
}

.at-blog-archive__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	max-width: 100%;
}

.at-blog-archive__filter {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	font-size: 0.92rem;
	font-weight: 500;
	color: var(--muted);
	transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.at-blog-archive__filter:hover { color: var(--text); }

.at-blog-archive__filter.is-active {
	background: var(--surface-2);
	color: var(--text);
}

.at-blog-archive { padding-top: clamp(2rem, 4vw, 3rem); padding-bottom: clamp(4rem, 8vw, 6rem); }

.at-blog-archive__section {
	margin-top: clamp(3rem, 6vw, 5rem);
}

.at-blog-archive__empty {
	margin: 0;
	padding: 3rem 0 4rem;
	max-width: 36rem;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--muted);
}

.at-blog-archive__heading {
	font-size: clamp(1.35rem, 2.2vw, 1.75rem);
	font-weight: 600;
	margin-bottom: 1.5rem;
	letter-spacing: -0.01em;
}

.at-blog-archive__featured { margin-bottom: clamp(3rem, 6vw, 5rem); }

/* Featured hero card */
.blog-feature {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: stretch;
	padding: clamp(1rem, 2vw, 1.25rem);
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	background: var(--surface);
	transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.blog-feature:hover {
	border-color: var(--line-strong);
	transform: translateY(-2px);
}

.blog-feature__media {
	border-radius: calc(var(--radius-xl) - 6px);
	overflow: hidden;
	aspect-ratio: 16 / 11;
	background: var(--surface-2);
}

.blog-feature__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s var(--ease);
}

.blog-feature:hover .blog-feature__media img { transform: scale(1.04); }

.blog-feature__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
	padding: clamp(0.5rem, 2vw, 1.5rem) clamp(0.5rem, 2vw, 1rem);
}

.blog-feature__meta,
.blog-compact__meta,
.blog-row__meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.82rem;
	color: var(--muted-2);
}

.blog-feature__badge,
.blog-compact__badge,
.blog-row__badge {
	color: var(--accent);
	font-weight: 600;
}

.blog-feature__title {
	font-size: clamp(1.75rem, 3vw, 2.75rem);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.02em;
}

.blog-feature__more {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.5rem;
	font-weight: 600;
	color: var(--text);
}

.blog-feature__more svg { width: 14px; height: 14px; }

/* Latest compact grid */
.at-blog-archive__latest {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.blog-compact {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.blog-compact__media {
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--surface-2);
	border: 1px solid var(--line);
}

.blog-compact__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s var(--ease);
}

.blog-compact:hover .blog-compact__media img { transform: scale(1.05); }

.blog-compact__title {
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	font-weight: 600;
	line-height: 1.3;
}

/* More posts — Framer-style two-column list */
.at-blog-archive__more {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: clamp(2rem, 5vw, 4rem);
	border-top: 1px solid var(--line);
}

.blog-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1.5rem;
	align-items: center;
	padding: 1.35rem 0;
	border-bottom: 1px solid var(--line);
	transition: opacity 0.25s var(--ease);
}

.blog-row:hover { opacity: 0.72; }

.blog-row__title {
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	font-weight: 600;
	line-height: 1.3;
}

.blog-row__meta {
	justify-content: flex-end;
	white-space: nowrap;
}

/* Load more */
.at-blog-archive__load {
	display: flex;
	justify-content: center;
	margin-top: clamp(3rem, 6vw, 4.5rem);
}

.at-blog-archive__load a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 2rem;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	font-weight: 600;
	color: var(--text);
	transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.at-blog-archive__load a:hover {
	background: var(--surface-2);
	border-color: var(--text);
	transform: translateY(-1px);
}

/* Blog single article — Framer-style layout (full dark page) */
.single--blog.site-main {
	padding-block: 0;
	background: #0a0a0b;
}

body.is-blog-single {
	background: #0a0a0b;
}

.at-blog-single-hero {
	padding-block: clamp(7rem, 12vw, 10rem) clamp(2rem, 4vw, 3rem);
}

.at-blog-single-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
	font-size: 0.92rem;
	font-weight: 500;
	color: var(--muted);
	transition: color 0.25s var(--ease);
}

.at-blog-single-hero__back svg {
	width: 16px;
	height: 16px;
}

.at-blog-single-hero__back:hover { color: var(--text); }

.at-blog-single-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
	font-size: 0.82rem;
	color: var(--muted-2);
}

.at-blog-single-hero__badge {
	color: var(--accent);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.at-blog-single-hero__title {
	max-width: 18ch;
	font-size: clamp(2.5rem, 6vw, 4.25rem);
	font-weight: 500;
	line-height: 1.04;
	letter-spacing: -0.03em;
}

.at-blog-single-hero--no-media .at-blog-single-hero__title {
	max-width: 20ch;
	font-size: clamp(2.75rem, 6.5vw, 4.75rem);
}

.at-blog-single-hero__byline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.25rem;
	margin-top: 1.5rem;
	font-size: 0.92rem;
	color: var(--muted);
}

.at-blog-single-hero__author { font-weight: 500; color: var(--text); }

.at-blog-single-hero__lede {
	margin: 1.75rem 0 0;
	max-width: 58ch;
	font-size: clamp(1.05rem, 1.8vw, 1.3rem);
	line-height: 1.65;
	color: var(--muted);
}

.at-blog-single-hero__media {
	margin-top: clamp(2rem, 4vw, 3rem);
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--surface-2);
}

.at-blog-single-hero__media img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.at-blog-single-hero--short .at-blog-single-hero__title {
	font-size: clamp(2rem, 4vw, 3rem);
}

.at-blog-single-hero--short .at-blog-single-hero__byline {
	gap: 1rem;
}

.at-block-image {
	margin: 2rem 0;
	border-radius: var(--radius);
	overflow: hidden;
}

.at-block-image img {
	display: block;
	width: 100%;
	height: auto;
}

.at-block-image figcaption {
	margin-top: 0.65rem;
	font-size: 0.9rem;
	color: var(--muted);
}

.at-block-quote {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem;
	border-left: 3px solid var(--accent);
	background: var(--surface);
	border-radius: 0 var(--radius) var(--radius) 0;
}

.at-block-quote cite {
	display: block;
	margin-top: 0.75rem;
	font-size: 0.9rem;
	color: var(--muted);
	font-style: normal;
}

.at-block-callout {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
}

.at-block-callout__title {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--text);
}

.at-block-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin: 2rem 0;
}

@media (max-width: 640px) {
	.at-block-columns { grid-template-columns: 1fr; }
}

.at-blog-single-content {
	padding-bottom: clamp(3rem, 6vw, 5rem);
}

.at-blog-single-article {
	max-width: 720px;
	margin-inline: auto;
}

.at-blog-single-article__body {
	font-size: clamp(1.05rem, 1.6vw, 1.15rem);
	line-height: 1.75;
	color: #e7e7e9;
}

.at-blog-single-article__body :is(h2, h3, h4) {
	margin-top: 2.75rem;
	margin-bottom: 1rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--text);
}

.at-blog-single-article__body h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.at-blog-single-article__body h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.at-blog-single-article__body p { margin-bottom: 1.35rem; }
.at-blog-single-article__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 0.15em; }
.at-blog-single-article__body :is(ul, ol) { margin: 0 0 1.35rem 1.25rem; }
.at-blog-single-article__body li { margin-bottom: 0.5rem; }
.at-blog-single-article__body blockquote {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem;
	border-left: 3px solid var(--accent);
	background: var(--surface);
	border-radius: 0 var(--radius) var(--radius) 0;
	color: var(--muted);
	font-style: italic;
}

.at-blog-single-article__body strong {
	color: var(--text);
	font-weight: 600;
}

.at-blog-single-article__body hr {
	margin: 2.5rem 0;
	border: 0;
	border-top: 1px solid var(--line);
}

.at-blog-callout {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--surface);
}

.at-blog-callout p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.at-blog-callout strong {
	color: var(--accent);
}

.at-blog-single-article__body :is(ul, ol) li::marker {
	color: var(--accent);
}

.at-blog-single-article__footer {
	margin-top: 3rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.at-blog-single-article__terms {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.75rem;
	font-size: 0.9rem;
	color: var(--muted);
}

.at-blog-single-article__terms-label {
	font-weight: 600;
	color: var(--text);
}

.at-blog-single-article__terms a {
	color: var(--accent);
}

.at-blog-single-related {
	padding-top: clamp(2rem, 4vw, 3rem);
	padding-bottom: clamp(4rem, 8vw, 6rem);
}

.at-blog-single-related__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 2rem;
	margin-bottom: 1.5rem;
}

.at-blog-single-related__title {
	font-size: clamp(1.35rem, 2.2vw, 1.75rem);
	font-weight: 600;
	letter-spacing: -0.01em;
}

.at-blog-single-related__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: clamp(2rem, 5vw, 4rem);
	border-top: 1px solid var(--line);
}

/* ------------------------------------------------------------------ *
 * CTA band (Figma 96:746): black rounded card on light grey, phone
 * mockups bleeding off the right edge, green WhatsApp button.
 * ------------------------------------------------------------------ */
.at-cta { background: #f5f5f5; }

.at-cta__card {
	position: relative;
	overflow: hidden;
	background: #000000;
	color: #ffffff;
	border-radius: 20px;
	padding: clamp(2.5rem, 5vw, 5rem);
	min-height: 420px;
	display: flex;
	align-items: center;
}

.at-cta__content {
	position: relative;
	z-index: 3;
	max-width: 700px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.5rem;
}

.at-cta__title {
	font-size: clamp(2.25rem, 5.5vw, 5rem);
	line-height: 1.1;
}

.at-cta__title .serif { font-style: italic; }

.at-cta__text {
	font-size: 1rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
	max-width: 46ch;
}

.at-cta__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem 1rem;
}

.at-cta__whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.5rem;
	background: #25d366;
	color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 10px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.25s var(--ease), filter 0.25s var(--ease);
}

.at-cta__whatsapp:hover { transform: translateY(-2px); filter: brightness(1.05); }
.at-cta__whatsapp svg { width: 24px; height: 24px; color: #ffffff; }

.at-cta__whatsapp-label { display: flex; flex-direction: column; gap: 2px; line-height: 1.1; text-align: left; }
.at-cta__whatsapp-label small { font-size: 0.72rem; font-weight: 600; opacity: 0.9; }
.at-cta__whatsapp-label strong { font-size: 1rem; font-weight: 700; }

.at-cta__phones {
	position: absolute;
	inset: 0 0 0 auto;
	width: 600px;
	max-width: 52%;
	z-index: 1;
	pointer-events: none;
}

.at-cta__phone {
	position: absolute;
	width: 300px;
	aspect-ratio: 300 / 600;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.at-cta__phone img { width: 100%; height: 100%; object-fit: cover; display: block; }

.at-cta__phone--1 { left: 100px; top: 100px; }
.at-cta__phone--2 { left: 250px; top: 150px; z-index: 2; }

/* ------------------------------------------------------------------ *
 * Footer
 * ------------------------------------------------------------------ */
.site-footer {
	position: relative;
	color: #ffffff;
	padding-top: clamp(4rem, 9vw, 8rem);
	overflow: hidden;
	isolation: isolate;
}

.site-footer.is-photo {
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.7)), var(--footer-bg);
	background-size: cover;
	background-position: center;
}

.site-footer .container { position: relative; z-index: 1; }

.site-footer__top {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(2.5rem, 6vw, 6rem);
	align-items: start;
	padding-bottom: clamp(3rem, 6vw, 5rem);
}

.footer-newsletter {
	max-width: 480px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2.5rem;
}

.footer-newsletter__title {
	font-family: var(--font-sans);
	font-size: 2rem;
	font-weight: 600;
	margin: 0;
}

.footer-form {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 80px;
	padding: 0.85rem 0.85rem 0.85rem 2rem;
}

.footer-form input {
	flex: 1;
	min-width: 0;
	background: none;
	border: none;
	color: #ffffff;
	font: inherit;
}

.footer-form input::placeholder { color: #aeaeae; }
.footer-form input:focus { outline: none; }

.footer-form button {
	flex: none;
	width: 44px;
	height: 32px;
	border-radius: 100px;
	border: none;
	background: var(--accent);
	color: #ffffff;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: filter 0.2s var(--ease);
}

.footer-form button:hover { filter: brightness(1.08); }
.footer-form button svg { width: 18px; height: 18px; }

.footer-contact {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	color: #ffffff;
	font-size: clamp(1.4rem, 3vw, 2.5rem);
	font-weight: 500;
}

.footer-contact__icon {
	flex: none;
	width: 32px;
	height: 32px;
	border-radius: 100px;
	background: var(--accent);
	color: #ffffff;
	display: grid;
	place-items: center;
}

.footer-links {
	display: flex;
	gap: clamp(2rem, 5vw, 5rem);
	justify-content: flex-end;
}

.footer-col__title {
	font-size: 1.05rem;
	color: #aeaeae;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 2rem;
}

.footer-menu { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-menu a { color: #ffffff; font-size: 1.15rem; transition: color 0.2s var(--ease); }
.footer-menu a:hover { color: var(--accent); }

/* Figma 146:832 — full-viewport orange band clipping the giant wordmark. */
.footer-marquee {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	height: clamp(100px, 13.89vw, 200px);
	overflow: hidden;
	background: var(--accent);
	position: relative;
}

.footer-wordmark {
	position: absolute;
	left: 0;
	width: 100vw;
	top: 11.95%;
	aspect-ratio: 1440 / 220.66;
	pointer-events: none;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-block: 1.5rem 2rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem 2rem;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
}

.site-footer__bottom-start {
	display: grid;
	gap: 0.35rem;
}

.footer-legal__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-legal__list a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
}

.footer-legal__list a:hover {
	color: #fff;
}

.site-footer__top--no-nl { grid-template-columns: 1fr; }
.site-footer__top--no-nl .footer-links { justify-content: flex-start; }

/* ------------------------------------------------------------------ *
 * Blog / archive / single (interior pages)
 * ------------------------------------------------------------------ */
.site-content { min-height: 50vh; }

.site-main {
	padding-block: clamp(7rem, 12vw, 10rem) clamp(3rem, 7vw, 6rem);
}

/* CPT singles ship their own hero — no generic main padding. */
.single--service.site-main,
.single--destination.site-main {
	padding-block: 0;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
}

.post-card {
	display: flex;
	flex-direction: column;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.post-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.post-card__thumb img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.post-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }

.entry-title { font-size: 1.4rem; font-weight: 600; }
.entry-meta { font-size: 0.8rem; color: var(--muted); display: flex; gap: 0.75rem; }
.post-card__more { margin-top: auto; color: var(--accent); font-weight: 600; }

.single-entry, .page-entry { max-width: 760px; margin-inline: auto; }
.legal-doc.page-entry { max-width: none; margin-inline: 0; }
.single-entry .entry-title, .page-entry .entry-title { font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: 1rem; }
.single-entry--no-media .entry-title { font-size: clamp(2.25rem, 5.5vw, 3.75rem); line-height: 1.08; letter-spacing: -0.02em; }
.entry-eyebrow { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.82rem; color: var(--muted-2); }
.entry-eyebrow__badge { color: var(--accent); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.entry-lede { margin: 0 0 2rem; max-width: 58ch; font-size: clamp(1.05rem, 1.8vw, 1.25rem); line-height: 1.65; color: var(--muted); }
.entry-featured-image { margin: 2rem 0; }
.entry-featured-image img { border-radius: var(--radius-lg); width: 100%; }
.entry-content { font-size: 1.1rem; color: #e7e7e9; }
.entry-content :is(h2, h3) { margin-top: 2.5rem; margin-bottom: 1rem; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content a { color: var(--accent); }
.entry-footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--muted); }

/* ------------------------------------------------------------------ *
 * Legal pages (Framer-inspired layout)
 * ------------------------------------------------------------------ */
.site-main--legal {
	padding-block: clamp(7rem, 12vw, 10rem) clamp(3rem, 7vw, 6rem);
}

.legal-doc__layout {
	display: grid;
	grid-template-columns: minmax(170px, 210px) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: start;
}

.legal-doc__sidebar {
	position: sticky;
	top: 7rem;
}

.legal-doc__sidebar-label {
	margin: 0 0 1rem;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.42);
}

.legal-doc__nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.legal-doc__nav a {
	font-size: 0.92rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.58);
	text-decoration: none;
	transition: color 0.25s var(--ease);
}

.legal-doc__nav a:hover,
.legal-doc__nav .is-current a {
	color: #fff;
}

.legal-doc__title {
	margin: 0 0 1rem;
	font-size: clamp(2.35rem, 5.5vw, 3.75rem);
	line-height: 1.04;
	letter-spacing: -0.02em;
}

.legal-doc__meta {
	margin: 0 0 2.25rem;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.48);
}

.legal-doc__intro {
	max-width: 52rem;
	margin-bottom: 2.5rem;
	font-size: 1.05rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.78);
}

.legal-doc__content {
	max-width: 52rem;
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.72);
}

.legal-doc__content :is(h2, h3) {
	margin-top: 2.75rem;
	margin-bottom: 1rem;
	font-size: 1.28rem;
	font-weight: 600;
	color: #fff;
}

.legal-doc__content p,
.legal-doc__content li {
	margin-bottom: 1rem;
}

.legal-doc__content ul,
.legal-doc__content ol {
	margin: 0 0 1.25rem 1.25rem;
	padding: 0;
}

.legal-doc__content a {
	color: var(--accent);
}

.legal-doc__content strong {
	color: rgba(255, 255, 255, 0.92);
	font-weight: 600;
}

@media (max-width: 900px) {
	.legal-doc__layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.legal-doc__sidebar {
		position: static;
		padding-bottom: 1.5rem;
		border-bottom: 1px solid var(--line);
	}

	.legal-doc__nav {
		display: flex;
		flex-wrap: wrap;
		gap: 0.5rem 1.25rem;
	}
}

.page-header { margin-bottom: 3rem; }
.page-title { font-size: clamp(2rem, 5vw, 3.5rem); }

.pagination { margin-top: 3rem; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 44px; height: 44px; padding: 0 0.6rem;
	border: 1px solid var(--line); border-radius: var(--radius); color: var(--text);
}
.pagination .page-numbers.current { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

.widget { margin-bottom: 2rem; }
.widget-title { font-size: 1.1rem; margin-bottom: 0.75rem; }

.search-form { display: flex; gap: 0.5rem; max-width: 520px; }
.search-field {
	flex: 1; font: inherit; padding: 0.75rem 1rem;
	border: 1px solid var(--line); border-radius: var(--radius);
	background: var(--surface); color: var(--text);
}

/* ------------------------------------------------------------------ *
 * Scroll-reveal animation base states
 * ------------------------------------------------------------------ */
.has-js [data-animate] {
	opacity: 0;
	transform: translateY(28px);
	will-change: transform, opacity;
}

.has-js [data-animate="fade"] { transform: none; }

/* ------------------------------------------------------------------ *
 * Responsive
 * ------------------------------------------------------------------ */
@media (max-width: 1080px) {
	.section-head--split {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.25rem;
	}

	.section-head__title { max-width: none; }

	.at-svc-hero__grid { flex-direction: column; align-items: stretch; }
	.at-svc-hero__media { max-width: none; width: 100%; }
	.at-svc-info__grid { flex-direction: column; }
	.at-svc-info__sidebar { flex: none; max-width: none; width: 100%; }
	.svc-airport-grid { grid-template-columns: 1fr; }
	.dest-similar-grid { grid-template-columns: 1fr; }
	.dest-stage { grid-template-columns: 1fr; }
	.dest-showcase { flex-direction: column; }
	.dest-stage__main { max-width: none; aspect-ratio: 4 / 3; }
	.dest-stage__alt { flex: 0 0 auto; max-width: none; width: 100%; aspect-ratio: 16 / 11; }
	.at-dest-seo .container { grid-template-columns: 1fr; }
	.at-about__intro { grid-template-columns: 1fr; }
	.at-services__head { grid-template-columns: 1fr; align-items: start; }
	.svc-cards,
	.process-grid { grid-template-columns: repeat(2, 1fr); }
	.at-faq__body { grid-template-columns: 1fr; }
	.at-blog__showcase {
		--blog-side-thumb: 88px;
		grid-template-columns: 1fr;
	}

	.at-blog__featured { height: auto; }
	.at-blog__stack { min-height: 0; }
	.at-blog__featured .blog-feature { height: auto; }
	.at-blog__featured .blog-feature__media { flex: none; aspect-ratio: 16 / 11; }
	.at-blog__featured .blog-feature__media img { height: auto; aspect-ratio: 16 / 11; }
	.at-blog__featured .blog-feature__title { -webkit-line-clamp: unset; display: block; }
	.blog-side { height: auto; min-height: var(--blog-side-row); }
	.at-blog__grid { grid-template-columns: 1fr 1fr; }
	.at-blog__grid--text-only { grid-template-columns: 1fr 1fr; }
	.at-blog-archive__latest { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.at-blog-archive--text-only .at-blog-archive__latest { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.blog-feature { grid-template-columns: 1fr; }
	.testi-grid { flex-wrap: wrap; gap: 1.5rem; }
	.testi-card,
	.testi-card:nth-child(1),
	.testi-card:nth-child(2),
	.testi-card:nth-child(3) { transform: none; margin-right: 0; width: min(350px, 100%); min-height: 0; }
	.testi-card:hover { transform: translateY(-6px) scale(1.02); }
	.site-footer__top { grid-template-columns: 1fr 1fr; }
	.at-cta__phones { transform: scale(0.7); transform-origin: bottom right; }
}

@media (max-width: 860px) {
	.menu-toggle { display: inline-flex; order: 3; }
	.local-time { display: none; }

	.site-header {
		padding-top: max(clamp(0.85rem, 1.6vw, 1.4rem), env(safe-area-inset-top, 0px));
	}

	.site-header__inner {
		padding: 0.5rem 0.65rem 0.5rem 1rem;
		gap: 0.75rem;
	}

	.site-logo-mark--nav {
		width: 124px;
		height: 28px;
		transform: scale(0.848);
		transform-origin: left center;
	}

	.brand { font-size: 1.3rem; }

	.main-navigation {
		position: fixed;
		inset: 92px 0 auto 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: rgba(12, 12, 14, 0.96);
		backdrop-filter: saturate(150%) blur(16px);
		border-block: 1px solid var(--line);
		padding: 1rem var(--gutter) calc(2rem + env(safe-area-inset-bottom, 0px));
		clip-path: inset(0 0 100% 0);
		transition: clip-path 0.4s var(--ease);
		max-height: calc(100dvh - 88px);
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
	}

	.main-navigation.is-open { clip-path: inset(0 0 0 0); }

	.primary-menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
	.primary-menu li { border-bottom: 1px solid var(--line); }
	.primary-menu a { display: block; padding-block: 1rem; font-size: 1.1rem; }
	.site-header__cta {
		display: inline-flex;
		margin-top: 1.25rem;
		width: 100%;
		justify-content: center;
	}

	.fleet-stage {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.fleet-stage__main {
		order: 1;
		grid-column: auto;
		grid-row: auto;
		width: 100%;
		max-width: none;
		margin-inline: 0;
		aspect-ratio: 16 / 10;
		max-height: min(52vw, 240px);
		border-radius: var(--radius-lg);
		justify-self: stretch;
	}

	.fleet-info {
		order: 2;
		grid-column: auto;
		grid-row: auto;
	}

	.fleet-info__panel {
		gap: 0.85rem;
		justify-content: flex-start;
	}

	.fleet-info__head {
		flex-direction: row;
		align-items: baseline;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 0.25rem 1rem;
	}

	.fleet-info__index { font-size: 0.95rem; }

	.fleet-info__name { font-size: 1.25rem; }

	.fleet-specs-card {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		flex-direction: unset;
		gap: 0.75rem 0.85rem;
		padding: 1rem 1.15rem;
	}

	.fleet-spec { gap: 0.2rem; }

	.fleet-spec__label {
		font-size: 0.72rem;
		margin-bottom: 0;
		line-height: 1.3;
	}

	.fleet-spec__value {
		font-size: 0.95rem;
		line-height: 1.2;
	}

	.fleet-thumbs {
		order: 3;
		grid-column: auto;
		grid-row: auto;
		flex-direction: row;
		flex: none;
		max-width: none;
		width: 100%;
		gap: 0.65rem;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 0.15rem;
	}

	.fleet-thumbs::-webkit-scrollbar { display: none; }

	.fleet-thumb {
		flex: 0 0 calc((100% - 1.3rem) / 3);
		min-width: 96px;
		min-height: 0;
		aspect-ratio: 4 / 3;
		scroll-snap-align: center;
		border-radius: var(--radius);
	}

	.at-faq__media {
		width: 100%;
		max-width: none;
		margin-inline: 0;
		aspect-ratio: 16 / 9;
		max-height: 180px;
		border-radius: var(--radius-lg);
	}

	.at-faq__media img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.at-faq__title { max-width: none; }
}

@media (max-width: 720px) {
	.at-svc-info__gallery { grid-template-columns: 1fr; }
	.svc-cards,
	.process-grid { grid-template-columns: 1fr; }
	.at-blog__showcase { --blog-side-thumb: 76px; }

	.at-hero {
		min-height: auto;
		padding-top: clamp(6.5rem, 18vw, 8.5rem);
	}

	.at-hero__title { font-size: clamp(2.35rem, 11vw, 3.5rem); }

	.at-hero__facts { gap: 1rem; }

	.fact {
		min-width: 0;
		flex: 1 1 calc(50% - 0.5rem);
	}

	.at-hero__actions .btn { flex: 1 1 auto; }

	.at-stats__head {
		position: static;
		top: auto;
	}

	.stat-card {
		min-height: 260px;
		padding: 1.5rem;
		gap: 2rem;
	}

	.at-svc-hero__title { font-size: clamp(2rem, 9vw, 3.25rem); }

	.at-svc-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.at-svc-hero__actions .btn { width: 100%; }

	.dest-info__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.dest-info__actions .btn { width: 100%; }

	.fleet-specs-card {
		gap: 0.65rem 0.75rem;
		padding: 0.85rem 1rem;
	}

	.fleet-spec__value { font-size: 0.9rem; }

	.at-dest-similar__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.blog-side { grid-template-columns: var(--blog-side-thumb) minmax(0, 1fr); gap: 0.85rem; }
	.at-blog__grid { grid-template-columns: 1fr; }
	.at-blog__grid--text-only { grid-template-columns: 1fr; }
	.at-blog-archive__latest { grid-template-columns: 1fr; }
	.at-blog-archive--text-only .at-blog-archive__latest { grid-template-columns: 1fr; }
	.at-blog-archive__more { grid-template-columns: 1fr; column-gap: 0; }
	.at-blog-single-related__grid { grid-template-columns: 1fr; column-gap: 0; }
	.blog-row { grid-template-columns: 1fr; gap: 0.5rem; }
	.blog-row__meta { justify-content: flex-start; }
	.svc-card { min-height: 0; }

	.at-hero__bottom { flex-direction: column; align-items: stretch; }
	.status-card { width: 100%; }
	.at-about__gallery { grid-template-columns: 1fr; height: auto; }
	.at-about__col:first-child { grid-template-rows: none; }
	.at-about__gallery .media { height: auto; aspect-ratio: 4 / 3; }
	.coverage-row {
		grid-template-columns: 1fr auto;
		grid-template-areas: "route cta" "meta cta";
		gap: 0.5rem 1rem;
		padding-block: 1.25rem;
	}

	.coverage-row:hover { padding-left: 0.5rem; }

	.coverage-row__route {
		font-size: clamp(1.05rem, 4.5vw, 1.35rem);
		line-height: 1.2;
	}
	.coverage-row__index { display: none; }
	.coverage-row__route { grid-area: route; }
	.coverage-row__meta { grid-area: meta; }
	.coverage-row__cta {
		grid-area: cta;
		align-self: center;
		padding: 0.6rem 0.9rem;
		font-size: 0.82rem;
	}

	.coverage-row__cta svg { width: 13px; height: 13px; }

	.testi-card,
	.testi-card:nth-child(1),
	.testi-card:nth-child(2),
	.testi-card:nth-child(3) {
		width: 100%;
		max-width: none;
	}

	.at-blog-single-hero__title {
		max-width: none;
		font-size: clamp(1.85rem, 8vw, 2.75rem);
	}

	.at-blog-archive-hero__title { font-size: clamp(2rem, 9vw, 3rem); }

	.footer-form { padding: 0.75rem 0.75rem 0.75rem 1.25rem; }

	.footer-links {
		flex-direction: column;
		gap: 2rem;
		justify-content: flex-start;
	}

	.footer-contact {
		font-size: clamp(1.15rem, 5vw, 1.5rem);
		flex-wrap: wrap;
	}

	.site-footer__top { grid-template-columns: 1fr; }
	.footer-links { justify-content: flex-start; }
	.section-head--split { align-items: flex-start; gap: 1rem; }

	.at-cta__card { flex-direction: column; align-items: flex-start; min-height: 0; }
	.at-cta__phones {
		position: relative;
		inset: auto;
		width: 100%;
		max-width: none;
		height: 280px;
		margin-top: 2rem;
		transform: none;
	}
	.at-cta__phone { width: 130px; }
	.at-cta__phone--1 { left: 50%; top: 10px; transform: translateX(-105%); }
	.at-cta__phone--2 { left: 50%; top: 40px; transform: translateX(5%); }

	.footer-marquee {
		height: clamp(100px, 13.89vw, 200px);
	}

	.at-faq__media { max-height: 150px; }
}

@media (max-width: 480px) {
	.fact { flex: 1 1 100%; }

	.at-hero__actions { flex-direction: column; width: 100%; }

	.at-hero__actions .btn { width: 100%; }

	.coverage-row {
		grid-template-columns: 1fr;
		grid-template-areas: "route" "meta" "cta";
		gap: 0.65rem;
	}

	.coverage-row__cta {
		justify-self: stretch;
		justify-content: center;
		width: 100%;
	}

	.footer-form {
		flex-wrap: wrap;
		border-radius: var(--radius-lg);
		padding: 1rem;
	}

	.footer-form button {
		width: 100%;
		height: 44px;
		border-radius: var(--radius);
	}

	.footer-marquee {
		height: clamp(100px, 13.89vw, 200px);
	}

	.at-faq__media {
		max-height: 130px;
	}

	.fleet-thumb {
		flex: 0 0 28%;
		min-width: 84px;
	}

	.at-contact-banner__channels {
		grid-template-columns: 1fr;
	}

	.at-booking__grid { grid-template-columns: 1fr; }

	.at-booking .booking-form__row,
	.booking-form__row,
	.booking-form__row--triple {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.at-booking .booking-form__row .form-field,
	.booking-form__row .form-field {
		padding-block: 0;
		border-bottom: none;
	}

	.at-booking .booking-form__row,
	.booking-form__row {
		padding-block: 0;
		border-bottom: none;
	}

	.at-booking .booking-form__submit,
	.booking-form__submit {
		width: 100%;
		align-self: stretch;
	}

	.at-cta__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.at-cta__whatsapp { width: 100%; justify-content: center; }

	.site-header__wa-text { display: none; }

	.site-header__wa {
		order: 2;
		padding: 0.5rem;
	}

	.wa-sticky__label { display: none; }

	.wa-sticky {
		padding: 0.85rem;
		border-radius: 50%;
	}
}

/* ------------------------------------------------------------------ *
 * 404 — MetroRide-inspired
 * ------------------------------------------------------------------ */
.at-404 {
	min-height: calc(100vh - 6rem);
	display: flex;
	flex-direction: column;
}

.at-404__panel {
	flex: 1;
	display: flex;
	align-items: center;
	background: var(--bg);
	border-bottom: 1px solid var(--line);
	padding: clamp(6rem, 14vw, 9rem) 0 clamp(4rem, 10vw, 6.5rem);
	position: relative;
	overflow: hidden;
}

.at-404__inner {
	position: relative;
	z-index: 1;
	width: 100%;
}

.at-404__code {
	position: absolute;
	inset: auto 0 5%;
	margin: 0;
	pointer-events: none;
	font-size: clamp(8rem, 28vw, 18rem);
	font-weight: 600;
	line-height: 0.85;
	letter-spacing: -0.06em;
	color: rgba(255, 255, 255, 0.04);
	text-align: center;
	user-select: none;
}

.at-404__content {
	position: relative;
	max-width: 42rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.at-404__title {
	margin: 0.35rem 0 0;
	font-size: clamp(2.4rem, 6.5vw, 4.5rem);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.at-404__title .serif {
	display: block;
	color: var(--accent);
}

.at-404__text {
	margin: 0.25rem 0 0;
	max-width: 38ch;
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	line-height: 1.6;
	color: var(--muted);
}

.at-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.25rem;
}

.at-404__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1.35rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
}

.at-404__links a {
	font-size: 0.92rem;
	font-weight: 500;
	color: var(--muted);
	transition: color 0.2s var(--ease);
}

.at-404__links a:hover {
	color: var(--accent);
}

@media (max-width: 640px) {
	.at-404__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.at-404__actions .btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
	.has-js [data-animate] { opacity: 1; transform: none; }
}
