/* =========================================================================
   Dreamwaves — theme.css
   Hand-written CSS that mirrors the original Tailwind v4 design tokens
   and component classes. No build step required.
   ========================================================================= */

/* -------------------------------------------------------------------------
   Design tokens
   ------------------------------------------------------------------------- */
:root {
	--dw-radius: 0.5rem;

	--dw-ocean-deep: oklch(0.22 0.07 240);
	--dw-ocean: oklch(0.36 0.12 235);
	--dw-cyan: oklch(0.78 0.13 200);
	--dw-sand: oklch(0.95 0.02 85);
	--dw-ivory: oklch(0.98 0.008 85);
	--dw-gold: oklch(0.78 0.11 85);
	--dw-ink: oklch(0.16 0.02 250);
	--dw-muted: oklch(0.45 0.02 250);
	--dw-border: oklch(0.9 0.01 230);

	--dw-gradient-ocean: linear-gradient(135deg, var(--dw-ocean-deep), var(--dw-ocean) 50%, var(--dw-cyan));
	--dw-gradient-text: linear-gradient(135deg, var(--dw-cyan), var(--dw-gold));
	--dw-gradient-sky: linear-gradient(180deg, var(--dw-ivory), oklch(0.93 0.04 220));

	--dw-shadow-luxe: 0 30px 80px -20px oklch(0.22 0.07 240 / 0.35);
	--dw-shadow-card: 0 20px 50px -25px oklch(0.16 0.02 250 / 0.25);
	--dw-shadow-glow: 0 0 60px oklch(0.78 0.13 200 / 0.4);

	--dw-glass-bg: oklch(1 0 0 / 0.08);
	--dw-glass-border: oklch(1 0 0 / 0.18);

	--dw-ease: cubic-bezier(0.22, 1, 0.36, 1);

	--dw-font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
	--dw-font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--dw-container: 80rem; /* 1280px */
}

/* -------------------------------------------------------------------------
   Base
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	border-color: var(--dw-border);
}

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

body.dw-body {
	margin: 0;
	background-color: var(--dw-ivory);
	color: var(--dw-ink);
	font-family: var(--dw-font-sans);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 200ms var(--dw-ease);
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: pointer;
}

h1, h2, h3, h4 {
	font-family: var(--dw-font-display);
	letter-spacing: -0.02em;
	font-weight: 500;
	margin: 0;
}

p { margin: 0; }
ul, ol, dl, dd, dt { margin: 0; padding: 0; }
ul, ol { list-style: none; }

.dw-skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--dw-ocean-deep);
	color: var(--dw-ivory);
	padding: 12px 16px;
	z-index: 1000;
}
.dw-skip-link:focus { top: 0; }

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

/* -------------------------------------------------------------------------
   Utilities
   ------------------------------------------------------------------------- */
.dw-gradient-text {
	background: var(--dw-gradient-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.dw-glass {
	background: var(--dw-glass-bg);
	backdrop-filter: blur(20px) saturate(140%);
	-webkit-backdrop-filter: blur(20px) saturate(140%);
	border: 1px solid var(--dw-glass-border);
}

.dw-glass--dark {
	background: oklch(0.16 0.02 250 / 0.55);
	backdrop-filter: blur(24px) saturate(160%);
	-webkit-backdrop-filter: blur(24px) saturate(160%);
	border: 1px solid oklch(1 0 0 / 0.1);
}

.dw-eyebrow {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: var(--dw-ocean);
}
.dw-eyebrow--cyan { color: var(--dw-cyan); }
.dw-eyebrow--ocean { color: var(--dw-ocean); }

.dw-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	border-radius: 9999px;
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	transition: box-shadow 250ms var(--dw-ease),
	            background 250ms var(--dw-ease),
	            color 250ms var(--dw-ease),
	            border-color 250ms var(--dw-ease),
	            transform 250ms var(--dw-ease);
	border: 1px solid transparent;
	cursor: pointer;
	text-align: center;
	justify-content: center;
}
.dw-button--ivory {
	background: var(--dw-ivory);
	color: var(--dw-ocean-deep);
}
.dw-button--ivory:hover { box-shadow: var(--dw-shadow-glow); }
.dw-button--ghost {
	background: transparent;
	color: var(--dw-ivory);
	border-color: oklch(0.98 0.008 85 / 0.3);
}
.dw-button--ghost:hover { border-color: var(--dw-gold); color: var(--dw-gold); }
.dw-button--ocean {
	background: var(--dw-ocean-deep);
	color: var(--dw-ivory);
	padding: 10px 22px;
	font-size: 12px;
}
.dw-button--ocean:hover { background: var(--dw-ocean); }
.dw-button--outline {
	background: transparent;
	color: var(--dw-ivory);
	border-color: oklch(0.98 0.008 85 / 0.3);
	margin-top: 12px;
}
.dw-button--outline:hover { border-color: var(--dw-gold); color: var(--dw-gold); }
.dw-button--primary {
	background: var(--dw-ocean-deep);
	color: var(--dw-ivory);
}
.dw-button--block { width: 100%; display: flex; }

.dw-link {
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--dw-ocean-deep);
}
.dw-link:hover { color: var(--dw-gold); }

.dw-badge {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 9999px;
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
.dw-badge--gold {
	background: oklch(0.78 0.11 85 / 0.9);
	color: var(--dw-ink);
}

/* -------------------------------------------------------------------------
   Reveal-on-scroll
   ------------------------------------------------------------------------- */
.dw-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 800ms var(--dw-ease), transform 800ms var(--dw-ease);
	transition-delay: 0ms;
	will-change: opacity, transform;
}
.dw-reveal[data-dw-from="left"]  { transform: translateX(-30px); }
.dw-reveal[data-dw-from="right"] { transform: translateX(30px); }
.dw-reveal[data-dw-from="scale"] { transform: scale(0.96); }
.dw-reveal.is-visible {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.dw-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* -------------------------------------------------------------------------
   Navbar
   ------------------------------------------------------------------------- */
.dw-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	padding: 24px 0;
	background: transparent;
	transition: background 500ms var(--dw-ease),
	            padding 500ms var(--dw-ease),
	            backdrop-filter 500ms var(--dw-ease);
}
.dw-nav.is-scrolled {
	padding: 12px 0;
	background: oklch(0.16 0.02 250 / 0.55);
	backdrop-filter: blur(24px) saturate(160%);
	-webkit-backdrop-filter: blur(24px) saturate(160%);
	border-bottom: 1px solid oklch(1 0 0 / 0.08);
}

.dw-nav__inner {
	max-width: var(--dw-container);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.dw-nav__brand {
	display: inline-flex;
	align-items: center;
}
.dw-nav__brand-text {
	font-family: var(--dw-font-display);
	font-size: 24px;
	letter-spacing: 0.02em;
	color: var(--dw-ivory);
}

.dw-nav__links {
	display: none;
	gap: 32px;
}
.dw-nav__link {
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: oklch(0.98 0.008 85 / 0.8);
	transition: color 200ms var(--dw-ease);
}
.dw-nav__link:hover { color: var(--dw-cyan); }

.dw-nav__cta {
	display: none;
	align-items: center;
	padding: 8px 20px;
	border-radius: 9999px;
	border: 1px solid oklch(0.78 0.11 85 / 0.6);
	background: oklch(0.78 0.11 85 / 0.1);
	color: var(--dw-ivory);
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	transition: background 200ms var(--dw-ease);
}
.dw-nav__cta:hover { background: oklch(0.78 0.11 85 / 0.2); }

.dw-nav__toggle {
	display: inline-flex;
	flex-direction: column;
	gap: 6px;
	color: var(--dw-ivory);
	padding: 6px;
}
.dw-nav__toggle span {
	display: block;
	height: 1px;
	width: 24px;
	background: currentColor;
	transition: all 250ms var(--dw-ease);
}
.dw-nav__toggle span:last-child { width: 16px; }

.dw-nav__panel {
	margin: 12px 24px 0;
	padding: 24px;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: oklch(0.16 0.02 250 / 0.55);
	backdrop-filter: blur(24px) saturate(160%);
	-webkit-backdrop-filter: blur(24px) saturate(160%);
	border: 1px solid oklch(1 0 0 / 0.1);
}
.dw-nav__panel-link {
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: oklch(0.98 0.008 85 / 0.85);
}
.dw-nav__panel[hidden] { display: none; }

@media (min-width: 768px) {
	.dw-nav__links { display: inline-flex; }
	.dw-nav__cta { display: inline-flex; }
	.dw-nav__toggle { display: none; }
	.dw-nav__panel { display: none !important; }
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.dw-hero {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}
.dw-hero__bg {
	position: absolute;
	inset: 0;
}
.dw-hero__bg img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transform: scale(1.05);
}
.dw-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, oklch(0.16 0.02 250 / 0.55) 0%, oklch(0.16 0.02 250 / 0.25) 35%, oklch(0.16 0.02 250 / 0.85) 100%);
}
.dw-hero__inner {
	position: relative;
	z-index: 10;
	max-width: var(--dw-container);
	margin: 0 auto;
	min-height: 100vh;
	padding: 160px 24px 112px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.dw-hero__title {
	font-family: var(--dw-font-display);
	font-size: clamp(40px, 8vw, 96px);
	color: var(--dw-ivory);
	line-height: 1.05;
	max-width: 64rem;
	text-wrap: balance;
	margin-top: 24px;
}
.dw-hero__title em {
	font-style: normal;
	background: var(--dw-gradient-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.dw-hero__lead {
	margin-top: 32px;
	max-width: 36rem;
	font-size: 18px;
	color: oklch(0.98 0.008 85 / 0.75);
	line-height: 1.65;
}
.dw-hero__cta {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.dw-hero__stats {
	margin-top: 64px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}
@media (min-width: 768px) {
	.dw-hero__stats {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 24px;
	}
}
.dw-stat {
	border-radius: 16px;
	padding: 20px;
}
@media (min-width: 768px) {
	.dw-stat { padding: 24px; }
}
.dw-stat__value {
	font-family: var(--dw-font-display);
	font-size: 30px;
	color: var(--dw-ivory);
}
@media (min-width: 768px) {
	.dw-stat__value { font-size: 36px; }
}
.dw-stat__label {
	margin-top: 4px;
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: oklch(0.98 0.008 85 / 0.7);
}
@media (min-width: 768px) {
	.dw-stat__label { font-size: 12px; }
}
.dw-hero__scroll {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	color: oklch(0.98 0.008 85 / 0.5);
	font-size: 12px;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	animation: dw-float 6s ease-in-out infinite;
}

@keyframes dw-float {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50%      { transform: translateX(-50%) translateY(-10px); }
}

/* -------------------------------------------------------------------------
   About
   ------------------------------------------------------------------------- */
.dw-about {
	background: var(--dw-ivory);
	padding: 112px 0;
}
@media (min-width: 768px) { .dw-about { padding: 160px 0; } }
.dw-about__inner {
	max-width: var(--dw-container);
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	gap: 64px;
}
@media (min-width: 768px) {
	.dw-about__inner {
		grid-template-columns: 1fr 1fr;
		align-items: center;
	}
}
.dw-about__title {
	margin-top: 24px;
	font-size: clamp(36px, 5vw, 60px);
	line-height: 1.05;
	text-wrap: balance;
}
.dw-about__title em { font-style: normal; color: var(--dw-ocean); }
.dw-about__lead {
	margin-top: 32px;
	font-size: 18px;
	line-height: 1.7;
	color: var(--dw-muted);
}
.dw-about__pillars {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.dw-pillar {
	border-radius: 16px;
	border: 1px solid var(--dw-border);
	background: oklch(1 0 0 / 0.6);
	backdrop-filter: blur(8px);
	padding: 20px;
	box-shadow: var(--dw-shadow-card);
}
.dw-pillar__title {
	font-family: var(--dw-font-display);
	font-size: 18px;
	color: var(--dw-ocean-deep);
}
.dw-pillar__desc {
	margin-top: 4px;
	font-size: 14px;
	color: var(--dw-muted);
}
.dw-about__media {
	position: relative;
}
.dw-about__photo {
	position: relative;
	overflow: hidden;
	border-radius: 32px;
	box-shadow: var(--dw-shadow-luxe);
}
.dw-about__photo img {
	height: 600px;
	width: 100%;
	object-fit: cover;
}
.dw-about__badge {
	display: none;
	position: absolute;
	bottom: -32px;
	left: -32px;
	max-width: 20rem;
	padding: 24px;
	border-radius: 16px;
	background: oklch(0.16 0.02 250 / 0.55);
	backdrop-filter: blur(24px) saturate(160%);
	border: 1px solid oklch(1 0 0 / 0.1);
}
@media (min-width: 768px) { .dw-about__badge { display: block; } }
.dw-about__since {
	font-family: var(--dw-font-display);
	font-size: 30px;
	color: var(--dw-ivory);
}
.dw-about__since-sub {
	margin-top: 8px;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: oklch(0.98 0.008 85 / 0.7);
}

/* -------------------------------------------------------------------------
   Fleet
   ------------------------------------------------------------------------- */
.dw-fleet {
	position: relative;
	background: var(--dw-gradient-sky);
	padding: 112px 0;
}
@media (min-width: 768px) { .dw-fleet { padding: 160px 0; } }
.dw-fleet__inner {
	max-width: var(--dw-container);
	margin: 0 auto;
	padding: 0 24px;
}
.dw-fleet__intro { margin-bottom: 64px; max-width: 48rem; }
.dw-fleet__title {
	margin-top: 24px;
	font-size: clamp(36px, 5vw, 60px);
	line-height: 1.05;
	text-wrap: balance;
}
.dw-fleet__title em { font-style: normal; }
.dw-fleet__list {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.dw-boat-card {
	display: grid;
	gap: 32px;
	border-radius: 32px;
	overflow: hidden;
	background: oklch(1 0 0 / 0.7);
	backdrop-filter: blur(8px);
	box-shadow: var(--dw-shadow-card);
}
@media (min-width: 768px) {
	.dw-boat-card { grid-template-columns: 3fr 2fr; gap: 32px; }
	.dw-boat-card--reverse .dw-boat-card__media { order: 2; }
}
.dw-boat-card__media {
	position: relative;
}
.dw-boat-card__media img {
	height: 288px;
	width: 100%;
	object-fit: cover;
}
@media (min-width: 768px) {
	.dw-boat-card__media img { height: 100%; min-height: 420px; }
}
.dw-boat-card__media .dw-badge { position: absolute; top: 16px; right: 16px; }
.dw-boat-card__body {
	padding: 32px;
	display: flex;
	flex-direction: column;
}
@media (min-width: 768px) { .dw-boat-card__body { padding: 40px; } }
.dw-boat-card__title {
	margin-top: 8px;
	font-size: clamp(32px, 4vw, 48px);
	color: var(--dw-ink);
}
.dw-boat-card__highlight {
	margin-top: 16px;
	font-size: 14px;
	line-height: 1.7;
	color: var(--dw-muted);
	font-style: italic;
}
.dw-boat-card__specs {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 16px;
	border-top: 1px solid var(--dw-border);
	padding-top: 24px;
}
.dw-boat-card__specs dt {
	font-size: 10px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--dw-muted);
}
.dw-boat-card__specs dd {
	font-size: 14px;
	font-weight: 500;
	color: var(--dw-ink);
}
.dw-boat-card__features {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.dw-boat-card__features span {
	border-radius: 9999px;
	border: 1px solid var(--dw-border);
	background: white;
	padding: 4px 12px;
	font-size: 11px;
	color: var(--dw-muted);
}
.dw-boat-card__actions {
	margin-top: auto;
	padding-top: 32px;
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* -------------------------------------------------------------------------
   Experiences
   ------------------------------------------------------------------------- */
.dw-experiences {
	position: relative;
	overflow: hidden;
	background: var(--dw-ocean-deep);
	padding: 112px 0;
}
@media (min-width: 768px) { .dw-experiences { padding: 160px 0; } }
.dw-experiences__glow {
	position: absolute;
	inset: 0;
	opacity: 0.3;
	background: radial-gradient(circle at 30% 20%, var(--dw-cyan), transparent 50%);
	pointer-events: none;
}
.dw-experiences__inner {
	position: relative;
	max-width: var(--dw-container);
	margin: 0 auto;
	padding: 0 24px;
}
.dw-experiences__intro { margin-bottom: 64px; max-width: 48rem; }
.dw-experiences__title {
	margin-top: 24px;
	font-size: clamp(36px, 5vw, 60px);
	color: var(--dw-ivory);
	line-height: 1.05;
	text-wrap: balance;
}
.dw-experiences__title em { font-style: normal; }
.dw-experiences__grid {
	display: grid;
	gap: 20px;
}
@media (min-width: 768px) {
	.dw-experiences__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.dw-exp-card {
	position: relative;
	height: 320px;
	overflow: hidden;
	border-radius: 24px;
}
.dw-exp-card img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: transform 700ms var(--dw-ease);
}
.dw-exp-card:hover img { transform: scale(1.1); }
.dw-exp-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, var(--dw-ocean-deep), oklch(0.22 0.07 240 / 0.4) 50%, transparent 100%);
}
.dw-exp-card__body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px;
	color: var(--dw-ivory);
}
.dw-exp-card__body h3 {
	font-family: var(--dw-font-display);
	font-size: 24px;
}
.dw-exp-card__body p {
	margin-top: 4px;
	font-size: 14px;
	color: oklch(0.98 0.008 85 / 0.75);
}

/* -------------------------------------------------------------------------
   Booking
   ------------------------------------------------------------------------- */
.dw-booking {
	position: relative;
	overflow: hidden;
	background: var(--dw-ocean-deep);
	padding: 112px 0;
}
@media (min-width: 768px) { .dw-booking { padding: 160px 0; } }
.dw-booking__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--dw-ocean-deep), var(--dw-ocean));
}
.dw-booking__glow {
	position: absolute;
	inset: 0;
	opacity: 0.2;
	background-image:
		radial-gradient(circle at 80% 30%, var(--dw-cyan), transparent 40%),
		radial-gradient(circle at 20% 80%, var(--dw-gold), transparent 40%);
	pointer-events: none;
}
.dw-booking__inner {
	position: relative;
	max-width: 72rem;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	gap: 48px;
}
@media (min-width: 768px) {
	.dw-booking__inner { grid-template-columns: 1fr 1fr; }
}

/* Solo variant — single centered column when the section is used on a page
   that already shows the contact info elsewhere (e.g. the Contact page). */
.dw-booking--solo .dw-booking__inner {
	max-width: 44rem;
	gap: 40px;
}
@media (min-width: 768px) {
	.dw-booking--solo .dw-booking__inner { grid-template-columns: 1fr; }
}
.dw-booking__heading {
	text-align: center;
}
.dw-booking__heading .dw-booking__lead {
	margin-left: auto;
	margin-right: auto;
	max-width: 36rem;
}
.dw-booking__title {
	margin-top: 24px;
	font-size: clamp(36px, 5vw, 60px);
	color: var(--dw-ivory);
	line-height: 1.05;
	text-wrap: balance;
}
.dw-booking__title em { font-style: normal; }
.dw-booking__lead {
	margin-top: 24px;
	color: oklch(0.98 0.008 85 / 0.75);
	line-height: 1.65;
	max-width: 28rem;
}
.dw-booking__contact {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	color: oklch(0.98 0.008 85 / 0.8);
	font-size: 14px;
}
.dw-booking__rep {
	font-family: var(--dw-font-display);
	font-size: 20px;
	color: var(--dw-ivory);
}
.dw-booking__role {
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--dw-cyan);
}
.dw-booking__phone:hover { color: var(--dw-gold); }
.dw-booking__email-note {
	display: block;
	font-size: 11px;
	color: oklch(0.98 0.008 85 / 0.5);
	margin-top: 4px;
}

.dw-booking__form {
	border-radius: 24px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
@media (min-width: 768px) { .dw-booking__form { padding: 40px; } }

.dw-honeypot {
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.dw-field { display: block; }
.dw-field label {
	display: block;
	margin-bottom: 8px;
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: oklch(0.98 0.008 85 / 0.7);
}
.dw-field input,
.dw-field select,
.dw-field textarea {
	width: 100%;
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid oklch(0.98 0.008 85 / 0.2);
	background: oklch(1 0 0 / 0.05);
	color: var(--dw-ivory);
	font-family: inherit;
	font-size: 14px;
	transition: border-color 200ms var(--dw-ease);
}
.dw-field input::placeholder,
.dw-field textarea::placeholder { color: oklch(0.98 0.008 85 / 0.4); }
.dw-field input:focus,
.dw-field select:focus,
.dw-field textarea:focus {
	outline: none;
	border-color: var(--dw-cyan);
}
.dw-field textarea { resize: none; }
.dw-field select option { color: #000; }
.dw-field__error {
	margin-top: 4px;
	font-size: 12px;
	color: var(--dw-gold);
	min-height: 1em;
}

.dw-field-row {
	display: grid;
	gap: 16px;
}
@media (min-width: 768px) {
	.dw-field-row { grid-template-columns: 1fr 1fr; }
}

.dw-booking__status {
	margin-top: 4px;
	text-align: center;
	font-size: 14px;
	color: var(--dw-cyan);
	min-height: 1em;
}
.dw-booking__status[data-dw-state="error"] { color: var(--dw-gold); }

/* -------------------------------------------------------------------------
   Contact Form 7 styling — applied only inside the booking section's
   .dw-cf7 wrapper so we don't pollute other CF7 instances.
   ------------------------------------------------------------------------- */
.dw-cf7 .wpcf7-form { margin: 0; }
.dw-cf7 .wpcf7-form > p {
	margin: 0 0 16px;
	display: block;
}
.dw-cf7 .wpcf7-form > p:last-of-type { margin-bottom: 0; }
.dw-cf7 .wpcf7-form label {
	display: block;
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: oklch(0.98 0.008 85 / 0.7);
}
.dw-cf7 .wpcf7-form-control-wrap {
	display: block;
	margin-top: 8px;
}
.dw-cf7 .wpcf7-form input[type="text"],
.dw-cf7 .wpcf7-form input[type="email"],
.dw-cf7 .wpcf7-form input[type="tel"],
.dw-cf7 .wpcf7-form input[type="url"],
.dw-cf7 .wpcf7-form input[type="number"],
.dw-cf7 .wpcf7-form input[type="date"],
.dw-cf7 .wpcf7-form input[type="time"],
.dw-cf7 .wpcf7-form input[type="datetime-local"],
.dw-cf7 .wpcf7-form select,
.dw-cf7 .wpcf7-form textarea {
	width: 100%;
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid oklch(0.98 0.008 85 / 0.2);
	background: oklch(1 0 0 / 0.05);
	color: var(--dw-ivory);
	font-family: inherit;
	font-size: 14px;
	transition: border-color 200ms var(--dw-ease);
}
.dw-cf7 .wpcf7-form input::placeholder,
.dw-cf7 .wpcf7-form textarea::placeholder {
	color: oklch(0.98 0.008 85 / 0.4);
}
.dw-cf7 .wpcf7-form input:focus,
.dw-cf7 .wpcf7-form select:focus,
.dw-cf7 .wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--dw-cyan);
}
.dw-cf7 .wpcf7-form select option { color: #000; }
.dw-cf7 .wpcf7-form textarea { resize: vertical; min-height: 120px; }

.dw-cf7 .wpcf7-form input[type="submit"] {
	display: block;
	width: 100%;
	padding: 14px 28px;
	border: none;
	border-radius: 999px;
	background: var(--dw-ivory);
	color: var(--dw-ocean-deep);
	font-family: inherit;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: transform 200ms var(--dw-ease), box-shadow 200ms var(--dw-ease);
}
.dw-cf7 .wpcf7-form input[type="submit"]:hover {
	transform: translateY(-1px);
	box-shadow: var(--dw-shadow-glow);
}
.dw-cf7 .wpcf7-form input[type="submit"]:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.dw-cf7 .wpcf7-spinner {
	background-color: oklch(1 0 0 / 0.3);
	margin: 0 0 0 12px;
	vertical-align: middle;
}

.dw-cf7 .wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 12px;
	color: var(--dw-gold);
}
.dw-cf7 .wpcf7-form .wpcf7-response-output {
	margin: 16px 0 0;
	padding: 14px 16px;
	border-radius: 12px;
	border: 1px solid oklch(0.98 0.008 85 / 0.25);
	background: oklch(1 0 0 / 0.05);
	color: var(--dw-ivory);
	font-size: 14px;
	text-align: center;
}
.dw-cf7 .wpcf7-form.sent .wpcf7-response-output {
	border-color: var(--dw-cyan);
	color: var(--dw-cyan);
}
.dw-cf7 .wpcf7-form.invalid .wpcf7-response-output,
.dw-cf7 .wpcf7-form.failed .wpcf7-response-output,
.dw-cf7 .wpcf7-form.aborted .wpcf7-response-output,
.dw-cf7 .wpcf7-form.spam .wpcf7-response-output {
	border-color: var(--dw-gold);
	color: var(--dw-gold);
}

/* -------------------------------------------------------------------------
   Map / Contact
   ------------------------------------------------------------------------- */
.dw-map {
	position: relative;
	background: var(--dw-ivory);
	padding: 112px 0;
}
@media (min-width: 768px) { .dw-map { padding: 160px 0; } }
.dw-map__inner {
	max-width: var(--dw-container);
	margin: 0 auto;
	padding: 0 24px;
}
.dw-map__intro {
	text-align: center;
	margin-bottom: 48px;
}
.dw-map__title {
	margin: 0 0 32px;
	text-align: center;
	font-size: clamp(28px, 3.4vw, 40px);
}
.dw-map__intro p {
	margin-top: 16px;
	color: var(--dw-muted);
}
.dw-map__frame {
	overflow: hidden;
	border-radius: 32px;
	box-shadow: var(--dw-shadow-luxe);
	height: 500px;
	border: 1px solid var(--dw-border);
}
.dw-map__frame iframe {
	height: 100%;
	width: 100%;
	border: 0;
	filter: grayscale(0.6) contrast(1.1);
}

/* -------------------------------------------------------------------------
   Booking modal — opens from any [data-dw-booking-trigger].
   Panel is constrained to the viewport; only the body scrolls.
   ------------------------------------------------------------------------- */
.dw-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
}
@media (min-width: 768px) {
	.dw-modal { padding: 24px; }
}
.dw-modal[data-dw-state="open"] {
	display: flex;
}
.dw-modal__backdrop {
	position: fixed;
	inset: 0;
	background: oklch(0.16 0.02 250 / 0.72);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	cursor: pointer;
	animation: dwBackdropIn 0.25s var(--dw-ease);
}
.dw-modal__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 560px;
	max-height: calc(100vh - 32px);
	max-height: calc(100dvh - 32px);
	display: flex;
	flex-direction: column;
	background: linear-gradient(135deg, var(--dw-ocean-deep), var(--dw-ocean) 70%, oklch(0.30 0.08 230));
	border: 1px solid oklch(1 0 0 / 0.18);
	border-radius: 20px;
	color: var(--dw-ivory);
	box-shadow: var(--dw-shadow-luxe);
	overflow: hidden;
	animation: dwModalIn 0.3s var(--dw-ease);
}
@media (min-width: 768px) {
	.dw-modal__panel { max-height: calc(100dvh - 48px); }
}
.dw-modal__close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: oklch(0.16 0.02 250 / 0.55);
	border: 1px solid oklch(1 0 0 / 0.18);
	border-radius: 999px;
	color: var(--dw-ivory);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background 200ms var(--dw-ease), transform 200ms var(--dw-ease);
}
.dw-modal__close:hover {
	background: oklch(1 0 0 / 0.14);
	transform: rotate(90deg);
}
.dw-modal__head {
	flex: 0 0 auto;
	padding: 24px 24px 0;
}
@media (min-width: 768px) {
	.dw-modal__head { padding: 28px 32px 0; }
}
.dw-modal__title {
	font-family: var(--dw-font-display);
	font-size: clamp(22px, 2.8vw, 28px);
	line-height: 1.15;
	margin: 10px 0 6px;
}
.dw-modal__lead {
	margin: 0 0 16px;
	font-size: 13px;
	color: oklch(0.98 0.008 85 / 0.72);
	line-height: 1.5;
}
.dw-modal__body {
	flex: 1 1 auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 0 24px 24px;
	scrollbar-width: thin;
	scrollbar-color: oklch(1 0 0 / 0.25) transparent;
}
@media (min-width: 768px) {
	.dw-modal__body { padding: 0 32px 28px; }
}
.dw-modal__body::-webkit-scrollbar { width: 6px; }
.dw-modal__body::-webkit-scrollbar-thumb { background: oklch(1 0 0 / 0.25); border-radius: 3px; }
.dw-modal__form { margin: 0; }

/* Compact CF7 styling inside the modal so everything fits in-view */
.dw-modal .dw-cf7 .wpcf7-form > p { margin-bottom: 12px; }
.dw-modal .dw-cf7 .wpcf7-form > p:last-of-type { margin-bottom: 0; }
.dw-modal .dw-cf7 .wpcf7-form input[type="text"],
.dw-modal .dw-cf7 .wpcf7-form input[type="email"],
.dw-modal .dw-cf7 .wpcf7-form input[type="tel"],
.dw-modal .dw-cf7 .wpcf7-form input[type="url"],
.dw-modal .dw-cf7 .wpcf7-form input[type="number"],
.dw-modal .dw-cf7 .wpcf7-form input[type="date"],
.dw-modal .dw-cf7 .wpcf7-form input[type="time"],
.dw-modal .dw-cf7 .wpcf7-form input[type="datetime-local"],
.dw-modal .dw-cf7 .wpcf7-form select {
	padding: 10px 14px;
}
.dw-modal .dw-cf7 .wpcf7-form textarea { min-height: 80px; }
.dw-modal .dw-cf7 .wpcf7-form input[type="submit"] { padding: 12px 24px; }
.dw-modal .dw-cf7 .wpcf7-form-control-wrap { margin-top: 6px; }

@keyframes dwBackdropIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}
@keyframes dwModalIn {
	from { transform: translateY(16px) scale(0.97); opacity: 0; }
	to   { transform: none; opacity: 1; }
}

/* Lock body scroll while modal is open */
body.dw-modal-open { overflow: hidden; }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.dw-footer {
	position: relative;
	overflow: hidden;
	background: var(--dw-ink);
	color: oklch(0.98 0.008 85 / 0.8);
}
.dw-footer__inner {
	position: relative;
	max-width: var(--dw-container);
	margin: 0 auto;
	padding: 80px 24px;
	display: grid;
	gap: 48px;
}
@media (min-width: 768px) {
	.dw-footer__inner { grid-template-columns: 2fr 1fr 1fr; }
}
.dw-footer__brand p {
	margin-top: 16px;
	max-width: 22rem;
	font-size: 14px;
	color: oklch(0.98 0.008 85 / 0.6);
	line-height: 1.65;
}
.dw-footer__logo {
	font-family: var(--dw-font-display);
	font-size: 30px;
	color: var(--dw-ivory);
}
.dw-footer__head {
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--dw-cyan);
	margin-bottom: 16px;
}
.dw-footer__col li {
	margin-bottom: 8px;
	font-size: 14px;
}
.dw-footer__col a:hover { color: var(--dw-gold); }
.dw-footer__muted { color: oklch(0.98 0.008 85 / 0.5); font-size: 12px; }
.dw-footer__social {
	margin-top: 24px;
	display: flex;
	gap: 12px;
}
.dw-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	width: 36px;
	border-radius: 9999px;
	border: 1px solid oklch(0.98 0.008 85 / 0.2);
	font-size: 10px;
	transition: border-color 200ms var(--dw-ease), color 200ms var(--dw-ease);
}
.dw-footer__social a:hover { border-color: var(--dw-gold); color: var(--dw-gold); }
.dw-footer__copy {
	position: relative;
	border-top: 1px solid oklch(0.98 0.008 85 / 0.1);
	padding: 24px;
	text-align: center;
	font-size: 12px;
	color: oklch(0.98 0.008 85 / 0.4);
}

/* -------------------------------------------------------------------------
   Floating CTA
   ------------------------------------------------------------------------- */
.dw-floating-cta {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 40;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 9999px;
	background: var(--dw-ocean-deep);
	color: var(--dw-ivory);
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	box-shadow: var(--dw-shadow-glow);
}
@media (min-width: 768px) {
	.dw-floating-cta { display: none; }
}

/* -------------------------------------------------------------------------
   Single boat
   ------------------------------------------------------------------------- */
.dw-bp-hero {
	position: relative;
	height: 85vh;
	min-height: 600px;
	overflow: hidden;
}
.dw-bp-hero img[data-dw-gallery-image] {
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.dw-bp-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, oklch(0.16 0.02 250 / 0.4) 0%, oklch(0.16 0.02 250 / 0.2) 40%, oklch(0.16 0.02 250 / 0.9) 100%);
	pointer-events: none;
}
.dw-bp-hero__inner {
	position: absolute;
	inset: 0;
	z-index: 10;
	max-width: var(--dw-container);
	margin: 0 auto;
	padding: 128px 24px 64px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	pointer-events: none;
}
.dw-bp-hero__inner > * { pointer-events: auto; }
.dw-bp-hero__back {
	font-size: 12px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--dw-cyan);
}
.dw-bp-hero__back:hover { color: var(--dw-gold); }
.dw-bp-hero__model {
	margin-top: 16px;
	font-size: 12px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: oklch(0.98 0.008 85 / 0.7);
}
.dw-bp-hero__title {
	margin-top: 8px;
	font-size: clamp(48px, 9vw, 128px);
	color: var(--dw-ivory);
	line-height: 1;
}
.dw-bp-hero__tagline {
	margin-top: 16px;
	max-width: 36rem;
	font-size: 18px;
	color: oklch(0.98 0.008 85 / 0.8);
	font-style: italic;
}
.dw-bp-hero__badge { margin-top: 16px; }

.dw-bp-thumbs {
	background: var(--dw-ivory);
	padding: 40px 0;
	border-bottom: 1px solid var(--dw-border);
}
.dw-bp-thumbs__wrap {
	position: relative;
	max-width: var(--dw-container);
	margin: 0 auto;
	padding: 0 24px;
}

/* Mobile: 2-column grid */
.dw-bp-thumbs__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.dw-bp-thumb {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 14px;
	padding: 0;
	opacity: 0.85;
	transition: opacity 250ms var(--dw-ease), box-shadow 250ms var(--dw-ease), transform 250ms var(--dw-ease);
	background: var(--dw-border);
	cursor: zoom-in;
	flex-shrink: 0;
}
.dw-bp-thumb img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: transform 500ms var(--dw-ease);
	user-select: none;
	-webkit-user-drag: none;
	pointer-events: none;
}
.dw-bp-thumb:hover {
	opacity: 1;
	box-shadow: var(--dw-shadow-card);
}
.dw-bp-thumb:hover img { transform: scale(1.06); }
.dw-bp-thumb.is-active {
	opacity: 1;
	box-shadow: 0 0 0 2px var(--dw-ocean);
}

/* Desktop: horizontal drag-to-scroll carousel */
@media (min-width: 768px) {
	.dw-bp-thumbs__inner {
		display: flex;
		gap: 16px;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		cursor: grab;
		padding: 4px 0 4px;
		scrollbar-width: none;
		-ms-overflow-style: none;
		scroll-behavior: auto;
		touch-action: pan-x;
	}
	.dw-bp-thumbs__inner::-webkit-scrollbar {
		display: none;
		width: 0;
		height: 0;
	}
	.dw-bp-thumbs__inner.is-dragging {
		cursor: grabbing;
		scroll-behavior: auto;
	}
	.dw-bp-thumbs__inner.is-dragging .dw-bp-thumb {
		pointer-events: none;
	}

	.dw-bp-thumb {
		flex: 0 0 auto;
		width: clamp(220px, 26vw, 320px);
		aspect-ratio: 4 / 3;
	}
}

/* Carousel arrows — only meaningful on desktop */
.dw-carousel__nav {
	display: none;
}
@media (min-width: 768px) {
	.dw-carousel__nav {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 44px;
		height: 44px;
		border-radius: 9999px;
		background: var(--dw-ivory);
		border: 1px solid var(--dw-border);
		color: var(--dw-ocean-deep);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		box-shadow: var(--dw-shadow-card);
		cursor: pointer;
		opacity: 0;
		transition: opacity 200ms var(--dw-ease), background 200ms var(--dw-ease), color 200ms var(--dw-ease), border-color 200ms var(--dw-ease);
		z-index: 2;
	}
	.dw-bp-thumbs__wrap:hover .dw-carousel__nav,
	.dw-bp-thumbs__wrap:focus-within .dw-carousel__nav { opacity: 1; }
	.dw-carousel__nav:hover {
		background: var(--dw-ocean-deep);
		color: var(--dw-ivory);
		border-color: var(--dw-ocean-deep);
	}
	.dw-carousel__nav:disabled {
		opacity: 0 !important;
		pointer-events: none;
	}
	.dw-carousel__nav--prev { left: 0; }
	.dw-carousel__nav--next { right: 0; }
}

.dw-bp-content { padding: 80px 0 112px; }
@media (min-width: 768px) { .dw-bp-content { padding: 112px 0; } }
.dw-bp-content__inner {
	max-width: var(--dw-container);
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	gap: 64px;
}
@media (min-width: 1024px) {
	.dw-bp-content__inner { grid-template-columns: 2fr 1fr; }
}
.dw-bp-content__main { display: flex; flex-direction: column; gap: 48px; }
.dw-bp-content__heading {
	margin-top: 16px;
	font-size: clamp(28px, 4vw, 48px);
	line-height: 1.05;
}
.dw-bp-content__rich { color: var(--dw-muted); line-height: 1.7; }
.dw-bp-content__rich p { margin-top: 12px; }

.dw-bp-specs dl {
	margin-top: 24px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px 32px;
	border-top: 1px solid var(--dw-border);
	padding-top: 32px;
}
@media (min-width: 640px) {
	.dw-bp-specs dl { grid-template-columns: 1fr 1fr; }
}
.dw-bp-specs dl > div {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	border-bottom: 1px solid oklch(0.9 0.01 230 / 0.6);
	padding-bottom: 12px;
}
.dw-bp-specs dt { font-size: 14px; color: var(--dw-muted); }
.dw-bp-specs dd { font-family: var(--dw-font-display); font-size: 20px; color: var(--dw-ink); }

.dw-bp-features ul {
	margin-top: 24px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}
@media (min-width: 640px) {
	.dw-bp-features ul { grid-template-columns: 1fr 1fr; }
}
.dw-bp-features li {
	display: flex;
	align-items: center;
	gap: 12px;
	border-radius: 12px;
	border: 1px solid var(--dw-border);
	background: oklch(1 0 0 / 0.6);
	padding: 12px 16px;
	font-size: 14px;
}
.dw-bp-features__dot {
	display: inline-block;
	height: 6px;
	width: 6px;
	border-radius: 9999px;
	background: var(--dw-cyan);
}

.dw-bp-aside { align-self: start; }
@media (min-width: 1024px) {
	.dw-bp-aside { position: sticky; top: 112px; }
}
.dw-bp-card {
	border-radius: 24px;
	background: var(--dw-gradient-ocean);
	padding: 32px;
	color: var(--dw-ivory);
	box-shadow: var(--dw-shadow-luxe);
}
.dw-bp-card__eyebrow {
	font-size: 12px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--dw-cyan);
}
.dw-bp-card__title {
	margin-top: 12px;
	font-family: var(--dw-font-display);
	font-size: 30px;
}
.dw-bp-card__lead {
	margin-top: 12px;
	font-size: 14px;
	color: oklch(0.98 0.008 85 / 0.75);
}
.dw-bp-card__list {
	margin-top: 24px;
	border-top: 1px solid oklch(0.98 0.008 85 / 0.15);
	padding-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 14px;
}
.dw-bp-card__list > div {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}
.dw-bp-card__list dt { color: oklch(0.98 0.008 85 / 0.6); }
.dw-bp-card__list dd { font-weight: 500; }
.dw-bp-card .dw-button { margin-top: 32px; }

.dw-bp-others {
	background: var(--dw-gradient-sky);
	padding: 80px 0;
}
.dw-bp-others__inner {
	max-width: var(--dw-container);
	margin: 0 auto;
	padding: 0 24px;
}
.dw-bp-others__title {
	margin-top: 16px;
	font-size: clamp(28px, 4vw, 36px);
}
.dw-bp-others__grid {
	margin-top: 40px;
	display: grid;
	gap: 24px;
}
@media (min-width: 768px) {
	.dw-bp-others__grid { grid-template-columns: 1fr 1fr; }
}
.dw-bp-other {
	position: relative;
	display: block;
	height: 288px;
	overflow: hidden;
	border-radius: 24px;
	box-shadow: var(--dw-shadow-card);
}
.dw-bp-other img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: transform 700ms var(--dw-ease);
}
.dw-bp-other:hover img { transform: scale(1.1); }
.dw-bp-other__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, var(--dw-ocean-deep), transparent);
}
.dw-bp-other__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 24px;
	color: var(--dw-ivory);
}
.dw-bp-other__model {
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--dw-cyan);
}
.dw-bp-other__name {
	margin-top: 4px;
	font-family: var(--dw-font-display);
	font-size: 30px;
}

/* -------------------------------------------------------------------------
   Archive header
   ------------------------------------------------------------------------- */
.dw-archive-hero {
	position: relative;
	background: var(--dw-gradient-ocean);
	padding: 200px 0 80px;
	text-align: center;
	color: var(--dw-ivory);
}
.dw-archive-hero__inner {
	max-width: 50rem;
	margin: 0 auto;
	padding: 0 24px;
}
.dw-archive-hero__title {
	margin-top: 24px;
	font-size: clamp(40px, 6vw, 72px);
	color: var(--dw-ivory);
	line-height: 1.05;
}
.dw-archive-hero__lead {
	margin-top: 24px;
	color: oklch(0.98 0.008 85 / 0.75);
	font-size: 18px;
}

/* -------------------------------------------------------------------------
   Contact page hero
   ------------------------------------------------------------------------- */
.dw-contact-hero {
	position: relative;
	overflow: hidden;
	background: var(--dw-ocean-deep);
	color: var(--dw-ivory);
	padding: 180px 0 96px;
}
@media (min-width: 768px) {
	.dw-contact-hero { padding: 220px 0 128px; }
}
.dw-contact-hero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 80% 20%, oklch(0.78 0.13 200 / 0.35), transparent 45%),
		radial-gradient(circle at 15% 85%, oklch(0.78 0.11 85 / 0.25), transparent 45%),
		linear-gradient(135deg, var(--dw-ocean-deep), var(--dw-ocean) 60%, oklch(0.30 0.08 230));
	pointer-events: none;
}
.dw-contact-hero__inner {
	position: relative;
	max-width: var(--dw-container);
	margin: 0 auto;
	padding: 0 24px;
}
.dw-contact-hero__title {
	font-family: var(--dw-font-display);
	font-size: clamp(40px, 6vw, 72px);
	line-height: 1.05;
	margin: 24px 0 0;
	max-width: 38rem;
}
.dw-contact-hero__title em { font-style: normal; }
.dw-contact-hero__lead {
	margin-top: 24px;
	color: oklch(0.98 0.008 85 / 0.78);
	font-size: 18px;
	max-width: 40rem;
	line-height: 1.6;
}
.dw-contact-hero__cards {
	margin-top: 56px;
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) {
	.dw-contact-hero__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.dw-contact-hero__cards { grid-template-columns: repeat(4, 1fr); }
}
.dw-contact-card {
	display: block;
	padding: 24px;
	color: inherit;
	text-decoration: none;
	border-radius: var(--dw-radius);
	transition: transform 0.3s var(--dw-ease), border-color 0.3s var(--dw-ease);
}
a.dw-contact-card:hover {
	transform: translateY(-3px);
	border-color: oklch(0.78 0.13 200 / 0.55);
}
.dw-contact-card__label {
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: oklch(0.78 0.13 200);
}
.dw-contact-card__value {
	margin-top: 10px;
	font-family: var(--dw-font-display);
	font-size: 24px;
	line-height: 1.2;
	color: var(--dw-ivory);
}
.dw-contact-card__hint {
	margin-top: 8px;
	font-size: 13px;
	color: oklch(0.98 0.008 85 / 0.65);
}

/* -------------------------------------------------------------------------
   Generic page / 404
   ------------------------------------------------------------------------- */
.dw-page {
	background: var(--dw-ivory);
	padding: 200px 0 112px;
}
.dw-page__inner {
	max-width: 48rem;
	margin: 0 auto;
	padding: 0 24px;
}
.dw-page__title {
	font-size: clamp(36px, 5vw, 56px);
	margin-bottom: 24px;
}
.dw-page__content { color: var(--dw-muted); line-height: 1.7; font-size: 17px; }
.dw-page__content p { margin-bottom: 16px; }
.dw-page__content a { color: var(--dw-ocean); text-decoration: underline; }

.dw-404 {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dw-ivory);
	padding: 24px;
}
.dw-404__inner {
	max-width: 28rem;
	text-align: center;
}
.dw-404__code {
	font-size: 96px;
	font-weight: 700;
	font-family: var(--dw-font-display);
}
.dw-404__text {
	margin-top: 16px;
	color: var(--dw-muted);
}
.dw-404 .dw-button { margin-top: 24px; }

/* -------------------------------------------------------------------------
   Hero zoom affordance + lightbox triggers
   ------------------------------------------------------------------------- */
[data-dw-lightbox-trigger] { cursor: zoom-in; }
img[data-dw-lightbox-trigger] { cursor: zoom-in; }

.dw-bp-hero__zoom {
	position: absolute;
	top: 24px;
	right: 24px;
	z-index: 20;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 9999px;
	background: oklch(0.16 0.02 250 / 0.55);
	backdrop-filter: blur(20px) saturate(160%);
	-webkit-backdrop-filter: blur(20px) saturate(160%);
	border: 1px solid oklch(1 0 0 / 0.18);
	color: var(--dw-ivory);
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: background 200ms var(--dw-ease), border-color 200ms var(--dw-ease);
}
.dw-bp-hero__zoom:hover {
	background: oklch(0.16 0.02 250 / 0.8);
	border-color: var(--dw-cyan);
}
.dw-bp-hero__zoom svg { display: block; }
@media (min-width: 768px) {
	.dw-bp-hero__zoom { top: 32px; right: 32px; }
}

.dw-no-scroll { overflow: hidden; }

/* -------------------------------------------------------------------------
   Lightbox
   ------------------------------------------------------------------------- */
.dw-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
	background: oklch(0.16 0.02 250 / 0.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 24px;
	opacity: 0;
	transition: opacity 250ms var(--dw-ease);
}
.dw-lightbox.is-open {
	display: flex;
	opacity: 1;
}

.dw-lightbox__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	border-radius: 9999px;
	background: oklch(1 0 0 / 0.06);
	border: 1px solid oklch(1 0 0 / 0.18);
	color: var(--dw-ivory);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 200ms var(--dw-ease), border-color 200ms var(--dw-ease);
	z-index: 2;
}
.dw-lightbox__close:hover {
	background: oklch(1 0 0 / 0.12);
	border-color: var(--dw-gold);
	color: var(--dw-gold);
}

.dw-lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	border-radius: 9999px;
	background: oklch(1 0 0 / 0.06);
	border: 1px solid oklch(1 0 0 / 0.18);
	color: var(--dw-ivory);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 200ms var(--dw-ease), border-color 200ms var(--dw-ease), color 200ms var(--dw-ease);
	z-index: 2;
}
.dw-lightbox__nav:hover {
	background: oklch(1 0 0 / 0.12);
	border-color: var(--dw-cyan);
	color: var(--dw-cyan);
}
.dw-lightbox__nav--prev { left: 20px; }
.dw-lightbox__nav--next { right: 20px; }

@media (max-width: 640px) {
	.dw-lightbox__nav { width: 44px; height: 44px; }
	.dw-lightbox__nav--prev { left: 8px; }
	.dw-lightbox__nav--next { right: 8px; }
}

.dw-lightbox__stage {
	margin: 0;
	max-width: min(1200px, 100%);
	max-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.dw-lightbox__img {
	max-width: 100%;
	max-height: calc(100vh - 160px);
	width: auto;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 30px 80px -20px oklch(0 0 0 / 0.6);
	opacity: 0;
	transform: scale(0.96);
	transition: opacity 350ms var(--dw-ease), transform 350ms var(--dw-ease);
	user-select: none;
	-webkit-user-drag: none;
}
@media (max-width: 640px) {
	.dw-lightbox { padding: 12px; }
	.dw-lightbox__img { max-height: calc(100vh - 120px); }
	.dw-lightbox__close { top: 12px; right: 12px; width: 40px; height: 40px; }
}
.dw-lightbox__img.is-loaded {
	opacity: 1;
	transform: none;
}

.dw-lightbox__caption {
	color: oklch(0.98 0.008 85 / 0.7);
	font-size: 13px;
	letter-spacing: 0.1em;
	text-align: center;
	max-width: 800px;
}

.dw-lightbox__counter {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	color: oklch(0.98 0.008 85 / 0.7);
	font-size: 12px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
}

/* -------------------------------------------------------------------------
   WP admin bar offset
   ------------------------------------------------------------------------- */
@media screen and (min-width: 783px) {
	body.admin-bar .dw-nav { top: 32px; }
}
@media screen and (max-width: 782px) {
	body.admin-bar .dw-nav { top: 46px; }
}
