:root {
	--cream: #f7f4ef;
	--paper: #faf7f1;
	--white: #ffffff;
	--navy: #112439;
	--navy-deep: #0a1826;
	--ink: #112439; /* text/ink = KATA-logo dark blue (was warm brown #211b19) */
	--terra: #af5038;
	--terra-dark: #8c4029;
	--gold: #ac7a27;
	--gold-light: #e7c17b;
	--gold-pale: #f0d59b;
	--muted: #91877f;
	--line: #eee5d8;
	--line-warm: #cfc2b2;
	--whatsapp: #25d366;
	--whatsapp-dark: #20bd5a;
	--shadow-soft: 0 18px 55px rgba(17, 36, 57, 0.14);

	/* ===== HEADER SIZING — tweak these by hand ===== */
	--logo-height: 55px; /* height of the logo image */
	--nav-height: 72px; /* height of the nav row (reference = 72px) */
	--topbar-height: 36px; /* top-bar band height (reference = 36px) */
	--hero-top-pad: 135px; /* gap from page top down to the hero text */
	--tb-cta-height: 56px; /* height of the "Quiero anotarme" button in the talk-bar */

	/* ===== CONTAINER WIDTH — controls lateral margins site-wide ===== */
	--container-max: 1360px; /* content column width (reference ≈ 1360px) */
	--container-pad: 24px; /* left/right gutter inside the column */

	/* ===== IMÁGENES DE PORTADA DE LOS VIAJES =====================
	   👉 PARA CAMBIAR UNA FOTO: reemplazá SOLO la URL de estas 4 líneas.
	   Podés pegar cualquier imagen de Unsplash con el formato:
	   url('https://images.unsplash.com/photo-XXXXXXXX?q=80&w=1200&auto=format&fit=crop')
	   La misma URL se usa en la tarjeta y en el modal del viaje. */
	--trip-img-diwali: url('https://images.unsplash.com/photo-1605292356183-a77d0a9c9d1d?q=80&w=1200&auto=format&fit=crop');
	--trip-img-holi: url('https://images.unsplash.com/photo-1603228254119-e6a4d095dc59?q=80&w=1200&auto=format&fit=crop');
	--trip-img-magica: url('https://images.unsplash.com/photo-1564507592333-c60657eea523?q=80&w=1200&auto=format&fit=crop');
	--trip-img-maharajas: url('https://images.unsplash.com/photo-1591946522651-90fbace43004?q=80&w=1200&auto=format&fit=crop');

	/* ===== FONTS ===== */
	--font-cera-pro: 'CeraPro'; /* loaded via @font-face below; needs files in assets/fonts/ */
}

/* CeraPro — drop the matching .woff2 files into assets/fonts/.
   Until they exist, text falls back to Avenir Next / Segoe UI (no visible change). */
@font-face {
	font-family: 'CeraPro';
	src: url('../fonts/CeraPro-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'CeraPro';
	src: url('../fonts/CeraPro-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'CeraPro';
	src: url('../fonts/CeraPro-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: var(
		--nav-height
	); /* match scrolled header height so no sliver shows */
}

body {
	font-family:
		var(--font-cera-pro), 'Avenir Next', Avenir, 'Segoe UI', sans-serif;
	background: var(--cream);
	color: var(--ink);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
a {
	text-decoration: none;
	color: inherit;
}
.wrap {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
}

/* ---------- SITE HEADER (transparent overlay on hero) ---------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	transition:
		background 0.3s ease,
		box-shadow 0.3s ease,
		backdrop-filter 0.3s ease;
}

/* ---------- TOP BAR ---------- */
.topbar {
	background: transparent;
	color: rgba(255, 255, 255, 0.7);
	font-family:
		var(--font-cera-pro), 'Avenir Next', Avenir, 'Segoe UI', sans-serif;
	height: var(--topbar-height);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	overflow: hidden;
	transition:
		height 0.3s ease,
		opacity 0.3s ease,
		border-color 0.3s ease;
}
.topbar .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding: 0 var(--container-pad);
	gap: 6px;
}
.topbar a {
	color: rgba(255, 255, 255, 0.7);
}
.topbar a:hover {
	color: var(--gold-light);
}
.topbar .tb-right {
	display: flex;
	gap: 22px;
}

/* ---------- NAV ---------- */
nav {
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	transition: border-color 0.3s ease;
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--nav-height);
	padding: 0 var(--container-pad);
	max-width: var(--container-max);
	margin: 0 auto;
}
.logo {
	font-family: 'Newsreader', serif;
	font-weight: 600;
	font-size: 1.4rem;
	letter-spacing: -0.01em;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	transition: color 0.3s ease;
}
.logo img {
	height: var(--logo-height);
	width: auto;
	display: block;
	flex-shrink: 0;
	filter: brightness(0) invert(1);
	transition: filter 0.3s ease;
}
.logo small {
	font-family:
		var(--font-cera-pro), 'Avenir Next', Avenir, 'Segoe UI', sans-serif;
	font-weight: 400;
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.58);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	display: block;
	line-height: 1;
	margin-top: 2px;
	transition: color 0.3s ease;
}
.nav-links {
	display: flex;
	gap: 32px;
	align-items: center;
}
.nav-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}
.nav-links a {
	font-weight: 600;
	font-size: 0.96rem;
	color: #fff;
	transition: color 0.3s ease;
}
.nav-links a:not(.btn):hover {
	color: var(--gold-light);
}

/* ---------- SCROLLED STATE (solid light bar) ---------- */
.site-header.scrolled {
	background: rgba(247, 244, 239, 0.92);
	backdrop-filter: blur(14px);
	box-shadow: 0 8px 30px rgba(17, 36, 57, 0.08);
}
.site-header.scrolled .topbar {
	height: 0;
	opacity: 0;
	border-color: transparent;
}
.site-header.scrolled nav {
	border-bottom-color: var(--line);
}
.site-header.scrolled .logo {
	color: var(--ink);
}
.site-header.scrolled .logo img {
	filter: none;
}
.site-header.scrolled .logo small {
	color: var(--muted);
}
.site-header.scrolled .nav-links a {
	color: var(--ink);
}
.site-header.scrolled .nav-links a:not(.btn):hover {
	color: var(--terra);
}
.site-header.scrolled .nav-actions .btn-outline-light {
	color: var(--navy);
	border-color: rgba(17, 36, 57, 0.35);
	background: transparent;
}
.site-header.scrolled .nav-actions .btn-outline-light:hover {
	background: var(--navy);
	color: #fff;
	border-color: var(--navy);
}

.btn {
	display: inline-block;
	font-family:
		var(--font-cera-pro), 'Avenir Next', Avenir, 'Segoe UI', sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	cursor: pointer;
	padding: 9px 30px;
	border-radius: 999px;
	border: 1.5px solid transparent;
	transition:
		background 0.18s ease,
		transform 0.18s ease,
		box-shadow 0.18s ease,
		color 0.18s ease,
		border-color 0.18s ease;
}
.btn-primary {
	background: var(--terra);
	color: #fff;
	box-shadow: 0 8px 20px rgba(175, 80, 56, 0.28);
}
.btn-primary:hover {
	background: var(--terra-dark);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(175, 80, 56, 0.34);
}
.btn-dark {
	background: var(--navy);
	color: var(--cream);
}
.btn-dark:hover {
	background: var(--navy-deep);
	transform: translateY(-2px);
}
.btn-outline {
	background: transparent;
	color: var(--navy);
	border-color: var(--navy);
}
.btn-outline:hover {
	background: var(--navy);
	color: var(--cream);
}
.btn-whatsapp {
	background: var(--whatsapp);
	color: #fff;
	box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
	background: var(--whatsapp-dark);
	transform: translateY(-2px);
}

/* ---------- HERO ---------- */
.hero {
	position: relative;
	overflow: hidden;
	color: #fff;
	padding: var(--hero-top-pad) 0 90px;
	background:
		linear-gradient(
			180deg,
			rgba(10, 24, 38, 0.5) 0%,
			rgba(10, 24, 38, 0.12) 14%,
			transparent 26%
		),
		linear-gradient(
			90deg,
			rgba(10, 24, 38, 0.92) 0%,
			rgba(10, 24, 38, 0.68) 38%,
			rgba(10, 24, 38, 0.22) 100%
		),
		linear-gradient(
			0deg,
			rgba(10, 24, 38, 0.72) 0%,
			rgba(10, 24, 38, 0.1) 40%,
			transparent 68%
		),
		url('https://images.unsplash.com/photo-1776342820281-467772a26bd4?q=80&w=1120&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D')
			center 45% / cover no-repeat;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
		rgba(255, 255, 255, 0.12) 1.5px,
		transparent 1.5px
	);
	background-size: 20px 20px;
	-webkit-mask-image: radial-gradient(
		ellipse at 85% 15%,
		black,
		transparent 60%
	);
	mask-image: radial-gradient(ellipse at 85% 15%, black, transparent 60%);
	pointer-events: none;
}
.hero .wrap {
	position: relative;
	z-index: 2;
}
.hero-copy {
	max-width: 42em;
}
.tag {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--gold-pale);
	margin-bottom: 24px;
}
.tag::before {
	content: '';
	width: 48px;
	height: 1px;
	background: currentColor;
	flex-shrink: 0;
}

.hero h1 {
	font-family:
		'Newsreader', 'Iowan Old Style', Baskerville, 'Times New Roman', serif;
	font-size: clamp(2.6rem, 5.6vw, 4.5rem);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: #fff;
}
.hero h1 em {
	font-style: italic;
	color: var(--gold-pale);
}
.hero p.lead {
	font-size: 1.125rem;
	line-height: 2rem;
	color: rgba(255, 255, 255, 0.8);
	margin: 28px 0 32px;
	max-width: 36rem;
}
.hero-cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}
.btn-outline-light {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
	background: #fff;
	color: var(--navy);
	border-color: #fff;
}
.hero-meta {
	margin-top: 30px;
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-meta div {
	font-size: 0.92rem;
}
.hero-meta strong {
	display: block;
	font-family: 'Newsreader', serif;
	font-size: 1.6rem;
	font-weight: 600;
	color: #fff;
	letter-spacing: -0.01em;
}
.hero-meta span {
	color: #9aa4b1;
}

/* ---------- TALK BAR (light frosted, reference search-bar style) ---------- */
.talk-bar {
	position: relative;
	margin-top: 64px;
	background: rgba(250, 248, 245, 0.88);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 20px;
	box-shadow: var(--shadow-soft);
	display: flex;
	align-items: stretch;
	padding: 8px;
	gap: 4px;
}
.tb-item {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 22px;
	border-right: 1px solid var(--line);
	border-radius: 12px;
	min-width: 0;
	transition: background 0.15s ease;
}
.tb-item:hover {
	background: rgba(255, 255, 255, 0.7);
}
.tb-item:last-of-type {
	border-right: none;
}
.tb-ico {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	color: var(--navy);
}
.tb-ico svg {
	width: 20px;
	height: 20px;
}
.tb-k {
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 3px;
}
.tb-v {
	font-weight: 700;
	color: var(--ink);
	font-size: 0.95rem;
}
.talk-bar .tb-cta {
	border-radius: 12px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--tb-cta-height);
	align-self: center;
	padding: 0 34px;
	white-space: nowrap;
	background: var(--navy);
	color: #fff;
	box-shadow: none;
}
.talk-bar .tb-cta:hover {
	background: var(--navy-deep);
	transform: none;
	box-shadow: none;
}

/* ---------- SECTION ---------- */
.section {
	padding: 32px 0 80px;
	min-height: 100vh;
	display: flex;
	align-items: flex-start; /* content sits near the top, not floating mid-section */
}
.section > .wrap {
	width: 100%;
}
.sec-head {
	max-width: 36em;
	margin: 0 auto 56px;
	text-align: center;
}
.kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--terra);
	margin-bottom: 18px;
}
.kicker::before {
	content: '';
	width: 26px;
	height: 1px;
	background: currentColor;
	display: inline-block;
	flex-shrink: 0;
}
.sec-head h2 {
	font-family: 'Newsreader', serif;
	font-size: clamp(2.1rem, 4.2vw, 3.2rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.1;
}
.sec-head p {
	margin-top: 14px;
	font-size: 1.08rem;
	color: var(--muted);
}

/* ---------- BENEFITS ---------- */
.bgrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}
.bgrid-3 {
	grid-template-columns: repeat(3, 1fr);
}
.bcard {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 34px 32px;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}
.bcard:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-soft);
}
.bicon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	margin-bottom: 20px;
	font-family: 'Newsreader', serif;
	font-size: 1.4rem;
	font-weight: 700;
}
.bicon svg {
	width: 24px;
	height: 24px;
}
.bcard:nth-child(1) .bicon {
	background: rgba(175, 80, 56, 0.12);
	color: var(--terra);
}
.bcard:nth-child(2) .bicon {
	background: rgba(172, 122, 39, 0.16);
	color: var(--gold);
}
.bcard:nth-child(3) .bicon {
	background: rgba(17, 36, 57, 0.09);
	color: var(--navy);
}
.bcard:nth-child(4) .bicon {
	background: rgba(145, 135, 127, 0.16);
	color: var(--muted);
}
.bcard h3 {
	font-family: 'Newsreader', serif;
	font-size: 1.32rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}
.bcard p {
	margin-top: 8px;
	color: var(--muted);
	font-size: 0.99rem;
}

/* ---------- CONTACT ---------- */
.contact {
	background: var(--navy);
	color: var(--cream);
	position: relative;
	overflow: hidden;
	padding-top: 64px; /* keep reservation section's top spacing as-is */
}
.contact::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 46%;
	height: 100%;
	background-image: radial-gradient(
		rgba(231, 193, 123, 0.35) 1.5px,
		transparent 1.5px
	);
	background-size: 18px 18px;
	-webkit-mask-image: radial-gradient(
		ellipse at top right,
		black,
		transparent 72%
	);
	mask-image: radial-gradient(ellipse at top right, black, transparent 72%);
	pointer-events: none;
}
.contact-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: 60px;
	align-items: start;
}
.contact-copy .kicker {
	color: var(--gold-light);
}
.contact-copy .quote-mark {
	font-family: 'Newsreader', serif;
	font-style: italic;
	font-weight: 500;
	font-size: 3.4rem;
	line-height: 1;
	color: var(--terra);
	opacity: 0.85;
	display: block;
	margin: 0 0 4px;
}
.contact-copy h2 {
	font-family: 'Newsreader', serif;
	font-size: clamp(2.1rem, 4.2vw, 3.2rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.1;
}
.contact-copy p {
	margin-top: 14px;
	color: #b9c1cc;
	font-size: 1.06rem;
}
.contact-list {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.contact-list div {
	display: flex;
	align-items: center;
	gap: 13px;
	font-size: 0.98rem;
}
.contact-list .cl-ico {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	flex-shrink: 0;
	background: rgba(250, 248, 245, 0.07);
	border: 1px solid rgba(250, 248, 245, 0.14);
	display: grid;
	place-items: center;
	color: var(--gold-light);
}
.contact-list .cl-ico svg {
	width: 18px;
	height: 18px;
}
.contact-list span {
	color: #b9c1cc;
}

form {
	background: var(--paper);
	color: var(--ink);
	border-radius: 24px;
	padding: 40px;
	box-shadow: var(--shadow-soft);
}
.field {
	margin-bottom: 18px;
}
.field label {
	display: block;
	font-weight: 700;
	font-size: 0.9rem;
	margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
	width: 100%;
	font-family:
		var(--font-cera-pro), 'Avenir Next', Avenir, 'Segoe UI', sans-serif;
	font-size: 0.99rem;
	color: var(--ink);
	background: var(--white);
	padding: 13px 15px;
	border: 1px solid var(--line);
	border-radius: 12px;
	transition:
		border-color 0.15s ease,
		box-shadow 0.15s ease;
}
.field input::placeholder,
.field textarea::placeholder {
	color: var(--muted);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--terra);
	box-shadow: 0 0 0 3px rgba(175, 80, 56, 0.13);
}
.field textarea {
	resize: none;
	overflow: hidden;
	min-height: 92px;
}
.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
form .btn {
	width: 100%;
	margin-top: 6px;
}
.form-note {
	text-align: center;
	font-size: 0.84rem;
	color: var(--muted);
	margin-top: 13px;
}
.form-success {
	display: none;
	margin-top: 14px;
	padding: 14px;
	background: rgba(175, 80, 56, 0.1);
	border: 1px solid var(--terra);
	border-radius: 12px;
	color: var(--terra-dark);
	font-weight: 700;
	text-align: center;
	font-size: 0.95rem;
}

/* ---------- FAQ ---------- */
.faq-list {
	max-width: 780px;
	margin: 0 auto;
}
.faq-item {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 16px;
	margin-bottom: 14px;
	overflow: hidden;
	transition: box-shadow 0.2s ease;
}
.faq-item.open {
	box-shadow: var(--shadow-soft);
}
.faq-q {
	width: 100%;
	text-align: left;
	cursor: pointer;
	background: none;
	border: none;
	padding: 22px 26px;
	font-family:
		var(--font-cera-pro), 'Avenir Next', Avenir, 'Segoe UI', sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--ink);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
}
.faq-q .chev {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	position: relative;
	transition: transform 0.25s ease;
}
.faq-q .chev::before,
.faq-q .chev::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 12px;
	height: 2px;
	background: var(--terra);
	border-radius: 2px;
}
.faq-q .chev::before {
	left: 1px;
	transform: rotate(45deg);
}
.faq-q .chev::after {
	right: 1px;
	transform: rotate(-45deg);
}
.faq-item.open .faq-q .chev {
	transform: rotate(180deg);
}
.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.faq-a p {
	padding: 0 26px 24px;
	color: var(--muted);
}

/* ---------- FOOTER ---------- */
footer {
	background: var(--navy-deep);
	color: #aab3bf;
	padding: 68px 0 28px;
}
.foot-grid {
	display: flex;
	justify-content: space-between;
	gap: 44px;
	flex-wrap: wrap;
	padding-bottom: 38px;
	border-bottom: 1px solid rgba(250, 248, 245, 0.1);
}
.foot-grid .logo {
	color: var(--cream);
}
.foot-grid .logo img {
	filter: brightness(0) invert(1);
}
.foot-grid .logo small {
	color: #8a93a0;
}
.foot-about {
	max-width: 23em;
	margin-top: 14px;
	font-size: 0.95rem;
}
.foot-col h4 {
	color: var(--cream);
	font-family: 'Newsreader', serif;
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.foot-col a,
.foot-col p {
	display: block;
	font-size: 0.95rem;
	margin-bottom: 8px;
	color: #aab3bf;
}
.foot-col a:hover {
	color: var(--gold-light);
}
.foot-bottom {
	padding-top: 22px;
	font-size: 0.85rem;
	color: #79828f;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 200;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--whatsapp);
	color: #fff;
	display: grid;
	place-items: center;
	box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease;
}
.wa-float:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 14px 32px rgba(37, 211, 102, 0.48);
	color: #fff;
}
.wa-float svg {
	width: 28px;
	height: 28px;
}

/* ---------- REVEAL ---------- */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.65s ease,
		transform 0.65s ease;
}
.reveal.in {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- THANK-YOU / NEXT-STEPS PAGE (gracias.html) ---------- */
.ty {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	color: #fff;
	padding: calc(var(--nav-height) + var(--topbar-height) + 48px) 0 80px;
	background:
		radial-gradient(
			ellipse at 50% 0%,
			rgba(240, 213, 155, 0.08),
			transparent 55%
		),
		var(--navy);
}
.ty .wrap {
	width: 100%;
}
.ty-inner {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}
.ty .ty-tag {
	justify-content: center;
	color: var(--gold-pale);
	margin-bottom: 20px;
}
.ty .ty-tag::before {
	display: none;
}
.ty h1 {
	font-family:
		'Newsreader', 'Iowan Old Style', Baskerville, 'Times New Roman', serif;
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #fff;
}
.ty-lead {
	margin: 18px auto 0;
	max-width: 40rem;
	font-size: 1.1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.8);
}
.video-frame {
	position: relative;
	margin: 44px auto 0;
	width: 100%;
	max-width: 720px;
	aspect-ratio: 16 / 9;
	border-radius: 20px;
	overflow: hidden;
	background: #000;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--shadow-soft);
}
.video-frame video,
.video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	object-fit: cover;
}
.ty-cta-wrap {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}
.ty-important {
	max-width: 34rem;
	margin: 0 auto 4px;
	padding: 14px 20px;
	background: rgba(240, 213, 155, 0.12);
	border: 1px solid rgba(240, 213, 155, 0.35);
	border-radius: 14px;
	color: #fff;
	font-size: 1rem;
	line-height: 1.5;
}
.ty-important strong {
	color: var(--gold-pale);
}
.btn-wa {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: var(--whatsapp);
	color: #fff;
	font-family:
		var(--font-cera-pro), 'Avenir Next', Avenir, 'Segoe UI', sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	padding: 16px 34px;
	border-radius: 999px;
	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
	transition:
		background 0.18s ease,
		transform 0.18s ease,
		box-shadow 0.18s ease;
}
.btn-wa:hover {
	background: var(--whatsapp-dark);
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(37, 211, 102, 0.42);
}
.btn-wa svg {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}
.ty-note {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.55);
	max-width: 30rem;
}
.ty-cal {
	margin-top: 34px;
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.ty-cal-label {
	display: block;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 14px;
}
.ty-cal-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}
.btn-cal {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family:
		var(--font-cera-pro), 'Avenir Next', Avenir, 'Segoe UI', sans-serif;
	font-weight: 600;
	font-size: 0.92rem;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.28);
	padding: 11px 22px;
	border-radius: 999px;
	transition:
		background 0.18s ease,
		border-color 0.18s ease;
}
.btn-cal:hover {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.5);
}
.ty-back {
	display: inline-block;
	margin-top: 32px;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.18s ease;
}
.ty-back:hover {
	color: #fff;
}

/* ---------- TRIPS (Próximos viajes a India) ---------- */
.trips-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}
.trip-card {
	position: relative;
	overflow: hidden;
	border: 0;
	margin: 0;
	padding: 0;
	cursor: pointer;
	border-radius: 20px;
	min-height: 320px;
	display: flex;
	align-items: flex-end;
	text-align: left;
	color: #fff;
	background: var(--navy);
	box-shadow: var(--shadow-soft);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}
.trip-card::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: var(--navy);
	background-image:
		linear-gradient(
			180deg,
			rgba(10, 24, 38, 0.15) 0%,
			rgba(10, 24, 38, 0.15) 38%,
			rgba(10, 24, 38, 0.9) 100%
		),
		var(--trip-img, linear-gradient(transparent, transparent));
	background-size: cover;
	background-position: center;
	transition: transform 0.45s ease;
}
.trip-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 26px 60px rgba(17, 36, 57, 0.24);
}
.trip-card:hover::before {
	transform: scale(1.06);
}
.trip-tag {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	background: rgba(255, 255, 255, 0.92);
	color: var(--navy);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 999px;
}
.trip-card-body {
	position: relative;
	z-index: 2;
	padding: 24px;
	width: 100%;
}
.trip-kicker {
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold-pale);
	margin-bottom: 8px;
}
.trip-title {
	display: block;
	font-family: 'Newsreader', serif;
	font-size: 1.55rem;
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: -0.01em;
}
.trip-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin-top: 12px;
	font-size: 0.9rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
}

/* ---------- TRIP MODAL ---------- */
.trip-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.trip-modal[hidden] {
	display: none;
}
.trip-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 24, 38, 0.6);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.trip-modal-dialog {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 640px;
	max-height: 90vh;
	overflow: hidden;
	background: var(--cream);
	border-radius: 22px;
	box-shadow: var(--shadow-soft);
	animation: tmIn 0.25s ease;
}
@keyframes tmIn {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.trip-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 3;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	color: var(--navy);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background 0.15s ease;
}
.trip-modal-close:hover {
	background: #fff;
}
.trip-modal-body {
	overflow-y: auto;
}
.tm-hero {
	position: relative;
	min-height: 190px;
	display: flex;
	align-items: flex-end;
	padding: 24px;
	color: #fff;
	background-color: var(--navy);
	background-image:
		linear-gradient(
			180deg,
			rgba(10, 24, 38, 0.15) 0%,
			rgba(10, 24, 38, 0.92) 100%
		),
		var(--trip-img, linear-gradient(transparent, transparent));
	background-size: cover;
	background-position: center;
}
.tm-hero h3 {
	font-family: 'Newsreader', serif;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.01em;
}
.tm-content {
	padding: 26px 28px 28px;
}
.tm-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--line);
}
.tm-facts .tm-k {
	display: block;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 3px;
}
.tm-facts .tm-v {
	font-family: 'Newsreader', serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--ink);
}
.tm-lead {
	color: var(--ink);
	line-height: 1.7;
}
.tm-content h4 {
	font-family: 'Newsreader', serif;
	font-size: 1.2rem;
	font-weight: 600;
	margin: 22px 0 10px;
}
.tm-list {
	list-style: none;
	display: grid;
	gap: 9px;
}
.tm-list li {
	position: relative;
	padding-left: 24px;
	color: var(--muted);
	line-height: 1.5;
}
.tm-list li::before {
	content: '';
	position: absolute;
	left: 2px;
	top: 9px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--terra);
}
.tm-note {
	margin-top: 18px;
	font-size: 0.85rem;
	color: var(--muted);
}
.tm-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}
.tm-actions .btn {
	flex: 1;
	text-align: center;
	min-width: 160px;
}

/* ---------- FLOATING "RESERVÁ" BUTTON ---------- */
.reserve-float {
	position: fixed;
	left: 50%;
	bottom: 22px;
	z-index: 150;
	background: var(--terra);
	color: #fff;
	font-family:
		var(--font-cera-pro), 'Avenir Next', Avenir, 'Segoe UI', sans-serif;
	font-weight: 700;
	font-size: 0.98rem;
	padding: 14px 32px;
	border-radius: 999px;
	box-shadow: 0 12px 30px rgba(175, 80, 56, 0.42);
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%) translateY(140%);
	transition:
		transform 0.3s ease,
		opacity 0.3s ease,
		background 0.18s ease;
}
.reserve-float.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}
.reserve-float:hover {
	background: var(--terra-dark);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 880px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.bgrid {
		grid-template-columns: 1fr;
	}
	.trips-grid {
		grid-template-columns: 1fr;
	}
	.trip-card {
		min-height: 260px;
	}
	.tm-actions .btn {
		flex: 1 1 100%;
	}
	.nav-links {
		display: none;
	}
	.field-row {
		grid-template-columns: 1fr;
	}
	.hero {
		padding: 128px 0 80px;
	}
	.ty {
		padding: 128px 0 72px;
	}
	.video-frame {
		margin-top: 32px;
	}
	.talk-bar {
		margin-top: 36px;
		flex-direction: column;
		border-radius: 20px;
	}
	.tb-item {
		border-right: none;
		border-bottom: 1px solid var(--line);
	}
	.tb-item:last-of-type {
		border-bottom: none;
	}
	.talk-bar .tb-cta {
		height: auto;
		align-self: stretch;
		padding: 16px 24px;
	}
	.section {
		padding: 68px 0;
	}
	.topbar .tb-left {
		display: none;
	}
	form {
		padding: 28px;
	}
	.wa-float {
		width: 50px;
		height: 50px;
		right: 16px;
		bottom: 16px;
	}
	.wa-float svg {
		width: 24px;
		height: 24px;
	}
}
