/* =========================================================================
   Malisko Charter - premium private boat charter, Hvar
   Display: Marcellus  |  Body/UI: Hanken Grotesk
   Palette: ivory canvas, deep navy, ONE champagne-gold accent (small doses:
   labels, hairlines, hover states, primary CTA). Sea-glow gradients stand in
   for photography until real images arrive.
   Radius lock: inputs 8 / buttons 10 / cards 16 / media 20.
   ========================================================================= */

:root {
	/* surfaces */
	--ivory:    #FAF7F1;
	--ivory-2:  #F2EDE2;
	--navy:     #071E2F;
	--navy-2:   #0C2A40;
	--navy-3:   #113850;
	--mist:     #E7EFF2;

	/* text */
	--ink:      #16293A;
	--muted:    #5C6C7A;
	--foam:     #F7F5EF;
	--foam-mut: rgba(247, 245, 239, .72);

	/* accent (the only one) */
	--gold:      #C2A164;
	--gold-d:    #A5854B;
	--gold-lt:   #D9C08D;
	--gold-line: rgba(194, 161, 100, .38);
	--gold-tint: rgba(194, 161, 100, .12);

	/* lines + feedback */
	--line:    rgba(22, 41, 58, .13);
	--line-2:  rgba(22, 41, 58, .07);
	--line-fm: rgba(247, 245, 239, .16);
	--err:     #A63D36;

	/* depth (navy-tinted) */
	--shadow-sm: 0 1px 2px rgba(7, 30, 47, .05), 0 4px 14px rgba(7, 30, 47, .07);
	--shadow:    0 10px 32px rgba(7, 30, 47, .12);
	--shadow-lg: 0 28px 70px rgba(7, 30, 47, .22);

	/* shape */
	--r-in:   8px;
	--r-btn:  10px;
	--r-card: 16px;
	--r-med:  20px;

	/* type */
	--font-display: 'Marcellus', 'Iowan Old Style', Georgia, serif;
	--font-sans: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--fs-hero: clamp(2.7rem, 5.6vw, 4.8rem);
	--fs-h2:   clamp(1.9rem, 3.4vw, 2.9rem);
	--fs-h3:   clamp(1.35rem, 2.1vw, 1.7rem);
	--fs-lead: 1.17rem;
	--fs-sm:   .875rem;

	/* rhythm */
	--wrap: 1240px;
	--pad:  clamp(1.15rem, 4vw, 2.5rem);
	--sec:  clamp(5rem, 11vw, 9.5rem);
	--ease: cubic-bezier(.22, .8, .26, 1);

	/* the atmospheric sea gradient used wherever photos are still missing */
	--sea-photo:
		radial-gradient(120% 90% at 78% 12%, rgba(217, 192, 141, .16) 0%, transparent 45%),
		radial-gradient(150% 110% at 20% 100%, rgba(30, 90, 110, .5) 0%, transparent 60%),
		linear-gradient(168deg, #0B2A40 0%, #0E3A52 46%, #14556B 78%, #1C6F80 100%);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: clamp(1rem, .97rem + .2vw, 1.0625rem);
	line-height: 1.7;
	color: var(--ink);
	background: var(--ivory);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}

img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 400;
	color: var(--navy);
	text-wrap: balance;
	letter-spacing: .005em;
}
h1 { font-size: var(--fs-hero); line-height: 1.06; }
h2 { font-size: var(--fs-h2); line-height: 1.12; }
h3 { font-size: var(--fs-h3); line-height: 1.25; }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--foam); }

.lead { font-size: var(--fs-lead); line-height: 1.65; max-width: 58ch; color: var(--muted); }
.on-dark .lead, .on-dark p { color: var(--foam-mut); }
.prose p { max-width: 65ch; }
.prose p + p { margin-top: 1.1em; }

/* gold eyebrow label - the brand's small-caps signature, used sparingly */
.caps {
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--gold-d);
}
.on-dark .caps { color: var(--gold-lt); }

.price {
	font-family: var(--font-display);
	font-size: clamp(1.45rem, 2.3vw, 1.8rem);
	color: var(--navy);
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}
.on-dark .price { color: var(--gold-lt); }
.price-note { display: block; font-size: var(--fs-sm); color: var(--muted); }
.on-dark .price-note { color: var(--foam-mut); }

/* ---------- layout primitives ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.sec { padding-block: var(--sec); }
.sec-dark { background: var(--navy); color: var(--foam); }
.sec-tint { background: var(--ivory-2); }
.sec-head { display: grid; gap: 1.1rem; margin-bottom: clamp(2.4rem, 5vw, 4rem); max-width: 780px; }
.sec-head .caps + h2 { margin-top: -.2rem; }

/* thin gold rule used as a section opener */
.gold-rule { width: 56px; height: 2px; background: var(--gold); border: 0; margin: 0; }

/* ---------- buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55rem;
	min-height: 50px;
	padding: .85rem 1.9rem;
	border-radius: var(--r-btn);
	font-weight: 600;
	font-size: .98rem;
	letter-spacing: .02em;
	line-height: 1.2;
	white-space: nowrap;
	transition: background-color .25s var(--ease), border-color .25s var(--ease),
		color .25s var(--ease), transform .15s var(--ease), box-shadow .25s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-lt); box-shadow: var(--shadow); }
.on-dark .btn-primary { box-shadow: 0 6px 24px rgba(0, 0, 0, .35); }

.btn-ghost { border: 1px solid var(--line); color: var(--navy); background: transparent; }
.btn-ghost:hover { border-color: var(--gold-d); color: var(--gold-d); }
.on-dark .btn-ghost { border-color: var(--line-fm); color: var(--foam); }
.on-dark .btn-ghost:hover { border-color: var(--gold-lt); color: var(--gold-lt); }

/* small tag chip */
.chip {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	padding: .3rem .85rem;
	border-radius: 999px;
	border: 1px solid var(--gold-line);
	background: var(--gold-tint);
	color: var(--gold-d);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.on-dark .chip { color: var(--gold-lt); background: rgba(194, 161, 100, .14); }

/* ---------- forms ---------- */
.field { display: grid; gap: .45rem; }
.field label { font-weight: 600; font-size: .95rem; color: var(--navy); }
.field .hint { font-size: var(--fs-sm); color: var(--muted); }
.field .error { font-size: var(--fs-sm); color: var(--err); font-weight: 600; }

.input, .field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="date"], .field input[type="number"], .field select, .field textarea {
	width: 100%;
	min-height: 50px;
	padding: .7rem 1rem;
	border: 1px solid var(--line);
	border-radius: var(--r-in);
	background: #fff;
	color: var(--ink);
	font: inherit;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--muted); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
	border-color: var(--gold);
	box-shadow: 0 0 0 3px var(--gold-tint);
}
.field .is-invalid { border-color: var(--err); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
.btn:focus-visible { outline-offset: 1px; border-radius: var(--r-btn); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; border-radius: var(--r-in); }

/* ---------- cards ---------- */
.card {
	background: #fff;
	border: 1px solid var(--line-2);
	border-radius: var(--r-card);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
@media (hover: hover) {
	.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-line); }
}
.sec-dark .card { background: var(--navy-2); border-color: var(--line-fm); box-shadow: none; }

/* ---------- atmospheric media (photo placeholders that do not apologize) ----------
   Sea-glow gradient + destination name set like a caption. Swap for a real
   <img> when photography arrives - same wrapper, same radius. */
.ph-media {
	position: relative;
	display: flex;
	align-items: flex-end;
	background: var(--sea-photo);
	border-radius: inherit;
	min-height: 220px;
	overflow: hidden;
	isolation: isolate;
}
.ph-media::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(90% 60% at 50% 115%, rgba(7, 30, 47, .55) 0%, transparent 70%);
	z-index: 1;
}
.ph-media::after {
	/* faint horizon line */
	content: '';
	position: absolute;
	left: 8%;
	right: 8%;
	top: 38%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(247, 245, 239, .25), transparent);
}
.ph-media .ph-name {
	position: relative;
	z-index: 2;
	padding: 1.1rem 1.3rem;
	font-family: var(--font-display);
	font-size: 1.15rem;
	color: var(--foam);
	letter-spacing: .04em;
}
.ph-media .ph-name::before {
	content: '';
	display: block;
	width: 34px;
	height: 2px;
	margin-bottom: .55rem;
	background: var(--gold);
}
.ph-media[data-ratio="wide"] { aspect-ratio: 16 / 9; }
.ph-media[data-ratio="card"] { aspect-ratio: 4 / 3; }
.ph-media[data-ratio="tall"] { aspect-ratio: 3 / 4; }
.ph-media[data-ratio="pano"] { aspect-ratio: 21 / 9; }

/* real photography in the same wrapper */
.ph-media .ph-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s var(--ease);
}
.ph-media.has-img::after { display: none; }
.ph-media.has-img::before {
	background: linear-gradient(180deg, transparent 45%, rgba(7, 30, 47, .62) 100%);
}
@media (hover: hover) {
	.card-hover:hover .ph-img { transform: scale(1.04); }
}

/* ---------- signature: nautical route line ---------- */
.route-line { display: block; }
.route-line .rl-path {
	fill: none;
	stroke: var(--navy-3);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-dasharray: 5 8;
	opacity: .9;
}
.route-line .rl-origin { fill: var(--navy); }
.route-line .rl-dest { fill: none; stroke: var(--gold-d); stroke-width: 2.5; }
.route-line .rl-stop { fill: var(--gold-d); }
.route-line .rl-label {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	fill: var(--muted);
}
.on-dark .route-line .rl-path { stroke: var(--foam-mut); }
.on-dark .route-line .rl-origin { fill: var(--foam); }
.on-dark .route-line .rl-dest { stroke: var(--gold-lt); }
.on-dark .route-line .rl-stop { fill: var(--gold-lt); }
.on-dark .route-line .rl-label { fill: var(--foam-mut); }

@media (prefers-reduced-motion: no-preference) {
	.route-line[data-animate] .rl-path {
		stroke-dashoffset: var(--rl-len, 300);
		stroke-dasharray: var(--rl-len, 300);
		transition: stroke-dashoffset 1.1s var(--ease) .1s;
	}
	.route-line[data-animate] .rl-dest { opacity: 0; transition: opacity .3s var(--ease) 1s; }
	.route-line[data-animate] .rl-stop { opacity: 0; transition: opacity .3s var(--ease) .55s; }
	.route-line[data-animate].is-drawn .rl-path { stroke-dashoffset: 0; }
	.route-line[data-animate].is-drawn .rl-dest,
	.route-line[data-animate].is-drawn .rl-stop { opacity: 1; }
}

/* ---------- reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
	.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
	.reveal.is-in { opacity: 1; transform: none; }
	.reveal[data-delay="1"] { transition-delay: .07s; }
	.reveal[data-delay="2"] { transition-delay: .14s; }
	.reveal[data-delay="3"] { transition-delay: .21s; }
}

/* ---------- header ---------- */
.site-head {
	position: sticky;
	top: 0;
	z-index: 40;
	background: color-mix(in srgb, var(--ivory) 90%, transparent);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.site-head.is-scrolled { border-bottom-color: var(--line-2); box-shadow: var(--shadow-sm); }

.head-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	min-height: 78px;
}

.wordmark { display: grid; line-height: 1.05; }
.wordmark-name {
	font-family: var(--font-display);
	font-size: 1.55rem;
	letter-spacing: .04em;
	color: var(--navy);
	margin: 0;
}
.wordmark-sub {
	font-size: .62rem;
	font-weight: 700;
	letter-spacing: .34em;
	text-transform: uppercase;
	color: var(--gold-d);
	white-space: nowrap;
}
@media (max-width: 420px) {
	.wordmark-name { font-size: 1.35rem; }
	.wordmark-sub { font-size: .55rem; letter-spacing: .26em; }
}
.site-foot .wordmark-name { color: var(--foam); font-size: 1.9rem; }
.site-foot .wordmark-sub { color: var(--gold-lt); }

.head-nav ul { display: flex; gap: 1.9rem; }
.head-nav a {
	font-weight: 500;
	font-size: .96rem;
	padding: .35rem 0;
	border-bottom: 2px solid transparent;
	transition: border-color .2s var(--ease), color .2s var(--ease);
}
.head-nav a:hover { color: var(--gold-d); }
.head-nav a[aria-current="page"] { border-bottom-color: var(--gold); color: var(--navy); }

.head-tools { display: flex; align-items: center; gap: 1.1rem; }
.head-phone { font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; font-size: .95rem; }
.head-phone:hover { color: var(--gold-d); }
.head-cta { min-height: 42px; padding: .55rem 1.25rem; font-size: .9rem; }

.lang-switch { display: flex; align-items: center; gap: .35rem; font-size: .88rem; font-weight: 600; }
.lang-switch a { color: var(--muted); padding: .25rem .1rem; }
.lang-switch a:hover { color: var(--gold-d); }
.lang-switch a[aria-current="true"] { color: var(--navy); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; text-decoration-color: var(--gold); }
.lang-switch span { color: var(--line); }

.nav-burger { display: none; position: relative; width: 44px; height: 44px; border-radius: var(--r-btn); }
.burger-bar, .burger-bar::before, .burger-bar::after {
	content: '';
	position: absolute;
	left: 10px;
	width: 24px;
	height: 2px;
	border-radius: 2px;
	background: var(--navy);
	transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.burger-bar { top: 21px; }
.burger-bar::before { left: 0; top: -7px; }
.burger-bar::after { left: 0; top: 7px; }
.nav-burger[aria-expanded="true"] .burger-bar { background: transparent; }
.nav-burger[aria-expanded="true"] .burger-bar::before { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] .burger-bar::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
	.head-row { gap: .75rem; }
	.head-phone { display: none; }
	.head-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--ivory);
		border-bottom: 1px solid var(--line-2);
		box-shadow: var(--shadow);
		padding: 1rem var(--pad) 1.6rem;
		display: none;
	}
	.head-nav.is-open { display: block; }
	.head-nav ul { flex-direction: column; gap: .25rem; }
	.head-nav a { display: block; padding: .85rem 0; font-size: 1.1rem; border-bottom: 1px solid var(--line-2); }
	.head-nav a[aria-current="page"] { border-bottom-color: var(--gold); }
	.nav-burger { display: block; flex-shrink: 0; }
}
@media (max-width: 560px) {
	.head-cta { display: none; }
}

/* ---------- hero ---------- */
.hero {
	position: relative;
	min-height: min(88vh, 860px);
	display: grid;
	align-items: center;
	background: var(--sea-photo);
	background-color: var(--navy);
	background-size: cover;
	background-position: center;
	color: var(--foam);
	isolation: isolate;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(7, 30, 47, .55) 0%, rgba(7, 30, 47, .22) 35%, rgba(7, 30, 47, .66) 100%);
	z-index: 1;
}
.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
@media (prefers-reduced-motion: reduce) {
	.hero-video { display: none; } /* hero falls back to the poster backdrop */
}
.hero-chart-bg {
	position: absolute;
	right: -4%;
	bottom: -6%;
	width: min(560px, 52vw);
	opacity: .32;
	z-index: 1;
	pointer-events: none;
}
.hero-chart .hc-land { fill: rgba(247, 245, 239, .1); stroke: rgba(247, 245, 239, .18); stroke-width: 1; }
.hero-chart .hc-contour { fill: none; stroke: rgba(247, 245, 239, .25); stroke-width: 1; stroke-dasharray: 2 5; }
.hero-chart .rl-path { stroke: rgba(247, 245, 239, .75); }
.hero-chart .rl-origin { fill: var(--gold-lt); }
.hero-chart .rl-dest { stroke: var(--gold-lt); }
.hero-chart .rl-label { fill: rgba(247, 245, 239, .8); font-size: 13px; }
.hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 1.6rem;
	justify-items: start;
	padding-block: clamp(6rem, 14vh, 9rem) clamp(3rem, 7vh, 5rem);
	max-width: 780px;
}
.hero-inner h1 { color: var(--foam); max-width: 15ch; }
.hero-inner .lead { color: var(--foam-mut); max-width: 52ch; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .6rem; }
.hero .btn-ghost { border-color: rgba(247, 245, 239, .4); color: var(--foam); }
.hero .btn-ghost:hover { border-color: var(--gold-lt); color: var(--gold-lt); }
.hero .caps { color: var(--gold-lt); }

.trust-bar {
	position: relative;
	z-index: 2;
	border-top: 1px solid rgba(194, 161, 100, .28);
	background: rgba(7, 30, 47, .45);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem 2.6rem;
	padding-block: 1.05rem;
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--foam-mut);
}
.trust-row span { display: inline-flex; align-items: center; gap: .55rem; }
.trust-row span::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ---------- intro / positioning ---------- */
.intro-sec { text-align: left; }
.intro-quote {
	font-family: var(--font-display);
	font-size: clamp(1.55rem, 3vw, 2.4rem);
	line-height: 1.3;
	color: var(--navy);
	max-width: 26ch;
}
.intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: center;
}
.intro-copy { display: grid; gap: 1.6rem; justify-items: start; }

/* ---------- services overview ---------- */
.svc-overview {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.6rem;
}
.ov-card { display: flex; flex-direction: column; }
.ov-card .ph-media { border-radius: 0; }
.ov-body { padding: 1.6rem 1.6rem 1.7rem; display: grid; gap: .8rem; align-content: start; flex: 1; }
.ov-body .chip { justify-self: start; }
.ov-foot { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: auto; padding-top: 1rem; }
.ov-link { font-weight: 700; font-size: .92rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-d); }
.ov-link:hover { color: var(--navy); }

/* ---------- transfer cards ---------- */
.transfer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem; }
.tr-card { padding: 2rem; display: grid; gap: 1.2rem; align-content: start; }
.tr-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.tr-facts { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.5rem; padding-block: 1.1rem; border-block: 1px solid var(--line-2); }
.tr-fact { display: grid; gap: .1rem; }
.tr-fact dt { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.tr-fact dd { margin: 0; font-weight: 600; color: var(--navy); font-size: .95rem; }
.tr-cta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ---------- destination (tour) cards ---------- */
.dest-card {
	display: grid;
	grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
	overflow: hidden;
}
.dest-card + .dest-card { margin-top: 2rem; }
.dest-card .ph-media { border-radius: 0; min-height: 340px; height: 100%; }
.dest-body { padding: clamp(1.8rem, 3.5vw, 2.8rem); display: grid; gap: 1.1rem; align-content: center; }
.dest-itinerary {
	font-size: .92rem;
	font-weight: 600;
	color: var(--navy);
	letter-spacing: .02em;
	line-height: 1.9;
}
.dest-itinerary .arrow { color: var(--gold-d); margin-inline: .35rem; }
.dest-best { font-size: var(--fs-sm); color: var(--muted); }
.dest-best strong { color: var(--navy); }
.dest-meta { display: flex; gap: 1.6rem; flex-wrap: wrap; padding-block: 1rem; border-block: 1px solid var(--line-2); font-size: .95rem; }
.dest-meta b { color: var(--navy); }
.dest-foot { display: flex; justify-content: space-between; align-items: end; gap: 1rem; flex-wrap: wrap; }

/* ---------- fleet ---------- */
.fleet-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: center;
}
.fleet-copy { display: grid; gap: 1.4rem; justify-items: start; }
.specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.4rem 2.2rem;
	margin: 0;
	padding: 1.4rem 0;
	border-block: 1px solid var(--line-fm);
	width: 100%;
}
.sec:not(.sec-dark) .specs { border-color: var(--line-2); }
.spec dt { font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--foam-mut); }
.sec:not(.sec-dark) .spec dt { color: var(--muted); }
.spec dd { margin: .15rem 0 0; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-lt); }
.sec:not(.sec-dark) .spec dd { color: var(--navy); }
.fleet-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }
.fleet-gallery .ph-media { border-radius: var(--r-med); min-height: 150px; }
.fleet-soon {
	margin-top: 2rem;
	padding: 1.5rem 1.8rem;
	border: 1px dashed var(--gold-line);
	border-radius: var(--r-card);
	display: flex;
	align-items: center;
	gap: 1.2rem;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* ---------- benefits (why) ---------- */
.benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.4rem;
}
.benefit {
	padding: 1.7rem 1.7rem 1.8rem;
	background: #fff;
	border: 1px solid var(--line-2);
	border-radius: var(--r-card);
	display: grid;
	gap: .7rem;
	align-content: start;
	transition: border-color .3s var(--ease), transform .3s var(--ease);
}
@media (hover: hover) { .benefit:hover { border-color: var(--gold-line); transform: translateY(-3px); } }
.benefit svg { width: 30px; height: 30px; stroke: var(--gold-d); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.benefit h3 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 700; color: var(--navy); }
.benefit p { color: var(--muted); font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(90% 120% at 85% 0%, rgba(194, 161, 100, .13) 0%, transparent 55%);
}
.cta-band .wrap { position: relative; }
.cta-band-grid {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.cta-copy { display: grid; gap: 1.1rem; }
.cta-actions { display: grid; gap: 1rem; justify-items: start; }
.cta-phone {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 2.6vw, 2.1rem);
	color: var(--gold-lt);
	font-variant-numeric: tabular-nums;
}
.cta-phone:hover { text-decoration: underline; text-underline-offset: 5px; }
.cta-line { font-size: var(--fs-sm); color: var(--foam-mut); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; display: grid; gap: .9rem; }
.faq details {
	background: #fff;
	border: 1px solid var(--line-2);
	border-radius: var(--r-card);
	padding: 0;
	transition: border-color .25s var(--ease);
}
.faq details[open] { border-color: var(--gold-line); }
.faq summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1.15rem 1.4rem;
	font-weight: 600;
	color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: '+';
	font-family: var(--font-display);
	font-size: 1.4rem;
	color: var(--gold-d);
	line-height: 1;
	transition: transform .25s var(--ease);
	flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 1.4rem 1.3rem; color: var(--muted); max-width: 62ch; }

/* ---------- subpages ---------- */
.page-head {
	background: var(--navy);
	color: var(--foam);
	position: relative;
	isolation: isolate;
	overflow: hidden;
}
.page-head::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(110% 130% at 88% -10%, rgba(194, 161, 100, .14) 0%, transparent 50%),
		radial-gradient(130% 100% at 10% 120%, rgba(28, 111, 128, .35) 0%, transparent 60%);
	z-index: -1;
}
.page-head .wrap {
	display: grid;
	gap: 1.1rem;
	padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2.6rem, 6vw, 4.5rem);
	justify-items: start;
}
.page-head h1 { color: var(--foam); }
.page-head .lead { color: var(--foam-mut); max-width: 56ch; }

/* service spread */
.spread-grid {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}
.spread-flip .spread-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.spread-flip .spread-info { order: 2; }
.spread-flip .spread-panel { order: 1; }
.spread-info { display: grid; gap: 1.5rem; }
.spread-info .route-line { max-width: 430px; }

.facts { display: grid; gap: 1rem; margin: 0; }
.fact { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; align-items: baseline; }
.fact dt { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.fact dd { margin: 0; color: var(--ink); }

/* booking panel */
.booking-panel {
	position: sticky;
	top: 102px;
	border-radius: var(--r-card);
	border: 1px solid var(--gold-line);
	background: #fff;
	box-shadow: var(--shadow-sm);
	padding: 1.7rem;
	display: grid;
	gap: 1rem;
}
.booking-title { font-size: 1.3rem; }
.booking-price-row { display: grid; gap: .15rem; padding-bottom: .9rem; border-bottom: 1px solid var(--line-2); }
.booking-form { display: grid; gap: 1.1rem; }
.booking-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.booking-pay-note { font-size: var(--fs-sm); color: var(--muted); }
.booking-sent { padding: .85rem 1.1rem; border-radius: var(--r-in); background: var(--gold-tint); border: 1px solid var(--gold-line); color: var(--gold-d); font-weight: 600; }
.booking-err { padding: .85rem 1.1rem; border-radius: var(--r-in); background: rgba(166, 61, 54, .09); color: var(--err); font-weight: 600; }
.season-note { padding: .85rem 1.1rem; border-radius: var(--r-in); background: var(--ivory-2); font-size: var(--fs-sm); }
.label-opt { font-weight: 400; color: var(--muted); }
.hp-field { position: absolute !important; left: -9999px; }

/* booking calendar */
.bk-cal { min-height: 280px; }
.bk-cal-loading { color: var(--muted); font-size: var(--fs-sm); }
.bk-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.bk-month { font-weight: 700; color: var(--navy); }
.bk-nav {
	width: 40px; height: 40px;
	border-radius: var(--r-in);
	border: 1px solid var(--line);
	background: #fff;
	font-size: 1.05rem;
	transition: border-color .2s var(--ease), color .2s var(--ease);
}
.bk-nav:hover:not(:disabled) { border-color: var(--gold-d); color: var(--gold-d); }
.bk-nav:disabled { opacity: .35; cursor: default; }
.bk-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.bk-wd { text-align: center; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); padding-block: .3rem; }
.bk-day {
	display: grid;
	place-content: center;
	aspect-ratio: 1;
	border-radius: var(--r-in);
	font-size: .95rem;
	font-variant-numeric: tabular-nums;
	color: var(--muted);
}
button.bk-day.is-free {
	background: #fff;
	border: 1px solid var(--line);
	color: var(--ink);
	font-weight: 600;
	cursor: pointer;
	transition: border-color .15s var(--ease), background-color .15s var(--ease);
}
button.bk-day.is-free:hover { border-color: var(--gold); }
button.bk-day.is-sel { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.bk-day.is-full { background: rgba(166, 61, 54, .07); color: rgba(166, 61, 54, .5); text-decoration: line-through; }
.bk-day.is-past, .bk-day.is-closed { opacity: .3; }
.bk-legend { display: flex; gap: 1.2rem; font-size: .8rem; color: var(--muted); }
.bk-legend-item { display: inline-flex; align-items: center; gap: .4rem; }
.bk-legend-item::before { content: ''; width: 12px; height: 12px; border-radius: 4px; }
.bk-legend-free::before { background: #fff; border: 1px solid var(--line); }
.bk-legend-full::before { background: rgba(166, 61, 54, .14); }
.bk-selected { font-weight: 700; color: var(--navy); }
.bk-hours { font-size: var(--fs-sm); color: var(--muted); }
.bk-alt { font-size: var(--fs-sm); color: var(--muted); }
.bk-alt a { text-decoration: underline; text-underline-offset: 3px; color: var(--gold-d); }
.bk-form button[disabled] { opacity: .5; cursor: default; }

/* about */
.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: start;
}
.about-facts { display: grid; gap: .4rem; color: var(--muted); }
.about-facts strong { color: var(--navy); }
.local-know {
	border-left: 2px solid var(--gold);
	padding-left: clamp(1.4rem, 3vw, 2.2rem);
	display: grid;
	gap: 1rem;
	max-width: 720px;
}

/* contact */
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: start;
}
.contact-channels { display: grid; gap: 1.2rem; justify-items: start; }
.contact-big {
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 3.4vw, 2.6rem);
	color: var(--navy);
	font-variant-numeric: tabular-nums;
}
.contact-big:hover, .contact-mail:hover { color: var(--gold-d); }
.contact-mail { font-weight: 600; font-size: 1.15rem; }
.contact-addr, .contact-port { color: var(--muted); }
.contact-port { max-width: 44ch; }
.contact-trust { font-size: var(--fs-sm); color: var(--muted); display: inline-flex; align-items: center; gap: .5rem; }
.contact-trust::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.contact-form-wrap {
	background: #fff;
	border: 1px solid var(--gold-line);
	border-radius: var(--r-card);
	box-shadow: var(--shadow-sm);
	padding: clamp(1.6rem, 3vw, 2.2rem);
	display: grid;
	gap: 1rem;
}
.contact-map iframe { display: block; filter: saturate(.8); }

/* skipper */
.skipper-grid {
	display: grid;
	grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: center;
}
.skipper-copy { display: grid; gap: 1.1rem; justify-items: start; }
.skipper-grid .card { max-width: 380px; }

/* whatsapp */
.icon-fill { fill: currentColor; }
.head-wa { display: inline-flex; color: var(--muted); transition: color .2s var(--ease); }
.head-wa svg { width: 21px; height: 21px; }
.head-wa:hover { color: #25D366; }
.contact-wa svg, .cta-actions .btn svg { width: 19px; height: 19px; }
.wa-float {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 50;
	display: none;
	place-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	box-shadow: 0 8px 24px rgba(7, 30, 47, .3);
}
.wa-float svg { width: 28px; height: 28px; }
@media (max-width: 980px) {
	.wa-float { display: grid; }
}

/* legal */
.legal-prose { max-width: 68ch; }
.draft-notice {
	display: inline-block;
	margin-bottom: 2rem;
	padding: .7rem 1.1rem;
	border-radius: var(--r-in);
	background: rgba(166, 61, 54, .07);
	border: 1px dashed rgba(166, 61, 54, .4);
	color: var(--err);
	font-weight: 600;
	font-size: var(--fs-sm);
}

/* 404 */
.nf-sec { min-height: 52vh; display: grid; align-items: center; }
.nf-wrap { display: grid; gap: 1.3rem; justify-items: start; }
.nf-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-foot { margin-top: var(--sec); border-top: 1px solid rgba(194, 161, 100, .25); }
.foot-grid {
	display: grid;
	grid-template-columns: minmax(260px, 1.4fr) 1fr 1fr;
	gap: 3rem;
	padding-block: clamp(3rem, 7vw, 5rem) 2.5rem;
}
.foot-brand { display: grid; gap: 1rem; align-content: start; justify-items: start; }
.foot-tag { max-width: 36ch; }
.foot-season { font-size: var(--fs-sm); color: var(--foam-mut); }
.foot-h { font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-lt); }
.foot-list { display: grid; gap: .6rem; margin-top: 1.1rem; }
.foot-list a:hover { color: var(--gold-lt); }
.foot-label { color: var(--foam-mut); }
.foot-legal {
	display: flex;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
	padding-block: 1.4rem 2rem;
	border-top: 1px solid var(--line-fm);
	font-size: var(--fs-sm);
	color: var(--foam-mut);
}
.foot-legal-links { display: flex; gap: 1.5rem; }
.foot-legal-links a:hover { color: var(--gold-lt); }
.foot-sep { margin-inline: .4rem; }

/* ---------- WooCommerce pages (cart/checkout) ---------- */
.wcpage-wrap { max-width: 920px; }
.wcpage-wrap .woocommerce { margin-top: 1.5rem; }

/* Empty cart: keep the message + return link, hide the default "New in
   store" cross-sell grid (placeholder thumbnails look unfinished). */
.wp-block-woocommerce-empty-cart-block .wp-block-separator,
.wp-block-woocommerce-empty-cart-block .wp-block-heading,
.wp-block-woocommerce-empty-cart-block .wc-block-grid,
.wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-new,
.wp-block-woocommerce-empty-cart-block .wp-block-query { display: none; }

/* Keep block-checkout typography quiet: Marcellus prices belong to OUR
   components (.price), never to WooCommerce internals. */
.wcpage-wrap .wc-block-components-product-price,
.wcpage-wrap .woocommerce-Price-amount,
.wcpage-wrap .wc-block-components-totals-item,
.wcpage-wrap .wc-block-formatted-money-amount {
	font-family: var(--font-sans) !important;
	font-size: inherit;
}
.wcpage-wrap .wc-block-components-order-summary-item__individual-prices { display: none; }
.wcpage-wrap .wc-block-components-order-summary-item__total-price { font-weight: 700; }
.wc-block-components-button, .wc-block-components-checkout-place-order-button {
	background: var(--gold) !important;
	color: var(--navy) !important;
	border-radius: var(--r-btn) !important;
	font-weight: 700 !important;
	border: 0 !important;
}
.wc-block-components-button:hover, .wc-block-components-checkout-place-order-button:hover { background: var(--gold-lt) !important; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form select {
	min-height: 46px;
	padding: .6rem .85rem;
	border: 1px solid var(--line);
	border-radius: var(--r-in);
	background: #fff;
	font: inherit;
}
.woocommerce #payment button#place_order, .woocommerce .button.alt, .woocommerce a.button, .woocommerce button.button {
	background: var(--gold);
	color: var(--navy);
	border-radius: var(--r-btn);
	font-weight: 700;
	padding: .85rem 1.6rem;
	border: 0;
}
.woocommerce #payment button#place_order:hover, .woocommerce .button.alt:hover { background: var(--gold-lt); color: var(--navy); }
.woocommerce table.shop_table { border: 1px solid var(--line-2); border-radius: var(--r-card); }

/* ---------- responsive collapses ---------- */
@media (max-width: 980px) {
	.svc-overview, .benefit-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
	.intro-grid, .transfer-grid, .dest-card, .fleet-hero-grid,
	.about-grid, .contact-grid, .cta-band-grid,
	.spread-grid, .spread-flip .spread-grid { grid-template-columns: 1fr; }
	.spread-flip .spread-info { order: 1; }
	.spread-flip .spread-panel { order: 2; }
	.booking-panel { position: static; }
	.booking-form-grid { grid-template-columns: 1fr; }
	.fact { grid-template-columns: 1fr; gap: .15rem; }
	.dest-card .ph-media { min-height: 240px; }
	.fleet-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
	.svc-overview, .benefit-grid { grid-template-columns: 1fr; }
	.trust-row { gap: .5rem 1.6rem; font-size: .74rem; }
}

/* ---------- a11y helpers ---------- */
.visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0; border: 0;
	clip-path: inset(50%);
	overflow: hidden;
	white-space: nowrap;
}
.skip-link {
	position: absolute;
	left: var(--pad); top: -100px;
	z-index: 100;
	padding: .6rem 1rem;
	background: var(--navy); color: var(--foam);
	border-radius: 0 0 var(--r-btn) var(--r-btn);
	transition: top .2s var(--ease);
}
.skip-link:focus-visible { top: 0; }
