/* ==========================================================================
   Komodo Open Trip — hand-crafted stylesheet. No frameworks.
   Palette: warm white / deep sea navy / single coral accent (CTA only).
   Type: Fraunces (display serif) + Inter (body sans).
   Mobile-first. Breakpoints: 640 / 960 / 1200.
   ========================================================================== */

:root {
	--bg: #faf8f4;
	--surface: #ffffff;
	--tint: #f3eee4;
	--navy: #11304a;
	--navy-deep: #0b2235;
	--ink: #182f44;
	--body: #3e4c5c;
	--muted: #697582;
	--line: #e5dfd1;
	--accent: #e8674a;
	--accent-dark: #c9512f;
	--on-navy: #c9d6e2;
	--wa: #1c9e53;

	--ff-display: "Fraunces", Georgia, "Times New Roman", serif;
	--ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	--radius: 6px;
	--radius-lg: 8px;
	--shadow-1: 0 1px 2px rgba(17, 48, 74, 0.05), 0 4px 16px rgba(17, 48, 74, 0.06);
	--shadow-2: 0 2px 4px rgba(17, 48, 74, 0.07), 0 12px 32px rgba(17, 48, 74, 0.1);

	--container: 1200px;
	--s-1: 8px;
	--s-2: 16px;
	--s-3: 24px;
	--s-4: 32px;
	--s-5: 40px;
	--s-6: 48px;
	--s-8: 64px;
	--s-12: 96px;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */

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

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

body {
	margin: 0;
	background: var(--bg);
	color: var(--body);
	font-family: var(--ff-body);
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4 {
	font-family: var(--ff-display);
	font-weight: 600;
	color: var(--ink);
	line-height: 1.18;
	margin: 0 0 var(--s-2);
	letter-spacing: -0.01em;
}

p {
	margin: 0 0 var(--s-2);
}

a {
	color: var(--navy);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color 160ms ease;
}

a:hover {
	color: var(--accent-dark);
}

ul,
ol {
	margin: 0 0 var(--s-2);
	padding-left: 1.25em;
}

table {
	border-collapse: collapse;
	width: 100%;
}

button {
	font-family: inherit;
}

:focus-visible {
	outline: 2px solid var(--accent-dark);
	outline-offset: 2px;
	border-radius: 2px;
}

::selection {
	background: var(--navy);
	color: #fff;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

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

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	background: var(--navy);
	color: #fff;
	padding: 10px 18px;
	border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
	left: 0;
	color: #fff;
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

.container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 20px;
}

.container-narrow {
	max-width: 780px;
}

.section {
	padding-block: var(--s-8);
}

.section-tinted {
	background: var(--tint);
}

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

.section-intro .eyebrow {
	justify-content: center;
}

.section-intro .section-title {
	margin-inline: auto;
}

.section-intro p {
	text-align: left;
	color: var(--body);
}

.section-intro .intro-lede {
	font-size: 1.075rem;
	color: var(--ink);
	margin-block: var(--s-4) var(--s-3);
}

.section-intro p a {
	color: var(--accent-dark);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.section-intro p a:hover {
	text-decoration-thickness: 2px;
}

.section-navy {
	background: var(--navy-deep);
	color: var(--on-navy);
}

.section-navy .section-title {
	color: #fff;
}

@media (min-width: 960px) {
	.section {
		padding-block: var(--s-12);
	}
}

.eyebrow {
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--accent-dark);
	margin-bottom: var(--s-1);
}

.eyebrow-light {
	color: #f0b5a4;
}

.section-title {
	font-size: clamp(1.7rem, 3.4vw, 2.4rem);
	margin-bottom: var(--s-2);
}

.section-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--s-2);
	margin-bottom: var(--s-5);
}

.section-head .section-title {
	margin-bottom: 0;
}

.section-head-center {
	justify-content: center;
	text-align: center;
}

.section-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	white-space: nowrap;
	padding-bottom: 2px;
	border-bottom: 2px solid transparent;
	transition: border-color 160ms ease;
}

.section-link:hover {
	border-bottom-color: var(--accent-dark);
}

.icon {
	flex: none;
	vertical-align: middle;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 22px;
	border: 1.5px solid transparent;
	border-radius: var(--radius);
	font-family: var(--ff-body);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-lg {
	padding: 14px 28px;
	font-size: 1rem;
}

.btn-block {
	display: flex;
	width: 100%;
}

.btn-solid {
	background: var(--accent);
	color: #fff;
}

.btn-solid:hover {
	background: var(--accent-dark);
	color: #fff;
}

.btn-outline {
	border-color: var(--navy);
	color: var(--navy);
	background: transparent;
}

.btn-outline:hover {
	background: var(--navy);
	color: #fff;
}

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

.btn-ghost-light:hover {
	background: #fff;
	color: var(--navy);
}

.btn-wa {
	background: var(--wa);
	color: #fff;
}

.btn-wa:hover {
	background: #15813f;
	color: #fff;
}

/* --------------------------------------------------------------------------
   Topbar + header
   -------------------------------------------------------------------------- */

.topbar {
	background: var(--navy-deep);
	color: var(--on-navy);
	font-size: 0.8rem;
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-2);
	min-height: 36px;
}

.topbar-note {
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.topbar-contacts {
	display: none;
	gap: var(--s-3);
}

.topbar-contacts a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--on-navy);
	text-decoration: none;
}

.topbar-contacts a:hover {
	color: #fff;
}

@media (min-width: 640px) {
	.topbar-contacts {
		display: flex;
	}
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--bg);
	border-bottom: 1px solid var(--line);
	transition: box-shadow 200ms ease;
}

.site-header.is-scrolled {
	box-shadow: var(--shadow-1);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-3);
	min-height: 72px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--navy);
}

.brand-mark {
	color: var(--navy);
}

.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.brand-name {
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 1.06rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ink);
}

.brand-tag {
	font-size: 0.68rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 3px;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: var(--s-3);
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-list a {
	display: inline-block;
	padding: 6px 2px;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--ink);
	text-decoration: none;
	background-image: linear-gradient(var(--accent-dark), var(--accent-dark));
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0 2px;
	transition: background-size 200ms ease, color 160ms ease;
}

.nav-list a:hover,
.nav-list .current-menu-item > a,
.nav-list .current_page_item > a {
	background-size: 100% 2px;
	color: var(--ink);
}

.nav-list .menu-cta > a {
	background: var(--accent);
	background-image: none;
	color: #fff;
	padding: 10px 20px;
	border-radius: var(--radius);
	transition: background-color 160ms ease, transform 160ms ease;
}

.nav-list .menu-cta > a:hover {
	background: var(--accent-dark);
	transform: translateY(-2px);
}

.nav-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	background: none;
	border: 1.5px solid var(--line);
	border-radius: var(--radius);
	padding: 8px 12px;
	color: var(--ink);
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
}

.nav-toggle .icon-close {
	display: none;
}

.nav-open .nav-toggle .icon-close {
	display: block;
}

.nav-open .nav-toggle .icon-burger {
	display: none;
}

@media (max-width: 959px) {
	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--bg);
		border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow-2);
		display: none;
	}

	.nav-open .site-nav {
		display: block;
	}

	.nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: var(--s-2) 20px var(--s-3);
	}

	.nav-list li {
		border-bottom: 1px solid var(--line);
	}

	.nav-list li:last-child {
		border-bottom: 0;
	}

	.nav-list a {
		display: block;
		padding: 14px 4px;
		background-image: none;
	}

	.nav-list .menu-cta {
		margin-top: var(--s-2);
	}

	.nav-list .menu-cta > a {
		text-align: center;
	}
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
	position: relative;
	min-height: min(88vh, 760px);
	display: flex;
	align-items: flex-end;
	background: var(--navy-deep);
	overflow: hidden;
}

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

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 34, 53, 0.18) 0%, rgba(11, 34, 53, 0.32) 45%, rgba(11, 34, 53, 0.82) 100%);
}

.hero-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-block: var(--s-8) var(--s-6);
	color: #fff;
	max-width: var(--container);
}

.hero-title {
	color: #fff;
	font-size: clamp(2.2rem, 5.4vw, 3.7rem);
	max-width: 15ch;
	margin-bottom: var(--s-2);
}

.hero-lede {
	font-size: clamp(1rem, 1.7vw, 1.18rem);
	max-width: 52ch;
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: var(--s-4);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-2);
	margin-bottom: var(--s-5);
}

.hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-2) var(--s-4);
	list-style: none;
	margin: 0;
	padding: var(--s-2) 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	font-size: 0.86rem;
	color: rgba(255, 255, 255, 0.88);
}

.hero-trust li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.hero-trust .icon {
	color: #f0b5a4;
}

/* --------------------------------------------------------------------------
   USP strip
   -------------------------------------------------------------------------- */

.usp-grid {
	display: grid;
	gap: var(--s-5) var(--s-4);
}

.usp .icon {
	color: var(--accent-dark);
	margin-bottom: var(--s-2);
}

.usp h2 {
	font-size: 1.18rem;
	margin-bottom: 6px;
}

.usp p {
	font-size: 0.94rem;
	color: var(--muted);
	margin: 0;
}

@media (min-width: 640px) {
	.usp-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.usp-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card-grid {
	display: grid;
	gap: var(--s-4);
}

@media (min-width: 640px) {
	.card-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.card-grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

.tour-card,
.post-card {
	display: flex;
	flex-direction: column;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.tour-card:hover,
.post-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-2);
}

.card-media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	background: var(--tint);
	overflow: hidden;
}

.card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.tour-card:hover .card-media img,
.post-card:hover .card-media img {
	transform: scale(1.04);
}

.card-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(11, 34, 53, 0.85);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 4px;
}

.card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: var(--s-3);
}

.card-eyebrow {
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 6px;
}

.card-title {
	font-size: 1.22rem;
	margin-bottom: var(--s-1);
}

.card-title a {
	color: inherit;
	text-decoration: none;
}

.card-title a:hover {
	color: var(--accent-dark);
}

.card-excerpt {
	font-size: 0.92rem;
	color: var(--muted);
	margin-bottom: var(--s-2);
}

.card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-1) var(--s-3);
	list-style: none;
	margin: 0 0 var(--s-2);
	padding: 0;
	font-size: 0.85rem;
	color: var(--body);
}

.card-meta li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.card-meta .icon {
	color: var(--accent-dark);
}

.card-price {
	margin: auto 0 0;
	padding-top: var(--s-2);
	border-top: 1px solid var(--line);
	font-size: 0.9rem;
	color: var(--muted);
}

.card-price strong {
	font-size: 1.1rem;
	color: var(--ink);
}

.card-readmore {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: auto 0 0;
	padding-top: var(--s-2);
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--navy);
}

.card-readmore .icon {
	transition: transform 180ms ease;
}

.post-card:hover .card-readmore .icon {
	transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Split section (charter)
   -------------------------------------------------------------------------- */

.split-grid {
	display: grid;
	gap: var(--s-5);
	align-items: center;
}

.split-media {
	position: relative;
	padding: 0 var(--s-3) var(--s-3) 0;
}

.split-media-block {
	position: absolute;
	top: var(--s-3);
	right: 0;
	bottom: 0;
	left: var(--s-3);
	background: var(--navy);
	border-radius: var(--radius-lg);
}

.split-img {
	position: relative;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-2);
	width: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

.split-copy .section-title {
	max-width: 18ch;
}

.split-copy p {
	max-width: 56ch;
}

@media (min-width: 960px) {
	.split-grid {
		grid-template-columns: 6fr 5fr;
		gap: var(--s-8);
	}
}

.check-list,
.cross-list {
	list-style: none;
	margin: 0 0 var(--s-3);
	padding: 0;
}

.check-list li,
.cross-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding-block: 7px;
	font-size: 0.96rem;
}

.check-list .icon {
	color: #2e7d4f;
	margin-top: 4px;
}

.cross-list .icon {
	color: #b4513a;
	margin-top: 4px;
}

.check-list-cols {
	columns: 1;
}

@media (min-width: 640px) {
	.check-list-cols {
		columns: 2;
		column-gap: var(--s-4);
	}

	.check-list-cols li {
		break-inside: avoid;
	}
}

/* --------------------------------------------------------------------------
   Destination tiles
   -------------------------------------------------------------------------- */

.dest-grid {
	display: grid;
	gap: var(--s-2);
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 960px) {
	.dest-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.dest-tile-tall {
		grid-row: span 2;
	}
}

.dest-tile {
	position: relative;
	display: block;
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 180px;
	background: var(--navy);
}

.dest-tile img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.dest-tile:hover img {
	transform: scale(1.05);
}

.dest-tile::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 34, 53, 0) 40%, rgba(11, 34, 53, 0.78) 100%);
}

.dest-label {
	position: absolute;
	left: var(--s-2);
	right: var(--s-2);
	bottom: var(--s-2);
	z-index: 1;
	color: #fff;
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.dest-label strong {
	font-family: var(--ff-display);
	font-size: 1.05rem;
}

.dest-label span {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 960px) {
	.dest-tile {
		min-height: 220px;
	}

	.dest-tile-tall {
		min-height: 100%;
	}
}

/* --------------------------------------------------------------------------
   Steps
   -------------------------------------------------------------------------- */

.steps-grid {
	display: grid;
	gap: var(--s-4);
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: step;
}

@media (min-width: 960px) {
	.steps-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--s-6);
	}
}

.step {
	position: relative;
	padding: var(--s-4);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
}

.step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	font-family: var(--ff-display);
	font-size: 1.1rem;
	margin-bottom: var(--s-2);
}

.step h3 {
	font-size: 1.15rem;
	margin-bottom: 6px;
}

.step p {
	font-size: 0.94rem;
	color: var(--muted);
	margin: 0;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

/* Real-rating summary line under the heading. */
.t-summary {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--s-1) 12px;
	margin: var(--s-1) 0 0;
	color: var(--on-navy);
	font-size: 0.96rem;
}

.t-summary .review-stars {
	color: #f3b84b;
}

.t-summary-text strong {
	color: #fff;
}

/* Auto-scrolling marquee. The track holds two identical sets of cards and
   slides left by exactly half its width, so the loop is seamless. Movement
   is a GPU-friendly transform (no layout/paint thrash, no CLS). A gradient
   mask fades cards in and out at both edges. */
.t-marquee {
	position: relative;
	margin-top: var(--s-5);
	overflow: hidden;
	/* Edge fade — kept off the very edges so cards melt in/out gracefully. */
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.t-track {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	gap: var(--s-3);
	padding-block: var(--s-1);
	will-change: transform;
	animation: kdt-marquee 60s linear infinite;
}

/* Pause when a guest hovers or tab-focuses a card, so quotes are readable. */
.t-marquee:hover .t-track,
.t-marquee:focus-within .t-track {
	animation-play-state: paused;
}

@keyframes kdt-marquee {
	from { transform: translate3d(0, 0, 0); }
	to   { transform: translate3d(-50%, 0, 0); }
}

/* Stable card size keeps the track height fixed (no layout shift). */
.t-card {
	flex: 0 0 320px;
	width: 320px;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: var(--s-2);
	padding: var(--s-3);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-lg);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(2px);
}

.t-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-2);
}

.t-avatar {
	flex: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.82rem;
	letter-spacing: 0.05em;
}

.t-card .review-stars {
	color: #f3b84b;
}

.t-quote {
	margin: 0;
	flex: 1;
}

.t-quote p {
	margin: 0;
	font-family: var(--ff-display);
	font-size: 1.02rem;
	line-height: 1.5;
	color: #fff;
	/* Cap each card to a readable height so every card matches (no jitter). */
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.t-foot {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 0.86rem;
}

.t-name {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 10px;
	color: #fff;
	font-weight: 600;
}

.t-meta {
	color: var(--on-navy);
}

@media (min-width: 640px) {
	.t-card {
		flex-basis: 360px;
		width: 360px;
		padding: var(--s-4);
	}
}

/* Accessibility: honour reduced-motion. The global rule already neutralises
   animation-duration, but we also unset the transform and let the track
   scroll manually, so the cards are never frozen mid-slide off-screen. */
@media (prefers-reduced-motion: reduce) {
	.t-marquee {
		overflow-x: auto;
		-webkit-mask-image: none;
		mask-image: none;
		scrollbar-width: thin;
	}

	.t-track {
		animation: none;
		transform: none;
	}

	/* The duplicated, aria-hidden set is redundant when not animating. */
	.t-track .t-card[aria-hidden="true"] {
		display: none;
	}
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-teaser-grid {
	display: grid;
	gap: var(--s-5);
}

@media (min-width: 960px) {
	.faq-teaser-grid {
		grid-template-columns: 4fr 7fr;
		gap: var(--s-8);
	}
}

.faq-item {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	margin-bottom: var(--s-2);
}

.faq-item summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-2);
	padding: 16px var(--s-3);
	font-weight: 600;
	color: var(--ink);
}

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

.faq-item summary::after {
	content: "+";
	font-size: 1.3rem;
	line-height: 1;
	color: var(--accent-dark);
	transition: transform 180ms ease;
	flex: none;
}

.faq-item[open] summary::after {
	transform: rotate(45deg);
}

.faq-item p {
	padding: 0 var(--s-3) var(--s-3);
	margin: 0;
	color: var(--muted);
}

/* --------------------------------------------------------------------------
   GEO answer box (citable quick-answer / key-takeaways block)
   Sits at the top of articles and on key pages. High-contrast, scannable,
   built so AI engines and readers can lift the core facts at a glance.
   -------------------------------------------------------------------------- */

.kdt-answer-box {
	background: var(--tint);
	border: 1px solid var(--line);
	border-left: 4px solid var(--accent);
	border-radius: 0 var(--radius) var(--radius) 0;
	padding: var(--s-3) var(--s-4);
	margin: 0 0 var(--s-4);
}

.kdt-answer-box > h2,
.kdt-answer-box > h3,
.kdt-answer-box .kdt-answer-box-title {
	font-family: var(--ff-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent-dark);
	margin: 0 0 var(--s-2);
}

.kdt-answer-box ul {
	margin: 0;
	padding-left: 1.2em;
}

.kdt-answer-box li {
	margin-bottom: 6px;
	color: var(--ink);
	font-size: 0.98rem;
	line-height: 1.55;
}

.kdt-answer-box li:last-child {
	margin-bottom: 0;
}

.kdt-answer-box li strong {
	color: var(--ink);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
	background: var(--navy);
	color: var(--on-navy);
	padding-block: var(--s-8);
}

.cta-band-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-4);
}

.cta-band h2 {
	color: #fff;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	max-width: 24ch;
	margin-bottom: var(--s-1);
}

.cta-band p {
	margin: 0;
	max-width: 50ch;
}

.cta-band-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-2);
}

/* --------------------------------------------------------------------------
   Page head & breadcrumb
   -------------------------------------------------------------------------- */

.page-head {
	background: var(--tint);
	border-bottom: 1px solid var(--line);
	padding-block: var(--s-5) var(--s-6);
}

.page-title {
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	margin-bottom: var(--s-1);
}

.page-lede {
	max-width: 62ch;
	font-size: 1.02rem;
	color: var(--muted);
	margin: 0;
}

.breadcrumb {
	margin-bottom: var(--s-3);
	font-size: 0.82rem;
}

.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
	color: var(--muted);
}

.breadcrumb li + li::before {
	content: "/";
	margin-right: 4px;
	color: var(--line);
}

.breadcrumb a {
	color: var(--muted);
	text-decoration: none;
}

.breadcrumb a:hover {
	color: var(--accent-dark);
	text-decoration: underline;
}

.breadcrumb [aria-current] {
	color: var(--ink);
	font-weight: 500;
}

.fact-strip {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-1) var(--s-4);
	list-style: none;
	margin: var(--s-2) 0 0;
	padding: 0;
	font-size: 0.9rem;
	color: var(--body);
}

.fact-strip li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.fact-strip .icon {
	color: var(--accent-dark);
}

/* --------------------------------------------------------------------------
   Archive extras
   -------------------------------------------------------------------------- */

.archive-note {
	margin-top: var(--s-8);
	padding: var(--s-5);
	background: var(--surface);
	border: 1px solid var(--line);
	border-left: 4px solid var(--accent);
	border-radius: var(--radius-lg);
}

.archive-note h2 {
	font-size: 1.3rem;
}

.archive-note p {
	max-width: 70ch;
	color: var(--muted);
}

.pagination,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-1);
	justify-content: center;
	margin-top: var(--s-6);
}

.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding-inline: 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	color: var(--ink);
	text-decoration: none;
	font-weight: 500;
}

.nav-links .page-numbers.current {
	background: var(--navy);
	border-color: var(--navy);
	color: #fff;
}

.nav-links a.page-numbers:hover {
	border-color: var(--navy);
}

/* --------------------------------------------------------------------------
   Single (boat / package / post)
   -------------------------------------------------------------------------- */

.single-hero {
	margin: var(--s-4) 0 0;
}

.single-hero img {
	width: 100%;
	aspect-ratio: 21 / 9;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-1);
}

.single-layout {
	display: grid;
	gap: var(--s-6);
	padding-block: var(--s-6);
}

@media (min-width: 960px) {
	.single-layout {
		grid-template-columns: minmax(0, 7fr) minmax(300px, 3.4fr);
		gap: var(--s-8);
		padding-block: var(--s-8);
	}
}

.content-section {
	margin-bottom: var(--s-6);
}

.content-heading {
	font-size: 1.5rem;
	padding-bottom: var(--s-1);
	border-bottom: 2px solid var(--line);
	margin-bottom: var(--s-3);
}

.single-sidebar {
	display: flex;
	flex-direction: column;
	gap: var(--s-3);
}

.booking-card {
	position: sticky;
	top: 96px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-1);
	padding: var(--s-4);
}

.booknow-aside .booking-card,
.booknow-aside .booking-card + .booking-card {
	position: static;
	margin-bottom: var(--s-3);
}

.booking-card-heading {
	font-size: 1.12rem;
	margin-bottom: var(--s-2);
}

.booking-card-price {
	font-size: 0.92rem;
	color: var(--muted);
	padding-bottom: var(--s-2);
	border-bottom: 1px solid var(--line);
	margin-bottom: var(--s-2);
}

.booking-card-price strong {
	display: block;
	font-family: var(--ff-display);
	font-size: 1.7rem;
	color: var(--ink);
	margin: 2px 0;
}

.price-from {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.72rem;
	font-weight: 600;
}

.booking-card-facts {
	list-style: none;
	margin: 0 0 var(--s-3);
	padding: 0;
	font-size: 0.9rem;
}

.booking-card-facts li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	padding-block: 6px;
}

.booking-card-facts .icon {
	color: var(--accent-dark);
	margin-top: 3px;
}

.booking-card .btn + .btn {
	margin-top: var(--s-1);
}

.booking-card-note {
	font-size: 0.8rem;
	color: var(--muted);
	margin: var(--s-2) 0 0;
}

/* Itinerary timeline */

.itinerary-timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.itinerary-timeline::before {
	content: "";
	position: absolute;
	left: 7px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background: var(--line);
}

.itinerary-day {
	position: relative;
	padding: 0 0 var(--s-4) var(--s-5);
}

.itinerary-day::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--accent);
	border: 3px solid var(--bg);
	box-shadow: 0 0 0 2px var(--accent);
}

.itinerary-marker {
	display: inline-block;
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent-dark);
	margin-bottom: 4px;
}

.itinerary-body h3 {
	font-size: 1.18rem;
	margin-bottom: 6px;
}

.itinerary-body p {
	color: var(--muted);
	margin: 0;
	max-width: 65ch;
}

/* Includes / excludes */

.inc-exc-grid {
	display: grid;
	gap: var(--s-4);
}

@media (min-width: 640px) {
	.inc-exc-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.inc-col h3,
.exc-col h3 {
	font-size: 1.05rem;
	margin-bottom: var(--s-1);
}

/* Spec table & generic table */

.kdt-table {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	font-size: 0.95rem;
}

.kdt-table th,
.kdt-table td {
	text-align: left;
	padding: 12px var(--s-3);
	border-bottom: 1px solid var(--line);
	vertical-align: top;
}

.kdt-table tr:last-child th,
.kdt-table tr:last-child td {
	border-bottom: 0;
}

.kdt-table th {
	width: 38%;
	color: var(--ink);
	font-weight: 600;
	background: var(--tint);
}

/* Comparison table (Open Trip vs Charter vs Liveaboard) */

.compare-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.compare-table {
	width: 100%;
	min-width: 640px;
	border-collapse: separate;
	border-spacing: 0;
}

.compare-table th {
	width: auto;
}

.compare-table thead th {
	background: var(--navy);
	color: #fff;
	font-weight: 600;
}

.compare-table tbody th {
	width: 20%;
	white-space: nowrap;
}

.compare-table caption {
	caption-side: bottom;
	font-size: 0.84rem;
	color: var(--muted);
	padding-top: var(--s-2);
	text-align: left;
}

/* Muted note under a comparison table / section */

.section-foot-note {
	margin-top: var(--s-4);
	font-size: 0.94rem;
	color: var(--muted);
}

/* Short editorial intro above archive grids */

.archive-intro {
	max-width: 64ch;
	margin-bottom: var(--s-4);
}

.archive-intro p {
	color: var(--muted);
	margin-bottom: var(--s-2);
}

.archive-intro a {
	color: var(--accent-dark);
}

/* Boat gallery */

.boat-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--s-2);
}

@media (min-width: 640px) {
	.boat-gallery {
		grid-template-columns: repeat(3, 1fr);
	}
}

.boat-gallery figure {
	margin: 0;
}

.boat-gallery img {
	border-radius: var(--radius);
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
}

/* Author box */

.author-box {
	display: flex;
	gap: var(--s-3);
	align-items: flex-start;
	margin-top: var(--s-5);
	padding: var(--s-4);
	background: var(--tint);
	border-radius: var(--radius-lg);
}

.author-box .brand-mark {
	flex: none;
	color: var(--navy);
}

.author-box-name {
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 4px;
}

.author-box-bio {
	font-size: 0.9rem;
	color: var(--muted);
	margin: 0;
}

/* Author persona (E-E-A-T) */

.byline {
	color: var(--muted);
	font-size: 0.92rem;
	margin-top: var(--s-2);
}

.byline a {
	color: var(--navy);
	font-weight: 600;
}

.author-avatar {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 0.04em;
}

.author-box-name a {
	color: var(--ink);
}

.author-box-role {
	display: block;
	font-weight: 400;
	font-size: 0.85rem;
	color: var(--muted);
	margin-top: 2px;
}

.author-box-reviewed {
	font-size: 0.82rem;
	color: var(--muted);
	margin: 8px 0 0;
	font-style: italic;
}

/* --------------------------------------------------------------------------
   Entry content typography
   -------------------------------------------------------------------------- */

.entry-content {
	font-size: 1.02rem;
}

.entry-content h2 {
	font-size: 1.6rem;
	margin-top: var(--s-6);
}

.entry-content h3 {
	font-size: 1.25rem;
	margin-top: var(--s-4);
}

.entry-content p,
.entry-content ul,
.entry-content ol {
	margin-bottom: var(--s-3);
}

.entry-content li {
	margin-bottom: 6px;
}

.entry-content img {
	border-radius: var(--radius-lg);
	margin-block: var(--s-2);
}

.entry-content blockquote {
	margin: var(--s-4) 0;
	padding: var(--s-2) var(--s-4);
	border-left: 4px solid var(--accent);
	background: var(--tint);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-family: var(--ff-display);
	font-size: 1.1rem;
	color: var(--ink);
}

.entry-content a {
	color: var(--accent-dark);
}

.entry-content figure {
	margin: var(--s-4) 0;
}

.entry-content figcaption {
	font-size: 0.84rem;
	color: var(--muted);
	margin-top: 6px;
}

.entry-content table th,
.entry-content table td {
	border: 1px solid var(--line);
	padding: 10px 14px;
	text-align: left;
}

.entry-content table th {
	background: var(--tint);
}

/* --------------------------------------------------------------------------
   Forms (booking, check booking, search)
   -------------------------------------------------------------------------- */

.kdt-form {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: var(--s-4);
	box-shadow: var(--shadow-1);
}

.kdt-form-inline {
	box-shadow: none;
}

.form-grid {
	display: grid;
	gap: var(--s-3);
	margin-bottom: var(--s-3);
}

@media (min-width: 640px) {
	.form-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.form-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: var(--s-2);
}

.form-grid .form-row {
	margin-bottom: 0;
}

.form-row label {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--ink);
}

.form-row .req {
	color: var(--accent-dark);
}

.form-row .optional {
	color: var(--muted);
	font-weight: 400;
}

.form-row input,
.form-row select,
.form-row textarea,
.search-form input[type="search"] {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--line);
	border-radius: var(--radius);
	background: var(--bg);
	font-family: inherit;
	font-size: 0.96rem;
	color: var(--ink);
	transition: border-color 160ms ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus,
.search-form input[type="search"]:focus {
	outline: none;
	border-color: var(--navy);
	box-shadow: 0 0 0 3px rgba(17, 48, 74, 0.12);
}

.field-hint {
	font-size: 0.8rem;
	color: var(--muted);
}

.field-error {
	font-size: 0.84rem;
	font-weight: 500;
	color: #a8341c;
}

.form-footnote {
	font-size: 0.84rem;
	color: var(--muted);
	margin: var(--s-2) 0 0;
	max-width: 64ch;
}

.form-locked-item {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px var(--s-2);
	padding: var(--s-2) var(--s-3);
	background: var(--tint);
	border-radius: var(--radius);
	margin-bottom: var(--s-3);
}

.form-locked-label {
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}

.form-locked-item strong {
	font-family: var(--ff-display);
	font-size: 1.1rem;
	color: var(--ink);
}

.form-locked-price {
	font-size: 0.9rem;
	color: var(--muted);
}

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

.form-alert {
	padding: var(--s-3) var(--s-4);
	border-radius: var(--radius);
	margin-bottom: var(--s-3);
	font-size: 0.95rem;
}

.form-alert ul {
	margin: var(--s-1) 0 0;
}

.form-alert-error {
	background: #fbeae5;
	border: 1px solid #ecbdb0;
	color: #7c2d18;
}

.inline-controls {
	display: flex;
	gap: var(--s-1);
	flex-wrap: wrap;
}

.inline-controls input {
	flex: 1;
	min-width: 220px;
}

.status-badge {
	display: inline-block;
	padding: 3px 12px;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 600;
	background: var(--tint);
	color: var(--ink);
	text-transform: capitalize;
}

.status-pending,
.status-unpaid {
	background: #fdf0d4;
	color: #7a5410;
}

.status-confirmed,
.status-paid {
	background: #ddf2e4;
	color: #205a37;
}

.status-cancelled {
	background: #fbeae5;
	color: #7c2d18;
}

/* Confirmation page */

.confirmation-code-card {
	text-align: center;
	background: var(--navy);
	color: var(--on-navy);
	border-radius: var(--radius-lg);
	padding: var(--s-5);
	margin-bottom: var(--s-4);
}

.confirmation-label {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: var(--s-1);
}

.confirmation-code {
	font-family: var(--ff-display);
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	color: #fff;
	letter-spacing: 0.04em;
	margin-bottom: var(--s-1);
}

.confirmation-status {
	margin: 0;
}

.confirmation-next {
	margin-top: var(--s-4);
}

.confirmation-next h2 {
	font-size: 1.4rem;
}

.confirmation-next ol {
	padding-left: 1.4em;
}

.confirmation-next li {
	margin-bottom: var(--s-1);
}

.check-result {
	margin-top: var(--s-4);
}

.check-result-title {
	font-size: 1.4rem;
}

/* --------------------------------------------------------------------------
   Contact & Book Now layouts
   -------------------------------------------------------------------------- */

.contact-grid {
	display: grid;
	gap: var(--s-5);
}

@media (min-width: 960px) {
	.contact-grid {
		grid-template-columns: 5fr 6fr;
		gap: var(--s-8);
	}
}

.contact-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: var(--s-4);
	margin-bottom: var(--s-3);
}

.contact-card h2 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.15rem;
	margin-bottom: var(--s-1);
}

.contact-card h2 .icon {
	color: var(--accent-dark);
}

.contact-card p {
	margin-bottom: var(--s-1);
}

.contact-hint {
	font-size: 0.86rem;
	color: var(--muted);
}

.contact-card .btn {
	margin-top: var(--s-1);
}

.contact-map iframe {
	display: block;
	width: 100%;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
}

.map-link {
	font-size: 0.84rem;
	margin-top: var(--s-1);
}

.booknow-grid {
	display: grid;
	gap: var(--s-5);
	align-items: start;
}

@media (min-width: 960px) {
	.booknow-grid {
		grid-template-columns: 7fr 4fr;
		gap: var(--s-8);
	}
}

.notfound-links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-2);
	margin-top: var(--s-4);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
	background: var(--navy-deep);
	color: var(--on-navy);
	font-size: 0.92rem;
}

.footer-grid {
	display: grid;
	gap: var(--s-5);
	padding-block: var(--s-8) var(--s-6);
}

@media (min-width: 640px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.footer-grid {
		grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
	}
}

.brand-footer,
.brand-footer .brand-mark {
	color: #fff;
}

.brand-footer .brand-name {
	color: #fff;
}

.brand-footer .brand-tag {
	color: var(--on-navy);
}

.footer-about {
	margin-top: var(--s-2);
	max-width: 38ch;
	color: var(--on-navy);
}

.footer-social {
	display: flex;
	gap: var(--s-1);
	margin-top: var(--s-2);
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	color: var(--on-navy);
	transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-social a:hover {
	color: #fff;
	border-color: #fff;
	transform: translateY(-2px);
}

.footer-heading {
	font-family: var(--ff-body);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: var(--s-2);
}

.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu li {
	margin-bottom: 9px;
}

.footer-menu a {
	color: var(--on-navy);
	text-decoration: none;
}

.footer-menu a:hover {
	color: #fff;
	text-decoration: underline;
}

.footer-contact p {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-bottom: var(--s-2);
	font-style: normal;
}

.footer-contact .icon {
	color: #f0b5a4;
	margin-top: 4px;
}

.footer-contact a {
	color: var(--on-navy);
}

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

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-block: var(--s-3);
	font-size: 0.82rem;
}

.footer-bottom-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: var(--s-1) var(--s-3);
}

.footer-bottom p {
	margin: 0;
}

.footer-legal {
	display: flex;
	gap: var(--s-3);
}

.footer-legal a {
	color: var(--on-navy);
}

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

/* --------------------------------------------------------------------------
   WhatsApp float
   -------------------------------------------------------------------------- */

.wa-float {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--wa);
	color: #fff;
	padding: 12px 18px;
	border-radius: 999px;
	box-shadow: var(--shadow-2);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.92rem;
	transition: transform 160ms ease, background-color 160ms ease;
}

.wa-float:hover {
	transform: translateY(-3px);
	background: #15813f;
	color: #fff;
}

@media (max-width: 639px) {
	.wa-float-label {
		display: none;
	}

	.wa-float {
		padding: 13px;
	}
}

/* --------------------------------------------------------------------------
   Guest reviews
   -------------------------------------------------------------------------- */

.review-stars {
	display: inline-flex;
	gap: 2px;
	color: var(--accent);
	flex: none;
}

.review-stars .star {
	position: relative;
	display: inline-flex;
}

.review-stars .star-svg-fill {
	position: absolute;
	inset: 0;
}

.review-stars .star-empty .star-svg-fill {
	display: none;
}

.review-stars .star-half .star-svg-fill {
	clip-path: inset(0 50% 0 0);
}

.reviews-summary {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--s-2) var(--s-3);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-1);
	padding: var(--s-3) var(--s-4);
	margin-bottom: var(--s-4);
}

.reviews-average {
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 2.9rem;
	line-height: 1;
	color: var(--ink);
}

.reviews-summary-detail {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.reviews-count {
	margin: 0;
	color: var(--muted);
	font-size: 0.9rem;
}

.reviews-summary-empty {
	display: block;
}

.reviews-empty-title {
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 1.3rem;
	color: var(--ink);
	margin: 0 0 4px;
}

.review-list {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--s-4);
	display: grid;
	gap: var(--s-2);
}

@media (min-width: 960px) {
	.review-list {
		grid-template-columns: 1fr 1fr;
		gap: var(--s-3);
	}
}

.review-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: var(--s-3);
}

.review-head {
	display: flex;
	align-items: center;
	gap: var(--s-2);
	margin-bottom: var(--s-2);
}

.review-avatar {
	flex: none;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
}

.review-who {
	flex: 1;
	min-width: 0;
}

.review-name {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 10px;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--ink);
}

.review-meta {
	margin: 0;
	font-size: 0.8rem;
	color: var(--muted);
}

.verified-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 2px 9px;
	border-radius: 999px;
	background: #e7f5ec;
	color: #186a3a;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.review-title {
	font-size: 1.05rem;
	margin: 0 0 6px;
}

.review-body {
	margin: 0;
	font-size: 0.95rem;
	color: var(--body);
}

.reviews-page-empty {
	color: var(--muted);
}

.reviews-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-2);
	margin-bottom: var(--s-4);
}

/* Write-a-review collapsible */

.review-form-wrap {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
}

.review-form-wrap > summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-2);
	padding: 18px var(--s-3);
	font-weight: 600;
	font-size: 1.05rem;
	font-family: var(--ff-display);
	color: var(--ink);
}

.review-form-wrap > summary::-webkit-details-marker {
	display: none;
}

.review-form-wrap > summary::after {
	content: "+";
	font-size: 1.4rem;
	line-height: 1;
	color: var(--accent-dark);
	transition: transform 180ms ease;
	flex: none;
}

.review-form-wrap[open] > summary::after {
	transform: rotate(45deg);
}

.review-form-inner {
	padding: 0 var(--s-3) var(--s-3);
}

.review-form {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

/* Accessible pure-CSS star rating input (radios, RTL row trick) */

.rating-fieldset {
	border: 0;
	padding: 0;
	margin: 0 0 var(--s-3);
}

.rating-fieldset legend {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--ink);
	padding: 0;
	margin-bottom: 6px;
}

.rating-stars {
	display: inline-flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 2px;
}

.rating-stars input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.rating-stars label {
	cursor: pointer;
	display: inline-flex;
	padding: 2px;
	color: var(--line);
	transition: color 120ms ease, transform 120ms ease;
}

.rating-stars label .star-svg {
	stroke: var(--muted);
}

.rating-stars input:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
	color: var(--accent);
}

.rating-stars input:checked ~ label .star-svg,
.rating-stars label:hover .star-svg,
.rating-stars label:hover ~ label .star-svg {
	stroke: var(--accent);
}

.rating-stars label:hover {
	transform: scale(1.08);
}

.rating-stars input:focus-visible + label {
	outline: 2px solid var(--accent-dark);
	outline-offset: 2px;
	border-radius: 4px;
}

/* Success notice + card rating line */

.form-alert-success {
	background: #e7f5ec;
	border: 1px solid #bfe3cc;
	color: #14532d;
}

.form-alert-success p {
	margin: 4px 0 0;
}

.card-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 var(--s-1);
	font-size: 0.85rem;
}

.card-rating-text {
	font-weight: 600;
	color: var(--ink);
}

.card-rating-count {
	font-weight: 400;
	color: var(--muted);
}

/* --------------------------------------------------------------------------
   Primary nav dropdowns (destination-first menu)
   Desktop: hover / :focus-within / .submenu-open. Mobile: button accordion.
   -------------------------------------------------------------------------- */

.nav-list .menu-item-has-children {
	position: relative;
	display: flex;
	align-items: center;
	gap: 2px;
}

.submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: 0;
	padding: 4px;
	color: var(--muted);
	cursor: pointer;
	border-radius: var(--radius);
}

.submenu-toggle:hover,
.submenu-toggle:focus-visible {
	color: var(--ink);
}

.submenu-toggle .icon-caret {
	transition: transform 200ms ease;
}

.submenu-open > .submenu-toggle .icon-caret {
	transform: rotate(180deg);
}

.nav-list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 960px) {
	.nav-list .sub-menu {
		position: absolute;
		top: calc(100% + 10px);
		left: -14px;
		min-width: 240px;
		background: var(--surface);
		border: 1px solid var(--line);
		border-radius: var(--radius-lg);
		box-shadow: var(--shadow-2);
		padding: 8px;
		display: none;
		z-index: 110;
	}

	/* Hover bridge so the pointer can travel into the panel. */
	.nav-list .sub-menu::before {
		content: "";
		position: absolute;
		top: -12px;
		left: 0;
		right: 0;
		height: 12px;
	}

	.nav-list .menu-item-has-children:hover > .sub-menu,
	.nav-list .menu-item-has-children:focus-within > .sub-menu,
	.nav-list .menu-item-has-children.submenu-open > .sub-menu {
		display: block;
	}

	.nav-list .sub-menu a {
		display: block;
		padding: 9px 12px;
		border-radius: var(--radius);
		background-image: none;
		font-size: 0.92rem;
	}

	.nav-list .sub-menu a:hover,
	.nav-list .sub-menu a:focus-visible {
		background: var(--tint);
	}
}

@media (max-width: 959px) {
	.nav-list .menu-item-has-children {
		flex-wrap: wrap;
		align-items: stretch;
	}

	.nav-list .menu-item-has-children > a {
		flex: 1;
	}

	.submenu-toggle {
		padding: 8px 14px;
	}

	.nav-list .sub-menu {
		flex-basis: 100%;
		display: none;
		border-top: 1px solid var(--line);
		background: var(--tint);
		border-radius: var(--radius);
		margin-bottom: var(--s-1);
	}

	.nav-list .menu-item-has-children.submenu-open > .sub-menu {
		display: block;
	}

	.nav-list .sub-menu li {
		border-bottom: 0;
	}

	.nav-list .sub-menu a {
		padding: 11px 16px;
		font-size: 0.92rem;
	}
}

/* --------------------------------------------------------------------------
   Destination pillar pages
   -------------------------------------------------------------------------- */

.dest-hero {
	min-height: min(62vh, 540px);
}

.dest-breadcrumb {
	padding-top: var(--s-2);
}

.dest-editorial {
	padding-top: var(--s-4);
}

.section-lede {
	max-width: 620px;
	color: var(--muted);
	margin-top: 4px;
}

.exp-grid {
	display: grid;
	gap: var(--s-2);
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.exp-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.exp-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.exp-item {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: var(--s-3);
}

.exp-item .icon {
	color: var(--accent);
	margin-bottom: var(--s-1);
}

.exp-item h3 {
	font-size: 1.05rem;
	margin-bottom: 6px;
}

.exp-item p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--muted);
}

.dest-tips {
	margin-top: var(--s-2);
}

.dest-tips li {
	font-size: 0.95rem;
}

/* Front page: destination hub tiles */

.dest-grid-hubs {
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.dest-grid-hubs {
		grid-template-columns: repeat(3, 1fr);
	}
}

.dest-tile-hub {
	min-height: 240px;
}

@media (min-width: 960px) {
	.dest-tile-hub {
		min-height: 320px;
	}

	.dest-grid-hubs .dest-label strong {
		font-size: 1.3rem;
	}
}

.dest-grid-spots {
	margin-top: var(--s-2);
}

@media (min-width: 960px) {
	.dest-grid-spots {
		grid-template-columns: repeat(4, 1fr);
	}

	.dest-grid-spots .dest-tile {
		min-height: 170px;
	}
}

/* --------------------------------------------------------------------------
   /tours/ destination filter bar
   -------------------------------------------------------------------------- */

.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-1);
	margin-bottom: var(--s-4);
}

.filter-chip {
	display: inline-block;
	padding: 8px 18px;
	border: 1.5px solid var(--line);
	border-radius: 999px;
	background: var(--surface);
	color: var(--ink);
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.filter-chip:hover {
	border-color: var(--navy);
}

.filter-chip.is-active {
	background: var(--navy);
	border-color: var(--navy);
	color: #fff;
}
