/* ==========================================================================
   Waves Spot Surf Camp
   Palette lifted directly from the badge logo:
     #133458 deep navy · #547792 steel blue · #FFC570 sun · #E78B48 sunset
   ========================================================================== */

:root {
	/* Brand */
	--navy: #133458;
	--navy-deep: #0b2038;
	--navy-soft: #1d4570;
	--steel: #547792;
	--steel-light: #7f9db6;
	--steel-pale: #d7e3ec;
	--sun: #ffc570;
	--sun-soft: #ffdda6;
	--orange: #e78b48;
	--orange-deep: #d0752f;

	/* Neutrals */
	--sand: #fbf6ee;
	--sand-deep: #f3ebdd;
	--cream: #fffdf9;
	--white: #ffffff;
	--ink: #133458;
	--ink-soft: #476b8b;
	--ink-faint: #8aa4ba;
	--line: #e6ebf0;
	--line-warm: #e9dfcf;

	/* Type */
	--font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
	--font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

	/* Scale */
	--step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
	--step-0: clamp(1rem, 0.96rem + 0.2vw, 1.11rem);
	--step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
	--step-2: clamp(1.45rem, 1.3rem + 0.75vw, 1.95rem);
	--step-3: clamp(1.8rem, 1.5rem + 1.5vw, 2.7rem);
	--step-4: clamp(2.2rem, 1.7rem + 2.5vw, 3.8rem);
	--step-5: clamp(2.7rem, 1.8rem + 4.4vw, 5.6rem);

	/* Space */
	--gutter: clamp(1.15rem, 4vw, 2.5rem);
	--section-y: clamp(4rem, 9vw, 7.5rem);
	--wrap: 1240px;
	--wrap-narrow: 760px;

	/* Form */
	--radius-sm: 10px;
	--radius: 18px;
	--radius-lg: 28px;
	--radius-pill: 999px;

	--shadow-sm: 0 2px 8px rgba(19, 52, 88, 0.05), 0 1px 2px rgba(19, 52, 88, 0.04);
	--shadow: 0 12px 32px -12px rgba(19, 52, 88, 0.16), 0 3px 10px -4px rgba(19, 52, 88, 0.08);
	--shadow-lg: 0 32px 64px -24px rgba(19, 52, 88, 0.3), 0 8px 20px -10px rgba(19, 52, 88, 0.12);

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--header-h: 76px;
}

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

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: var(--step-0);
	line-height: 1.65;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

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

/* Components below set display on these elements, so [hidden] needs to win. */
[hidden] { display: none !important; }

h1, h2, h3, h4, h5 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin: 0 0 0.5em;
	color: var(--navy);
	text-wrap: balance;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a {
	color: var(--steel);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color 0.2s var(--ease);
}

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

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

blockquote {
	margin: 2rem 0;
	padding: 0 0 0 1.5rem;
	border-left: 3px solid var(--sun);
	font-family: var(--font-display);
	font-size: var(--step-1);
	line-height: 1.4;
	color: var(--navy);
}

hr {
	border: 0;
	border-top: 1px solid var(--line);
	margin: 3rem 0;
}

code, pre {
	font-family: ui-monospace, "SF Mono", Menlo, monospace;
	font-size: 0.9em;
}

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

:focus-visible {
	outline: 3px solid var(--orange);
	outline-offset: 3px;
	border-radius: 4px;
}

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

.wsc-skip {
	position: absolute;
	top: -100px;
	left: 12px;
	z-index: 999;
	background: var(--navy);
	color: var(--white);
	padding: 12px 20px;
	border-radius: var(--radius-sm);
	text-decoration: none;
	font-weight: 600;
}

.wsc-skip:focus { top: 12px; color: var(--white); }

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

.wsc-wrap {
	width: min(100% - (var(--gutter) * 2), var(--wrap));
	margin-inline: auto;
}

.wsc-wrap--narrow { max-width: var(--wrap-narrow); }

.wsc-section {
	padding-block: var(--section-y);
	position: relative;
}

.wsc-section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.wsc-section--sand { background: var(--sand); }
.wsc-section--navy { background: var(--navy); color: var(--steel-pale); }
.wsc-section--navy h2,
.wsc-section--navy h3 { color: var(--white); }

.wsc-grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.wsc-grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.wsc-grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.wsc-grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

/* --------------------------------------------------------------------------
   Section headings
   -------------------------------------------------------------------------- */

.wsc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55em;
	font-family: var(--font-body);
	font-size: var(--step--1);
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--orange);
	margin: 0 0 1rem;
}

.wsc-eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--sun);
	border-radius: 2px;
}

.wsc-section--navy .wsc-eyebrow { color: var(--sun); }

.wsc-head {
	max-width: 62ch;
	margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.wsc-head--center {
	margin-inline: auto;
	text-align: center;
}

.wsc-head--center .wsc-eyebrow::before { display: none; }

.wsc-head p {
	font-size: var(--step-1);
	color: var(--ink-soft);
	line-height: 1.55;
	margin-top: 0.35em;
}

.wsc-section--navy .wsc-head p { color: var(--steel-light); }

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

.wsc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6em;
	padding: 1rem 1.85rem;
	border: 0;
	border-radius: var(--radius-pill);
	background: var(--orange);
	color: var(--white);
	font-family: var(--font-body);
	font-size: var(--step-0);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.01em;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
	box-shadow: 0 8px 20px -8px rgba(231, 139, 72, 0.7);
	white-space: nowrap;
}

.wsc-btn:hover:not(:disabled) {
	background: var(--orange-deep);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 14px 28px -10px rgba(231, 139, 72, 0.8);
}

.wsc-btn:active:not(:disabled) { transform: translateY(0); }

.wsc-btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	box-shadow: none;
}

.wsc-btn .wsc-icon { transition: transform 0.25s var(--ease); }
.wsc-btn:hover .wsc-icon--arrow { transform: translateX(3px); }

.wsc-btn--ghost {
	background: transparent;
	color: var(--white);
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.45);
}

.wsc-btn--ghost:hover:not(:disabled) {
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.8);
}

.wsc-btn--navy {
	background: var(--navy);
	box-shadow: 0 8px 20px -8px rgba(19, 52, 88, 0.6);
}

.wsc-btn--navy:hover:not(:disabled) { background: var(--navy-deep); }

.wsc-btn--outline {
	background: transparent;
	color: var(--navy);
	box-shadow: inset 0 0 0 1.5px var(--steel-pale);
}

.wsc-btn--outline:hover:not(:disabled) {
	background: var(--navy);
	color: var(--white);
	box-shadow: inset 0 0 0 1.5px var(--navy);
}

.wsc-btn--sun {
	background: var(--sun);
	color: var(--navy);
	box-shadow: 0 8px 20px -8px rgba(255, 197, 112, 0.9);
}

.wsc-btn--sun:hover:not(:disabled) {
	background: var(--sun-soft);
	color: var(--navy);
}

.wsc-btn--sm { padding: 0.7rem 1.25rem; font-size: var(--step--1); }
.wsc-btn--lg { padding: 1.15rem 2.3rem; font-size: var(--step-1); }
.wsc-btn--block { width: 100%; }

.wsc-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
}

.wsc-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	font-weight: 700;
	color: var(--navy);
	text-decoration: none;
	border-bottom: 2px solid var(--sun);
	padding-bottom: 2px;
	transition: gap 0.25s var(--ease), color 0.2s var(--ease);
}

.wsc-link:hover { color: var(--orange); gap: 0.8em; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.wsc-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	height: var(--header-h);
	display: flex;
	align-items: center;
	transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), height 0.35s var(--ease);
}

.wsc-header__inner {
	width: min(100% - (var(--gutter) * 2), var(--wrap));
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.wsc-header.is-stuck {
	background: rgba(255, 253, 249, 0.92);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	box-shadow: 0 1px 0 var(--line), 0 8px 24px -16px rgba(19, 52, 88, 0.35);
	--header-h: 66px;
}

/* Pages without a dark hero start in the solid state. */
body:not(.wsc-has-hero) .wsc-header {
	background: rgba(255, 253, 249, 0.92);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	box-shadow: 0 1px 0 var(--line);
}

.wsc-brand {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	text-decoration: none;
	flex-shrink: 0;
}

.wsc-brand img {
	width: auto;
	height: 46px;
	transition: height 0.35s var(--ease);
}

.is-stuck .wsc-brand img { height: 40px; }

/* The badge has two colourways; show whichever suits the header background. */
.wsc-brand__logo { grid-area: 1 / 1; transition: opacity 0.35s var(--ease), height 0.35s var(--ease); }
.wsc-brand:has(.wsc-brand__logo) { display: grid; grid-template-columns: auto auto; align-items: center; }
.wsc-brand:has(.wsc-brand__logo) .wsc-brand__text { grid-area: 1 / 2; margin-left: 0.7rem; }

.wsc-brand__logo--dark { opacity: 0; }

.is-stuck .wsc-brand__logo--light,
body:not(.wsc-has-hero) .wsc-brand__logo--light { opacity: 0; }

.is-stuck .wsc-brand__logo--dark,
body:not(.wsc-has-hero) .wsc-brand__logo--dark { opacity: 1; }

.wsc-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.wsc-brand__name {
	font-family: var(--font-display);
	font-size: 1.02rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--white);
	transition: color 0.35s var(--ease);
}

.wsc-brand__sub {
	font-size: 0.6rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--sun);
	margin-top: 4px;
	font-weight: 600;
}

.is-stuck .wsc-brand__name,
body:not(.wsc-has-hero) .wsc-brand__name { color: var(--navy); }

.is-stuck .wsc-brand__sub,
body:not(.wsc-has-hero) .wsc-brand__sub { color: var(--orange); }

/* Nav */
.wsc-nav { margin-left: auto; }

.wsc-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(0.5rem, 1.6vw, 1.6rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.wsc-nav__list a {
	display: block;
	padding: 0.4rem 0;
	font-size: 0.95rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	position: relative;
	white-space: nowrap;
	transition: color 0.2s var(--ease);
}

.wsc-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 0;
	height: 2px;
	background: var(--sun);
	border-radius: 2px;
	transition: right 0.3s var(--ease);
}

.wsc-nav__list a:hover::after,
.wsc-nav__list .current-menu-item > a::after { right: 0; }

.wsc-nav__list a:hover { color: var(--white); }

.is-stuck .wsc-nav__list a,
body:not(.wsc-has-hero) .wsc-nav__list a { color: var(--ink-soft); }

.is-stuck .wsc-nav__list a:hover,
.is-stuck .wsc-nav__list .current-menu-item > a,
body:not(.wsc-has-hero) .wsc-nav__list a:hover,
body:not(.wsc-has-hero) .wsc-nav__list .current-menu-item > a { color: var(--navy); }

.wsc-header__cta { flex-shrink: 0; }

.wsc-burger {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border: 0;
	background: rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	color: var(--white);
	cursor: pointer;
	transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.is-stuck .wsc-burger,
body:not(.wsc-has-hero) .wsc-burger {
	background: var(--sand-deep);
	color: var(--navy);
}

/* Mobile drawer */
.wsc-drawer {
	position: fixed;
	inset: 0;
	z-index: 110;
	background: var(--navy);
	padding: 1.15rem var(--gutter) 2.5rem;
	display: flex;
	flex-direction: column;
	transform: translateY(-100%);
	visibility: hidden;
	transition: transform 0.45s var(--ease), visibility 0.45s;
	overflow-y: auto;
}

.wsc-drawer.is-open { transform: translateY(0); visibility: visible; }

.wsc-drawer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-h);
	margin-bottom: 1.5rem;
}

.wsc-drawer__close {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	color: var(--white);
	cursor: pointer;
}

.wsc-drawer ul {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.wsc-drawer li { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.wsc-drawer a {
	display: block;
	padding: 1.05rem 0;
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--white);
	text-decoration: none;
}

.wsc-drawer a:hover { color: var(--sun); }

.wsc-drawer__foot {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.wsc-drawer__contact {
	color: var(--steel-light);
	font-size: 0.9rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.wsc-drawer__contact a { font-size: 0.9rem; padding: 0; color: var(--steel-pale); font-family: var(--font-body); font-weight: 400; }

@media (max-width: 980px) {
	.wsc-nav { display: none; }
	.wsc-burger { display: flex; }
	.wsc-header__cta { display: none; }
}

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

.wsc-hero {
	position: relative;
	min-height: min(92vh, 860px);
	display: flex;
	align-items: flex-end;
	padding-top: calc(var(--header-h) + 3rem);
	padding-bottom: clamp(3rem, 7vw, 6rem);
	overflow: hidden;
	isolation: isolate;
	background: var(--navy);
}

.wsc-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	background-size: cover;
	background-position: center 60%;
	transform: scale(1.06);
	animation: wsc-drift 24s ease-in-out infinite alternate;
}

@keyframes wsc-drift {
	from { transform: scale(1.06) translate3d(0, 0, 0); }
	to { transform: scale(1.12) translate3d(-1.5%, -1.5%, 0); }
}

.wsc-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(to top, rgba(11, 32, 56, 0.94) 0%, rgba(11, 32, 56, 0.55) 42%, rgba(11, 32, 56, 0.3) 70%, rgba(11, 32, 56, 0.55) 100%);
}

.wsc-hero__inner {
	width: min(100% - (var(--gutter) * 2), var(--wrap));
	margin-inline: auto;
	position: relative;
	z-index: 1;
}

.wsc-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	padding: 0.5rem 1.1rem 0.5rem 0.6rem;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: var(--white);
	font-size: var(--step--1);
	font-weight: 600;
	letter-spacing: 0.05em;
	margin-bottom: 1.5rem;
}

.wsc-hero__eyebrow .wsc-icon { color: var(--sun); }

.wsc-hero h1 {
	font-size: var(--step-5);
	font-weight: 800;
	color: var(--white);
	letter-spacing: -0.035em;
	line-height: 0.94;
	max-width: 14ch;
	margin-bottom: 0.4em;
	text-shadow: 0 2px 40px rgba(11, 32, 56, 0.5);
}

/* "Surf. Stay. Explore Morocco." stacks one clause per line. */
.wsc-hero h1 span { display: block; }
.wsc-hero h1 .wsc-hero__accent { color: var(--sun); }

.wsc-hero__sub {
	font-size: var(--step-1);
	color: rgba(255, 255, 255, 0.88);
	max-width: 46ch;
	line-height: 1.5;
	margin-bottom: 2rem;
	text-shadow: 0 1px 20px rgba(11, 32, 56, 0.5);
}

.wsc-hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(1.25rem, 3.5vw, 3rem);
	margin-top: clamp(2.5rem, 5vw, 4rem);
	padding-top: clamp(1.5rem, 3vw, 2.25rem);
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.wsc-fact {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: var(--step--1);
	font-weight: 600;
}

.wsc-fact .wsc-icon {
	color: var(--sun);
	flex-shrink: 0;
}

.wsc-fact strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: var(--white);
	line-height: 1.1;
	font-weight: 700;
}

.wsc-fact span { color: rgba(255, 255, 255, 0.65); font-weight: 500; }

/* Page hero (interior pages) */
.wsc-phero {
	position: relative;
	padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem));
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
	background: var(--navy);
	overflow: hidden;
	isolation: isolate;
}

.wsc-phero__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	background-size: cover;
	background-position: center;
	opacity: 0.55;
}

.wsc-phero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to top, rgba(11, 32, 56, 0.95), rgba(11, 32, 56, 0.62));
}

.wsc-phero h1 {
	color: var(--white);
	max-width: 18ch;
	margin-bottom: 0.35em;
}

.wsc-phero p {
	color: rgba(255, 255, 255, 0.82);
	font-size: var(--step-1);
	max-width: 52ch;
	line-height: 1.5;
}

.wsc-phero .wsc-eyebrow { color: var(--sun); }

.wsc-crumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
	font-size: var(--step--1);
	color: rgba(255, 255, 255, 0.6);
}

.wsc-crumbs a { color: rgba(255, 255, 255, 0.82); text-decoration: none; }
.wsc-crumbs a:hover { color: var(--sun); }
.wsc-crumbs li + li::before { content: "/"; margin-right: 0.5rem; opacity: 0.5; }

/* Wave divider — overlaps the foot of the dark section it sits inside, so the
   filled path reads as the next section's colour washing up over it. */
.wsc-wave {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: 3;
	display: block;
	width: 100%;
	height: clamp(40px, 5vw, 72px);
	fill: var(--cream);
	pointer-events: none;
}

.wsc-wave--sand { fill: var(--sand); }
.wsc-wave--navy { fill: var(--navy); }
.wsc-wave--flip { transform: scaleY(-1); }

/* --------------------------------------------------------------------------
   Offer cards (Surf / Stay / Explore)
   -------------------------------------------------------------------------- */

.wsc-offers { display: grid; gap: clamp(1rem, 2vw, 1.5rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }

.wsc-offer {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: clamp(360px, 44vw, 480px);
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border-radius: var(--radius-lg);
	overflow: hidden;
	isolation: isolate;
	color: var(--white);
	text-decoration: none;
	background: var(--navy);
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.wsc-offer:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: var(--white); }

.wsc-offer__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	background-size: cover;
	background-position: center;
	transition: transform 0.7s var(--ease);
}

.wsc-offer:hover .wsc-offer__bg { transform: scale(1.07); }

.wsc-offer::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	/* Weighted to the foot of the card so the copy always clears its background. */
	background: linear-gradient(to top, rgba(11, 32, 56, 0.96) 0%, rgba(11, 32, 56, 0.88) 26%, rgba(11, 32, 56, 0.5) 58%, rgba(11, 32, 56, 0.34) 100%);
}

.wsc-offer__icon {
	position: absolute;
	top: clamp(1.25rem, 3vw, 2rem);
	left: clamp(1.5rem, 3vw, 2.25rem);
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: var(--sun);
}

.wsc-offer h3 {
	color: var(--white);
	font-size: var(--step-2);
	letter-spacing: 0.01em;
	margin-bottom: 0.35em;
	text-transform: uppercase;
	font-weight: 800;
}

.wsc-offer p {
	color: rgba(255, 255, 255, 0.82);
	font-size: var(--step-0);
	line-height: 1.5;
	margin-bottom: 1rem;
}

.wsc-offer__more {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	font-weight: 700;
	font-size: var(--step--1);
	color: var(--sun);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.wsc-offer:hover .wsc-offer__more .wsc-icon { transform: translateX(4px); }
.wsc-offer__more .wsc-icon { transition: transform 0.3s var(--ease); }

/* --------------------------------------------------------------------------
   Package cards
   -------------------------------------------------------------------------- */

.wsc-packages {
	display: grid;
	gap: clamp(1.25rem, 2.5vw, 2rem);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
	align-items: start;
}

.wsc-pkg {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
	height: 100%;
}

.wsc-pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.wsc-pkg--featured {
	box-shadow: 0 0 0 2.5px var(--orange), var(--shadow-lg);
}

.wsc-pkg__badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	padding: 0.45rem 0.9rem;
	border-radius: var(--radius-pill);
	background: var(--orange);
	color: var(--white);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	box-shadow: 0 4px 12px -4px rgba(231, 139, 72, 0.8);
}

.wsc-pkg__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--steel-pale);
}

.wsc-pkg__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}

.wsc-pkg:hover .wsc-pkg__media img { transform: scale(1.06); }

.wsc-pkg__duration {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	padding: 0.45rem 0.95rem;
	border-radius: var(--radius-pill);
	background: rgba(11, 32, 56, 0.75);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--white);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.wsc-pkg__body {
	padding: clamp(1.4rem, 2.5vw, 1.9rem);
	display: flex;
	flex-direction: column;
	flex: 1;
}

.wsc-pkg__title {
	font-size: var(--step-2);
	margin-bottom: 0.3em;
	line-height: 1.1;
}

.wsc-pkg__title a { color: inherit; text-decoration: none; }
.wsc-pkg__title a:hover { color: var(--orange); }

.wsc-pkg__tagline {
	color: var(--ink-soft);
	font-size: var(--step--1);
	line-height: 1.5;
	margin-bottom: 1.15rem;
}

.wsc-pkg__price {
	display: flex;
	align-items: baseline;
	gap: 0.45rem;
	margin-bottom: 1.15rem;
	padding-bottom: 1.15rem;
	border-bottom: 1px solid var(--line);
}

.wsc-pkg__price strong {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 2.6rem);
	font-weight: 800;
	color: var(--navy);
	letter-spacing: -0.03em;
	line-height: 1;
}

.wsc-pkg__price span {
	font-size: var(--step--1);
	color: var(--ink-faint);
	font-weight: 500;
}

.wsc-pkg__list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	flex: 1;
}

.wsc-pkg__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: var(--step--1);
	color: var(--ink-soft);
	line-height: 1.45;
}

.wsc-pkg__list .wsc-icon {
	flex-shrink: 0;
	color: var(--orange);
	margin-top: 2px;
	width: 16px;
	height: 16px;
}

.wsc-pkg__more {
	font-size: var(--step--1);
	color: var(--ink-faint);
	font-style: italic;
}

.wsc-pkg__actions {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-top: auto;
}

/* --------------------------------------------------------------------------
   Activity cards
   -------------------------------------------------------------------------- */

.wsc-acts {
	display: grid;
	gap: clamp(1rem, 2vw, 1.5rem);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.wsc-act {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--line);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.wsc-act:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: transparent;
}

.wsc-act.is-added {
	border-color: var(--orange);
	box-shadow: 0 0 0 1.5px var(--orange), var(--shadow);
}

.wsc-act__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--steel-pale);
}

.wsc-act__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.wsc-act:hover .wsc-act__media img { transform: scale(1.06); }

.wsc-act__emoji {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	font-size: 1.35rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	box-shadow: var(--shadow-sm);
}

.wsc-act__price {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	padding: 0.4rem 0.85rem;
	border-radius: var(--radius-pill);
	background: var(--sun);
	color: var(--navy);
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	box-shadow: var(--shadow-sm);
}

.wsc-act__body {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 0.5rem;
}

.wsc-act__body h3 { font-size: var(--step-1); margin: 0; }

.wsc-act__body p {
	font-size: var(--step--1);
	color: var(--ink-soft);
	line-height: 1.5;
	margin: 0;
	flex: 1;
}

.wsc-act__meta {
	display: flex;
	align-items: center;
	gap: 0.4em;
	font-size: 0.78rem;
	color: var(--ink-faint);
	font-weight: 600;
}

.wsc-act__add { margin-top: 0.5rem; }

.wsc-act__add.is-added {
	background: var(--navy);
	box-shadow: none;
}

/* --------------------------------------------------------------------------
   Accommodation
   -------------------------------------------------------------------------- */

.wsc-stay {
	display: grid;
	gap: 0;
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.wsc-stay + .wsc-stay { margin-top: clamp(1.5rem, 3vw, 2.5rem); }

.wsc-stay:nth-child(even) .wsc-stay__media { order: 2; }

.wsc-stay__media {
	position: relative;
	min-height: 300px;
	background: var(--steel-pale);
}

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

.wsc-stay__body { padding: clamp(1.75rem, 3.5vw, 3rem); }

.wsc-stay__loc {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	font-size: var(--step--1);
	font-weight: 700;
	color: var(--orange);
	margin-bottom: 0.75rem;
}

.wsc-stay__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin: 1.25rem 0;
	padding: 1.15rem 0;
	border-block: 1px solid var(--line);
}

.wsc-stay__fact { font-size: var(--step--1); }
.wsc-stay__fact strong { display: block; color: var(--ink-faint); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }

.wsc-facilities {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
	gap: 0.5rem 1.25rem;
}

.wsc-facilities li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: var(--step--1);
	color: var(--ink-soft);
}

.wsc-facilities .wsc-icon { color: var(--steel); width: 15px; height: 15px; flex-shrink: 0; }

.wsc-partner-note {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
	padding: 1.25rem 1.5rem;
	background: var(--sand);
	border-radius: var(--radius);
	border-left: 3px solid var(--sun);
	font-size: var(--step--1);
	color: var(--ink-soft);
	line-height: 1.55;
	margin-top: 2rem;
}

.wsc-partner-note .wsc-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* --------------------------------------------------------------------------
   Package detail page
   -------------------------------------------------------------------------- */

.wsc-pkg-layout {
	display: grid;
	gap: clamp(2rem, 4vw, 3.5rem);
	grid-template-columns: minmax(0, 1fr);
	align-items: start;
}

@media (min-width: 1000px) {
	.wsc-pkg-layout { grid-template-columns: minmax(0, 1fr) 380px; }
}

.wsc-gallery-grid {
	display: grid;
	gap: 0.6rem;
	grid-template-columns: repeat(4, 1fr);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.wsc-gallery-grid img { width: 100%; height: 100%; object-fit: cover; }

.wsc-gallery-grid > * { position: relative; aspect-ratio: 1; background: var(--steel-pale); overflow: hidden; }
.wsc-gallery-grid > *:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.wsc-gallery-grid > *:only-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }

@media (max-width: 640px) {
	.wsc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.wsc-gallery-grid > *:first-child { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16 / 10; }
}

.wsc-prose { font-size: var(--step-0); line-height: 1.75; color: var(--ink-soft); }
.wsc-prose h2 { font-size: var(--step-2); margin-top: 2.25em; color: var(--navy); }
.wsc-prose h3 { font-size: var(--step-1); margin-top: 1.75em; color: var(--navy); }
.wsc-prose > :first-child { margin-top: 0; }
.wsc-prose strong { color: var(--navy); font-weight: 600; }
.wsc-prose img { border-radius: var(--radius); margin: 2rem 0; }
.wsc-prose ul, .wsc-prose ol { padding-left: 1.35em; }
.wsc-prose li { margin-bottom: 0.5em; }
.wsc-prose li::marker { color: var(--orange); }
.wsc-prose a { color: var(--steel); font-weight: 500; }

.wsc-lead {
	font-size: var(--step-1);
	line-height: 1.55;
	color: var(--navy);
	font-weight: 400;
}

/* Included / excluded */
.wsc-inclist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	gap: 0.7rem 1.5rem;
}

.wsc-inclist li {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: var(--step-0);
	color: var(--ink-soft);
	line-height: 1.45;
}

.wsc-inclist .wsc-icon { flex-shrink: 0; margin-top: 3px; width: 18px; height: 18px; }
.wsc-inclist--yes .wsc-icon { color: #3d9970; }
.wsc-inclist--no .wsc-icon { color: var(--ink-faint); }
.wsc-inclist--no li { color: var(--ink-faint); }

.wsc-incbox {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(1.5rem, 3vw, 2.25rem);
}

.wsc-incbox h3 {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: var(--step-1);
	margin-bottom: 1.25rem;
}

/* Itinerary */
.wsc-itin { list-style: none; margin: 0; padding: 0; position: relative; }

.wsc-itin::before {
	content: "";
	position: absolute;
	left: 21px;
	top: 12px;
	bottom: 24px;
	width: 2px;
	background: linear-gradient(to bottom, var(--sun), var(--steel-pale));
	border-radius: 2px;
}

.wsc-itin li {
	position: relative;
	padding-left: 62px;
	padding-bottom: 1.75rem;
}

.wsc-itin li:last-child { padding-bottom: 0; }

.wsc-itin__dot {
	position: absolute;
	left: 0;
	top: 0;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--white);
	border: 2px solid var(--sun);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1rem;
	color: var(--navy);
	z-index: 1;
}

.wsc-itin li:first-child .wsc-itin__dot { background: var(--sun); }

.wsc-itin h4 {
	font-size: var(--step-0);
	margin: 0 0 0.25rem;
	padding-top: 0.55rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.85rem;
	color: var(--orange);
	font-weight: 800;
}

.wsc-itin p { margin: 0; color: var(--ink-soft); font-size: var(--step-0); line-height: 1.55; }

/* Booking sidebar card */
.wsc-buybox {
	position: sticky;
	top: calc(var(--header-h) + 20px);
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

.wsc-buybox__head {
	background: var(--navy);
	color: var(--white);
	padding: 1.5rem;
}

.wsc-buybox__head .wsc-pkg__duration { position: static; margin-bottom: 0.85rem; background: rgba(255, 255, 255, 0.14); }

.wsc-buybox__price {
	display: flex;
	align-items: baseline;
	gap: 0.4rem;
}

.wsc-buybox__price strong {
	font-family: var(--font-display);
	font-size: 2.8rem;
	font-weight: 800;
	color: var(--sun);
	letter-spacing: -0.03em;
	line-height: 1;
}

.wsc-buybox__price span { color: rgba(255, 255, 255, 0.65); font-size: var(--step--1); }

.wsc-buybox__body { padding: 1.5rem; }

.wsc-buybox__row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.6rem 0;
	font-size: var(--step--1);
	color: var(--ink-soft);
	border-bottom: 1px dashed var(--line);
}

.wsc-buybox__row:last-of-type { border-bottom: 0; }
.wsc-buybox__row strong { color: var(--navy); text-align: right; }

.wsc-buybox__trust {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--line);
}

.wsc-buybox__trust div {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.82rem;
	color: var(--ink-soft);
}

.wsc-buybox__trust .wsc-icon { color: #3d9970; width: 16px; height: 16px; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Booking form
   -------------------------------------------------------------------------- */

.wsc-booking { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); grid-template-columns: minmax(0, 1fr); align-items: start; }

@media (min-width: 1040px) {
	.wsc-booking { grid-template-columns: minmax(0, 1fr) 360px; }
}

.wsc-steps {
	display: flex;
	gap: 0.35rem;
	margin-bottom: 2rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	scrollbar-width: none;
}

.wsc-steps::-webkit-scrollbar { display: none; }

.wsc-steps__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.55rem 1rem;
	border-radius: var(--radius-pill);
	background: var(--sand);
	color: var(--ink-faint);
	font-size: 0.8rem;
	font-weight: 700;
	white-space: nowrap;
	transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.wsc-steps__item b {
	width: 20px;
	height: 20px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--steel-pale);
	color: var(--ink-soft);
	font-size: 0.7rem;
	transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.wsc-steps__item.is-active { background: var(--navy); color: var(--white); }
.wsc-steps__item.is-active b { background: var(--sun); color: var(--navy); }
.wsc-steps__item.is-done { background: var(--sand-deep); color: var(--navy); }
.wsc-steps__item.is-done b { background: #3d9970; color: var(--white); }

.wsc-step { display: none; }
.wsc-step.is-active { display: block; animation: wsc-fade 0.45s var(--ease); }

@keyframes wsc-fade {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: none; }
}

.wsc-step > h2 {
	font-size: var(--step-2);
	margin-bottom: 0.35em;
}

.wsc-step__hint {
	color: var(--ink-soft);
	margin-bottom: 1.75rem;
	font-size: var(--step-0);
}

.wsc-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	padding: clamp(1.5rem, 3.5vw, 2.5rem);
}

/* Package picker */
.wsc-picks { display: grid; gap: 0.85rem; }

.wsc-pick {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1.15rem;
	padding: 1.15rem 1.35rem;
	border-radius: var(--radius);
	border: 1.5px solid var(--line);
	background: var(--white);
	cursor: pointer;
	transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.wsc-pick:hover { border-color: var(--steel-light); transform: translateX(3px); }

.wsc-pick input { position: absolute; opacity: 0; pointer-events: none; }

.wsc-pick__radio {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid var(--steel-pale);
	flex-shrink: 0;
	display: grid;
	place-items: center;
	transition: border-color 0.25s var(--ease);
}

.wsc-pick__radio::after {
	content: "";
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--orange);
	transform: scale(0);
	transition: transform 0.25s var(--ease);
}

.wsc-pick input:checked ~ .wsc-pick__radio { border-color: var(--orange); }
.wsc-pick input:checked ~ .wsc-pick__radio::after { transform: scale(1); }

.wsc-pick:has(input:checked) {
	border-color: var(--orange);
	background: #fffaf4;
}

.wsc-pick__main { flex: 1; min-width: 0; }
.wsc-pick__main strong { display: block; font-family: var(--font-display); font-size: var(--step-1); color: var(--navy); line-height: 1.2; }
.wsc-pick__main span { font-size: var(--step--1); color: var(--ink-soft); }

.wsc-pick__price {
	font-family: var(--font-display);
	font-size: var(--step-2);
	font-weight: 800;
	color: var(--navy);
	letter-spacing: -0.02em;
	flex-shrink: 0;
}

.wsc-pick__tag {
	position: absolute;
	top: -9px;
	right: 14px;
	padding: 0.2rem 0.7rem;
	border-radius: var(--radius-pill);
	background: var(--orange);
	color: var(--white);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Extras picker */
.wsc-extras { display: grid; gap: 0.75rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }

.wsc-extra {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 1rem 1.15rem;
	border-radius: var(--radius);
	border: 1.5px solid var(--line);
	cursor: pointer;
	transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.wsc-extra:hover { border-color: var(--steel-light); }
.wsc-extra input { position: absolute; opacity: 0; pointer-events: none; }

.wsc-extra__box {
	width: 22px;
	height: 22px;
	border-radius: 7px;
	border: 2px solid var(--steel-pale);
	flex-shrink: 0;
	display: grid;
	place-items: center;
	color: var(--white);
	transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.wsc-extra__box .wsc-icon { width: 13px; height: 13px; opacity: 0; transform: scale(0.5); transition: all 0.25s var(--ease); stroke-width: 3; }

.wsc-extra input:checked ~ .wsc-extra__box { background: var(--orange); border-color: var(--orange); }
.wsc-extra input:checked ~ .wsc-extra__box .wsc-icon { opacity: 1; transform: scale(1); }
.wsc-extra:has(input:checked) { border-color: var(--orange); background: #fffaf4; }

.wsc-extra__main { flex: 1; min-width: 0; }
.wsc-extra__main strong { display: block; font-size: var(--step-0); color: var(--navy); font-weight: 700; }
.wsc-extra__main span { font-size: 0.8rem; color: var(--ink-soft); }
.wsc-extra__price { font-family: var(--font-display); font-weight: 800; color: var(--orange); font-size: var(--step-1); flex-shrink: 0; }

/* Fields */
.wsc-fields { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.wsc-field--full { grid-column: 1 / -1; }

.wsc-field label {
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 0.45rem;
	letter-spacing: 0.01em;
}

.wsc-field label .req { color: var(--orange); }

.wsc-field input,
.wsc-field select,
.wsc-field textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--white);
	font-family: var(--font-body);
	font-size: var(--step-0);
	color: var(--navy);
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
	-webkit-appearance: none;
	appearance: none;
}

.wsc-field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23547792' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.75rem;
}

.wsc-field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.wsc-field input:focus,
.wsc-field select:focus,
.wsc-field textarea:focus {
	outline: none;
	border-color: var(--steel);
	box-shadow: 0 0 0 3px rgba(84, 119, 146, 0.14);
}

.wsc-field.has-error input,
.wsc-field.has-error select,
.wsc-field.has-error textarea { border-color: #d9534f; }

.wsc-field__err {
	display: none;
	margin-top: 0.35rem;
	font-size: 0.78rem;
	color: #d9534f;
	font-weight: 600;
}

.wsc-field.has-error .wsc-field__err { display: block; }

.wsc-hp { position: absolute; left: -9999px; opacity: 0; }

/* Guest stepper */
.wsc-counter {
	display: inline-flex;
	align-items: center;
	gap: 0;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-pill);
	overflow: hidden;
	background: var(--white);
}

.wsc-counter button {
	width: 52px;
	height: 52px;
	border: 0;
	background: transparent;
	font-size: 1.4rem;
	color: var(--navy);
	cursor: pointer;
	line-height: 1;
	transition: background 0.2s var(--ease);
}

.wsc-counter button:hover:not(:disabled) { background: var(--sand); }
.wsc-counter button:disabled { opacity: 0.3; cursor: not-allowed; }

.wsc-counter input {
	width: 64px;
	border: 0;
	text-align: center;
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--navy);
	background: transparent;
	-moz-appearance: textfield;
}

.wsc-counter input::-webkit-outer-spin-button,
.wsc-counter input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Nav buttons */
.wsc-step__nav {
	display: flex;
	justify-content: space-between;
	gap: 0.85rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
}

.wsc-step__nav .wsc-btn--outline { margin-right: auto; }

/* Summary */
.wsc-summary {
	position: sticky;
	top: calc(var(--header-h) + 20px);
	background: var(--navy);
	color: var(--steel-pale);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.wsc-summary__head {
	padding: 1.35rem 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wsc-summary__head h3 {
	color: var(--white);
	font-size: var(--step-1);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.wsc-summary__head .wsc-icon { color: var(--sun); }

.wsc-summary__body { padding: 1.35rem 1.5rem; }

.wsc-summary__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: 0.5rem 0;
	font-size: var(--step--1);
}

.wsc-summary__row span { color: var(--steel-light); }
.wsc-summary__row strong { color: var(--white); font-weight: 600; text-align: right; }

.wsc-summary__extras {
	margin: 0.75rem 0;
	padding: 0.75rem 0;
	border-block: 1px dashed rgba(255, 255, 255, 0.15);
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.wsc-summary__extras:empty { display: none; }

.wsc-summary__extras div {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.85rem;
	color: var(--steel-light);
	animation: wsc-fade 0.3s var(--ease);
}

.wsc-summary__extras div b { color: var(--sun); font-weight: 600; }

.wsc-summary__empty { font-size: 0.85rem; color: var(--steel-light); font-style: italic; }

.wsc-summary__total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	margin-top: 1rem;
	padding-top: 1.15rem;
	border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.wsc-summary__total span {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--steel-light);
	font-weight: 700;
}

.wsc-summary__total strong {
	font-family: var(--font-display);
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--sun);
	letter-spacing: -0.03em;
	line-height: 1;
	transition: transform 0.3s var(--ease);
}

.wsc-summary__total strong.is-bumped { transform: scale(1.09); }

.wsc-summary__per {
	text-align: right;
	font-size: 0.78rem;
	color: var(--steel-light);
	margin-top: 0.4rem;
}

.wsc-summary__foot {
	padding: 1.15rem 1.5rem;
	background: rgba(0, 0, 0, 0.16);
	font-size: 0.78rem;
	color: var(--steel-light);
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	line-height: 1.5;
}

.wsc-summary__foot .wsc-icon { color: var(--sun); flex-shrink: 0; margin-top: 1px; }

/* Mobile sticky total bar */
.wsc-mobar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 90;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.85rem var(--gutter);
	padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
	background: var(--navy);
	box-shadow: 0 -6px 24px -8px rgba(11, 32, 56, 0.5);
}

.wsc-mobar__price { line-height: 1.15; }
.wsc-mobar__price span { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--steel-light); font-weight: 700; }
.wsc-mobar__price strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--sun); letter-spacing: -0.02em; }

@media (max-width: 1039px) {
	.wsc-summary { display: none; }
	body.wsc-booking-page .wsc-mobar { display: flex; }
	body.wsc-booking-page { padding-bottom: 84px; }
}

/* Review table on the confirm step */
.wsc-review-table {
	background: var(--sand);
	border-radius: var(--radius);
	padding: 0.5rem 1.35rem;
	margin-bottom: 1.25rem;
}

.wsc-review-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1.25rem;
	padding: 0.65rem 0;
	border-bottom: 1px solid var(--line-warm);
	font-size: var(--step--1);
}

.wsc-review-row:last-child { border-bottom: 0; }
.wsc-review-row span { color: var(--ink-soft); flex-shrink: 0; }
.wsc-review-row strong { color: var(--navy); text-align: right; font-weight: 600; word-break: break-word; }

.wsc-review-heading {
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--orange);
	margin: 1.5rem 0 0.75rem;
	font-family: var(--font-body);
	font-weight: 700;
}

.wsc-review-total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: 1.25rem 1.35rem;
	background: var(--navy);
	border-radius: var(--radius);
	margin-top: 1.25rem;
}

.wsc-review-total span { color: var(--steel-light); font-size: var(--step--1); font-weight: 600; }
.wsc-review-total strong {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 800;
	color: var(--sun);
	letter-spacing: -0.03em;
	line-height: 1;
}

/* Confirmation */
.wsc-done { text-align: center; padding: clamp(2rem, 5vw, 4rem) 0; }

.wsc-done__mark {
	width: 92px;
	height: 92px;
	margin: 0 auto 1.75rem;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #eaf6f0;
	color: #3d9970;
	animation: wsc-pop 0.55s var(--ease) backwards;
}

@keyframes wsc-pop {
	from { transform: scale(0.4); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

.wsc-done h2 { font-size: var(--step-3); }
.wsc-done p { color: var(--ink-soft); max-width: 52ch; margin-inline: auto; }

.wsc-done__ref {
	display: inline-flex;
	flex-direction: column;
	gap: 0.25rem;
	margin: 1.75rem 0;
	padding: 1.15rem 2.25rem;
	background: var(--sand);
	border-radius: var(--radius);
	border: 1px dashed var(--line-warm);
}

.wsc-done__ref span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-faint); font-weight: 700; }
.wsc-done__ref strong { font-family: var(--font-display); font-size: 1.65rem; color: var(--navy); letter-spacing: 0.02em; }

/* Alerts */
.wsc-alert {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	padding: 0.95rem 1.15rem;
	border-radius: var(--radius-sm);
	font-size: var(--step--1);
	font-weight: 500;
	margin-bottom: 1.25rem;
	line-height: 1.5;
}

.wsc-alert--error { background: #fdecea; color: #a4302c; }
.wsc-alert--ok { background: #eaf6f0; color: #256b4d; }

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */

.wsc-reviews { display: grid; gap: clamp(1rem, 2vw, 1.5rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }

.wsc-review {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: clamp(1.5rem, 3vw, 2.15rem);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	position: relative;
}

.wsc-review__quote { position: absolute; top: 1.5rem; right: 1.5rem; color: var(--sand-deep); }

.wsc-review__stars { display: flex; gap: 3px; color: var(--sun); margin-bottom: 1rem; }

.wsc-review p {
	font-size: var(--step-0);
	line-height: 1.6;
	color: var(--ink-soft);
	flex: 1;
	margin-bottom: 1.5rem;
}

.wsc-review__by {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--line);
}

.wsc-review__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--sun);
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.05rem;
	flex-shrink: 0;
}

.wsc-review__by strong { display: block; color: var(--navy); font-size: var(--step-0); line-height: 1.3; }
.wsc-review__by span { font-size: 0.8rem; color: var(--ink-faint); }

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

.wsc-cta {
	position: relative;
	padding-block: clamp(4rem, 8vw, 6.5rem);
	overflow: hidden;
	isolation: isolate;
	background: var(--navy);
	text-align: center;
}

.wsc-cta__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; opacity: 0.45; }
.wsc-cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to right, rgba(11, 32, 56, 0.92), rgba(11, 32, 56, 0.72)); }

.wsc-cta h2 { color: var(--white); font-size: var(--step-4); max-width: 18ch; margin-inline: auto; }
.wsc-cta p { color: rgba(255, 255, 255, 0.82); font-size: var(--step-1); max-width: 50ch; margin: 0 auto 2rem; }
.wsc-cta .wsc-btns { justify-content: center; }

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */

.wsc-posts { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }

.wsc-post {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--line);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.wsc-post:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.wsc-post__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--steel-pale); }
.wsc-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.wsc-post:hover .wsc-post__media img { transform: scale(1.05); }

.wsc-post__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }

.wsc-post__date {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--orange);
	font-weight: 700;
	margin-bottom: 0.65rem;
}

.wsc-post h3 { font-size: var(--step-1); margin-bottom: 0.5rem; line-height: 1.2; }
.wsc-post h3 a { color: inherit; text-decoration: none; }
.wsc-post h3 a:hover { color: var(--orange); }
.wsc-post p { font-size: var(--step--1); color: var(--ink-soft); line-height: 1.55; flex: 1; margin-bottom: 1.15rem; }

.wsc-blog-layout { display: grid; gap: clamp(2rem, 4vw, 3.5rem); grid-template-columns: minmax(0, 1fr); }

@media (min-width: 1000px) {
	.wsc-blog-layout { grid-template-columns: minmax(0, 1fr) 300px; }
}

.wsc-widget {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.5rem;
	margin-bottom: 1.25rem;
}

.wsc-widget__title { font-size: var(--step-1); margin-bottom: 0.85rem; }
.wsc-widget ul { list-style: none; padding: 0; margin: 0; }
.wsc-widget li { padding: 0.45rem 0; border-bottom: 1px solid var(--line); font-size: var(--step--1); }
.wsc-widget li:last-child { border-bottom: 0; }

.wsc-pagination {
	display: flex;
	justify-content: center;
	gap: 0.4rem;
	margin-top: 3rem;
	flex-wrap: wrap;
}

.wsc-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 0.85rem;
	border-radius: var(--radius-sm);
	background: var(--white);
	border: 1px solid var(--line);
	color: var(--navy);
	text-decoration: none;
	font-weight: 700;
	transition: all 0.2s var(--ease);
}

.wsc-pagination .page-numbers:hover { border-color: var(--steel); }
.wsc-pagination .page-numbers.current { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.wsc-contact-grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); align-items: start; }

.wsc-contact-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.35rem 1.5rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	text-decoration: none;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.wsc-contact-card + .wsc-contact-card { margin-top: 0.85rem; }
.wsc-contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); border-color: var(--steel-light); }

.wsc-contact-card__icon {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: var(--sand);
	color: var(--orange);
	flex-shrink: 0;
}

.wsc-contact-card strong { display: block; color: var(--navy); font-size: var(--step-0); }
.wsc-contact-card span { font-size: var(--step--1); color: var(--ink-soft); word-break: break-word; }

.wsc-map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	aspect-ratio: 16 / 9;
	background: var(--steel-pale);
}

.wsc-map iframe { width: 100%; height: 100%; border: 0; display: block; }

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

.wsc-footer {
	background: var(--navy-deep);
	color: var(--steel-light);
	padding-top: clamp(3rem, 6vw, 5rem);
	position: relative;
}

.wsc-footer__grid {
	display: grid;
	gap: clamp(2rem, 4vw, 3rem);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.wsc-footer__brand { max-width: 34ch; }
.wsc-footer__brand img { height: 88px; width: auto; margin-bottom: 1.25rem; }
.wsc-footer__brand p { font-size: var(--step--1); line-height: 1.65; }

.wsc-footer h4 {
	color: var(--white);
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin-bottom: 1.15rem;
	font-family: var(--font-body);
	font-weight: 700;
}

.wsc-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.wsc-footer a { color: var(--steel-light); text-decoration: none; font-size: var(--step--1); }
.wsc-footer a:hover { color: var(--sun); }

.wsc-socials { display: flex; gap: 0.6rem; margin-top: 1.5rem; }

.wsc-socials a {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--steel-pale);
	transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.wsc-socials a:hover { background: var(--sun); color: var(--navy); transform: translateY(-3px); }

.wsc-footer__bar {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	padding-block: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.8rem;
}

.wsc-footer__bar ul { flex-direction: row; gap: 1.25rem; flex-wrap: wrap; }

/* Floating WhatsApp */
.wsc-wa {
	position: fixed;
	right: clamp(1rem, 3vw, 1.75rem);
	bottom: clamp(1rem, 3vw, 1.75rem);
	z-index: 95;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.9rem 1.35rem 0.9rem 1.05rem;
	border-radius: var(--radius-pill);
	background: #25d366;
	color: #fff;
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	box-shadow: 0 10px 28px -8px rgba(37, 211, 102, 0.7);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.wsc-wa:hover { transform: translateY(-3px) scale(1.03); color: #fff; box-shadow: 0 16px 34px -10px rgba(37, 211, 102, 0.85); }
.wsc-wa .wsc-icon { flex-shrink: 0; }

body.wsc-booking-page .wsc-wa { bottom: calc(84px + clamp(0.5rem, 2vw, 1rem)); }

@media (max-width: 560px) {
	.wsc-wa__label { display: none; }
	.wsc-wa { padding: 1rem; }
}

/* --------------------------------------------------------------------------
   Utilities & motion
   -------------------------------------------------------------------------- */

.wsc-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.wsc-reveal.is-in { opacity: 1; transform: none; }

.wsc-reveal:nth-child(2) { transition-delay: 0.08s; }
.wsc-reveal:nth-child(3) { transition-delay: 0.16s; }
.wsc-reveal:nth-child(4) { transition-delay: 0.24s; }

.wsc-sun-motif {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, var(--sun) 0%, rgba(255, 197, 112, 0) 70%);
	pointer-events: none;
	opacity: 0.35;
	z-index: 0;
}

.wsc-center { text-align: center; }
.wsc-mt { margin-top: clamp(2rem, 4vw, 3rem); }

.wsc-empty {
	text-align: center;
	padding: clamp(3rem, 8vw, 6rem) 1rem;
	color: var(--ink-soft);
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	.wsc-reveal { opacity: 1; transform: none; }
}

/* Print */
@media print {
	.wsc-header, .wsc-wa, .wsc-mobar, .wsc-footer, .wsc-cta { display: none !important; }
	body { background: #fff; }
}
