:root {
	--ink: #102f3c;
	--ink-2: #17485a;
	--lake: #0d6d8d;
	--lake-light: #55a8bb;
	--terracotta: #b95032;
	--terracotta-dark: #91371f;
	--sand: #f3eadb;
	--sand-2: #fbf7f0;
	--cream: #fffdf8;
	--sun: #dfaa46;
	--text: #243d45;
	--muted: #65767b;
	--white: #fff;
	--success: #176b52;
	--danger: #9d3227;
	--line: rgba(16, 47, 60, 0.14);
	--shadow: 0 18px 55px rgba(20, 49, 58, 0.12);
	--shadow-small: 0 8px 28px rgba(20, 49, 58, 0.1);
	--radius: 18px;
	--radius-small: 10px;
	--container: 1200px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--text);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
	top: 32px;
}

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

a {
	color: var(--lake);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--terracotta);
}

button,
input,
select,
textarea {
	font: inherit;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.65em;
	color: var(--ink);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.12;
}

h1 {
	font-size: clamp(2.7rem, 6vw, 5.6rem);
}

h2 {
	font-size: clamp(2.05rem, 4vw, 3.5rem);
}

h3 {
	font-size: 1.45rem;
}

p {
	margin: 0 0 1.3em;
}

ul,
ol {
	margin: 0 0 1.4em;
	padding-left: 1.25em;
}

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

.narrow {
	max-width: 780px;
}

.section {
	padding: clamp(76px, 9vw, 126px) 0;
}

.section--sand {
	background: var(--sand-2);
}

.section--ink {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	color: rgba(255, 255, 255, 0.82);
}

.section--ink::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.03) 48% 52%, transparent 52%),
		linear-gradient(45deg, transparent 0 48%, rgba(223, 170, 70, 0.05) 48% 52%, transparent 52%);
	background-size: 34px 34px;
	content: "";
	pointer-events: none;
}

.section--ink h2 {
	color: var(--white);
}

.section--center {
	text-align: center;
}

.skip-link,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.skip-link:focus {
	z-index: 9999;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	margin: 0;
	padding: 10px 16px;
	clip: auto;
	background: var(--white);
	color: var(--ink);
}

.eyebrow {
	margin-bottom: 16px;
	color: var(--terracotta);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.3;
	text-transform: uppercase;
}

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

.button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	padding: 13px 24px;
	border: 2px solid var(--terracotta);
	border-radius: 999px;
	background: var(--terracotta);
	color: var(--white);
	font-size: 0.93rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover {
	border-color: var(--terracotta-dark);
	background: var(--terracotta-dark);
	color: var(--white);
	transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
	outline: 3px solid var(--sun);
	outline-offset: 3px;
}

.button--small {
	min-height: 42px;
	padding: 9px 18px;
}

.button--wide {
	width: 100%;
}

.button--outline {
	border-color: var(--ink);
	background: transparent;
	color: var(--ink);
}

.button--outline:hover {
	border-color: var(--ink);
	background: var(--ink);
}

.button--ghost-light {
	border-color: rgba(255, 255, 255, 0.65);
	background: rgba(16, 47, 60, 0.18);
	color: var(--white);
	backdrop-filter: blur(8px);
}

.button--ghost-light:hover {
	border-color: var(--white);
	background: var(--white);
	color: var(--ink);
}

.button--sand {
	border-color: var(--sand);
	background: var(--sand);
	color: var(--ink);
}

.button--sand:hover {
	border-color: var(--white);
	background: var(--white);
	color: var(--ink);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.button-row--center {
	justify-content: center;
}

.text-link {
	display: inline-flex;
	align-items: center;
	color: var(--terracotta-dark);
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none;
}

.text-link:hover {
	color: var(--lake);
}

.text-link--large {
	font-size: 1rem;
}

.site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	border-bottom: 1px solid rgba(16, 47, 60, 0.08);
	background: rgba(255, 253, 248, 0.94);
	box-shadow: 0 6px 22px rgba(16, 47, 60, 0.06);
	backdrop-filter: blur(14px);
}

.header-inner {
	display: flex;
	min-height: 82px;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.brand {
	flex: 0 0 auto;
	text-decoration: none;
}

.brand img {
	width: 220px;
	height: auto;
}

.custom-logo-link {
	display: block;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2vw, 28px);
}

.primary-nav > a:not(.button) {
	color: var(--ink);
	font-size: 0.86rem;
	font-weight: 750;
	text-decoration: none;
}

.primary-nav > a:not(.button):hover {
	color: var(--terracotta);
}

.lang-switch {
	padding: 5px 8px;
	border: 1px solid var(--line);
	border-radius: 6px;
}

.nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 10px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px auto;
	background: var(--ink);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
	position: relative;
	display: grid;
	min-height: min(760px, calc(100vh - 82px));
	align-items: center;
	overflow: hidden;
}

.hero__image,
.hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero__image {
	object-fit: cover;
	object-position: center center;
}

.hero__overlay {
	background:
		linear-gradient(90deg, rgba(4, 25, 34, 0.9) 0%, rgba(8, 37, 48, 0.68) 42%, rgba(8, 37, 48, 0.1) 75%),
		linear-gradient(0deg, rgba(8, 37, 48, 0.34), transparent 55%);
}

.hero__content {
	position: relative;
	z-index: 1;
	max-width: 790px;
	padding-block: 92px;
	color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
	max-width: 760px;
	margin-bottom: 22px;
	color: var(--white);
	text-wrap: balance;
}

.hero__lead {
	max-width: 670px;
	margin-bottom: 30px;
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.6;
}

.hero__micro {
	margin: 22px 0 0;
	font-size: 0.82rem;
	font-weight: 650;
	letter-spacing: 0.025em;
}

.trust-strip {
	border-bottom: 1px solid var(--line);
	background: var(--white);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
	display: flex;
	min-height: 105px;
	flex-direction: column;
	justify-content: center;
	padding: 22px 28px;
	border-right: 1px solid var(--line);
}

.trust-grid > div:last-child {
	border-right: 0;
}

.trust-grid strong {
	color: var(--ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.07rem;
}

.trust-grid span {
	color: var(--muted);
	font-size: 0.8rem;
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.7fr);
	gap: 70px;
	align-items: end;
	margin-bottom: 44px;
}

.section-heading h2,
.section-heading p {
	margin-bottom: 0;
}

.section-heading > p {
	color: var(--muted);
}

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

.tour-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-small);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-6px);
}

.tour-card__visual {
	position: relative;
	display: block;
	height: 220px;
	overflow: hidden;
	background:
		radial-gradient(circle at 72% 27%, rgba(255, 243, 186, 0.9) 0 6%, transparent 6.5%),
		linear-gradient(165deg, transparent 0 49%, rgba(241, 224, 184, 0.92) 50% 62%, rgba(105, 142, 78, 0.96) 63% 100%),
		linear-gradient(180deg, #7fc7d4 0 52%, #126886 53% 100%);
}

.tour-card__visual::before,
.tour-card__visual::after {
	position: absolute;
	content: "";
}

.tour-card__visual::before {
	right: -8%;
	bottom: 0;
	width: 82%;
	height: 50%;
	background: repeating-linear-gradient(-8deg, #ad7139 0 5px, #d7ad67 6px 13px, #688b4f 14px 21px);
	clip-path: polygon(28% 0, 100% 30%, 100% 100%, 0 100%);
	opacity: 0.88;
}

.tour-card__visual::after {
	bottom: 0;
	left: 15%;
	width: 38%;
	height: 70%;
	border-left: 5px solid rgba(239, 217, 170, 0.9);
	border-radius: 50%;
	transform: rotate(25deg);
}

.tour-card__photo {
	position: absolute;
	z-index: 0;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.tour-card:hover .tour-card__photo {
	transform: scale(1.035);
}

.tour-card__visual.has-photo::before {
	z-index: 1;
	inset: 0;
	width: auto;
	height: auto;
	background: linear-gradient(180deg, rgba(8, 37, 48, 0.22), transparent 52%, rgba(8, 37, 48, 0.28));
	clip-path: none;
	opacity: 1;
}

.tour-card__visual.has-photo::after,
.tour-card__visual.has-photo .tour-card__symbol {
	display: none;
}

.tour-card__visual--hike {
	background:
		radial-gradient(circle at 74% 28%, rgba(255, 243, 186, 0.9) 0 6%, transparent 6.5%),
		linear-gradient(160deg, transparent 0 48%, #855b38 49% 55%, #6b8b48 56% 100%),
		linear-gradient(#6db5c6 0 50%, #105f7f 51%);
}

.tour-card__visual--uros {
	background:
		radial-gradient(ellipse at 64% 72%, #ddb75b 0 15%, transparent 16%),
		repeating-linear-gradient(8deg, transparent 0 11px, rgba(224, 186, 78, 0.65) 12px 15px),
		linear-gradient(#7bc2d3 0 52%, #156f91 53%);
}

.tour-card__visual--overnight {
	background:
		radial-gradient(circle at 73% 22%, #ffe9a5 0 7%, transparent 7.5%),
		linear-gradient(160deg, transparent 0 52%, #5c6a48 53% 100%),
		linear-gradient(#ef956f 0 45%, #534977 46% 67%, #153d5c 68%);
}

.tour-card__visual--faster {
	background:
		linear-gradient(14deg, transparent 0 60%, rgba(255, 255, 255, 0.78) 61% 62%, transparent 63%),
		linear-gradient(#77c2d3 0 49%, #0d6484 50%);
}

.tour-card__visual--private {
	background:
		radial-gradient(circle at 72% 25%, #ffe3a1 0 6%, transparent 6.5%),
		linear-gradient(155deg, transparent 0 50%, #bf7c46 51% 59%, #6b8b4d 60%),
		linear-gradient(#8bcbd7 0 51%, #0a6686 52%);
}

.tour-card__badge {
	position: absolute;
	z-index: 2;
	top: 16px;
	left: 16px;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(255, 253, 248, 0.92);
	color: var(--ink);
	font-size: 0.69rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.tour-card__symbol {
	position: absolute;
	z-index: 2;
	right: 18px;
	bottom: 15px;
	width: 38px;
	height: 38px;
	border: 4px solid rgba(255, 255, 255, 0.78);
	border-radius: 50%;
}

.tour-card__symbol::after {
	position: absolute;
	top: 7px;
	left: 7px;
	width: 16px;
	height: 16px;
	border: 3px solid rgba(255, 255, 255, 0.78);
	transform: rotate(45deg);
	content: "";
}

.tour-card__body {
	display: flex;
	min-height: 315px;
	flex: 1;
	flex-direction: column;
	justify-content: space-between;
	padding: 25px;
}

.tour-card__meta {
	margin-bottom: 9px;
	color: var(--terracotta);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.tour-card h3 {
	margin-bottom: 12px;
}

.tour-card h3 a {
	color: var(--ink);
	text-decoration: none;
}

.tour-card__body > div > p:last-child {
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.6;
}

.tour-card__footer {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
}

.tour-card__footer > div {
	display: flex;
	flex-direction: column;
}

.tour-card__footer span {
	color: var(--muted);
	font-size: 0.7rem;
	text-transform: uppercase;
}

.tour-card__footer strong {
	color: var(--ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.3rem;
}

.center-action {
	margin-top: 42px;
	text-align: center;
}

.split {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(48px, 8vw, 110px);
	align-items: center;
}

.split--hike {
	min-height: 510px;
}

.hike-visual {
	position: relative;
	aspect-ratio: 1.12;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 50% 50% 46% 54% / 60% 44% 56% 40%;
	background:
		repeating-radial-gradient(ellipse at 55% 80%, transparent 0 23px, rgba(239, 204, 135, 0.12) 24px 25px),
		linear-gradient(150deg, #1d5c68, #0c2935 72%);
	box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.32);
}

.hike-visual::before {
	position: absolute;
	inset: 14%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 48% 52% 45% 55%;
	content: "";
	transform: rotate(-12deg);
}

.route-line {
	position: absolute;
	top: 25%;
	left: 25%;
	width: 52%;
	height: 53%;
	border-right: 4px dashed #f3c465;
	border-bottom: 4px dashed #f3c465;
	border-radius: 18% 70% 30% 55%;
	transform: rotate(12deg);
}

.route-point {
	position: absolute;
	z-index: 2;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--sand);
	color: var(--ink);
	font-size: 0.72rem;
	font-weight: 800;
}

.route-point::before {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 6px;
	border-radius: 50%;
	background: var(--terracotta);
	content: "";
}

.route-point--a {
	top: 22%;
	left: 17%;
}

.route-point--b {
	right: 11%;
	bottom: 19%;
}

.hike-visual > strong {
	position: absolute;
	top: 50%;
	left: 50%;
	color: rgba(255, 255, 255, 0.82);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.4rem, 6vw, 5rem);
	transform: translate(-50%, -50%) rotate(-8deg);
}

.feature-list {
	padding: 0;
	list-style: none;
}

.feature-list li {
	position: relative;
	margin: 12px 0;
	padding-left: 30px;
}

.feature-list li::before {
	position: absolute;
	top: 0.1em;
	left: 0;
	color: var(--success);
	font-weight: 900;
	content: "✓";
}

.feature-list--minus li::before {
	color: var(--terracotta);
	content: "–";
}

.feature-list--light li::before {
	color: #f4c875;
}

.fact-panel {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	overflow: hidden;
	border: 1px solid rgba(16, 47, 60, 0.12);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow);
}

.fact-panel > div {
	display: flex;
	min-height: 150px;
	flex-direction: column;
	justify-content: center;
	padding: 28px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.fact-panel > div:nth-child(2n) {
	border-right: 0;
}

.fact-panel > div:nth-last-child(-n + 2) {
	border-bottom: 0;
}

.fact-panel span {
	color: var(--muted);
	font-size: 0.75rem;
	font-weight: 750;
	text-transform: uppercase;
}

.fact-panel strong {
	color: var(--ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.55rem;
}

.page-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(90px, 12vw, 150px) 0;
	background:
		linear-gradient(120deg, rgba(16, 47, 60, 0.98), rgba(13, 109, 141, 0.78)),
		var(--page-image, url("../images/hero-taquile.jpg")) center 52% / cover;
	color: rgba(255, 255, 255, 0.85);
	text-align: center;
}

.page-hero::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(45deg, transparent 0 48%, rgba(255, 255, 255, 0.035) 48% 52%, transparent 52%);
	background-size: 28px 28px;
	content: "";
}

.page-hero .container {
	position: relative;
	z-index: 1;
}

.page-hero h1 {
	color: var(--white);
	font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.page-hero p:last-child {
	margin-bottom: 0;
	font-size: 1.15rem;
}

.page-hero--compact {
	padding: clamp(70px, 9vw, 110px) 0;
}

.boat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.boat-grid > div {
	display: flex;
	min-height: 150px;
	flex-direction: column;
	justify-content: center;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius-small);
	background: var(--white);
	text-align: center;
}

.boat-grid span {
	color: var(--terracotta);
	font-size: 0.77rem;
	font-weight: 800;
	text-transform: uppercase;
}

.boat-grid strong {
	color: var(--ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.7rem;
}

.boat-grid small {
	color: var(--muted);
}

.boat-grid--inside {
	margin: 26px 0 14px;
}

.boat-grid--inside > div {
	min-height: 125px;
	background: var(--sand-2);
}

.guide-layout {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
	gap: clamp(50px, 8vw, 110px);
	align-items: start;
	padding-top: 88px;
	padding-bottom: 120px;
}

.guide-nav {
	position: sticky;
	top: 112px;
	display: flex;
	flex-direction: column;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius-small);
	background: var(--white);
	box-shadow: var(--shadow-small);
}

.guide-nav strong {
	margin-bottom: 12px;
	color: var(--ink);
}

.guide-nav a {
	padding: 7px 0;
	color: var(--muted);
	font-size: 0.84rem;
	text-decoration: none;
}

.guide-nav a:hover {
	color: var(--terracotta);
}

.guide-content {
	max-width: 790px;
}

.guide-content section {
	padding: 20px 0 58px;
	border-bottom: 1px solid var(--line);
}

.guide-content section:first-child {
	padding-top: 0;
}

.guide-content section:last-child {
	border-bottom: 0;
}

.content-prose {
	font-size: 1.03rem;
}

.content-prose p,
.content-prose li {
	max-width: 75ch;
}

.content-prose h2 {
	margin-top: 0.2em;
}

.content-prose h3 {
	margin-top: 1.8em;
}

.callout {
	margin: 30px 0;
	padding: 22px 24px;
	border-left: 5px solid var(--sun);
	border-radius: 0 var(--radius-small) var(--radius-small) 0;
	background: #fff9e9;
	color: var(--ink);
}

.callout p:last-child {
	margin-bottom: 0;
}

.callout--warning {
	border-left-color: var(--terracotta);
	background: #fff3ed;
}

.check-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 25px 0;
}

.check-grid span {
	position: relative;
	padding: 15px 16px 15px 46px;
	border: 1px solid var(--line);
	border-radius: 9px;
	background: var(--white);
}

.check-grid span::before {
	position: absolute;
	top: 15px;
	left: 17px;
	color: var(--success);
	font-weight: 900;
	content: "✓";
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.values-grid > div {
	min-height: 180px;
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: var(--radius-small);
	background: var(--white);
	box-shadow: var(--shadow-small);
}

.values-grid strong {
	color: var(--ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.35rem;
}

.values-grid p {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 0.9rem;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(38px, 7vw, 90px);
	align-items: start;
}

.contact-card,
.payment-note,
.form-panel,
.paper,
.sidebar-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-small);
}

.contact-card {
	padding: 34px;
}

.contact-method {
	display: flex;
	flex-direction: column;
	margin: 16px 0;
	padding: 18px 20px;
	border: 1px solid var(--line);
	border-radius: 10px;
	color: var(--ink);
	text-decoration: none;
}

.contact-method span {
	color: var(--terracotta);
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
}

.contact-method strong {
	overflow-wrap: anywhere;
}

.contact-card > p:last-child {
	margin: 20px 0 0;
	color: var(--muted);
	font-size: 0.83rem;
}

.payment-note {
	margin-top: 20px;
	padding: 24px;
	background: var(--sand-2);
}

.payment-note p {
	margin: 7px 0 3px;
	color: var(--ink);
	font-weight: 750;
}

.payment-note small {
	color: var(--muted);
}

.form-panel {
	padding: clamp(24px, 5vw, 44px);
}

.form-panel > h2 {
	font-size: 2.1rem;
}

.booking-form label {
	display: block;
	margin-bottom: 17px;
}

.booking-form label > span {
	display: block;
	margin-bottom: 7px;
	color: var(--ink);
	font-size: 0.79rem;
	font-weight: 800;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 18px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
	width: 100%;
	min-height: 50px;
	padding: 11px 13px;
	border: 1px solid #b8c5c8;
	border-radius: 8px;
	background: var(--white);
	color: var(--text);
}

.booking-form textarea {
	resize: vertical;
}

.booking-form .consent {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
}

.booking-form .consent input {
	width: 18px;
	min-height: 18px;
	margin-top: 4px;
}

.booking-form .consent span {
	color: var(--muted);
	font-size: 0.77rem;
	font-weight: 500;
}

.form-small {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 0.75rem;
	text-align: center;
}

.form-notice {
	margin-bottom: 22px;
	padding: 15px 17px;
	border-radius: 8px;
}

.form-notice--success {
	background: #e8f5ef;
	color: var(--success);
}

.form-notice--error {
	background: #fce9e7;
	color: var(--danger);
}

.tt-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.faq-list details {
	margin-bottom: 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius-small);
	background: var(--white);
}

.faq-list summary {
	position: relative;
	padding: 20px 54px 20px 22px;
	color: var(--ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.13rem;
	font-weight: 600;
	list-style: none;
	cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary::after {
	position: absolute;
	top: 19px;
	right: 20px;
	color: var(--terracotta);
	font-family: sans-serif;
	font-size: 1.5rem;
	content: "+";
}

.faq-list details[open] summary::after {
	content: "−";
}

.faq-list details p {
	margin: 0;
	padding: 0 22px 22px;
	color: var(--muted);
}

.legal-copy {
	padding: clamp(28px, 6vw, 62px);
}

.tour-hero {
	position: relative;
	overflow: hidden;
	padding: 54px 0 88px;
	background:
		linear-gradient(118deg, rgba(11, 39, 50, 0.98), rgba(13, 109, 141, 0.78)),
		var(--tour-hero-image, url("../images/hero-taquile.jpg")) center 57% / cover;
	color: rgba(255, 255, 255, 0.87);
}

.tour-hero--hike {
	background:
		linear-gradient(118deg, rgba(11, 39, 50, 0.98), rgba(99, 67, 42, 0.66)),
		var(--tour-hero-image, url("../images/hero-taquile.jpg")) center 68% / cover;
}

.breadcrumbs {
	display: flex;
	gap: 10px;
	margin-bottom: 55px;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.8rem;
}

.breadcrumbs a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

.tour-hero__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: clamp(40px, 8vw, 100px);
	align-items: end;
}

.tour-hero h1 {
	max-width: 800px;
	color: var(--white);
	font-size: clamp(2.7rem, 5.7vw, 5rem);
}

.tour-hero__content > div > p:not(.eyebrow) {
	max-width: 760px;
	font-size: 1.08rem;
}

.tour-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.tour-tags span {
	padding: 7px 11px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	background: rgba(5, 31, 41, 0.24);
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.73rem;
	font-weight: 700;
}

.price-card {
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: var(--radius);
	background: rgba(255, 253, 248, 0.96);
	box-shadow: var(--shadow);
	color: var(--text);
}

.price-card > span,
.price-card > small {
	display: block;
	color: var(--muted);
}

.price-card > span {
	font-size: 0.74rem;
	font-weight: 800;
	text-transform: uppercase;
}

.price-card > strong {
	display: block;
	margin: 3px 0;
	color: var(--ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2.5rem;
}

.price-card > small {
	margin-bottom: 20px;
	line-height: 1.5;
}

.price-card .text-link {
	display: flex;
	justify-content: center;
	margin-top: 14px;
}

.tour-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	gap: clamp(50px, 8vw, 95px);
	align-items: start;
}

.tour-main {
	min-width: 0;
}

.tour-main > section {
	padding: 0 0 62px;
}

.tour-main > section + section {
	padding-top: 58px;
	border-top: 1px solid var(--line);
}

.highlight-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.highlight-grid div {
	display: flex;
	min-height: 92px;
	align-items: center;
	gap: 12px;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--sand-2);
	color: var(--ink);
	font-weight: 700;
}

.highlight-grid span {
	display: grid;
	width: 28px;
	height: 28px;
	flex: 0 0 auto;
	place-items: center;
	border-radius: 50%;
	background: var(--ink);
	color: var(--white);
	font-size: 0.75rem;
}

.timeline {
	padding: 0;
	list-style: none;
	counter-reset: timeline;
}

.timeline li {
	position: relative;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 17px;
	padding-bottom: 22px;
	counter-increment: timeline;
}

.timeline li::before {
	position: absolute;
	top: 38px;
	bottom: 0;
	left: 20px;
	width: 1px;
	background: var(--line);
	content: "";
}

.timeline li:last-child::before {
	display: none;
}

.timeline span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 50%;
	background: var(--ink);
	color: var(--white);
	font-weight: 800;
}

.timeline span::before {
	content: counter(timeline);
}

.timeline p {
	margin: 6px 0 0;
}

.small-note {
	color: var(--muted);
	font-size: 0.82rem;
}

.include-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
}

.include-grid > div {
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius-small);
}

.include-grid h2 {
	font-size: 1.8rem;
}

.tour-sidebar {
	position: sticky;
	top: 112px;
}

.sidebar-card {
	padding: 27px;
}

.sidebar-card > strong {
	color: var(--ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.4rem;
}

.sidebar-card dl {
	margin: 18px 0 24px;
}

.sidebar-card dl > div {
	padding: 13px 0;
	border-bottom: 1px solid var(--line);
}

.sidebar-card dt {
	color: var(--muted);
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
}

.sidebar-card dd {
	margin: 2px 0 0;
	color: var(--ink);
	font-size: 0.88rem;
	font-weight: 650;
}

.paper {
	padding: 40px;
}

.site-footer {
	padding: 78px 0 24px;
	background: #0b2834;
	color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 0.65fr 1fr;
	gap: clamp(38px, 7vw, 88px);
}

.footer-logo {
	width: 230px;
	margin-bottom: 20px;
}

.footer-grid h2 {
	color: var(--white);
	font-family: inherit;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.footer-grid ul {
	padding: 0;
	list-style: none;
}

.footer-grid li {
	margin: 8px 0;
}

.footer-grid a {
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.88rem;
	text-decoration: none;
}

.footer-grid a:hover {
	color: #f4c875;
}

.contact-list li:last-child {
	font-size: 0.88rem;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 58px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.75rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom nav {
	display: flex;
	gap: 18px;
}

.whatsapp-float {
	position: fixed;
	z-index: 800;
	right: 22px;
	bottom: 22px;
	display: flex;
	min-height: 54px;
	align-items: center;
	gap: 9px;
	padding: 10px 17px 10px 12px;
	border-radius: 999px;
	background: #1f9d61;
	box-shadow: 0 10px 35px rgba(20, 84, 56, 0.28);
	color: var(--white);
	font-size: 0.83rem;
	font-weight: 800;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
	background: #17824f;
	color: var(--white);
	transform: translateY(-3px);
}

.whatsapp-float svg {
	width: 30px;
	height: 30px;
	fill: currentColor;
}

@media (max-width: 1050px) {
	.nav-toggle {
		display: block;
	}

	.primary-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		align-items: stretch;
		padding: 18px 20px 25px;
		border-top: 1px solid var(--line);
		background: var(--cream);
		box-shadow: var(--shadow);
	}

	.primary-nav.is-open {
		display: flex;
		flex-direction: column;
	}

	.primary-nav > a {
		padding: 8px 4px;
	}

	.primary-nav .button {
		margin-top: 4px;
	}

	.nav-toggle[aria-expanded="true"] span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.nav-toggle[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle[aria-expanded="true"] span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.tour-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tour-hero__content {
		grid-template-columns: minmax(0, 1fr) 310px;
	}

	.tour-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.tour-sidebar {
		position: static;
	}

	.sidebar-card {
		display: none;
	}
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.header-inner {
		min-height: 72px;
	}

	.brand img {
		width: 190px;
	}

	.hero {
		min-height: 690px;
	}

	.hero__image {
		object-position: 62% center;
	}

	.hero__overlay {
		background: linear-gradient(90deg, rgba(4, 25, 34, 0.92), rgba(8, 37, 48, 0.48));
	}

	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.trust-grid > div {
		border-bottom: 1px solid var(--line);
	}

	.trust-grid > div:nth-child(2n) {
		border-right: 0;
	}

	.trust-grid > div:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.section-heading,
	.split,
	.contact-layout,
	.tour-hero__content {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.hike-visual {
		max-width: 540px;
		margin-inline: auto;
	}

	.page-hero {
		text-align: left;
	}

	.guide-layout {
		display: block;
		padding-top: 55px;
	}

	.guide-nav {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		margin-bottom: 55px;
	}

	.guide-nav strong {
		grid-column: 1 / -1;
	}

	.tour-hero {
		padding: 38px 0 68px;
	}

	.breadcrumbs {
		margin-bottom: 35px;
	}

	.price-card {
		max-width: 430px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-grid > div:first-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 620px) {
	body {
		font-size: 16px;
	}

	.section {
		padding: 70px 0;
	}

	.hero {
		min-height: 660px;
	}

	.hero__content {
		padding-block: 70px;
	}

	.hero h1 {
		font-size: clamp(2.55rem, 13vw, 4rem);
	}

	.button-row .button {
		width: 100%;
	}

	.trust-grid {
		grid-template-columns: 1fr;
	}

	.trust-grid > div,
	.trust-grid > div:nth-child(2n) {
		min-height: 88px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.trust-grid > div:nth-last-child(2) {
		border-bottom: 1px solid var(--line);
	}

	.tour-grid,
	.fact-panel,
	.boat-grid,
	.values-grid,
	.highlight-grid,
	.include-grid,
	.form-grid,
	.check-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.tour-card__visual {
		height: 205px;
	}

	.tour-card__body {
		min-height: 0;
	}

	.fact-panel > div,
	.fact-panel > div:nth-child(2n),
	.fact-panel > div:nth-last-child(2) {
		min-height: 115px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.fact-panel > div:last-child {
		border-bottom: 0;
	}

	.guide-nav {
		grid-template-columns: 1fr;
	}

	.guide-nav strong {
		grid-column: auto;
	}

	.contact-card,
	.form-panel,
	.paper {
		padding: 24px;
	}

	.tour-hero h1 {
		font-size: clamp(2.45rem, 12vw, 3.8rem);
	}

	.footer-grid > div:first-child {
		grid-column: auto;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.whatsapp-float {
		right: 14px;
		bottom: 14px;
		width: 54px;
		justify-content: center;
		padding: 10px;
	}

	.whatsapp-float span {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
