/* ═════════════════════════════════════════════════════════════════════════════
 *  WEST COAST TRAVEL — theme.css  (v2 · cinematic premium travel)
 *  A complete visual system: dramatic photography, slow auto-cycling hero,
 *  marquee tickers, sticky-pinned sections, image-zoom hovers, scroll-tied
 *  parallax, animated counters, custom cursor on cards. Still on-brand
 *  (teal/navy/gold) — the energy comes from imagery + motion, not loud design.
 * ═════════════════════════════════════════════════════════════════════════════ */

:root {
	--navy:      #1B2A4A;
	--navy-2:    #14213D;
	--teal:      #1A8C8C;
	--teal-dk:   #14706F;
	--teal-2:    #0F5252;
	--gold:      #D4A843;
	--gold-dk:   #B08824;
	--limestone: #F7F5F0;
	--olive:     #6B7280;
	--black:     #111111;
	--ink:       #0A0A0A;
	--white:     #FFFFFF;
	--g100:      #F3F4F6;
	--g200:      #E5E7EB;
	--g400:      #9CA3AF;

	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
	--font-mono: 'DM Mono', ui-monospace, 'SF Mono', Menlo, monospace;

	--container: 1280px;
	--container-narrow: 960px;
	--gutter: clamp(20px, 4vw, 48px);
	--section-y: clamp(80px, 12vw, 160px);

	--ease: cubic-bezier(.22, 1, .36, 1);
	--ease-out: cubic-bezier(.16, 1, .3, 1);
	--ease-in-out: cubic-bezier(.65, 0, .35, 1);

	--shadow-card: 0 1px 2px rgba(17,24,39,.04), 0 8px 24px -8px rgba(17,24,39,.12);
	--shadow-hover: 0 4px 12px rgba(17,24,39,.06), 0 24px 48px -12px rgba(17,24,39,.25);
}

/* ─── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body {
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.65;
	color: var(--black);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: 'kern', 'liga', 'calt';
	overflow-x: hidden;
}
img, picture, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }
::selection { background: var(--teal); color: var(--white); }

/* WP a11y */
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }
.skip-link:focus { position: fixed; top: 16px; left: 16px; z-index: 9999; padding: 12px 16px; background: var(--teal); color: var(--white); font-size: 14px; font-weight: 600; }

/* ─── Type ─────────────────────────────────────────────────────────────────── */
.mono, .wct .mono { font-family: var(--font-mono); }
h1, h2, h3, h4 { font-family: var(--font-sans); letter-spacing: -0.02em; line-height: 1.05; font-weight: 700; }
h1 { font-size: clamp(40px, 7vw, 88px); }
h2 { font-size: clamp(32px, 5vw, 64px); letter-spacing: -0.025em; }
h3 { font-size: clamp(22px, 2.8vw, 32px); letter-spacing: -0.015em; line-height: 1.15; font-weight: 600; }
h4 { font-size: clamp(18px, 1.8vw, 22px); line-height: 1.25; font-weight: 600; }
p  { line-height: 1.7; }

.wct-eyebrow {
	display: inline-flex; align-items: center; gap: 12px;
	font-family: var(--font-mono);
	font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--g400);
}
.wct-eyebrow::before {
	content: ""; display: block;
	width: 32px; height: 1px;
	background: currentColor;
	opacity: .6;
}
.wct-eyebrow--teal { color: var(--teal); }

/* ─── Layout primitives ────────────────────────────────────────────────────── */
.wct-container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.wct-container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding-inline: var(--gutter); }
.wct-section { padding-block: var(--section-y); position: relative; }
.wct-section--dark { background: var(--ink); color: var(--white); }
.wct-section--dark h1, .wct-section--dark h2, .wct-section--dark h3, .wct-section--dark h4 { color: var(--white); }
.wct-section--limestone { background: var(--limestone); }
.wct-section--teal { background: var(--teal); color: var(--white); }
.wct-section--navy { background: var(--navy); color: var(--white); }

/* Film-grain noise overlay for dark sections — adds tactile texture */
.wct-section--dark::after {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	opacity: .035;
	mix-blend-mode: overlay;
	z-index: 1;
}
.wct-section--dark > * { position: relative; z-index: 2; }

/* Swiss two-col grid (label + content) */
.wct-grid {
	display: grid;
	grid-template-columns: minmax(160px, 200px) 1fr;
	column-gap: clamp(32px, 6vw, 96px);
	row-gap: 24px;
}
@media (max-width: 860px) {
	.wct-grid { grid-template-columns: 1fr; row-gap: 16px; }
}

.wct-section-label {
	position: sticky; top: 120px;
	display: flex; flex-direction: column; gap: 6px;
	font-family: var(--font-mono);
	font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--g400);
}
@media (max-width: 860px) { .wct-section-label { position: static; flex-direction: row; gap: 14px; } }
.wct-section-label__num { color: var(--teal); font-weight: 500; }
.wct-section-label__name { color: currentColor; opacity: .85; }
.wct-section--dark .wct-section-label__name { color: rgba(255,255,255,.7); }

.wct-lede { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.65; max-width: 56ch; color: var(--olive); margin-top: 20px; }
.wct-section--dark .wct-lede { color: rgba(255,255,255,.55); }

/* ─── Scroll reveal ────────────────────────────────────────────────────────── */
.wct-reveal {
	opacity: 0; transform: translateY(24px);
	transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.wct-reveal.is-visible { opacity: 1; transform: translateY(0); }
.wct-reveal--scale { transform: translateY(0) scale(.96); }
.wct-reveal--scale.is-visible { transform: translateY(0) scale(1); }
.wct-reveal--right { transform: translateX(40px); }
.wct-reveal--right.is-visible { transform: translateX(0); }
/* Stagger via inline --i custom property */
.wct-reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }

@media (prefers-reduced-motion: reduce) {
	.wct-reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ─── Header ───────────────────────────────────────────────────────────────── */
.wct-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 50;
	padding: 14px var(--gutter);
	background: transparent;
	transition: background-color .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.wct-header.is-scrolled {
	background: rgba(27, 42, 74, 0.92);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	padding: 8px var(--gutter);
	box-shadow: 0 1px 0 rgba(255,255,255,.05);
}
.wct-header__inner {
	max-width: var(--container); margin: 0 auto;
	display: flex; align-items: center; gap: clamp(20px, 4vw, 48px);
}
.wct-header__brand {
	display: inline-flex; align-items: center; gap: 12px;
	color: var(--white); transition: transform .3s var(--ease);
}
.wct-header__brand:hover { transform: translateY(-1px); }
.wct-wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.wct-wordmark__name { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.wct-wordmark__label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; margin-top: 3px; opacity: .65; }

.wct-header__nav { flex: 1; }
.wct-nav { list-style: none; display: flex; gap: clamp(20px, 3vw, 36px); }
.wct-nav a { color: var(--white); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; position: relative; padding: 6px 0; }
.wct-nav a::after { content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: currentColor; transition: width .35s var(--ease); }
.wct-nav a:hover::after, .wct-nav .current-menu-item > a::after { width: 100%; }

.wct-header__cta { display: inline-flex; }
.wct-header__mobile-toggle { display: none; margin-left: auto; padding: 8px; }
@media (max-width: 900px) {
	.wct-header__nav, .wct-header__cta { display: none; }
	.wct-header__mobile-toggle { display: inline-flex; flex-direction: column; gap: 4px; }
	.wct-header__mobile-toggle span { width: 22px; height: 2px; background: var(--white); display: block; transition: transform .25s var(--ease), opacity .2s var(--ease); }
	.wct-header__mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
	.wct-header__mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.wct-header__mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

.wct-mobile-menu { position: fixed; inset: 64px 0 0 0; background: var(--ink); color: var(--white); padding: 48px var(--gutter); z-index: 49; overflow-y: auto; }
.wct-mobile-menu[hidden] { display: none; }
.wct-mobile-menu__list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.wct-mobile-menu__list a { display: block; padding: 20px 0; color: var(--white); font-size: clamp(24px, 5vw, 32px); font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.08); letter-spacing: -0.02em; }
.wct-mobile-menu__list a:hover { color: var(--teal); }
.wct-mobile-menu__cta { margin-top: 48px; }

/* ─── Buttons ──────────────────────────────────────────────────────────────── */
.wct-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 12px;
	padding: 16px 32px;
	font-family: var(--font-sans); font-size: 12px; font-weight: 600;
	letter-spacing: 0.14em; text-transform: uppercase;
	text-decoration: none; border: 0; cursor: pointer; position: relative; overflow: hidden;
	transition: color .3s var(--ease), background-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wct-btn::after {
	content: "→"; transition: transform .3s var(--ease); display: inline-block;
}
.wct-btn:hover::after { transform: translateX(4px); }
.wct-btn--primary { background: var(--teal); color: var(--white); }
.wct-btn--primary:hover { background: var(--navy); color: var(--white); box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.wct-btn--inverse { background: var(--white); color: var(--teal); }
.wct-btn--inverse:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.wct-btn--ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.4); }
.wct-btn--ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.wct-btn--minimal { background: transparent; color: var(--teal); padding-inline: 0; letter-spacing: 0.16em; }
.wct-btn--minimal:hover { color: var(--navy); }
.wct-btn--sm { padding: 11px 20px; font-size: 11px; }
.wct-btn--lg { padding: 20px 40px; font-size: 13px; }

/* Sticky mobile book bar */
.wct-sticky-book {
	position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 14px var(--gutter);
	background: rgba(255,255,255,.97);
	-webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
	border-top: 1px solid var(--g200);
	box-shadow: 0 -4px 24px rgba(17,24,39,.08);
}
.wct-sticky-book__info { display: flex; flex-direction: column; line-height: 1.2; }
.wct-sticky-book__price { font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.wct-sticky-book__duration { font-family: var(--font-mono); font-size: 10px; color: var(--olive); margin-top: 2px; letter-spacing: 0.1em; text-transform: uppercase; }
@media (min-width: 900px) { .wct-sticky-book { display: none; } }

/* ═════════════════════════════════════════════════════════════════════════════
 *  HERO — cinematic Ken-Burns slideshow
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-hero {
	position: relative; min-height: 100vh; min-height: 100svh;
	display: flex; align-items: flex-end;
	overflow: hidden; color: var(--white);
	background: var(--ink);
}
.wct-hero__video, .wct-cta-block__video {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover; object-position: center;
	z-index: 1;
}
.wct-hero__slides {
	position: absolute; inset: 0;
}
.wct-hero__slide {
	position: absolute; inset: 0;
	background-position: center; background-size: cover; background-repeat: no-repeat;
	opacity: 0;
	transform: scale(1.08);
	transition: opacity 1.6s var(--ease-in-out);
}
.wct-hero__slide.is-active {
	opacity: 1;
	animation: wct-ken-burns 16s linear forwards;
}
@keyframes wct-ken-burns {
	from { transform: scale(1.08); }
	to   { transform: scale(1.18); }
}
.wct-hero__overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(10,10,10,.45) 0%, rgba(10,10,10,0) 35%, rgba(10,10,10,.15) 60%, rgba(27,42,74,.85) 100%),
		linear-gradient(90deg, rgba(10,10,10,.4) 0%, rgba(10,10,10,0) 50%);
}
.wct-hero__overlay::after {
	/* Film grain on the hero too */
	content: ""; position: absolute; inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	opacity: .06; mix-blend-mode: overlay;
}
.wct-hero__inner {
	position: relative; z-index: 2;
	max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter) clamp(80px, 12vh, 120px);
	width: 100%;
}
.wct-hero__location {
	display: inline-flex; align-items: center; gap: 14px;
	font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em;
	text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 24px;
}
.wct-hero__location::before {
	content: ""; width: 6px; height: 6px; border-radius: 50%;
	background: var(--gold); box-shadow: 0 0 0 4px rgba(212,168,67,.25);
	animation: wct-pulse-dot 2.2s ease-in-out infinite;
}
@keyframes wct-pulse-dot {
	0%, 100% { box-shadow: 0 0 0 4px rgba(212,168,67,.25); }
	50%      { box-shadow: 0 0 0 10px rgba(212,168,67,0); }
}
.wct-hero__title {
	font-size: clamp(44px, 9vw, 112px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 0.95;
	color: var(--white);
	max-width: 14ch;
	margin-bottom: 32px;
}
.wct-hero__title em {
	font-style: normal; color: var(--gold); font-family: 'Inter', serif;
	background: linear-gradient(90deg, var(--gold), #E9C77A);
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.wct-hero__lede { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.6; color: rgba(255,255,255,.85); max-width: 52ch; margin-bottom: 40px; }
.wct-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.wct-hero__meta {
	position: absolute; right: var(--gutter); bottom: clamp(80px, 12vh, 120px);
	display: flex; flex-direction: column; gap: 8px;
	font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
	text-transform: uppercase; color: rgba(255,255,255,.6);
	writing-mode: vertical-rl; transform: rotate(180deg);
	z-index: 2;
}
@media (max-width: 900px) { .wct-hero__meta { display: none; } }

.wct-hero__scroll {
	position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
	display: flex; flex-direction: column; align-items: center; gap: 14px;
	color: rgba(255,255,255,.7); z-index: 2;
}
.wct-hero__scroll span { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; }
.wct-hero__scroll-line {
	width: 1px; height: 48px;
	background: linear-gradient(180deg, rgba(255,255,255,.5), transparent);
	position: relative; overflow: hidden;
}
.wct-hero__scroll-line::after {
	content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
	background: linear-gradient(180deg, transparent, var(--white));
	animation: wct-scroll-line 2.4s var(--ease-in-out) infinite;
}
@keyframes wct-scroll-line {
	0%   { top: -100%; }
	100% { top: 100%; }
}

.wct-hero__indicators {
	position: absolute; left: var(--gutter); bottom: clamp(80px, 12vh, 120px);
	display: flex; gap: 8px; z-index: 2;
}
.wct-hero__indicator {
	width: 36px; height: 2px; background: rgba(255,255,255,.25); position: relative;
	overflow: hidden;
}
.wct-hero__indicator.is-active::after {
	content: ""; position: absolute; inset: 0; background: var(--white);
	animation: wct-indicator-fill 7s linear forwards;
}
@keyframes wct-indicator-fill {
	from { transform: translateX(-100%); }
	to   { transform: translateX(0); }
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  MARQUEE — infinite scrolling destination ticker
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-marquee {
	background: var(--ink);
	color: var(--white);
	padding: 28px 0;
	overflow: hidden;
	border-top: 1px solid rgba(255,255,255,.08);
	border-bottom: 1px solid rgba(255,255,255,.08);
	position: relative;
}
.wct-marquee__track {
	display: flex; gap: 64px; width: max-content;
	animation: wct-marquee 40s linear infinite;
}
.wct-marquee__item {
	display: inline-flex; align-items: center; gap: 64px;
	font-family: var(--font-sans);
	font-size: clamp(28px, 5vw, 56px);
	font-weight: 800;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	white-space: nowrap;
	color: var(--white);
}
.wct-marquee__item::after {
	content: "·"; display: inline-block; color: var(--gold); font-size: .8em;
}
.wct-marquee__item:hover { color: var(--gold); }
@keyframes wct-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
.wct-marquee:hover .wct-marquee__track { animation-play-state: paused; }

/* ═════════════════════════════════════════════════════════════════════════════
 *  BRAND STATEMENT — split with image
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-statement {
	display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px);
	align-items: center;
}
@media (max-width: 900px) { .wct-statement { grid-template-columns: 1fr; } }
.wct-statement__media {
	aspect-ratio: 4 / 5; overflow: hidden; position: relative;
	background: var(--g100);
}
.wct-statement__media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 1.4s var(--ease-out);
}
.wct-statement:hover .wct-statement__media img { transform: scale(1.04); }
.wct-statement__media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(135deg, rgba(26,140,140,.15), rgba(212,168,67,.05));
	mix-blend-mode: multiply; opacity: .7;
}
.wct-statement__text p.lead {
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 700; line-height: 1.2; letter-spacing: -0.02em;
	color: var(--ink); max-width: 22ch;
}
.wct-statement__text p.lead em { color: var(--teal); font-style: normal; }
.wct-statement__signature {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--g200);
	font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
	text-transform: uppercase; color: var(--olive);
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  STATS COUNTER — animated numbers
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-stats {
	display: grid; grid-template-columns: repeat(4, 1fr);
	gap: 1px; background: rgba(255,255,255,.1);
	margin-top: 64px;
}
@media (max-width: 900px) { .wct-stats { grid-template-columns: repeat(2, 1fr); } }
.wct-stat { background: var(--ink); padding: 40px 24px; }
.wct-stat__num {
	font-family: var(--font-sans);
	font-size: clamp(48px, 6vw, 80px); font-weight: 800;
	color: var(--white); letter-spacing: -0.035em; line-height: 0.95;
	font-variant-numeric: tabular-nums;
}
.wct-stat__label {
	font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
	text-transform: uppercase; color: rgba(255,255,255,.5);
	margin-top: 16px;
	max-width: 24ch;
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  DESTINATION CARDS — oversize, hover-zoom, masked caption reveal
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-dest-grid {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 16px; margin-top: 56px;
}
@media (max-width: 900px) { .wct-dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .wct-dest-grid { grid-template-columns: 1fr; } }

.wct-dest-card {
	position: relative; overflow: hidden; aspect-ratio: 4 / 5;
	display: block; color: var(--white);
	background: var(--ink);
}
.wct-dest-card__media {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	transition: transform 1.4s var(--ease-out);
}
.wct-dest-card:hover .wct-dest-card__media { transform: scale(1.08); }
.wct-dest-card::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(10,10,10,.85) 100%);
	transition: background .4s var(--ease);
}
.wct-dest-card:hover::after {
	background: linear-gradient(180deg, rgba(27,42,74,.3) 0%, rgba(10,10,10,.92) 100%);
}

.wct-dest-card__body {
	position: absolute; left: 0; right: 0; bottom: 0; padding: 32px 28px;
	z-index: 2;
}
.wct-dest-card__num {
	position: absolute; top: 24px; right: 28px;
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: 0.2em; color: rgba(255,255,255,.6);
	z-index: 2;
}
.wct-dest-card__title {
	font-size: clamp(24px, 2.5vw, 34px); font-weight: 700;
	letter-spacing: -0.02em; line-height: 1.05; color: var(--white);
	margin-bottom: 8px;
}
.wct-dest-card__tagline {
	font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.75);
	max-width: 30ch;
	overflow: hidden; max-height: 0; opacity: 0;
	transition: max-height .5s var(--ease), opacity .4s var(--ease), margin-top .4s var(--ease);
}
.wct-dest-card:hover .wct-dest-card__tagline { max-height: 100px; opacity: 1; margin-top: 12px; }
.wct-dest-card__cta {
	display: inline-flex; align-items: center; gap: 12px;
	margin-top: 20px;
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}
.wct-dest-card__cta::after {
	content: "→"; transition: transform .3s var(--ease);
}
.wct-dest-card:hover .wct-dest-card__cta::after { transform: translateX(6px); }

/* ═════════════════════════════════════════════════════════════════════════════
 *  EXPERIENCE CARDS — horizontal scroll on mobile, grid on desktop
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-exp-grid {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 24px; margin-top: 56px;
}
@media (max-width: 900px) { .wct-exp-grid { grid-template-columns: 1fr; } }

.wct-exp-card {
	background: var(--white);
	display: flex; flex-direction: column;
	transition: transform .4s var(--ease), box-shadow .4s var(--ease);
	position: relative;
}
.wct-exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.wct-exp-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--g100); }
.wct-exp-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.wct-exp-card:hover .wct-exp-card__media img { transform: scale(1.06); }
.wct-exp-card__badge {
	position: absolute; top: 16px; left: 16px;
	padding: 6px 12px; background: var(--white); color: var(--ink);
	font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em;
	text-transform: uppercase; font-weight: 500;
}
.wct-exp-card__price {
	position: absolute; bottom: 16px; right: 16px;
	padding: 10px 18px; background: var(--gold); color: var(--ink);
	font-size: 16px; font-weight: 700; letter-spacing: -0.01em;
	font-variant-numeric: tabular-nums;
}
.wct-exp-card__body { padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.wct-exp-card__eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); }
.wct-exp-card__title { font-size: 22px; font-weight: 700; color: var(--ink); line-height: 1.2; letter-spacing: -0.015em; }
.wct-exp-card__title a { color: inherit; }
.wct-exp-card__title a:hover { color: var(--teal); }
.wct-exp-card__meta {
	display: flex; gap: 18px; font-size: 13px; color: var(--olive);
	font-family: var(--font-mono); letter-spacing: 0.04em;
	margin-top: auto; padding-top: 16px;
	border-top: 1px solid var(--g200);
}
.wct-exp-card__meta span::before {
	content: ""; display: inline-block; width: 4px; height: 4px;
	background: var(--teal); border-radius: 50%; margin-right: 8px;
	transform: translateY(-2px);
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  CATEGORIES — full-bleed split panels with image
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-cats {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 1px; margin-top: 64px;
	background: rgba(255,255,255,.05);
}
@media (max-width: 900px) { .wct-cats { grid-template-columns: 1fr; } }

.wct-cat {
	position: relative; overflow: hidden; aspect-ratio: 3 / 4;
	display: block; color: var(--white); background: var(--ink);
}
.wct-cat__media {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	opacity: .55;
	transition: opacity .6s var(--ease), transform 1.4s var(--ease-out);
}
.wct-cat:hover .wct-cat__media { opacity: .75; transform: scale(1.06); }
.wct-cat::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,10,10,.4) 0%, rgba(10,10,10,.85) 100%);
}
.wct-cat__body { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 40px 32px; }
.wct-cat__num { position: absolute; top: 28px; left: 32px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: rgba(255,255,255,.6); }
.wct-cat__title { font-size: clamp(28px, 3vw, 40px); font-weight: 700; line-height: 1; letter-spacing: -0.025em; margin-bottom: 16px; }
.wct-cat__copy { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.7); max-width: 32ch; }
.wct-cat__cta { display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.wct-cat__cta::after { content: "→"; transition: transform .3s var(--ease); }
.wct-cat:hover .wct-cat__cta::after { transform: translateX(6px); }

/* Accent line by category */
.wct-cat--sea::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--teal); z-index: 3; }
.wct-cat--culture::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold); z-index: 3; }
.wct-cat--nature::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--navy); z-index: 3; }

/* ═════════════════════════════════════════════════════════════════════════════
 *  STICKY-SCROLL ABOUT — image pinned while text scrolls beside
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-about {
	display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
	align-items: start;
}
@media (max-width: 900px) { .wct-about { grid-template-columns: 1fr; } }
.wct-about__media {
	aspect-ratio: 4 / 5;
	position: sticky; top: 120px;
	overflow: hidden;
	background: var(--g100);
}
@media (max-width: 900px) { .wct-about__media { position: static; aspect-ratio: 16/10; } }
.wct-about__media img { width: 100%; height: 100%; object-fit: cover; }
.wct-about__text { padding-block: 24px; }
.wct-about__text h2 { margin-bottom: 24px; }
.wct-about__quote {
	margin-top: 40px;
	padding-left: 24px;
	border-left: 2px solid var(--teal);
	font-size: clamp(18px, 1.8vw, 22px);
	font-weight: 600; line-height: 1.4; letter-spacing: -0.01em;
	color: var(--ink);
	font-style: italic;
}
.wct-about__attribution { margin-top: 20px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--olive); }

/* ═════════════════════════════════════════════════════════════════════════════
 *  CTA BLOCK — bottom of homepage
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-cta-block {
	position: relative; overflow: hidden;
	padding: clamp(80px, 12vw, 160px) var(--gutter);
	text-align: center; color: var(--white);
	background: var(--navy);
}
.wct-cta-block__bg {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	opacity: .25;
}
.wct-cta-block::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(27,42,74,.5), rgba(27,42,74,.95));
}
.wct-cta-block__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.wct-cta-block h2 { font-size: clamp(36px, 6vw, 72px); margin-bottom: 24px; color: var(--white); }
.wct-cta-block p { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.65; color: rgba(255,255,255,.75); margin-bottom: 40px; max-width: 56ch; margin-inline: auto; }
.wct-cta-block .wct-btn { margin: 0 8px; }

/* ═════════════════════════════════════════════════════════════════════════════
 *  EXPERIENCE DETAIL — premium booking page
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-experience-hero {
	position: relative; min-height: 80vh; min-height: 80svh;
	overflow: hidden; color: var(--white); display: flex; align-items: flex-end;
}
.wct-experience-hero__bg {
	position: absolute; inset: 0; background-size: cover; background-position: center;
	transform: scale(1.04);
	animation: wct-ken-burns 18s linear forwards;
}
.wct-experience-hero::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,0) 40%, rgba(10,10,10,.85) 100%);
}
.wct-experience-hero__inner {
	position: relative; z-index: 1;
	max-width: var(--container); margin: 0 auto;
	padding: 0 var(--gutter) clamp(64px, 10vh, 96px);
	width: 100%;
}
.wct-experience-hero__crumb {
	display: inline-flex; gap: 16px; align-items: center;
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: 0.2em; text-transform: uppercase;
	color: rgba(255,255,255,.7); margin-bottom: 28px;
}
.wct-experience-hero__crumb a { color: rgba(255,255,255,.85); }
.wct-experience-hero__crumb a:hover { color: var(--gold); }
.wct-experience-hero__crumb span { color: rgba(255,255,255,.4); }
.wct-experience-hero__title {
	font-size: clamp(40px, 7vw, 88px); font-weight: 800;
	letter-spacing: -0.035em; line-height: 1; color: var(--white);
	max-width: 18ch;
}
.wct-experience-hero__meta {
	margin-top: 32px; display: flex; gap: 28px; flex-wrap: wrap;
	font-family: var(--font-mono); font-size: 12px;
	letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,.85);
}
.wct-experience-hero__price { font-size: 14px; color: var(--gold); }

.wct-experience-body {
	display: grid; grid-template-columns: 1fr 380px;
	gap: clamp(40px, 6vw, 80px); padding-block: var(--section-y);
}
@media (max-width: 900px) { .wct-experience-body { grid-template-columns: 1fr; gap: 40px; } }
.wct-experience-body__main h2 { margin-top: 56px; margin-bottom: 20px; }
.wct-experience-body__main h2:first-child { margin-top: 0; }
.wct-prose p { margin-bottom: 16px; font-size: 17px; line-height: 1.75; color: var(--ink); }
.wct-experience-body__includes { list-style: none; margin-top: 20px; }
.wct-experience-body__includes li {
	padding: 16px 0; border-bottom: 1px solid var(--g200);
	display: flex; align-items: flex-start; gap: 16px;
	font-size: 15px; line-height: 1.5; color: var(--ink);
}
.wct-experience-body__includes li::before {
	content: ""; width: 8px; height: 8px; background: var(--teal); margin-top: 9px;
	flex-shrink: 0;
}

.wct-experience-aside {
	position: sticky; top: 120px; align-self: start;
	padding: 36px; background: var(--limestone);
	border: 1px solid var(--g200);
}
.wct-experience-aside__row {
	padding: 16px 0; border-bottom: 1px solid var(--g200);
	display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.wct-experience-aside__row:last-of-type { border-bottom: 0; }
.wct-experience-aside__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--olive); }
.wct-experience-aside__value { font-size: 15px; color: var(--ink); font-weight: 600; }
.wct-experience-aside .wct-btn { width: 100%; margin-top: 20px; justify-content: center; }
.wct-experience-aside__note { margin-top: 14px; text-align: center; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--olive); }

/* ═════════════════════════════════════════════════════════════════════════════
 *  FILTERS — experiences archive
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-filters { display: flex; flex-wrap: wrap; gap: 10px; padding: 32px 0; border-bottom: 1px solid var(--g200); margin-top: 32px; }
.wct-filter {
	padding: 10px 20px; font-family: var(--font-mono); font-size: 11px; font-weight: 500;
	letter-spacing: 0.14em; text-transform: uppercase;
	border: 1px solid var(--g200); color: var(--olive); cursor: pointer;
	transition: all .3s var(--ease);
}
.wct-filter:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-1px); }
.wct-filter.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ═════════════════════════════════════════════════════════════════════════════
 *  FOOTER
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: clamp(64px, 10vw, 96px) 0 40px; position: relative; overflow: hidden; }
.wct-footer::before {
	content: ""; position: absolute; inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	opacity: .04; mix-blend-mode: overlay; pointer-events: none;
}
.wct-footer__inner {
	max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
	display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr auto; gap: 56px;
	align-items: start; position: relative; z-index: 1;
}
@media (max-width: 900px) {
	.wct-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
	.wct-footer__brand, .wct-footer__cta { grid-column: 1 / -1; }
}
.wct-footer__brand-link { display: inline-flex; align-items: center; gap: 14px; color: var(--white); }
.wct-footer__tagline { margin-top: 24px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.45); max-width: 30ch; line-height: 1.7; }
.wct-footer__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.wct-footer__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.wct-footer__list a, .wct-footer__address a { color: rgba(255,255,255,.8); font-size: 14px; transition: color .2s var(--ease); }
.wct-footer__list a:hover, .wct-footer__address a:hover { color: var(--gold); }
.wct-footer__address { font-style: normal; font-size: 14px; line-height: 1.9; color: rgba(255,255,255,.65); }
.wct-footer__bottom {
	max-width: var(--container); margin: 64px auto 0; padding: 28px var(--gutter) 0;
	border-top: 1px solid rgba(255,255,255,.08);
	display: flex; justify-content: space-between; align-items: center; gap: 16px;
	font-family: var(--font-mono); font-size: 10px;
	letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.35);
	position: relative; z-index: 1;
}
.wct-footer__legal-list { list-style: none; display: flex; gap: 28px; }

/* ─── Pagination ───────────────────────────────────────────────────────────── */
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 64px; font-family: var(--font-mono); font-size: 12px; }
.nav-links .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 14px;
	border: 1px solid var(--g200); color: var(--olive);
	transition: all .25s var(--ease);
}
.nav-links .page-numbers.current { background: var(--ink); border-color: var(--ink); color: var(--white); }
.nav-links a.page-numbers:hover { border-color: var(--teal); color: var(--teal); }

/* ─── Custom cursor on hoverable cards (desktop only) ───────────────────────── */
@media (hover: hover) and (pointer: fine) {
	.wct-dest-card, .wct-cat, .wct-exp-card { cursor: none; }
	.wct-cursor {
		position: fixed; top: 0; left: 0; pointer-events: none; z-index: 100;
		width: 64px; height: 64px; border-radius: 50%;
		background: var(--gold); color: var(--ink);
		display: flex; align-items: center; justify-content: center;
		font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.15em;
		text-transform: uppercase; font-weight: 600;
		transform: translate(-50%, -50%) scale(0);
		transition: transform .25s var(--ease-out), background-color .2s var(--ease);
		mix-blend-mode: difference;
	}
	.wct-cursor.is-active { transform: translate(-50%, -50%) scale(1); }
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  MOTION + DYNAMISM LAYER
 * ═════════════════════════════════════════════════════════════════════════════ */

/* ─── Scroll progress bar ──────────────────────────────────────────────── */
.wct-scroll-progress {
	position: fixed; top: 0; left: 0; height: 2px; width: 0;
	background: linear-gradient(90deg, var(--teal), var(--gold));
	z-index: 100; pointer-events: none;
	transition: width 0.05s linear;
	box-shadow: 0 0 12px rgba(212, 168, 67, 0.5);
}

/* ─── Letter-by-letter reveal on H2 ────────────────────────────────────── */
.wct-h2-letters { display: inline-block; }
.wct-h2-letters .wct-letter {
	display: inline-block;
	opacity: 0;
	transform: translateY(0.6em) rotate(6deg);
	transition: opacity 0.6s var(--ease-out), transform 0.7s var(--ease-out);
}
.wct-h2-letters.is-revealed .wct-letter {
	opacity: 1;
	transform: translateY(0) rotate(0);
}
.wct-h2-letters .wct-letter--space { width: 0.3em; }

/* ─── Auto-scroll photo strip ──────────────────────────────────────────── */
.wct-photo-strip {
	display: flex; flex-wrap: nowrap;
	background: var(--ink);
	overflow: hidden; padding: 0;
	gap: 2px;
}
.wct-photo-strip__track {
	display: flex; gap: 2px;
	animation: wct-photo-marquee 50s linear infinite;
	width: max-content;
}
.wct-photo-strip:hover .wct-photo-strip__track { animation-play-state: paused; }
.wct-photo-strip__cell {
	width: 22vw; height: 16vw;
	min-width: 240px; min-height: 180px;
	background-size: cover; background-position: center;
	flex-shrink: 0; position: relative;
	transition: filter 0.4s var(--ease);
}
.wct-photo-strip__cell::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}
.wct-photo-strip__cell:hover { filter: brightness(1.1); z-index: 2; transform: scale(1.02); }
@keyframes wct-photo-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ─── Cursor spotlight on dark sections ────────────────────────────────── */
.wct-section--dark, .wct-who, .wct-cta-block {
	--mx: 50%;
	--my: 50%;
}
.wct-section--dark::before,
.wct-who::before,
.wct-cta-block::before {
	content: "";
	position: absolute; inset: 0;
	background: radial-gradient(
		400px circle at var(--mx) var(--my),
		rgba(212, 168, 67, 0.18),
		transparent 70%
	);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.4s var(--ease);
	z-index: 3;
	mix-blend-mode: screen;
}
.wct-section--dark.is-spotlit::before,
.wct-who.is-spotlit::before,
.wct-cta-block.is-spotlit::before {
	opacity: 1;
}
@media (hover: none) {
	.wct-section--dark::before, .wct-who::before, .wct-cta-block::before { display: none; }
}

/* ─── Magnetic buttons — JS adds transform on cursor approach ──────────── */
.wct-btn--primary, .wct-btn--inverse {
	transition: transform 0.25s var(--ease-out), background-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
	will-change: transform;
}

/* ─── Destination card image parallax — image shifts inside card ───────── */
.wct-dest-card__media {
	will-change: transform;
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  VIBRANCE LAYER — CSS-only tricks that add life without weight
 * ═════════════════════════════════════════════════════════════════════════════ */

/* Animated gold gradient on hero title's <em> word */
.wct-hero__title em,
.wct-who__title em {
	background: linear-gradient(110deg, #D4A843 0%, #F2D27A 30%, #D4A843 50%, #F2D27A 70%, #D4A843 100%);
	background-size: 280% 100%;
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: wct-gold-shimmer 9s ease-in-out infinite;
	font-style: normal;
}
@keyframes wct-gold-shimmer {
	0%, 100% { background-position: 0% 50%; }
	50%      { background-position: 100% 50%; }
}

/* Light-sweep shimmer over destination card images on hover */
.wct-dest-card::before {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(115deg,
		transparent 30%,
		rgba(255,255,255,0.18) 50%,
		transparent 70%
	);
	background-size: 250% 100%;
	background-position: 100% 0;
	opacity: 0; pointer-events: none;
	transition: opacity 0.4s var(--ease);
}
.wct-dest-card:hover::before {
	opacity: 1;
	animation: wct-shimmer 1.2s var(--ease) forwards;
}
@keyframes wct-shimmer {
	to { background-position: -150% 0; }
}

/* Slow rotating conic glow behind logo mark */
.wct-header__brand { position: relative; }
.wct-header__brand::before {
	content: ""; position: absolute;
	width: 60px; height: 60px;
	left: 18px; top: 50%; transform: translateY(-50%);
	background: conic-gradient(from 0deg, transparent, var(--gold), transparent);
	border-radius: 50%;
	filter: blur(14px);
	opacity: 0;
	transition: opacity 0.6s var(--ease);
	z-index: -1;
	animation: wct-conic-spin 8s linear infinite;
}
.wct-header__brand:hover::before { opacity: 0.55; }
@keyframes wct-conic-spin {
	from { transform: translateY(-50%) rotate(0deg); }
	to   { transform: translateY(-50%) rotate(360deg); }
}

/* Animated SVG wave divider between sections (drop in via wct-wave-divider) */
.wct-wave-divider {
	height: 60px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%231A8C8C' fill-opacity='0.2' d='M0,30 C320,60 560,0 800,30 C1040,60 1280,0 1440,30 L1440,60 L0,60 Z'/%3E%3Cpath fill='%231A8C8C' fill-opacity='0.35' d='M0,40 C240,15 600,55 880,30 C1160,5 1320,45 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E");
	background-repeat: repeat-x;
	background-size: 1440px 60px;
	animation: wct-wave-flow 22s linear infinite;
	pointer-events: none;
}
@keyframes wct-wave-flow {
	from { background-position: 0 0; }
	to   { background-position: 1440px 0; }
}

/* Floating gold dots — decorative ambient motion (pseudo-elements on dark sections) */
.wct-who::after,
.wct-cta-block::after {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(2px 2px at 18% 22%, rgba(212,168,67,0.6), transparent 50%),
		radial-gradient(1.5px 1.5px at 72% 18%, rgba(212,168,67,0.5), transparent 50%),
		radial-gradient(2px 2px at 38% 78%, rgba(212,168,67,0.7), transparent 50%),
		radial-gradient(1.5px 1.5px at 88% 64%, rgba(212,168,67,0.5), transparent 50%),
		radial-gradient(2.5px 2.5px at 12% 56%, rgba(212,168,67,0.55), transparent 50%);
	pointer-events: none;
	animation: wct-dot-drift 22s ease-in-out infinite alternate;
	z-index: 2;
}
@keyframes wct-dot-drift {
	from { transform: translate3d(0, 0, 0); opacity: 0.55; }
	to   { transform: translate3d(0, -18px, 0); opacity: 0.95; }
}

/* Subtle glow ring around primary book buttons */
.wct-btn--primary { position: relative; }
.wct-btn--primary::before {
	content: ""; position: absolute; inset: -2px;
	background: linear-gradient(45deg, var(--teal), var(--gold), var(--teal));
	background-size: 200% 200%;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.35s var(--ease);
	filter: blur(8px);
	animation: wct-glow-shift 4s ease-in-out infinite;
}
.wct-btn--primary:hover::before { opacity: 0.65; }
@keyframes wct-glow-shift {
	0%, 100% { background-position: 0% 50%; }
	50%      { background-position: 100% 50%; }
}

/* Live "online" indicator on the trust strip */
.wct-trust__item:first-child .wct-trust__num::after {
	content: ""; display: inline-block;
	width: 6px; height: 6px; border-radius: 50%;
	background: #10B981; margin-left: 8px;
	box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
	animation: wct-live-pulse 2.2s ease-in-out infinite;
	vertical-align: middle;
}
@keyframes wct-live-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
	70%  { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
	100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Animated underline on nav links (replacing simple bottom border) */
.wct-nav a { position: relative; }
.wct-nav a::after {
	content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
	background: linear-gradient(90deg, var(--gold), var(--teal));
	transition: width 0.4s var(--ease);
}
.wct-nav a:hover::after, .wct-nav .current-menu-item > a::after { width: 100%; }

/* Reveal images with a clip-path mask (in addition to fade) */
.wct-statement__media,
.wct-mosaic__cell,
.wct-experience-hero__bg {
	clip-path: inset(0 0 0 0);
}
.wct-statement__media.wct-reveal:not(.is-visible) {
	clip-path: inset(0 0 100% 0);
}
.wct-statement__media.wct-reveal {
	transition: clip-path 1.1s var(--ease-out), opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

/* Slight color cycle on the gold dot in eyebrow labels */
.wct-eyebrow--teal::before {
	background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
	background-size: 200% 100%;
	animation: wct-glow-shift 6s ease-in-out infinite;
}

/* Header utility cluster — fix alignment & make it breathe */
.wct-header__inner { align-items: center; }
.wct-utility { align-items: center; }
.wct-header__cta { margin-left: 8px; }
.wct-header__cta .wct-btn { padding: 11px 22px; min-height: 0; }

/* Make sure the header brand wordmark vertically centres */
.wct-wordmark { justify-content: center; }

/* ═════════════════════════════════════════════════════════════════════════════
 *  EDITORIAL OVERHAUL — typography that earns the price tag
 * ═════════════════════════════════════════════════════════════════════════════ */

/* Bigger, more confident type — pushes display closer to world-class travel brands */
h1 { font-size: clamp(40px, 9vw, 120px); line-height: 0.96; letter-spacing: -0.035em; }
h2 { font-size: clamp(36px, 7vw, 84px); line-height: 1.0;  letter-spacing: -0.03em; }

.wct-hero__title {
	font-size: clamp(48px, 11vw, 140px);
	letter-spacing: -0.04em; line-height: 0.92;
	max-width: 16ch;
}

.wct-who__title {
	font-size: clamp(48px, 9vw, 112px);
	letter-spacing: -0.035em; line-height: 0.96;
}

/* Sections breathe more — closer to magazine-spread rhythm */
:root { --section-y: clamp(96px, 14vw, 200px); }

/* ─── Massive chapter numerals — replace the small section labels ───────── */
.wct-section-label {
	position: sticky; top: 120px;
	display: flex; flex-direction: column; gap: 0;
	margin-bottom: 24px;
}
.wct-section-label__num {
	font-family: var(--font-sans);
	font-size: clamp(80px, 12vw, 200px);
	font-weight: 800;
	line-height: 0.9;
	letter-spacing: -0.05em;
	color: var(--ink);
	-webkit-text-stroke: 1.5px var(--ink);
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 12px;
	display: block;
	transition: -webkit-text-stroke-color 0.4s var(--ease);
	letter-spacing: 0; text-transform: none;
}
.wct-section--dark .wct-section-label__num {
	-webkit-text-stroke-color: var(--gold);
	opacity: 0.55;
}
.wct-section-label__name {
	font-family: var(--font-mono);
	font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--olive); opacity: 0.7;
}
.wct-section--dark .wct-section-label__name { color: rgba(255,255,255,0.55); }
@media (max-width: 860px) {
	.wct-section-label { position: static; flex-direction: row; align-items: baseline; gap: 16px; }
	.wct-section-label__num { font-size: 56px; margin: 0; }
}

/* ─── Drop cap — first letter of a marked paragraph spans 3 lines ───────── */
.wct-prose > p:first-of-type::first-letter,
.wct-statement__text > p.lead::first-letter,
.wct-about__text > p:first-of-type::first-letter {
	float: left;
	font-family: var(--font-sans);
	font-size: clamp(60px, 7vw, 96px);
	font-weight: 800;
	line-height: 0.82;
	color: var(--teal);
	padding: 6px 14px 0 0;
	margin-top: 6px;
	letter-spacing: -0.05em;
}

/* ─── Editorial pull-quote section (new section type) ───────────────────── */
.wct-pullquote {
	background: var(--ink); color: var(--white);
	padding: clamp(120px, 18vw, 220px) var(--gutter);
	position: relative; overflow: hidden;
	text-align: center;
}
.wct-pullquote::before {
	content: "“"; position: absolute;
	top: -40px; left: 50%; transform: translateX(-50%);
	font-family: Georgia, serif;
	font-size: clamp(160px, 22vw, 320px);
	color: var(--gold); opacity: 0.18; line-height: 1;
}
.wct-pullquote__inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.wct-pullquote__quote {
	font-size: clamp(28px, 4.5vw, 64px);
	font-weight: 500;
	font-style: italic;
	line-height: 1.18;
	letter-spacing: -0.025em;
	color: var(--white);
}
.wct-pullquote__quote em {
	background: linear-gradient(110deg, var(--gold), #F2D27A, var(--gold));
	background-size: 280% 100%;
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: wct-gold-shimmer 9s ease-in-out infinite;
	font-style: italic;
}
.wct-pullquote__attribution {
	display: inline-flex; align-items: center; gap: 16px;
	margin-top: 56px;
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: 0.24em; text-transform: uppercase;
	color: rgba(255,255,255,0.55);
}
.wct-pullquote__attribution::before {
	content: ""; width: 48px; height: 1px;
	background: var(--gold);
}

/* ─── Duotone hover treatment on featured experience cards ──────────────── */
.wct-exp-card__media img {
	transition: transform 1s var(--ease-out), filter 0.7s var(--ease-out);
}
.wct-exp-card:hover .wct-exp-card__media img {
	filter: saturate(1.2) contrast(1.06);
}

/* ─── Asymmetric featured experiences — stagger card heights ─────────────── */
.wct-exp-grid.wct-exp-grid--stagger {
	grid-template-columns: 1fr 1fr 1fr;
	align-items: start;
}
.wct-exp-grid.wct-exp-grid--stagger > :nth-child(2) {
	margin-top: 64px;
}
.wct-exp-grid.wct-exp-grid--stagger > :nth-child(3) {
	margin-top: 32px;
}
@media (max-width: 900px) {
	.wct-exp-grid.wct-exp-grid--stagger > :nth-child(n) { margin-top: 0; }
}

/* ─── Section colour rhythm — alternate near-blacks/warm-creams ──────────── */
.wct-section--cream {
	background: #F5F1E8;
	color: var(--ink);
}
.wct-section--charcoal {
	background: #1A1C1F;
	color: var(--white);
}

/* ─── Vertical text accent on certain sections (left-margin caption) ─────── */
.wct-vertical-caption {
	position: absolute;
	left: 24px; top: 50%;
	writing-mode: vertical-rl;
	transform: rotate(180deg) translateY(50%);
	font-family: var(--font-mono); font-size: 10px;
	letter-spacing: 0.32em; text-transform: uppercase;
	color: var(--olive); opacity: 0.55;
	z-index: 5;
}

/* ─── Slower, more confident reveal motion ──────────────────────────────── */
.wct-reveal {
	transition-duration: 1.2s;
}

/* ─── Subtle background-colour fade between sections ─────────────────────── */
body { transition: background-color 0.8s var(--ease); }

/* ─── Image overlay tint on destination cards (each gets a unique cast) ──── */
.wct-dest-card:nth-child(5n+1) .wct-dest-card__media { filter: saturate(0.95) hue-rotate(-2deg); }
.wct-dest-card:nth-child(5n+2) .wct-dest-card__media { filter: saturate(0.95) hue-rotate(2deg); }
.wct-dest-card:nth-child(5n+3) .wct-dest-card__media { filter: saturate(1.05) brightness(0.97); }
.wct-dest-card:nth-child(5n+4) .wct-dest-card__media { filter: saturate(0.92) contrast(1.04); }
.wct-dest-card:nth-child(5n+5) .wct-dest-card__media { filter: saturate(1.0) hue-rotate(4deg); }

/* ─── Editorial caption block for images (figure + figcaption) ───────────── */
.wct-figure { display: block; }
.wct-figure figcaption {
	margin-top: 16px;
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--olive);
}
.wct-figure figcaption strong {
	color: var(--ink); font-weight: 600;
}

/* ─── Slight grain on light sections too (warmer feel) ───────────────────── */
.wct-section:not(.wct-section--dark)::after {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.05 0 0 0 0 0 0 0 0 0.2 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	opacity: 0.02;
	mix-blend-mode: multiply;
	z-index: 1;
}
.wct-section:not(.wct-section--dark) > * { position: relative; z-index: 2; }

/* ─── Featured card image — taller, more cinematic ──────────────────────── */
.wct-exp-card__media { aspect-ratio: 3 / 4; }
@media (max-width: 900px) { .wct-exp-card__media { aspect-ratio: 4 / 3; } }

/* ─── Newsletter — more confident type ──────────────────────────────────── */
.wct-newsletter__title { font-size: clamp(32px, 5.5vw, 64px); letter-spacing: -0.025em; }

/* ─── Bigger CTA bookend ─────────────────────────────────────────────────── */
.wct-cta-block h2 { font-size: clamp(40px, 8vw, 96px); }


/* ═════════════════════════════════════════════════════════════════════════════
 *  TEXTURE LIBRARY — reusable background patterns
 *  Each applies via a single class. Combine with section--dark / --limestone.
 * ═════════════════════════════════════════════════════════════════════════════ */

/* Topographic map lines — perfect for travel content. Sits at low opacity. */
.wct-tx-topo {
	position: relative; isolation: isolate;
}
.wct-tx-topo::before {
	content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 800 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%231A8C8C' stroke-width='1' opacity='0.45'%3E%3Cpath d='M-50,200 Q200,160 400,200 T850,200'/%3E%3Cpath d='M-50,260 Q200,210 400,260 T850,260'/%3E%3Cpath d='M-50,330 Q200,270 400,330 T850,330'/%3E%3Cpath d='M-50,410 Q200,340 400,410 T850,410'/%3E%3Cpath d='M-50,500 Q200,420 400,500 T850,500'/%3E%3Cpath d='M-50,600 Q200,510 400,600 T850,600'/%3E%3Cpath d='M-50,710 Q200,610 400,710 T850,710'/%3E%3C/g%3E%3C/svg%3E");
	background-size: 800px 800px;
	background-repeat: repeat;
	opacity: .25;
}
.wct-tx-topo > * { position: relative; z-index: 1; }

/* Paper grain — warm beige fibre, great over limestone sections. */
.wct-tx-paper {
	position: relative; isolation: isolate;
}
.wct-tx-paper::before {
	content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' seed='8'/%3E%3CfeColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.31 0 0 0 0 0.18 0 0 0 0.45 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");
	opacity: .07; mix-blend-mode: multiply;
}
.wct-tx-paper > * { position: relative; z-index: 1; }

/* Wave pattern — perfect for sea-coastal moments. */
.wct-tx-waves {
	position: relative; isolation: isolate;
}
.wct-tx-waves::before {
	content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,30 Q25,15 50,30 T100,30 T150,30 T200,30' fill='none' stroke='%231A8C8C' stroke-width='1.5' opacity='0.4'/%3E%3Cpath d='M0,42 Q25,27 50,42 T100,42 T150,42 T200,42' fill='none' stroke='%231A8C8C' stroke-width='1' opacity='0.25'/%3E%3C/svg%3E");
	background-size: 200px 60px;
	background-repeat: repeat;
	opacity: .5;
}
.wct-tx-waves > * { position: relative; z-index: 1; }

/* Dotted grid — utility, gives subtle structure to flat panels. */
.wct-tx-dots {
	position: relative; isolation: isolate;
}
.wct-tx-dots::before {
	content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background-image: radial-gradient(circle, rgba(26,140,140,0.18) 1px, transparent 1px);
	background-size: 24px 24px;
}
.wct-tx-dots > * { position: relative; z-index: 1; }

/* Section video background — absolute layer behind content. Use opacity inline. */
.wct-section-video {
	position: absolute; inset: 0; z-index: 0;
	overflow: hidden; pointer-events: none;
}
.wct-section-video video {
	width: 100%; height: 100%; object-fit: cover; object-position: center;
	display: block;
}
.wct-has-video { position: relative; isolation: isolate; }
.wct-has-video > * { position: relative; z-index: 1; }
/* Soft tint over video so text stays readable. Limestone sections lighten, dark sections darken. */
.wct-has-video.wct-section--limestone::before {
	content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background: linear-gradient(180deg, rgba(247,245,240,0.85) 0%, rgba(247,245,240,0.65) 50%, rgba(247,245,240,0.85) 100%);
}
.wct-has-video.wct-section--dark::before {
	content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.7) 100%);
}
.wct-has-video:not(.wct-section--limestone):not(.wct-section--dark)::before {
	content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.65) 50%, rgba(255,255,255,0.85) 100%);
}

/* Category panel video — sits between the photo media and the gradient overlay */
.wct-cat__video {
	position: absolute; inset: 0; z-index: 0;
	width: 100%; height: 100%; object-fit: cover; object-position: center;
	opacity: 0.7;
}
.wct-cat__media { z-index: -1; }

/* Faded photo band — drops a faded photo behind a section. Use --bg via inline style. */
.wct-bg-photo {
	position: relative; isolation: isolate;
}
.wct-bg-photo::before {
	content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background-image: var(--bg);
	background-size: cover; background-position: center;
	background-attachment: fixed;
	opacity: .28;
}
.wct-bg-photo--dark::before { opacity: .42; }
.wct-bg-photo::after {
	/* Gradient fade so the photo bleeds at top and bottom for legibility */
	content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background: linear-gradient(180deg, var(--limestone) 0%, rgba(247,245,240,0.55) 18%, rgba(247,245,240,0.55) 82%, var(--limestone) 100%);
}
.wct-section--dark.wct-bg-photo::after {
	background: linear-gradient(180deg, var(--ink) 0%, rgba(10,10,10,0.6) 22%, rgba(10,10,10,0.6) 78%, var(--ink) 100%);
}
/* For sections with white bg (e.g. Destinations), fade to white */
.wct-section:not(.wct-section--dark):not(.wct-section--limestone).wct-bg-photo::after {
	background: linear-gradient(180deg, var(--white) 0%, rgba(255,255,255,0.55) 18%, rgba(255,255,255,0.55) 82%, var(--white) 100%);
}
/* iOS doesn't support background-attachment:fixed well — fall back */
@supports (-webkit-touch-callout: none) {
	.wct-bg-photo::before { background-attachment: scroll; }
}
.wct-bg-photo > * { position: relative; z-index: 2; }

/* Diagonal corner accent — adds visual energy to corners */
.wct-tx-corner {
	position: relative; isolation: isolate;
}
.wct-tx-corner::after {
	content: ""; position: absolute; top: 0; right: 0;
	width: 200px; height: 200px; pointer-events: none;
	background-image: linear-gradient(135deg, transparent 40%, rgba(212,168,67,0.12) 40%, rgba(212,168,67,0.12) 42%, transparent 42%, transparent 50%, rgba(26,140,140,0.10) 50%, rgba(26,140,140,0.10) 52%, transparent 52%);
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  PHOTO STRIP — section divider made of small photos
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-photo-strip {
	display: grid; grid-template-columns: repeat(7, 1fr);
	gap: 2px; background: var(--ink);
	overflow: hidden;
}
@media (max-width: 900px) {
	.wct-photo-strip { grid-template-columns: repeat(4, 1fr); }
	.wct-photo-strip__cell:nth-child(n+5) { display: none; }
}
.wct-photo-strip__cell {
	aspect-ratio: 4 / 3;
	background-size: cover; background-position: center;
	transition: filter .5s var(--ease);
	position: relative;
}
.wct-photo-strip__cell::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.4));
}
.wct-photo-strip:hover .wct-photo-strip__cell { filter: brightness(.55) grayscale(.4); }
.wct-photo-strip__cell:hover { filter: brightness(1.05) grayscale(0) !important; }

/* ═════════════════════════════════════════════════════════════════════════════
 *  TRUST STRIP — conversion signals under hero
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-trust {
	background: var(--white);
	border-top: 1px solid var(--g200);
	border-bottom: 1px solid var(--g200);
	padding: 24px var(--gutter);
}
.wct-trust__inner {
	max-width: var(--container); margin: 0 auto;
	display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px;
	align-items: center;
}
@media (max-width: 900px) {
	.wct-trust__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
	.wct-trust__inner > :last-child { grid-column: 1 / -1; }
}
.wct-trust__item {
	display: flex; flex-direction: column; gap: 4px;
	padding: 8px 0;
	border-left: 1px solid var(--g200);
	padding-left: 20px;
}
.wct-trust__item:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 900px) {
	.wct-trust__item { border-left: 0; padding-left: 0; padding-block: 12px; border-top: 1px solid var(--g200); }
	.wct-trust__inner > :nth-child(-n+2) { border-top: 0; }
}
.wct-trust__num {
	font-family: var(--font-sans);
	font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em;
	font-variant-numeric: tabular-nums;
}
.wct-trust__label {
	font-family: var(--font-mono); font-size: 10px;
	letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive);
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  REVIEWS — guest testimonials grid
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-reviews {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
	margin-top: 56px;
}
@media (max-width: 900px) { .wct-reviews { grid-template-columns: 1fr; gap: 24px; } }
.wct-review {
	background: var(--white);
	padding: 32px 28px;
	border: 1px solid var(--g200);
	display: flex; flex-direction: column; gap: 20px;
	position: relative;
}
.wct-review::before {
	content: """; position: absolute; top: -28px; left: 24px;
	font-family: 'Inter', serif; font-size: 96px; line-height: 1;
	color: var(--teal); opacity: .15;
}
.wct-review__stars { color: var(--gold); font-size: 14px; letter-spacing: 4px; }
.wct-review__quote {
	font-size: 15px; line-height: 1.65; color: var(--ink);
	font-weight: 400; font-style: italic; flex: 1;
}
.wct-review__cite {
	display: flex; flex-direction: column; gap: 4px;
	padding-top: 16px; border-top: 1px solid var(--g200);
}
.wct-review__name { font-size: 14px; font-weight: 600; color: var(--ink); }
.wct-review__meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--olive); }

.wct-reviews__source {
	display: flex; flex-wrap: wrap; gap: 40px;
	align-items: center;
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid var(--g200);
	font-family: var(--font-mono); font-size: 10px;
	letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive);
}
.wct-reviews__platform { opacity: .7; }

/* ═════════════════════════════════════════════════════════════════════════════
 *  ITINERARY STEPS — what you'll do
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-itinerary { display: flex; flex-direction: column; gap: 4px; margin-top: 32px; }
.wct-itinerary__step {
	display: grid; grid-template-columns: 80px 1fr;
	gap: 32px;
	padding: 28px 0;
	border-bottom: 1px solid var(--g200);
}
.wct-itinerary__step:last-child { border-bottom: 0; }
.wct-itinerary__num {
	font-family: var(--font-mono); font-size: 13px;
	letter-spacing: 0.15em; color: var(--teal);
	font-weight: 500;
}
.wct-itinerary__step h4 { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.wct-itinerary__step p { font-size: 15px; line-height: 1.7; color: var(--olive); max-width: 56ch; }
@media (max-width: 700px) { .wct-itinerary__step { grid-template-columns: 1fr; gap: 8px; } }

/* ═════════════════════════════════════════════════════════════════════════════
 *  AUDIENCE — who it's for
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-audience {
	display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
	margin-top: 32px;
}
@media (max-width: 700px) { .wct-audience { grid-template-columns: 1fr; } }
.wct-audience__col {
	padding: 28px 24px;
	background: var(--limestone);
	border: 1px solid var(--g200);
}
.wct-audience__label {
	font-family: var(--font-mono); font-size: 10px;
	letter-spacing: 0.15em; text-transform: uppercase;
	color: var(--teal); margin-bottom: 16px;
}
.wct-audience__col:last-child .wct-audience__label { color: var(--olive); }
.wct-audience__col ul { list-style: none; }
.wct-audience__col li {
	padding: 10px 0;
	font-size: 15px; line-height: 1.5; color: var(--ink);
	border-bottom: 1px solid rgba(0,0,0,.06);
	padding-left: 24px; position: relative;
}
.wct-audience__col li:last-child { border-bottom: 0; }
.wct-audience__col:first-child li::before {
	content: "✓"; position: absolute; left: 0; top: 10px;
	color: var(--teal); font-weight: 700;
}
.wct-audience__col:last-child li::before {
	content: "—"; position: absolute; left: 0; top: 10px;
	color: var(--olive);
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  WHAT TO BRING
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-bring {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
	margin-top: 32px; background: var(--g200);
}
@media (max-width: 700px) { .wct-bring { grid-template-columns: 1fr; } }
.wct-bring > div { background: var(--white); padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.wct-bring strong {
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal);
	font-weight: 500;
}
.wct-bring span { font-size: 15px; line-height: 1.6; color: var(--ink); }

/* ═════════════════════════════════════════════════════════════════════════════
 *  FAQs — accordion
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-faqs { margin-top: 32px; }
.wct-faq {
	border-bottom: 1px solid var(--g200);
	padding: 24px 0;
}
.wct-faq summary {
	list-style: none; cursor: pointer;
	font-size: 18px; font-weight: 600; color: var(--ink);
	display: flex; justify-content: space-between; align-items: center;
	gap: 16px; letter-spacing: -0.01em;
	transition: color .25s var(--ease);
}
.wct-faq summary::-webkit-details-marker { display: none; }
.wct-faq summary::after {
	content: "+"; font-family: var(--font-mono); font-weight: 400;
	font-size: 24px; color: var(--teal);
	transition: transform .3s var(--ease);
}
.wct-faq[open] summary::after { content: "−"; }
.wct-faq summary:hover { color: var(--teal); }
.wct-faq p {
	margin-top: 16px; font-size: 15px; line-height: 1.7; color: var(--olive);
	max-width: 64ch;
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  EXPERIENCE ASIDE EXTRAS
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-experience-aside__contact {
	margin-top: 32px; padding-top: 24px;
	border-top: 1px solid var(--g200);
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  VALUES GRID — used on About page
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-values {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
	margin-top: 48px; background: rgba(255,255,255,.08);
}
@media (max-width: 700px) { .wct-values { grid-template-columns: 1fr; } }
.wct-value { background: var(--ink); padding: 32px 28px; position: relative; }
.wct-value__num {
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: 0.15em; color: var(--teal); margin-bottom: 16px; display: block;
}
.wct-value__title { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 12px; letter-spacing: -0.015em; }
.wct-value__copy { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.6); }

/* ═════════════════════════════════════════════════════════════════════════════
 *  INTERACTIVE MAP — west coast Greece with pinned destinations
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-map-section { padding-block: clamp(80px, 10vw, 120px); }
.wct-map {
	margin-top: 56px;
	background: var(--ink);
	border: 1px solid rgba(255,255,255,.06);
	overflow: hidden;
	position: relative;
}
.wct-map__svg { width: 100%; height: auto; display: block; }

.wct-map__pin { cursor: pointer; transition: transform .4s var(--ease); }
.wct-map__pin:hover { transform: translate(var(--x,0),var(--y,0)) scale(1.15); }
.wct-map__pin .wct-map__pulse {
	transform-origin: center; transform-box: fill-box;
	animation: wct-map-pulse 2.4s ease-out infinite;
}
@keyframes wct-map-pulse {
	0%   { r: 6;  opacity: 0.55; }
	100% { r: 32; opacity: 0; }
}
.wct-map__label { opacity: 0; transform: translate(20px, 4px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.wct-map__pin:hover .wct-map__label,
.wct-map__pin:focus-within .wct-map__label { opacity: 1; transform: translate(14px, 4px); }
.wct-map__pin:hover circle:nth-of-type(2) { fill: #FFFFFF; stroke: #D4A843; }

.wct-map__legend {
	display: flex; flex-wrap: wrap; gap: 32px;
	padding: 16px 24px;
	background: rgba(0,0,0,.6);
	border-top: 1px solid rgba(255,255,255,.06);
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: 0.15em; text-transform: uppercase;
	color: rgba(255,255,255,.6);
}
.wct-map__legend-item { display: inline-flex; align-items: center; gap: 12px; }
.wct-map__legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.wct-map__legend-line {
	width: 24px; height: 1px;
	background-image: linear-gradient(90deg, #D4A843 0 50%, transparent 50% 100%);
	background-size: 8px 1px;
}
.wct-map__legend-compass {
	width: 18px; height: 18px; border-radius: 50%;
	border: 1px solid #D4A843; color: #D4A843;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 9px;
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  DROP CAP — used on brand statement and editorial lead paragraphs
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-dropcap::first-letter {
	float: left;
	font-family: var(--font-sans);
	font-size: clamp(60px, 8vw, 96px);
	line-height: 0.85;
	font-weight: 800;
	color: var(--teal);
	padding: 8px 16px 0 0;
	letter-spacing: -0.04em;
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  PHOTO MOSAIC — for About section (replaces single image)
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-mosaic {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 8px;
	aspect-ratio: 4 / 5;
	position: sticky; top: 120px;
}
@media (max-width: 900px) { .wct-mosaic { position: static; aspect-ratio: 16/10; } }
.wct-mosaic__cell {
	overflow: hidden;
	background-size: cover; background-position: center;
	transition: transform .6s var(--ease);
}
.wct-mosaic__cell:hover { transform: scale(1.04); }
.wct-mosaic__cell:nth-child(1) {
	grid-column: 1 / 2; grid-row: 1 / 3;
}
.wct-mosaic__cell:nth-child(2) {
	grid-column: 2 / 3; grid-row: 1 / 2;
}
.wct-mosaic__cell:nth-child(3) {
	grid-column: 2 / 3; grid-row: 2 / 3;
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  SCROLL INDICATOR — sticky right-edge "you are here" dots
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-scroll-dots {
	position: fixed; right: 24px; top: 50%; transform: translateY(-50%);
	z-index: 40;
	display: flex; flex-direction: column; gap: 14px;
	pointer-events: none;
}
@media (max-width: 900px) { .wct-scroll-dots { display: none; } }
.wct-scroll-dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: rgba(0,0,0,.18);
	pointer-events: auto;
	cursor: pointer;
	transition: background .25s var(--ease), transform .25s var(--ease), width .25s var(--ease), border-radius .25s var(--ease);
	position: relative;
}
.wct-scroll-dot:hover { background: var(--teal); transform: scale(1.4); }
.wct-scroll-dot.is-active { width: 24px; border-radius: 4px; background: var(--teal); }
.wct-scroll-dot__label {
	position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
	font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em;
	text-transform: uppercase; color: var(--ink); white-space: nowrap;
	opacity: 0; pointer-events: none;
	transition: opacity .25s var(--ease);
	background: rgba(255,255,255,.92); padding: 4px 10px;
	-webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.wct-scroll-dot:hover .wct-scroll-dot__label,
.wct-scroll-dot.is-active .wct-scroll-dot__label { opacity: 1; }
/* Inverse colors when over dark sections */
body.wct-scroll-dark .wct-scroll-dot:not(.is-active) { background: rgba(255,255,255,.25); }
body.wct-scroll-dark .wct-scroll-dot__label { color: var(--white); background: rgba(0,0,0,.7); }

/* ═════════════════════════════════════════════════════════════════════════════
 *  EXPERIENCE GALLERY — masonry of 6 photos w/ captions
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-gallery {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-auto-rows: 140px;
	gap: 8px;
	margin-top: 32px;
}
@media (max-width: 900px) { .wct-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; } }

.wct-gallery__item {
	background-size: cover; background-position: center;
	overflow: hidden; position: relative;
	transition: transform .5s var(--ease);
	cursor: pointer;
}
.wct-gallery__item::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.65) 100%);
	transition: background .35s var(--ease);
}
.wct-gallery__item:hover::after { background: linear-gradient(180deg, rgba(26,140,140,0.25) 0%, rgba(0,0,0,0.8) 100%); }
.wct-gallery__item figcaption {
	position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2;
	font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em;
	text-transform: uppercase; color: var(--white);
	opacity: 0; transform: translateY(8px);
	transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.wct-gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }

/* Varied tile sizes — masonry feel */
.wct-gallery__item--0 { grid-column: span 4; grid-row: span 2; }
.wct-gallery__item--1 { grid-column: span 2; grid-row: span 1; }
.wct-gallery__item--2 { grid-column: span 2; grid-row: span 1; }
.wct-gallery__item--3 { grid-column: span 2; grid-row: span 2; }
.wct-gallery__item--4 { grid-column: span 2; grid-row: span 1; }
.wct-gallery__item--5 { grid-column: span 2; grid-row: span 1; }
@media (max-width: 900px) {
	.wct-gallery__item--0,
	.wct-gallery__item--1,
	.wct-gallery__item--2,
	.wct-gallery__item--3,
	.wct-gallery__item--4,
	.wct-gallery__item--5 { grid-column: span 1; grid-row: span 1; }
	.wct-gallery__item--0 { grid-column: 1 / -1; grid-row: span 2; }
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  URGENCY — micro-signals in booking aside
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-urgency {
	display: flex; align-items: center; gap: 10px;
	margin-bottom: 20px;
	padding: 10px 14px;
	background: rgba(212,168,67,0.10);
	border-left: 2px solid var(--gold);
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: 0.1em; text-transform: uppercase;
	color: var(--ink);
}
.wct-urgency__dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--gold); flex-shrink: 0;
	box-shadow: 0 0 0 4px rgba(212,168,67,0.2);
	animation: wct-pulse-dot 2.2s ease-in-out infinite;
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  NEWSLETTER — pre-footer signup
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-newsletter {
	background: var(--navy);
	color: var(--white);
	padding: clamp(64px, 9vw, 96px) var(--gutter);
	position: relative; overflow: hidden;
}
.wct-newsletter::before {
	content: ""; position: absolute; inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 800 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D4A843' stroke-width='1' opacity='0.5'%3E%3Cpath d='M-50,200 Q200,160 400,200 T850,200'/%3E%3Cpath d='M-50,330 Q200,270 400,330 T850,330'/%3E%3Cpath d='M-50,500 Q200,420 400,500 T850,500'/%3E%3Cpath d='M-50,710 Q200,610 400,710 T850,710'/%3E%3C/g%3E%3C/svg%3E");
	background-size: 800px 800px;
	opacity: .12; pointer-events: none;
}
.wct-newsletter__inner {
	max-width: var(--container); margin: 0 auto;
	display: grid; grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 6vw, 80px); align-items: center;
	position: relative; z-index: 1;
}
@media (max-width: 900px) { .wct-newsletter__inner { grid-template-columns: 1fr; } }
.wct-newsletter__title {
	font-size: clamp(28px, 4vw, 44px); font-weight: 700;
	letter-spacing: -0.02em; line-height: 1.1; color: var(--white);
	margin-top: 16px; margin-bottom: 16px;
}
.wct-newsletter__lede { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.65); max-width: 48ch; }
.wct-newsletter__form { display: flex; flex-direction: column; gap: 12px; }
.wct-newsletter__form input[type="email"] {
	width: 100%; padding: 18px 20px;
	font-family: var(--font-sans); font-size: 16px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.15);
	color: var(--white);
	transition: border-color .25s var(--ease), background .25s var(--ease);
}
.wct-newsletter__form input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
.wct-newsletter__form input[type="email"]:focus {
	outline: none;
	border-color: var(--gold);
	background: rgba(255,255,255,0.08);
}
.wct-newsletter__form button { width: 100%; justify-content: center; }
.wct-newsletter__note {
	font-family: var(--font-mono); font-size: 10px;
	letter-spacing: 0.15em; text-transform: uppercase;
	color: rgba(255,255,255,0.4); margin-top: 4px;
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  HEADER — colour shift when over light sections
 * ═════════════════════════════════════════════════════════════════════════════ */
/* When over a light section AND not in scrolled state, shift to dark text on translucent white. */
.wct-header.is-over-dark:not(.is-scrolled) {
	background: transparent;
}
.wct-header:not(.is-over-dark):not(.is-scrolled) {
	background: rgba(255,255,255,0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
.wct-header:not(.is-over-dark):not(.is-scrolled) .wct-header__brand,
.wct-header:not(.is-over-dark):not(.is-scrolled) .wct-nav a,
.wct-header:not(.is-over-dark):not(.is-scrolled) .wct-wordmark__name {
	color: var(--ink);
}
.wct-header:not(.is-over-dark):not(.is-scrolled) .wct-wordmark__label { color: var(--olive); }
.wct-header:not(.is-over-dark):not(.is-scrolled) .wct-header__mobile-toggle span { background: var(--ink); }
.wct-header:not(.is-over-dark):not(.is-scrolled) .wct-logo-mark { color: var(--teal); }

/* ═════════════════════════════════════════════════════════════════════════════
 *  PAGE TRANSITION — fade-to-ink overlay
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-page-transition {
	position: fixed; inset: 0; z-index: 999;
	background: var(--ink);
	opacity: 0; pointer-events: none;
	transition: opacity .4s var(--ease-in-out);
	display: flex; align-items: center; justify-content: center;
}
.wct-page-transition.is-active { opacity: 1; }
.wct-page-transition__bar {
	width: 120px; height: 2px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	background-size: 200% 100%;
	animation: wct-loader 1.2s linear infinite;
	opacity: 0;
	transition: opacity .25s var(--ease) .15s;
}
.wct-page-transition.is-active .wct-page-transition__bar { opacity: 1; }
@keyframes wct-loader {
	0%   { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  WHO WE ARE — full-bleed video/photo background with editorial overlay
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-who {
	position: relative;
	color: var(--white);
	padding-block: clamp(120px, 18vw, 200px);
	overflow: hidden;
	background: var(--ink);
}
.wct-who__bg { position: absolute; inset: 0; z-index: 0; }
.wct-who__video, .wct-who__photo {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover; object-position: center;
	background-size: cover; background-position: center;
}
.wct-who__video { z-index: 1; }
.wct-who__photo {
	animation: wct-ken-burns 24s linear infinite alternate;
	z-index: 0;
}
/* When a video sibling is present, photo sits behind as fallback only */
.wct-who__overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(27,42,74,0.7) 45%, rgba(10,10,10,0.85) 100%),
		linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0) 70%, rgba(10,10,10,0.6) 100%);
}
.wct-who__overlay::after {
	content: ""; position: absolute; inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	opacity: .08; mix-blend-mode: overlay;
}

.wct-who__inner { position: relative; z-index: 2; }
.wct-who__title {
	font-size: clamp(40px, 7vw, 88px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 0.98;
	color: var(--white);
	margin-block: 24px 56px;
	max-width: 16ch;
}
.wct-who__title em {
	font-style: normal;
	background: linear-gradient(90deg, var(--gold), #E9C77A);
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
	font-family: 'Inter', serif;
}
.wct-who__columns {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	margin-top: 32px;
}
@media (max-width: 900px) { .wct-who__columns { grid-template-columns: 1fr; } }
.wct-who__body { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.8); margin-bottom: 16px; max-width: 50ch; }
.wct-who__quote {
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -0.01em;
	color: var(--white);
	padding-left: 24px;
	border-left: 2px solid var(--gold);
	font-style: italic;
	max-width: 36ch;
}
.wct-who__attribution {
	margin-top: 20px;
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: 0.18em; text-transform: uppercase;
	color: rgba(255,255,255,0.6);
}

.wct-who__signals {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 40px;
	padding-top: 28px;
	border-top: 1px solid rgba(255,255,255,0.15);
}
@media (max-width: 600px) { .wct-who__signals { grid-template-columns: 1fr; } }
.wct-who__signal {
	display: flex; flex-direction: column; gap: 6px;
}
.wct-who__signal-num {
	font-family: var(--font-sans);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 800;
	color: var(--gold);
	letter-spacing: -0.02em;
	line-height: 1;
}
.wct-who__signal span:last-child {
	font-family: var(--font-mono);
	font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
	color: rgba(255,255,255,0.6);
	max-width: 18ch;
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  CURRENCY + LANGUAGE SWITCHER (header utility cluster)
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-utility {
	display: inline-flex; align-items: center; gap: 16px;
	margin-left: 16px;
}
@media (max-width: 1100px) { .wct-utility { display: none; } }
.wct-switch {
	position: relative;
}
.wct-switch__toggle {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 10px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.18);
	font-family: var(--font-mono); font-size: 10px;
	letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--white); cursor: pointer;
	transition: background .2s var(--ease), border-color .2s var(--ease);
}
.wct-header:not(.is-over-dark):not(.is-scrolled) .wct-switch__toggle {
	background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.18); color: var(--ink);
}
.wct-switch__toggle:hover { background: rgba(255,255,255,0.18); }
.wct-switch__toggle::after {
	content: "▾"; font-size: 8px; margin-left: 2px; opacity: .65;
}
.wct-switch__menu {
	position: absolute; top: 100%; right: 0; margin-top: 6px;
	min-width: 120px;
	background: var(--ink); color: var(--white);
	border: 1px solid rgba(255,255,255,0.1);
	box-shadow: 0 12px 32px rgba(0,0,0,0.3);
	display: none;
	z-index: 60;
}
.wct-switch.is-open .wct-switch__menu { display: block; }
.wct-switch__opt {
	display: flex; align-items: center; justify-content: space-between;
	padding: 10px 14px; cursor: pointer;
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: 0.12em; text-transform: uppercase;
	color: rgba(255,255,255,0.7);
	transition: background .15s var(--ease), color .15s var(--ease);
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wct-switch__opt:last-child { border-bottom: 0; }
.wct-switch__opt:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.wct-switch__opt.is-active { color: var(--gold); }
.wct-switch__opt small { font-family: var(--font-sans); text-transform: none; letter-spacing: 0; opacity: .55; font-size: 11px; }
.wct-switch__rates-note {
	padding: 8px 14px;
	font-family: var(--font-mono); font-size: 9px;
	letter-spacing: 0.12em; text-transform: uppercase;
	color: rgba(255,255,255,0.35);
	background: rgba(0,0,0,0.3);
	border-top: 1px solid rgba(255,255,255,0.05);
}

/* Contact page extra layout */
.wct-contact-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(32px, 5vw, 80px);
}
@media (max-width: 768px) { .wct-contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.wct-contact__row {
	display: grid; grid-template-columns: 120px 1fr;
	padding: 16px 0;
	border-bottom: 1px solid var(--g200);
	font-size: 15px; line-height: 1.5;
	align-items: baseline; gap: 16px;
}
.wct-contact__row:last-of-type { border-bottom: 0; }
.wct-contact__label {
	font-family: var(--font-mono); font-size: 10px;
	letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--olive);
}
.wct-contact__value { color: var(--ink); font-weight: 500; font-style: normal; }
.wct-contact__value:hover { color: var(--teal); }

/* Price formatting helper */
.wct-price { font-variant-numeric: tabular-nums; }
.wct-price__original { display: none; }

/* ═════════════════════════════════════════════════════════════════════════════
 *  MOBILE PASS — comprehensive responsive + touch tuning
 * ═════════════════════════════════════════════════════════════════════════════ */

/* iOS safe areas */
@supports (padding: env(safe-area-inset-bottom)) {
	.wct-header { padding-top: max(14px, env(safe-area-inset-top)); }
	.wct-sticky-book { padding-bottom: max(14px, env(safe-area-inset-bottom)); }
	.wct-mobile-menu { padding-bottom: max(48px, env(safe-area-inset-bottom)); }
}

/* Tap highlight + touch action niceties */
* { -webkit-tap-highlight-color: rgba(26, 140, 140, 0.12); }
a, button, .wct-filter, .wct-switch__toggle, .wct-scroll-dot { touch-action: manipulation; }

/* Form inputs — no zoom on focus iOS (font-size >= 16px) */
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="search"], input[type="number"], select, textarea {
	font-size: 16px;
}

/* ─── Header on mobile ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
	.wct-header__inner { gap: 12px; }
	.wct-header__brand { gap: 8px; }
	.wct-wordmark__name { font-size: 16px; }
	.wct-wordmark__label { font-size: 8px; letter-spacing: 0.28em; }
	.wct-utility { display: inline-flex; gap: 8px; margin-left: auto; margin-right: 12px; }
	.wct-utility .wct-switch:not(:last-child) { display: none; } /* hide lang on tight screens, keep currency */
	.wct-switch__toggle { padding: 6px 8px; font-size: 9px; min-height: 44px; min-width: 44px; }
	.wct-header__mobile-toggle { min-height: 44px; min-width: 44px; padding: 12px; }
}
@media (max-width: 480px) {
	.wct-utility { display: none; }
}

/* Mobile menu — full-screen with safe-area */
@media (max-width: 900px) {
	.wct-mobile-menu { padding-top: 32px; }
	.wct-mobile-menu__list a { padding: 18px 0; font-size: clamp(22px, 6vw, 28px); }
	.wct-mobile-menu__cta { margin-top: 32px; }
	.wct-mobile-menu__cta .wct-btn { width: 100%; justify-content: center; }
}

/* ─── Hero on mobile ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.wct-hero { min-height: 90vh; min-height: 90svh; }
	.wct-hero__inner { padding-block: 80px 100px; }
	.wct-hero__title { font-size: clamp(36px, 11vw, 56px); }
	.wct-hero__lede { font-size: 16px; max-width: none; }
	.wct-hero__cta { flex-direction: column; align-items: stretch; }
	.wct-hero__cta .wct-btn { width: 100%; justify-content: center; }
	.wct-hero__indicators { left: var(--gutter); bottom: 80px; }
	.wct-hero__scroll { bottom: 16px; }
}

/* Experience hero */
@media (max-width: 768px) {
	.wct-experience-hero__title { font-size: clamp(32px, 9vw, 48px); }
	.wct-experience-hero__meta { gap: 16px; font-size: 11px; flex-wrap: wrap; }
	.wct-experience-hero__crumb { font-size: 10px; }
}

/* ─── Trust strip on mobile ────────────────────────────────────────────── */
@media (max-width: 600px) {
	.wct-trust { padding: 16px var(--gutter); }
	.wct-trust__inner { grid-template-columns: 1fr 1fr; gap: 14px; }
	.wct-trust__num { font-size: 15px; }
	.wct-trust__label { font-size: 9px; }
	.wct-trust__item:nth-child(odd) { padding-right: 12px; border-right: 1px solid var(--g200); }
	.wct-trust__item:nth-child(5) { grid-column: 1 / -1; border-right: 0; padding-right: 0; }
}

/* ─── Cards on mobile ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
	.wct-dest-card { aspect-ratio: 3 / 4; }
	.wct-dest-card__title { font-size: 22px; }
	.wct-dest-card__tagline { max-height: none; opacity: 1; margin-top: 8px; font-size: 13px; }
	.wct-dest-card__cta { font-size: 10px; }

	.wct-cat { aspect-ratio: 16 / 11; }
	.wct-cat__title { font-size: 26px; }
	.wct-cat__copy { font-size: 13px; }

	.wct-exp-card__title { font-size: 18px; }
	.wct-exp-card__price { padding: 8px 12px; font-size: 14px; }
}

/* ─── Sections — tighten paddings on phones ────────────────────────────── */
@media (max-width: 600px) {
	.wct-section { padding-block: clamp(56px, 14vw, 80px); }
	.wct-section-label { flex-direction: row; gap: 12px; align-items: baseline; }
	.wct-section-label__name { font-size: 10px; }
	h2 { font-size: clamp(28px, 8vw, 36px); }
	.wct-lede { font-size: 15px; }
}

/* ─── Who We Are on mobile ─────────────────────────────────────────────── */
@media (max-width: 768px) {
	.wct-who { padding-block: 80px; }
	.wct-who__title { font-size: clamp(36px, 11vw, 56px); }
	.wct-who__body { font-size: 15px; }
	.wct-who__signals { grid-template-columns: 1fr; gap: 20px; margin-top: 28px; padding-top: 20px; }
	.wct-who__signal-num { font-size: 28px; }
}

/* ─── Experience detail layout on mobile ───────────────────────────────── */
@media (max-width: 900px) {
	.wct-experience-body { grid-template-columns: 1fr; gap: 32px; }
	.wct-experience-aside { position: static; padding: 24px; }
	.wct-itinerary__step { grid-template-columns: 1fr; gap: 4px; padding: 20px 0; }
	.wct-itinerary__num { font-size: 11px; }
	.wct-audience { gap: 16px; }
	.wct-audience__col { padding: 20px 18px; }
	.wct-bring { grid-template-columns: 1fr; }
	.wct-bring > div { padding: 18px; }
	.wct-faq summary { font-size: 16px; }
	.wct-experience-body__includes li { font-size: 14px; gap: 10px; }
}

/* Sticky book bar — better mobile clearance */
@media (max-width: 900px) {
	main { padding-bottom: 80px; }
	.wct-sticky-book__price { font-size: 18px; }
	.wct-sticky-book__duration { font-size: 9px; }
	.wct-sticky-book .wct-btn { padding: 12px 18px; min-height: 44px; }
}

/* ─── Map on mobile ────────────────────────────────────────────────────── */
@media (max-width: 700px) {
	.wct-map__legend { gap: 18px; padding: 12px 18px; font-size: 9px; }
	.wct-map__svg { min-height: 320px; }
}

/* ─── Newsletter on mobile ─────────────────────────────────────────────── */
@media (max-width: 768px) {
	.wct-newsletter__inner { grid-template-columns: 1fr; gap: 28px; }
	.wct-newsletter__title { font-size: clamp(24px, 7vw, 32px); }
	.wct-newsletter__form input[type="email"] { font-size: 16px; padding: 16px; }
}

/* ─── Footer on mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.wct-footer { padding-block: 56px 32px; }
	.wct-footer__inner { grid-template-columns: 1fr; gap: 32px; }
	.wct-footer__cta .wct-btn { width: 100%; justify-content: center; }
	.wct-footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; text-align: left; }
}

/* ─── Switch dropdowns — full-width sheet on mobile ────────────────────── */
@media (max-width: 600px) {
	.wct-switch__menu { right: 0; left: auto; min-width: 160px; }
}

/* ─── Buttons — bigger touch targets on touch devices ──────────────────── */
@media (pointer: coarse) {
	.wct-btn { min-height: 48px; padding: 14px 24px; }
	.wct-btn--sm { min-height: 40px; padding: 10px 16px; }
	.wct-btn--lg { min-height: 52px; padding: 18px 28px; }
	.wct-filter { min-height: 40px; padding: 10px 18px; }
	.wct-faq summary { min-height: 44px; padding-block: 8px; }
	.wct-card, .wct-exp-card, .wct-dest-card, .wct-cat { cursor: pointer; }

	/* Disable custom cursor on touch */
	.wct-cursor { display: none !important; }
}

/* ─── Photo strip — 4 cells on mobile vs 7 ─────────────────────────────── */
@media (max-width: 600px) {
	.wct-photo-strip { grid-template-columns: repeat(2, 1fr); }
	.wct-photo-strip__cell:nth-child(n+3) { display: none; }
}

/* ─── Disable hover transforms on touch (prevents sticky-hover) ────────── */
@media (hover: none) {
	.wct-card:hover, .wct-exp-card:hover, .wct-dest-card:hover,
	.wct-cat:hover, .wct-mosaic__cell:hover, .wct-photo-strip__cell:hover {
		transform: none;
	}
}

/* Print — clean readable */
@media print {
	.wct-header, .wct-footer, .wct-newsletter, .wct-sticky-book, .wct-marquee,
	.wct-photo-strip, .wct-scroll-dots, .wct-page-transition, .wct-cursor { display: none !important; }
	.wct-hero, .wct-experience-hero { min-height: auto; color: #000; }
	.wct-hero__bg, .wct-experience-hero__bg, .wct-cta-block__bg { display: none; }
	body { color: #000; background: #fff; }
}

/* ═════════════════════════════════════════════════════════════════════════════
 *  REVIEW SUBMISSION FORM
 * ═════════════════════════════════════════════════════════════════════════════ */
.wct-review-form {
	display: grid; gap: 16px;
}
.wct-review-form__row {
	display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 640px) { .wct-review-form__row { grid-template-columns: 1fr; } }
.wct-review-form label {
	display: flex; flex-direction: column; gap: 6px;
	font-family: var(--font-mono); font-size: 10px;
	letter-spacing: 0.15em; text-transform: uppercase; color: var(--olive);
}
.wct-review-form input[type="text"],
.wct-review-form select,
.wct-review-form textarea {
	padding: 14px 16px;
	font-family: var(--font-sans); font-size: 15px;
	border: 1px solid var(--g200); background: var(--white); color: var(--ink);
	letter-spacing: normal; text-transform: none;
}
.wct-review-form input:focus,
.wct-review-form select:focus,
.wct-review-form textarea:focus { outline: none; border-color: var(--teal); }
.wct-review-form__rating select { font-size: 18px; }
.wct-review-form__note {
	font-family: var(--font-mono); font-size: 10px;
	letter-spacing: 0.15em; text-transform: uppercase; color: var(--olive); margin: 0;
}
.wct-review-form button { justify-self: start; }
@media (max-width: 640px) { .wct-review-form button { width: 100%; justify-self: stretch; } }

/* ─── Legacy class aliases (kept so older templates still render) ──────────── */
.wct-cards { display: grid; gap: 24px; margin-top: 48px; }
.wct-cards--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .wct-cards--3 { grid-template-columns: 1fr; } }
.wct-card { background: var(--white); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.wct-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.wct-card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--g100); position: relative; }
.wct-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.wct-card:hover .wct-card__media img { transform: scale(1.05); }
.wct-card__body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.wct-card__eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); }
.wct-card__title { font-size: 20px; font-weight: 700; color: var(--ink); line-height: 1.2; letter-spacing: -0.015em; }
.wct-card__title a { color: inherit; }
.wct-card__title a:hover { color: var(--teal); }
.wct-card__meta { display: flex; gap: 16px; font-size: 13px; color: var(--olive); font-family: var(--font-mono); margin-top: auto; padding-top: 12px; }
.wct-card__price { color: var(--ink); font-weight: 700; }
.wct-card__cta { margin-top: 8px; }

/* ─── Fallback gradient backgrounds (used when no photo is set) ─────────────── */
.wct-bg-fallback--preveza   { background: linear-gradient(135deg, #1A8C8C, #1B2A4A); }
.wct-bg-fallback--lefkada   { background: linear-gradient(135deg, #14706F, #0F5252); }
.wct-bg-fallback--parga     { background: linear-gradient(135deg, #D4A843, #B08824); }
.wct-bg-fallback--acheron   { background: linear-gradient(135deg, #1B2A4A, #14213D); }
.wct-bg-fallback--tzoumerka { background: linear-gradient(135deg, #6B7280, #1B2A4A); }
.wct-bg-fallback--default   { background: linear-gradient(135deg, #1A8C8C, #1B2A4A); }
