/**
 * Underwater Scooter Rentals — main stylesheet.
 *
 * Reference canvas: 1920px. Every desktop value below is the Figma value; the
 * fluid middle term of each clamp() is that value expressed as a percentage of
 * 1920 (e.g. 88px -> 4.583vw), so the layout scales proportionally between
 * breakpoints instead of only shrinking text.
 *
 * Contents
 *  1. Layout primitives
 *  2. Buttons
 *  3. Header + navigation
 *  4. Mobile navigation
 *  5. Hero
 *  6. What is an Underwater Scooter
 *  7. See It In Action
 *  8. Choose Your Adventure
 *  9. How It Works
 * 10. Ways to Enjoy
 * 11. Footer
 * 12. Blog, page, 404 and utility content
 * 13. Motion
 */

/* ===========================================================================
   1. LAYOUT PRIMITIVES
   =========================================================================== */

.site {
	position: relative;
	isolation: isolate;
}

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

.site-container--narrow {
	width: min(100% - (var(--container-gutter) * 2), 900px);
}

.section {
	position: relative;
	padding-block: clamp(48px, 4.17vw, 80px);
}

.section--about {
	padding-block: clamp(44px, 3.65vw, 70px) clamp(48px, 4.17vw, 80px);
	background-color: var(--color-white);
}

.section--action {
	padding-block: clamp(44px, 3.75vw, 72px) clamp(48px, 4.17vw, 80px);
	background-color: var(--color-surface-muted);
}

.section--adventures {
	background-color: var(--color-white);
}

.section--how {
	padding-block: clamp(44px, 3.65vw, 70px) clamp(48px, 4.17vw, 80px);
	background-color: var(--color-surface-muted);
}

.section--ways {
	padding-block: clamp(44px, 3.65vw, 70px) clamp(48px, 4.17vw, 80px);
	background-color: var(--color-white);
}

/* Shared section heading ---------------------------------------------------- */

.section-heading {
	max-width: 1200px;
}

.section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.section-heading__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(24px, 20.226px + 1.0484vw, 37.0px); /* 50px @1920 */
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--color-heading);
}

.section-heading--primary .section-heading__title {
	color: var(--color-primary);
}

.section-heading__description {
	margin: clamp(12px, 1.04vw, 20px) auto 0;
	max-width: 1100px;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(16px, 14.258px + 0.4839vw, 22.0px); /* 28px @1920 */
	line-height: 1.6;
	color: var(--color-body);
}

/* Section-specific heading sizes straight from the Figma. */
.section--action .section-heading__title,
.section--how .section-heading__title {
	font-size: clamp(28px, 2.5vw, 48px); /* 48px @1920 */
}

.section--how .section-heading__description {
	font-size: clamp(15px, 1.406vw, 27px); /* 27px @1920 */
}

/* ===========================================================================
   2. BUTTONS
   =========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 2px solid transparent;
	border-radius: var(--radius-pill);
	font-family: var(--font-heading);
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition:
		background-color var(--speed) var(--ease-soft),
		border-color var(--speed) var(--ease-soft),
		color var(--speed) var(--ease-soft),
		box-shadow var(--speed) var(--ease-soft),
		transform var(--speed) var(--ease-out);
}

.btn__label {
	display: block;
}

/* Variants ---------------------------------------------------------------- */

.btn--primary {
	background-color: var(--color-primary);
	color: var(--color-white);
	box-shadow: var(--shadow-button);
}

.btn--primary:hover,
.btn--primary:focus-visible {
	background-color: var(--color-primary-deep);
	color: var(--color-white);
	box-shadow: var(--shadow-button-hover);
	transform: translateY(-2px);
}

.btn--outline {
	background-color: var(--color-white);
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.btn--outline:hover,
.btn--outline:focus-visible {
	background-color: var(--color-primary);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-button);
}

.btn--ghost {
	background-color: transparent;
	color: var(--color-primary);
}

.btn--ghost:hover {
	color: var(--color-primary-deep);
}

.btn:active {
	transform: translateY(0);
}

/* Sizes ------------------------------------------------------------------- */

.btn--sm {
	padding: 18px 36px; /* 341 x 54 in the header */
	font-size: clamp(14px, 0.99vw, 19px);
	line-height: 1;
}

.btn--md {
	padding: 19px 40px;
	font-size: clamp(15px, 1.09vw, 21px);
	line-height: 1.1;
}

.btn--lg {
	padding: clamp(14px, 1.15vw, 22px) clamp(26px, 2.4vw, 46px) clamp(15px, 1.25vw, 24px);
	font-size: clamp(16px, 10.077px + 0.7385vw, 26px);
	line-height: 1.6;
}

.btn--card {
	width: 100%;
	height: clamp(52px, 3.28vw, 63px);
	padding-inline: 24px;
	border-width: 3px;
	font-size: clamp(15px, 1.04vw, 20px);
	line-height: 1;
}

/* ===========================================================================
   3. HEADER + NAVIGATION
   =========================================================================== */

.site-header {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: var(--z-header);
	height: var(--header-height);
	/* Soft brand gradient behind the bar; an uploaded image overrides it. */
	background-color: #dcecf1;
	background-image: var(--header-bg, linear-gradient(180deg, #eef7f9 0%, #cfe4ec 100%));
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition:
		height var(--speed) var(--ease-soft),
		box-shadow var(--speed) var(--ease-soft),
		background-color var(--speed) var(--ease-soft);
}

/*
 * Transparent header.
 *
 * On the front page the hero starts at y=0 and the navigation floats on top of
 * it, exactly as in the Figma. A soft white gradient keeps the dark nav labels
 * legible over whatever the photograph happens to be doing up there.
 */
.has-transparent-header .site-header {
	background-color: transparent;
	background-image: none;
}

/*
 * Figma spec for the navigation bar:
 *   height 217, top -36  ->  181px visible
 *   background #FFFFFF8F ->  flat white at 56% (0x8F = 143/255)
 *
 * Flat, not a gradient, and with a hard bottom edge — matching the reference
 * exactly. The hero photograph shows through it.
 */
.has-transparent-header .site-header__veil {
	background-color: var(--color-header-veil);
	background-image: none;
}

/* The hero sits underneath, so no space is reserved above it. */
.has-transparent-header .site-header__spacer {
	display: none;
}

/* Once scrolled away from the hero the bar turns solid so it stays readable. */
.has-transparent-header .site-header.is-scrolled .site-header__veil {
	background-image: none;
	background-color: rgba(255, 255, 255, 0.88);
}

.site-header--sticky {
	position: fixed;
}

.site-header__veil {
	position: absolute;
	inset: 0;
	background-color: var(--color-header-veil); /* #FFFFFF8F */
	transition: background-color var(--speed) var(--ease-soft);
}

.site-header.is-scrolled {
	height: var(--header-height-scrolled);
	box-shadow: var(--shadow-header);
	-webkit-backdrop-filter: blur(16px) saturate(120%);
	backdrop-filter: blur(16px) saturate(120%);
}

.site-header.is-scrolled .site-header__veil {
	background-color: rgba(255, 255, 255, 0.74);
}

.site-header__spacer {
	height: var(--header-height);
}

.site-header__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(16px, 1.5vw, 32px);
	height: 100%;
}

/* Logo -------------------------------------------------------------------- */

.site-header__branding {
	flex: 0 0 auto;
}

.site-logo {
	display: block;
	line-height: 0;
}

.site-logo img,
.site-logo .custom-logo {
	width: clamp(112px, 10.1vw, 194px); /* 194px @1920 */
	height: auto;
	max-height: clamp(88px, 7.86vw, 151px);
	object-fit: contain;
	transition: width var(--speed) var(--ease-soft), max-height var(--speed) var(--ease-soft);
}

.site-header.is-scrolled .site-logo img,
.site-header.is-scrolled .site-logo .custom-logo {
	width: clamp(104px, 7.3vw, 140px);
	max-height: clamp(72px, 5.7vw, 110px);
}

/* Primary navigation ------------------------------------------------------ */

.main-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.5vw, 48px); /* 48px @1920 */
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-nav__list .menu-item {
	position: relative;
}

.main-nav__list a {
	position: relative;
	display: inline-block;
	padding-block: 8px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: clamp(13px, 0.938vw, 18px); /* 18px @1920 */
	line-height: 1.2;
	color: var(--color-heading);
	text-decoration: none;
	white-space: nowrap;
}

.main-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background-color: var(--color-primary);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--speed) var(--ease-out);
}

.main-nav__list a:hover {
	color: var(--color-primary);
}

.main-nav__list a:hover::after {
	transform: scaleX(1);
}

.main-nav__list .current-menu-item > a,
.main-nav__list .current_page_item > a,
.main-nav__list .current-menu-ancestor > a {
	color: var(--color-primary);
}

.main-nav__list .current-menu-item > a::after,
.main-nav__list .current_page_item > a::after,
.main-nav__list .current-menu-ancestor > a::after {
	transform: scaleX(1);
}

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

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 0 0 auto;
}

.site-header__cta {
	/*
	 * Plain px, not min(341px, 100%). The percentage resolved against the
	 * actions box, whose own width depends on this button — so during
	 * intrinsic sizing the 100% collapsed to zero, the actions box was
	 * measured as if the button were only as wide as its text, and the
	 * button then overflowed it and ran off the right of the screen once
	 * the Service Area button was sharing the row. Narrow screens are
	 * handled by the breakpoints in responsive.css instead.
	 */
	min-width: 341px; /* exact Figma width on desktop */
}

/* Hamburger --------------------------------------------------------------- */

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 52px;
	height: 52px;
	padding: 0 12px;
	background-color: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(7, 59, 76, 0.1);
	border-radius: 14px;
	transition: background-color var(--speed-fast) var(--ease-soft);
}

.nav-toggle:hover {
	background-color: var(--color-white);
}

.nav-toggle__bar {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--color-heading);
	border-radius: 2px;
	transition: transform var(--speed) var(--ease-out), opacity var(--speed-fast) linear;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ===========================================================================
   4. MOBILE NAVIGATION
   =========================================================================== */

.nav-overlay {
	position: fixed;
	inset: 0;
	z-index: calc(var(--z-nav-panel) - 1);
	background-color: rgba(0, 36, 49, 0.5);
	opacity: 0;
	transition: opacity var(--speed) var(--ease-soft);
}

.nav-overlay.is-visible {
	opacity: 1;
}

.mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: var(--z-nav-panel);
	display: flex;
	flex-direction: column;
	width: min(420px, 88vw);
	padding: 24px clamp(20px, 5vw, 36px) 36px;
	background-color: var(--color-white);
	box-shadow: -20px 0 60px rgba(0, 36, 49, 0.18);
	transform: translateX(100%);
	opacity: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	transition:
		transform var(--speed) var(--ease-out),
		opacity var(--speed) var(--ease-soft);
}

.mobile-nav.is-open {
	transform: translateX(0);
	opacity: 1;
}

.mobile-nav__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--color-line);
}

.site-logo--mobile img,
.site-logo--mobile .custom-logo {
	width: 120px;
	max-height: 94px;
}

.mobile-nav__close {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	background-color: var(--color-cream);
	border: 0;
	border-radius: 50%;
	color: var(--color-heading);
	transition: background-color var(--speed-fast) var(--ease-soft), color var(--speed-fast) var(--ease-soft);
}

.mobile-nav__close:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
}

.mobile-nav__nav {
	flex: 1;
	padding-block: 24px;
}

.mobile-nav__list {
	display: grid;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav__list a {
	display: block;
	padding: 14px 4px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 19px;
	color: var(--color-heading);
	text-decoration: none;
	border-bottom: 1px solid rgba(7, 59, 76, 0.07);
	transition: color var(--speed-fast) var(--ease-soft), padding-left var(--speed-fast) var(--ease-soft);
}

.mobile-nav__list a:hover,
.mobile-nav__list .current-menu-item > a,
.mobile-nav__list .current_page_item > a {
	color: var(--color-primary);
	padding-left: 10px;
}

.mobile-nav__cta {
	width: 100%;
}

body.has-nav-open {
	overflow: hidden;
}

/* ===========================================================================
   5. HERO
   =========================================================================== */

.hero {
	position: relative;
	display: flex;
	align-items: center;
	/*
	 * Full viewport height, but never shorter than the Figma proportion on very
	 * wide screens. 100svh (small viewport height) rather than 100vh so mobile
	 * browser chrome cannot push the CTA below the fold.
	 */
	/*
	 * The header is its own bar, so the hero takes the rest of the screen. No
	 * part of the footage sits underneath the navigation.
	 */
	min-height: calc(100svh - var(--header-height));
	padding-block: clamp(32px, 3.5vw, 64px) clamp(40px, 4.5vw, 84px);
	overflow: hidden;
	isolation: isolate;
	background-color: var(--color-dark);
}

@supports not (min-height: 100svh) {
	.hero {
		min-height: calc(100vh - var(--header-height));
	}
}

/* Where the header is not transparent (inner pages) the hero keeps its ratio. */
body:not(.has-transparent-header) .hero {
	min-height: clamp(560px, 56.875vw, 1092px);
	padding-block: clamp(72px, 7vw, 130px);
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: -3;
	background-image: var(--hero-poster);
	background-size: cover;
	background-position: var(--hero-focal, 50% 25%);
}

/*
 * The hero is taller than the 1920x1092 design frame on most laptops, so
 * object-fit crops vertically. Anchoring above centre keeps the subject of the
 * photograph below the navigation instead of letting their head run into it.
 * Adjustable from the Customizer.
 */
.hero__video.is-poster-only {
	display: none;
}

.hero__video,
.hero__fallback-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--hero-focal, 50% 25%);
}

.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -2;
	background-color: rgba(0, 36, 49, var(--hero-overlay-opacity, 0.3));
	mix-blend-mode: multiply;
}

/* A whisper of extra contrast behind the copy — keeps the headline legible on
   bright frames without darkening the footage. */
.hero__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(ellipse at 50% 48%, rgba(0, 36, 49, 0.28) 0%, rgba(0, 36, 49, 0) 68%);
}

.hero__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: var(--color-white);
}

/* Eyebrow pill ------------------------------------------------------------ */

.hero__eyebrow {
	margin: 0;
	padding: 12px 24px;
	/*
	 * Frosted glass: the water needs to stay visible through the pill, so the
	 * fill is kept low and the blur does the work. saturate() stops the blurred
	 * blues going grey, and the inset highlight gives it the glass edge.
	 */
	background-color: rgba(255, 255, 255, 0.14);
	border: 1.5px solid rgba(255, 255, 255, 0.38);
	border-radius: var(--radius-pill);
	-webkit-backdrop-filter: blur(18px) saturate(150%);
	backdrop-filter: blur(18px) saturate(150%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.45),
		0 6px 24px rgba(0, 36, 49, 0.16);
}

/* Without backdrop-filter the pill would be a near-invisible white box. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.hero__eyebrow {
		background-color: rgba(7, 59, 76, 0.42);
	}
}

.hero__eyebrow-text {
	display: block;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: clamp(10px, 0.885vw, 17px);
	line-height: 1.24;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-white);
}

/* Headline ---------------------------------------------------------------- */

.hero__title {
	max-width: 1600px;
	margin: clamp(18px, 1.67vw, 32px) 0 0;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: clamp(26px, 20.774px + 1.4516vw, 44px); /* 64px @1920 — trimmed from the comp at the client's request */
	line-height: 1.2; /* 105.6 / 88 */
	letter-spacing: -0.0218em; /* -1.92px @88px */
	text-transform: uppercase;
	text-wrap: balance;
	color: var(--color-white);
}

.hero__description {
	max-width: 1194px;
	margin: clamp(16px, 1.56vw, 30px) 0 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(16px, 13.097px + 0.8065vw, 26.0px); /* 36px @1920 */
	line-height: 1.156; /* 41.6 / 36 */
	color: var(--color-white);
}

.hero__actions {
	margin-top: clamp(22px, 2.08vw, 40px);
}

.hero__cta {
	min-width: min(707px, 100%); /* exact Figma width on desktop */
}

/* ===========================================================================
   6. WHAT IS AN UNDERWATER SCOOTER
   =========================================================================== */

.about__grid {
	display: grid;
	grid-template-columns: minmax(0, 965fr) minmax(0, 787fr);
	gap: clamp(32px, 2.7vw, 52px);
	/*
	 * Figma places the image at 965x1027 from y=1157 and the text block at
	 * 928.74 tall from y=1203 — leaving 46px above the text and 52px below it.
	 * Two near-equal gaps: the text is centred against the image, and the image
	 * keeps its own ratio rather than being cropped to the text.
	 */
	align-items: center;
}

.about__media {
	margin: 0;
	border-radius: var(--radius-large); /* 24px, per the spec */
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	line-height: 0;
}

.about__image {
	width: 100%;
	aspect-ratio: 965 / 1027; /* the exact frame from the design */
	object-fit: cover;
	object-position: center;
}

.about__content {
	/* Top aligned, matching the reference. */
	padding-block: 0;
}

.about__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(24px, 20.516px + 0.9677vw, 36.0px); /* 48px @1920 */
	line-height: 1.3; /* 62.4 / 48 */
	color: var(--color-heading);
}

.about__text {
	margin: clamp(16px, 1.67vw, 32px) 0 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(16px, 14.403px + 0.4435vw, 21.5px); /* 27px @1920 */
	line-height: 1.6; /* 43.2 / 27 */
	color: var(--color-body);
}

/* Feature rows ------------------------------------------------------------ */

.about__features {
	display: grid;
	gap: clamp(20px, 1.67vw, 32px);
	margin: clamp(26px, 2.4vw, 46px) 0 0;
	padding: 0;
	list-style: none;
}

.feature {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: clamp(12px, 1.04vw, 20px);
	align-items: start;
}

.feature__icon {
	display: grid;
	place-items: center;
	width: clamp(42px, 3.07vw, 59px); /* 59 x 64 */
	height: clamp(46px, 3.33vw, 64px);
	background-color: var(--color-icon-bg); /* #3964761A */
	border-radius: var(--radius-pill);
	color: var(--color-heading);
	flex-shrink: 0;
}

.feature__icon svg {
	width: clamp(16px, 1.15vw, 22px);
	height: auto;
}

.feature__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: clamp(19px, 16.532px + 0.6855vw, 27.5px); /* 36px @1920 */
	line-height: 1.4; /* 50.4 / 36 */
	color: var(--color-dark);
}

.feature__text {
	margin: clamp(2px, 0.3vw, 6px) 0 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(15px, 13.694px + 0.3629vw, 19.5px); /* 24px @1920 */
	line-height: 1.5; /* 36 / 24 */
	color: var(--color-body);
}

.about__actions {
	margin-top: clamp(26px, 2.4vw, 46px);
}

/* ===========================================================================
   7. SEE IT IN ACTION
   =========================================================================== */

.action__media {
	position: relative;
	margin: clamp(24px, 2.92vw, 56px) 0 0;
	aspect-ratio: 1804 / 779;
	border-radius: var(--radius-large);
	overflow: hidden;
	background-color: var(--color-dark);
	line-height: 0;
}

.action__image,
.action__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.action__media-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(to bottom, rgba(0, 36, 49, 0.08) 0%, rgba(0, 36, 49, 0) 45%);
}

.action__media--video .action__media-overlay {
	display: none;
}

.action__cta {
	margin-top: clamp(24px, 3.13vw, 60px);
	text-align: center;
}

.action__cta-text {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(22px, 18.226px + 1.0484vw, 35.0px); /* 48px @1920 */
	line-height: 1.3; /* 62.4 / 48 */
	color: var(--color-heading);
}

.action__button {
	margin-top: clamp(18px, 2.08vw, 40px);
	min-width: min(440px, 100%); /* exact Figma width on desktop */
}

/* ===========================================================================
   8. CHOOSE YOUR ADVENTURE
   =========================================================================== */

.adventures__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(20px, 1.957vw, 37.57px); /* 37.57px @1920 */
	align-items: stretch;
	margin-top: clamp(30px, 2.92vw, 56px);
}

.rental-card {
	display: flex;
	flex-direction: column;
	background-color: rgba(255, 255, 255, 0.7); /* #FFFFFFB2 */
	border: 1.57px solid rgba(255, 255, 255, 0.3); /* #FFFFFF4D */
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
	-webkit-backdrop-filter: blur(31px);
	backdrop-filter: blur(31px);
	overflow: hidden;
	transition:
		transform var(--speed) var(--ease-out),
		box-shadow var(--speed) var(--ease-soft),
		border-color var(--speed) var(--ease-soft);
}

.rental-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 26px 60px rgba(7, 59, 76, 0.12);
}

.rental-card--popular {
	border: 2px solid var(--color-primary);
}

.rental-card__media {
	position: relative;
	aspect-ratio: 576 / 300;
	overflow: hidden;
	line-height: 0;
	background-color: var(--color-cream);
}

.rental-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform var(--speed-slow) var(--ease-out);
}

.rental-card:hover .rental-card__image {
	transform: scale(1.02);
}

.rental-card__badge {
	position: absolute;
	top: clamp(12px, 1.56vw, 30px);
	right: clamp(12px, 1.77vw, 34px);
	padding: 8px 14px;
	background-color: var(--color-badge);
	border-radius: 8px;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: clamp(10px, 0.73vw, 14px);
	line-height: 1;
	letter-spacing: 0.08em;
	color: var(--color-heading);
}

.rental-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: clamp(20px, 1.957vw, 37.57px); /* 37.57px @1920 */
}

.rental-card__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: clamp(21px, 18.593px + 0.6685vw, 29.29px);
	line-height: 1.4; /* 52.6 / 37.57 */
	color: var(--color-heading);
}

.rental-card__text {
	margin: clamp(8px, 0.73vw, 14px) 0 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(15px, 13.548px + 0.4032vw, 20.0px);
	line-height: 1.5; /* 37.57 / 25 */
	color: var(--color-body);
}

.rental-card__pricing {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: clamp(18px, 1.77vw, 34px);
}

.rental-card__duration {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(15px, 13.548px + 0.4032vw, 20.0px);
	line-height: 1.4;
	color: var(--color-body);
}

.rental-card__price {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: clamp(21px, 18.593px + 0.6685vw, 29.29px);
	line-height: 1.4;
	color: var(--color-heading);
	text-align: right;
}

.rental-card__button {
	margin-top: clamp(16px, 1.46vw, 28px);
}

/* ===========================================================================
   9. HOW IT WORKS
   =========================================================================== */

.steps {
	position: relative;
	margin-top: clamp(34px, 3.65vw, 70px);
}

.steps__connector {
	position: absolute;
	top: clamp(42px, 3.75vw, 72px); /* centre of a 144px circle */
	left: 10%;
	right: 10%;
	height: 1px;
	background-color: var(--color-line-strong);
	z-index: 0;
}

.steps__list {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: clamp(10px, 1.25vw, 24px);
	max-width: 1730px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.step__circle {
	display: grid;
	place-items: center;
	width: clamp(84px, 7.5vw, 144px); /* 144px @1920 */
	aspect-ratio: 1;
	background-color: var(--color-cream);
	border: 6px solid var(--color-white);
	border-radius: 50%;
	box-shadow: var(--shadow-soft);
	color: var(--color-heading);
	transition: transform var(--speed) var(--ease-out), box-shadow var(--speed) var(--ease-soft);
}

.step__icon-image {
	width: clamp(26px, 2.08vw, 40px);
	height: clamp(26px, 2.08vw, 40px);
	object-fit: contain;
}

.step__circle svg {
	width: clamp(24px, 2.08vw, 40px);
	height: auto;
}

.step--filled .step__circle {
	background-color: var(--color-primary);
	color: var(--color-white);
}

.step:hover .step__circle {
	transform: translateY(-3px);
	box-shadow: 0 20px 50px rgba(7, 59, 76, 0.14);
}

.step__title {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 6px;
	margin: clamp(12px, 1.3vw, 25px) 0 0;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: clamp(19px, 16.532px + 0.6855vw, 27.5px); /* 36px @1920 */
	line-height: 1.4; /* 50.4 / 36 */
	color: var(--color-heading);
}

/* ===========================================================================
   10. WAYS TO ENJOY (BENTO)
   =========================================================================== */

.bento {
	display: grid;
	grid-template-columns: minmax(0, 1193fr) minmax(0, 584fr);
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: clamp(14px, 1.3vw, 25px); /* 25px @1920 */
	height: clamp(520px, 42.03vw, 807px); /* 807px @1920 */
	margin-top: clamp(28px, 2.6vw, 50px);
}

.bento__tile {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--radius-tile);
	background-color: var(--color-dark);
	isolation: isolate;
	text-decoration: none;
}

.bento__tile--large {
	grid-row: span 2;
}

.bento__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform var(--speed-slow) ease;
}

.bento__gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 36, 49, 0.78) 0%,
		rgba(0, 36, 49, 0.34) 34%,
		rgba(0, 36, 49, 0) 64%
	);
	transition: opacity var(--speed) var(--ease-soft);
}

.bento__content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: clamp(20px, 1.875vw, 36px);
	transition: transform var(--speed) var(--ease-out);
}

.bento__tile--large .bento__content {
	padding: clamp(24px, 2.5vw, 48px);
}

.bento__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: clamp(20px, 17.454px + 0.7073vw, 28.77px); /* 37.55px @1920 */
	line-height: 1.4; /* 52.56 / 37.55 */
	color: var(--color-white);
}

.bento__text {
	margin: clamp(4px, 0.42vw, 8px) 0 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(15px, 13.548px + 0.4032vw, 20.0px); /* 25px @1920 */
	line-height: 1.5; /* 37.55 / 25 */
	color: rgba(255, 255, 255, 0.94);
}

.bento__tile--small .bento__title {
	font-size: clamp(18px, 1.72vw, 33px);
}

.bento__tile--small .bento__text {
	font-size: clamp(12px, 1.09vw, 21px);
}

@media (hover: hover) {
	.bento__tile:hover .bento__image {
		transform: scale(1.02);
	}

	.bento__tile:hover .bento__gradient {
		opacity: 1.08;
	}

	.bento__tile:hover .bento__content {
		transform: translateY(-3px);
	}
}

/* ===========================================================================
   11. FOOTER
   =========================================================================== */

.site-footer {
	background-color: var(--color-white);
	border-top: 1px solid var(--color-line);
	padding-block: clamp(44px, 4.17vw, 80px) clamp(22px, 2.08vw, 40px);
}

.site-footer__top {
	display: grid;
	grid-template-columns: minmax(0, 760px) minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 4.17vw, 80px);
	align-items: start;
}

.site-footer__logo {
	display: inline-block;
	line-height: 0;
}

.site-footer__logo-img {
	width: clamp(200px, 19.9vw, 382px); /* 382px @1920 */
	height: auto;
	object-fit: contain;
}

.site-footer__description {
	margin: clamp(14px, 1.15vw, 22px) 0 0;
	max-width: 672px;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(15px, 13.694px + 0.3629vw, 19.5px); /* 24px @1920 */
	line-height: 1.5; /* 36 / 24 */
	color: var(--color-body);
}

.site-footer__col {
	padding-top: clamp(0px, 2.92vw, 56px);
}

.site-footer__heading {
	margin: 0 0 clamp(12px, 1.25vw, 24px);
	font-family: var(--font-body);
	font-weight: 700;
	font-size: clamp(14px, 0.938vw, 18px); /* 18px @1920 */
	line-height: 1;
	letter-spacing: 1.8px;
	color: var(--color-heading);
}

.site-footer__list {
	display: grid;
	gap: clamp(8px, 0.63vw, 12px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__list a {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(15px, 1.25vw, 24px);
	line-height: 1.5;
	color: var(--color-body);
	text-decoration: none;
}

.site-footer__list a:hover {
	color: var(--color-primary);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.site-footer__widgets {
	margin-top: clamp(28px, 2.6vw, 50px);
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Bottom bar -------------------------------------------------------------- */

.site-footer__bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
	margin-top: clamp(28px, 3.02vw, 58px);
	padding-top: clamp(18px, 1.56vw, 30px);
	border-top: 1px solid var(--color-line);
}

.site-footer__copyright,
.site-footer__legal-list a,
.back-to-top {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: clamp(13px, 0.99vw, 19px);
	line-height: 1.5;
	color: var(--color-body);
}

.site-footer__copyright {
	margin: 0;
}

.site-footer__totop {
	justify-self: center;
}

.back-to-top {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: underline;
	text-underline-offset: 4px;
	transition: color var(--speed-fast) var(--ease-soft);
}

.back-to-top:hover,
.back-to-top:focus-visible {
	color: var(--color-primary);
}

.back-to-top__icon {
	opacity: 0;
	transform: translateY(3px);
	transition: opacity var(--speed-fast) var(--ease-soft), transform var(--speed-fast) var(--ease-out);
}

.back-to-top:hover .back-to-top__icon,
.back-to-top:focus-visible .back-to-top__icon {
	opacity: 1;
	transform: translateY(0);
}

.site-footer__legal {
	justify-self: end;
}

.site-footer__legal-list {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__legal-list .menu-item + .menu-item {
	position: relative;
	padding-left: 18px;
}

.site-footer__legal-list .menu-item + .menu-item::before {
	content: "|";
	position: absolute;
	left: 0;
	color: var(--color-line-strong);
}

.site-footer__legal-list a {
	text-decoration: none;
}

.site-footer__legal-list a:hover {
	color: var(--color-primary);
}

/* ===========================================================================
   12. BLOG, PAGE, 404, UTILITY
   =========================================================================== */

.site-main--archive,
.site-main--single,
.site-main--search,
.site-main--404,
.site-main--page {
	padding-block: clamp(48px, 4.5vw, 86px) clamp(56px, 5.2vw, 100px);
}

/*
 * A page that opens with a full-bleed banner needs no top padding — the gap
 * above the banner reads as a mistake. :has() lets the padding come off only
 * when a banner is actually the first thing on the page.
 */
.site-main--page:has(> .page-hero:first-child) {
	padding-top: 0;
}

/* Fallback for browsers without :has(). */
.site-main--banner {
	padding-top: 0;
}

.page-header {
	margin-bottom: clamp(28px, 2.6vw, 50px);
	text-align: center;
}

.page-header__title {
	margin: 0;
	font-size: clamp(28px, 2.5vw, 48px);
	line-height: 1.3;
	color: var(--color-heading);
}

.page-header__description {
	margin-top: 12px;
	color: var(--color-body);
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
	gap: clamp(20px, 1.96vw, 37px);
}

.post-card {
	display: flex;
	flex-direction: column;
	background-color: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	transition: transform var(--speed) var(--ease-out), box-shadow var(--speed) var(--ease-soft);
}

.post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 50px rgba(7, 59, 76, 0.12);
}

.post-card__media {
	display: block;
	aspect-ratio: 576 / 300;
	overflow: hidden;
	line-height: 0;
}

.post-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: clamp(18px, 1.5vw, 28px);
}

.post-card__title {
	margin: 0 0 8px;
	font-size: clamp(19px, 1.15vw, 24px);
	line-height: 1.35;
}

.post-card__title a {
	color: var(--color-heading);
	text-decoration: none;
}

.post-card__title a:hover {
	color: var(--color-primary);
}

.post-card__excerpt {
	margin: 10px 0 0;
	color: var(--color-body);
}

.post-card__more {
	margin-top: auto;
	padding-top: 16px;
	font-weight: 600;
	text-decoration: none;
}

.post-card__more::after {
	content: " →";
}

.entry__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 15px;
	color: var(--color-body);
}

.entry__header {
	margin-bottom: clamp(20px, 1.8vw, 34px);
	text-align: center;
}

.entry__title {
	margin: 0 0 12px;
	font-size: clamp(28px, 2.5vw, 48px);
	line-height: 1.25;
}

.entry__thumbnail {
	margin-bottom: clamp(20px, 1.8vw, 34px);
	border-radius: var(--radius-large);
	overflow: hidden;
	line-height: 0;
}

.entry__content {
	font-size: clamp(16px, 1.1vw, 20px);
	line-height: 1.75;
	color: var(--color-body);
}

.entry__content h2,
.entry__content h3,
.entry__content h4 {
	margin-top: 1.6em;
}

.entry__content--front {
	padding-block: clamp(40px, 4vw, 80px);
}

.entry__content img,
.entry__content .wp-block-image img {
	border-radius: var(--radius-large);
}

.entry__content blockquote {
	margin: 1.8em 0;
	padding: 4px 0 4px 24px;
	border-left: 4px solid var(--color-primary);
	color: var(--color-heading);
	font-style: italic;
}

/* Alignment support for the block editor. */
.alignwide {
	width: min(100%, 1400px);
	margin-inline: auto;
}

.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.alignleft {
	float: left;
	margin: 0 1.5em 1em 0;
}

.alignright {
	float: right;
	margin: 0 0 1em 1.5em;
}

.aligncenter {
	margin-inline: auto;
	display: block;
}

/* Pagination -------------------------------------------------------------- */

.usr-pagination {
	margin-top: clamp(32px, 3vw, 56px);
}

.usr-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.usr-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 46px;
	height: 46px;
	padding-inline: 12px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-pill);
	color: var(--color-heading);
	text-decoration: none;
	transition: background-color var(--speed-fast) var(--ease-soft), color var(--speed-fast) var(--ease-soft);
}

.usr-pagination .page-numbers:hover,
.usr-pagination .page-numbers.current {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-white);
}

/* Search form ------------------------------------------------------------- */

.search-form {
	display: flex;
	gap: 10px;
	max-width: 520px;
	margin-inline: auto;
}

.search-form__field {
	flex: 1;
	padding: 15px 22px;
	background-color: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-pill);
	color: var(--color-heading);
}

.search-form__field:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(2, 143, 168, 0.15);
}

/* 404 --------------------------------------------------------------------- */

.error-404 {
	text-align: center;
}

.error-404__code {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: clamp(64px, 8vw, 150px);
	line-height: 1;
	color: var(--color-primary);
	opacity: 0.18;
}

.error-404__title {
	margin: 12px 0 0;
	font-size: clamp(26px, 2.3vw, 44px);
}

.error-404__text {
	margin: 14px auto 0;
	max-width: 620px;
	color: var(--color-body);
}

.error-404__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 28px;
}

.error-404__search {
	margin-top: 34px;
}

/* No results / widgets ---------------------------------------------------- */

.no-results {
	max-width: 640px;
	margin-inline: auto;
	text-align: center;
}

.no-results__title {
	font-size: clamp(22px, 1.8vw, 34px);
}

.site-sidebar {
	padding-block: clamp(32px, 3vw, 56px);
	background-color: var(--color-cream);
}

.widget {
	margin-bottom: 32px;
}

.widget__title {
	font-size: 20px;
	color: var(--color-heading);
}

/* Comments ---------------------------------------------------------------- */

.comments {
	margin-top: clamp(40px, 3.6vw, 70px);
	padding-top: clamp(28px, 2.4vw, 46px);
	border-top: 1px solid var(--color-line);
}

.comments__list {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
}

.comments__list .comment-body {
	padding: 20px 0;
	border-bottom: 1px solid var(--color-line);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid var(--color-line);
	border-radius: 14px;
	background-color: var(--color-white);
}

.comment-form textarea {
	min-height: 160px;
	resize: vertical;
}

/* Post navigation --------------------------------------------------------- */

.post-navigation {
	margin-top: clamp(32px, 3vw, 56px);
	padding-top: 24px;
	border-top: 1px solid var(--color-line);
}

.post-navigation .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.post-navigation .nav-subtitle {
	display: block;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.post-navigation a {
	color: var(--color-heading);
	text-decoration: none;
	font-weight: 600;
}

.post-navigation a:hover {
	color: var(--color-primary);
}

/* ===========================================================================
   13. MOTION
   =========================================================================== */

/*
 * Animations are gated behind .usr-js, which an inline <head> script adds
 * before first paint. Without JavaScript nothing is ever hidden, and because
 * the class lands pre-paint there is no flash of visible-then-hidden content.
 */

.usr-js [data-reveal] {
	opacity: 0;
	transition:
		opacity var(--speed-slow) var(--ease-out),
		transform var(--speed-slow) var(--ease-out);
	transition-delay: var(--reveal-delay, 0ms);
}

.usr-js [data-reveal="fade-up"] {
	transform: translateY(26px);
}

.usr-js [data-reveal="scale-in"] {
	transform: scale(0.985);
}

.usr-js [data-reveal].is-revealed {
	opacity: 1;
	transform: none;
}

/*
 * The hero entrance is a CSS animation rather than a JS-toggled class: it runs
 * on load with no script dependency, so a failed request can never leave the
 * headline invisible.
 */
.usr-js [data-hero-item] {
	opacity: 0;
	animation: usr-hero-in 700ms var(--ease-out) both;
	animation-delay: var(--hero-delay, 0ms);
}

@keyframes usr-hero-in {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

/*
 * Failsafe: if main.js never boots, an inline timer adds .usr-no-anim and all
 * scroll-reveal content is shown. Declared last so it wins on equal
 * specificity — no !important needed.
 */
.usr-js.usr-no-anim [data-reveal] {
	opacity: 1;
	transform: none;
	transition: none;
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.usr-js [data-reveal],
	.usr-js [data-hero-item],
	.usr-js [data-reveal="fade-up"],
	.usr-js [data-reveal="scale-in"] {
		opacity: 1;
		transform: none;
	}

	.rental-card:hover,
	.post-card:hover,
	.btn:hover,
	.step:hover .step__circle {
		transform: none;
	}

	.bento__tile:hover .bento__image {
		transform: none;
	}
}

/* ===========================================================================
   14. ADMIN BAR + PLUGIN GUARDS
   =========================================================================== */

body.admin-bar .site-header--sticky {
	top: 32px;
}

/* Elementor-built pages must never inherit theme spacing on the content root. */
body.usr-elementor-content .site-main--page,
body.usr-elementor-content .site-main--front,
body.usr-elementor-content .site-main--elementor {
	padding-block: 0;
}

/* ---------------------------------------------------------------------------
 * 15. Sections inside Elementor
 *
 * When a section is dropped into Elementor with a Shortcode widget it lands
 * inside a width-constrained container, which would squash a full-bleed design.
 * These rules let it break back out to the full viewport width. Safe because
 * html/body carry overflow-x: clip.
 * ------------------------------------------------------------------------ */

.elementor-widget-shortcode > .elementor-widget-container > .section,
.elementor-widget-shortcode > .elementor-widget-container > .hero,
.elementor-widget-shortcode > .section,
.elementor-widget-shortcode > .hero {
	width: 100vw;
	max-width: 100vw;
	margin-inline: calc(50% - 50vw);
}

/* Elementor resets some inherited typography; restore ours inside the canvas. */
.elementor-widget-shortcode .section,
.elementor-widget-shortcode .hero {
	font-family: var(--font-body);
	color: var(--color-body);
	text-align: initial;
}

.elementor-widget-shortcode .section-heading,
.elementor-widget-shortcode .section-heading--center {
	text-align: center;
}

/*
 * Inside the editor canvas a 100svh hero would fill the whole preview and hide
 * the drop zone, so it is capped while editing only.
 */
.elementor-editor-active .elementor-widget-shortcode .hero {
	min-height: min(100svh, 720px);
}

/* ---------------------------------------------------------------------------
 * 16. Large screens
 *
 * Below 1600px the type ramp is deliberately gentle, because a laptop is wide
 * but short — headline sizes taken straight off a 1920px comp overwhelm a
 * 900px-tall viewport. From 1600px up it climbs to the exact Figma sizes.
 * Both ramps meet at 1600px, so nothing jumps.
 * ------------------------------------------------------------------------ */

@media (min-width: 1600px) {
	.hero__title {
		font-size: clamp(44px, 56.0px - 6.25vw, 64px);
	}

	.hero__description {
		font-size: clamp(26.0px, 24.0px - 3.125vw, 36px);
	}

	.section-heading__title {
		font-size: clamp(37.0px, 28.0px - 4.0625vw, 50px);
	}

	.section-heading__description {
		font-size: clamp(22.0px, 8.0px - 1.875vw, 28px);
	}

	.about__title {
		font-size: clamp(36.0px, 24.0px - 3.75vw, 48px);
	}

	.about__text {
		font-size: clamp(21.5px, 6.0px - 1.7188vw, 27px);
	}

	.feature__title {
		font-size: clamp(27.5px, 15.0px - 2.6562vw, 36px);
	}

	.feature__text {
		font-size: clamp(19.5px, 3.0px - 1.4062vw, 24px);
	}

	.rental-card__title {
		font-size: clamp(29.29px, 12.11px - 2.5875vw, 37.57px);
	}

	.rental-card__text {
		font-size: clamp(20.0px, 5.0px - 1.5625vw, 25px);
	}

	.rental-card__price {
		font-size: clamp(29.29px, 12.11px - 2.5875vw, 37.57px);
	}

	.rental-card__duration {
		font-size: clamp(20.0px, 5.0px - 1.5625vw, 25px);
	}

	.step__title {
		font-size: clamp(27.5px, 15.0px - 2.6562vw, 36px);
	}

	.bento__title {
		font-size: clamp(28.77px, 15.13px - 2.7437vw, 37.55px);
	}

	.bento__text {
		font-size: clamp(20.0px, 5.0px - 1.5625vw, 25px);
	}

	.site-footer__description {
		font-size: clamp(19.5px, 3.0px - 1.4062vw, 24px);
	}

	.action__cta-text {
		font-size: clamp(35.0px, 30.0px - 4.0625vw, 48px);
	}
}

/* ---------------------------------------------------------------------------
 * 17. Goggles & masks
 *
 * A product row rather than a feature row: photo on a light card, name, price,
 * and a booking button. Sits between the About section and See It In Action.
 * ------------------------------------------------------------------------ */

.section--goggles {
	background-color: var(--color-white);
}

/*
 * Fixed-width columns rather than 1fr. With two products a 1fr grid gave each
 * card half the 1804px container — a 900px-wide card with a square photo, which
 * dwarfed everything around it. Capping the column keeps the cards the size of
 * a product tile whether there are two of them or four.
 */
.goggles__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 280px));
	justify-content: center;
	gap: clamp(18px, 1.6vw, 30px);
	margin-top: clamp(24px, 2.2vw, 42px);
}

.goggles__card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.7);
	border: 1.57px solid rgba(255, 255, 255, 0.3);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
}

.goggles__media {
	aspect-ratio: 4 / 3;
	background-color: var(--color-surface-muted);
}

.goggles__image {
	width: 100%;
	height: 100%;
	/* contain, not cover: product shots are usually cut out on white and
	   cropping them lops the edges off the goggles. */
	object-fit: contain;
	padding: clamp(10px, 0.9vw, 16px);
}

.goggles__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 6px;
	padding: clamp(14px, 1.15vw, 22px);
	text-align: center;
}

.goggles__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: clamp(16px, 13.677px + 0.6452vw, 20px);
	line-height: 1.35;
	color: var(--color-heading);
}

.goggles__text {
	margin: 0;
	font-size: clamp(13px, 11.839px + 0.3226vw, 15px);
	line-height: 1.5;
	color: var(--color-body);
}

.goggles__price {
	margin: 4px 0 0;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(18px, 15.677px + 0.6452vw, 22px);
	color: var(--color-primary);
}

.goggles__button {
	margin-top: auto;
	align-self: stretch;
}

/* ---------------------------------------------------------------------------
 * 18. Inner pages — About and How It Works
 * ------------------------------------------------------------------------ */

.section--muted {
	background-color: var(--color-surface-muted);
}

/* Banner ------------------------------------------------------------------ */

.page-hero {
	/* Fallback when no banner image is set: a clean brand gradient. */
	background-image: linear-gradient(160deg, #073b4c 0%, #028fa8 100%);
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(320px, 36vw, 620px);
	padding-block: clamp(56px, 6vw, 110px);
	overflow: hidden;
	isolation: isolate;
	background-color: var(--color-dark);
	background-image: var(--page-hero-image);
	background-size: cover;
	background-position: center;
}

.page-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(0, 36, 49, 0.55) 0%, rgba(0, 36, 49, 0.72) 100%);
}

.page-hero__inner {
	max-width: 980px;
	margin-inline: auto;
	text-align: center;
	color: var(--color-white);
}

.page-hero__eyebrow {
	margin: 0 0 12px;
	font-size: clamp(12px, 10.6px + 0.29vw, 15px);
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
}

.page-hero__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: clamp(28px, 16.9px + 3.08vw, 60px);
	line-height: 1.15;
	text-transform: uppercase;
	color: var(--color-white);
}

.page-hero__text {
	max-width: 720px;
	margin: clamp(14px, 1.2vw, 22px) auto 0;
	font-size: clamp(15px, 13.6px + 0.39vw, 19px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

.page-hero__actions {
	margin-top: clamp(20px, 1.8vw, 34px);
}

/* Story ------------------------------------------------------------------- */

.story__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 3.1vw, 60px);
	align-items: center;
}

.story__grid--reverse .story__media {
	order: 2;
}

.story__media,
.split__media {
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius-large);
	box-shadow: var(--shadow-soft);
	line-height: 0;
}

.story__image,
.split__image {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.story__eyebrow {
	margin: 0 0 10px;
	font-size: clamp(12px, 10.6px + 0.29vw, 15px);
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.story__title {
	margin: 0 0 14px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(24px, 17.1px + 1.92vw, 44px);
	line-height: 1.25;
	color: var(--color-heading);
}

.story__text p {
	margin: 0 0 12px;
	font-size: clamp(15px, 13.6px + 0.39vw, 19px);
	line-height: 1.7;
	color: var(--color-body);
}

.story__bullets,
.checklist {
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.story__bullets li,
.checklist li {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	font-size: clamp(14px, 12.6px + 0.39vw, 18px);
	line-height: 1.55;
	color: var(--color-body);
}

.story__bullets .usr-icon,
.checklist .usr-icon {
	margin-top: 2px;
	color: var(--color-primary);
	flex: none;
}

/* Story highlight --------------------------------------------------------- */

.story__highlight {
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
	align-items: flex-start;
	margin-top: clamp(24px, 2vw, 38px);
	padding: clamp(18px, 1.5vw, 28px) clamp(26px, 2.2vw, 42px);
	background-color: var(--color-surface-muted);
	border-radius: var(--radius-large);
}

.story__highlight-value {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(30px, 20.8px + 2.5vw, 56px);
	line-height: 1.05;
	color: var(--color-primary);
}

.story__highlight-label {
	font-size: clamp(14px, 12.6px + 0.39vw, 18px);
	color: var(--color-body);
}

/* Split ------------------------------------------------------------------- */

.split__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 3.1vw, 60px);
	align-items: center;
}

.split__grid--reverse .split__content {
	order: 2;
}

.split__panel {
	padding: clamp(24px, 2.4vw, 46px);
	background-color: var(--color-heading);
	border-radius: var(--radius-large);
	color: var(--color-white);
}

.split__panel-icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-bottom: 16px;
	background-color: rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	color: var(--color-white);
}

.split__panel-title {
	margin: 0 0 8px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: clamp(20px, 15.4px + 1.28vw, 30px);
	color: var(--color-white);
}

.checklist--light li {
	color: rgba(255, 255, 255, 0.88);
}

.checklist--light .usr-icon {
	color: var(--color-white);
}

/* Info cards -------------------------------------------------------------- */

.info-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: clamp(18px, 1.7vw, 32px);
	margin-top: clamp(28px, 2.6vw, 50px);
}

.info-card {
	padding: clamp(24px, 2.2vw, 42px);
	text-align: center;
	background-color: var(--color-white);
	border-radius: var(--radius-large);
	box-shadow: var(--shadow-soft);
}

.info-card__icon {
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	margin: 0 auto 16px;
	background-color: var(--color-icon-bg);
	border-radius: 50%;
	color: var(--color-primary);
}

.info-card__title {
	margin: 0 0 8px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: clamp(18px, 14.5px + 0.96vw, 26px);
	color: var(--color-heading);
}

.info-card__text {
	margin: 0;
	font-size: clamp(14px, 12.6px + 0.39vw, 18px);
	line-height: 1.6;
	color: var(--color-body);
}

/* Process ----------------------------------------------------------------- */

.process {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: clamp(18px, 1.7vw, 32px);
	margin: clamp(28px, 2.6vw, 50px) 0 0;
	padding: 0;
	list-style: none;
	counter-reset: process;
}

.process__item {
	padding: clamp(20px, 1.9vw, 36px);
	text-align: center;
	background-color: var(--color-white);
	border-radius: var(--radius-large);
	box-shadow: var(--shadow-soft);
}

.process__number {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin: 0 auto 14px;
	background-color: var(--color-heading);
	border-radius: 50%;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 20px;
	color: var(--color-white);
}

.process__title {
	margin: 0 0 6px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: clamp(16px, 13.2px + 0.77vw, 22px);
	color: var(--color-heading);
}

.process__text {
	margin: 0;
	font-size: clamp(13px, 11.6px + 0.39vw, 17px);
	line-height: 1.55;
	color: var(--color-body);
}

/* Closing CTA ------------------------------------------------------------- */

.cta-band {
	padding-block: clamp(48px, 4.5vw, 90px);
	background-color: var(--color-heading);
	color: var(--color-white);
}

.cta-band__inner {
	max-width: 820px;
	margin-inline: auto;
	text-align: center;
}

.cta-band__title {
	margin: 0 0 12px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(24px, 17.1px + 1.92vw, 44px);
	line-height: 1.25;
	color: var(--color-white);
}

.cta-band__text {
	margin: 0 0 26px;
	font-size: clamp(15px, 13.6px + 0.39vw, 19px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
}

.cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}

.cta-band .btn--ghost {
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--color-white);
}

@media (max-width: 900px) {
	.story__grid,
	.split__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.story__grid--reverse .story__media,
	.split__grid--reverse .split__content {
		order: 0;
	}
}

/* Booking page: the plugin's banner is full-bleed, so no container padding. */
.site-main--booking {
	padding-block: 0;
}

/* Banner video layer, shared by every inner-page banner. */
.page-hero__video {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------------------------------------------------------------------------
 * 19. Contact page
 * ------------------------------------------------------------------------ */

.contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 3vw, 58px);
	align-items: start;
}

.contact__details {
	display: grid;
	gap: 14px;
	margin: clamp(20px, 2vw, 34px) 0 0;
	padding: 0;
	list-style: none;
}

.contact__detail {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 14px 16px;
	background: var(--color-white);
	border: 1px solid rgba(7, 59, 76, 0.08);
	border-radius: 14px;
	box-shadow: var(--shadow-soft);
}

.contact__detail-icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	background: var(--color-primary);
	border-radius: 12px;
	color: var(--color-white);
}

.contact__detail-body { display: grid; gap: 2px; }

.contact__detail-label {
	font-size: clamp(13px, 11.8px + 0.32vw, 15px);
	font-weight: 600;
	color: var(--color-heading);
}

.contact__detail-value {
	font-size: clamp(13px, 11.8px + 0.32vw, 15px);
	color: var(--color-body);
	text-decoration: none;
}

a.contact__detail-value:hover { color: var(--color-primary); }

.contact__form-card {
	padding: clamp(22px, 2.2vw, 40px);
	background: #eef7fa;
	border-radius: var(--radius-large);
}

.contact__form-title {
	margin: 0 0 8px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: clamp(18px, 14.5px + 0.96vw, 26px);
	color: var(--color-heading);
}

.contact__form-note {
	margin: 0 0 18px;
	font-size: 14px;
	color: var(--color-body);
}

/* A visual stand-in until a real form plugin shortcode is added. */
.contact__placeholder {
	display: grid;
	gap: 12px;
}

.contact__placeholder span {
	height: 46px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(7, 59, 76, 0.08);
	border-radius: 10px;
}

.contact__placeholder span.is-wide { height: 110px; }

.contact__placeholder span.is-button {
	height: 48px;
	background: var(--color-primary);
	border: 0;
}

.contact__features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: clamp(14px, 1.4vw, 26px);
	margin: clamp(30px, 3vw, 56px) 0 clamp(4px, 0.5vw, 10px);
	padding: clamp(18px, 1.8vw, 30px);
	list-style: none;
	background: var(--color-surface-muted);
	border-radius: var(--radius-large);
}

.contact__feature {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	font-size: 14px;
	color: var(--color-body);
}

.contact__feature strong {
	display: block;
	font-size: 15px;
	color: var(--color-heading);
}

.contact__feature-icon {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	background: var(--color-icon-bg);
	border-radius: 50%;
	color: var(--color-primary);
}

/* ---------------------------------------------------------------------------
 * 20. Terms, Privacy and Waiver
 * ------------------------------------------------------------------------ */

.page-hero--compact {
	min-height: clamp(240px, 24vw, 380px);
}

.legal {
	max-width: 900px;
	margin-inline: auto;
	display: grid;
	gap: clamp(20px, 2vw, 34px);
}

.legal__item {
	padding: clamp(20px, 2vw, 34px);
	background: var(--color-white);
	border: 1px solid rgba(7, 59, 76, 0.08);
	border-radius: var(--radius-large);
	box-shadow: var(--shadow-soft);
}

.legal__title {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	margin: 0 0 10px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: clamp(18px, 14.5px + 0.96vw, 26px);
	line-height: 1.3;
	color: var(--color-heading);
}

.legal__num {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	background: var(--color-primary);
	border-radius: 10px;
	font-size: 15px;
	color: var(--color-white);
}

.legal__text p {
	margin: 0 0 12px;
	font-size: clamp(14px, 12.6px + 0.39vw, 17px);
	line-height: 1.75;
	color: var(--color-body);
}

.legal__text p:last-child { margin-bottom: 0; }

.legal__list {
	display: grid;
	gap: 10px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.legal__list li {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	font-size: clamp(14px, 12.6px + 0.39vw, 17px);
	line-height: 1.6;
	color: var(--color-body);
}

.legal__list .usr-icon {
	margin-top: 3px;
	color: var(--color-primary);
}

.legal__note {
	margin: 0;
	padding: 18px 20px;
	background: var(--color-surface-muted);
	border-radius: var(--radius-large);
	font-size: 14px;
	line-height: 1.6;
	color: var(--color-body);
}

@media (max-width: 900px) {
	.contact__grid { grid-template-columns: minmax(0, 1fr); }
}

/* Photo inside a split column (Included Equipment). */
.split__inline-media {
	margin: 0 0 clamp(18px, 1.6vw, 30px);
	overflow: hidden;
	border-radius: var(--radius-large);
	box-shadow: var(--shadow-soft);
	line-height: 0;
}

.split__inline-media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

/* Left-aligned banner (Contact) ------------------------------------------- */

/*
 * Left-aligned banner text.
 *
 * The container keeps its centred gutter — zeroing its margin was what pushed
 * the heading against the window edge. Only the content inside is constrained
 * and aligned left.
 */
.page-hero__inner--left {
	text-align: left;
}

.page-hero__inner--left > * {
	max-width: 620px;
	margin-inline: 0;
}

/* The heading gets more room than the body copy, so a short last word is not
   pushed onto a line of its own. */
.page-hero__inner--left .page-hero__title {
	max-width: 760px;
}

/* Social row -------------------------------------------------------------- */

.contact__social {
	margin-top: clamp(22px, 2vw, 34px);
}

.contact__social-title {
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--color-primary);
}

.contact__social-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact__social-list a {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	background: var(--color-primary);
	border-radius: 50%;
	color: var(--color-white);
	transition: transform 160ms var(--ease-out), background 160ms var(--ease-out);
}

.contact__social-list a:hover {
	background: var(--color-heading);
	transform: translateY(-2px);
}

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

.contact-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.contact-form__field { display: block; }
.contact-form__field--full { grid-column: 1 / -1; }

.contact-form__field > span {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-heading);
}

.contact-form__field input,
.contact-form__field textarea {
	width: 100%;
	padding: 13px 15px;
	background: var(--color-white);
	border: 1px solid rgba(7, 59, 76, 0.12);
	border-radius: 10px;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--color-body);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder { color: #9aa8ae; }

.contact-form__field input:focus,
.contact-form__field textarea:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 1px;
	border-color: var(--color-primary);
}

/* Off screen rather than display:none, which some bots skip. */
.contact-form__honey {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-form__submit {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 16px;
	padding: 15px 24px;
	background: var(--color-primary);
	border: 0;
	border-radius: 10px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	color: var(--color-white);
	cursor: pointer;
	transition: background 160ms var(--ease-out);
}

.contact-form__submit:hover { background: #027a90; }
.contact-form__submit:disabled { opacity: 0.65; cursor: default; }

.contact-form__status {
	margin: 12px 0 0;
	font-size: 14px;
	color: var(--color-body);
}

.contact-form__status.is-error { color: #b3261e; }
.contact-form__status.is-ok { color: #0d7a4f; font-weight: 600; }

@media (max-width: 600px) {
	.contact-form__row { grid-template-columns: minmax(0, 1fr); }
}

/* Extra bullet on a rental card. */
.rental-card__extras {
	display: grid;
	gap: 8px;
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
}

.rental-card__extras li {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 9px;
	align-items: start;
	font-size: clamp(13px, 11.6px + 0.39vw, 16px);
	line-height: 1.45;
	color: var(--color-body);
}

.rental-card__extras .usr-icon {
	margin-top: 2px;
	color: var(--color-primary);
}

/* ===========================================================================
   14. SERVICE AREA BUTTON + POPUP
   =========================================================================== */

.area-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	padding: 14px 22px;
	background-color: var(--color-white);
	border: 1.5px solid var(--color-primary);
	border-radius: var(--radius-pill);
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	color: var(--color-primary);
	cursor: pointer;
	transition:
		background-color var(--speed-fast) var(--ease-soft),
		color var(--speed-fast) var(--ease-soft),
		box-shadow var(--speed-fast) var(--ease-soft);
}

.area-btn:hover,
.area-btn:focus-visible {
	background-color: var(--color-primary);
	box-shadow: var(--shadow-button);
	color: var(--color-white);
}

.area-btn__icon {
	flex: 0 0 auto;
}

/* The header CTA is hidden below 1199px and the button moves into the mobile
   menu, so the desktop copy goes with it. */
.mobile-nav__area {
	justify-content: center;
	width: 100%;
	margin-bottom: 14px;
	padding: 15px 22px;
}

/* Popup ------------------------------------------------------------------- */

.area-modal__overlay {
	position: fixed;
	inset: 0;
	z-index: 959;
	background-color: rgba(0, 36, 49, 0.55);
	opacity: 0;
	transition: opacity var(--speed) var(--ease-soft);
}

.area-modal__overlay.is-visible {
	opacity: 1;
}

.area-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 960;
	width: min(560px, calc(100vw - 32px));
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	background-color: var(--color-white);
	border-radius: var(--radius-large);
	box-shadow: var(--shadow-soft);
	opacity: 0;
	transform: translate(-50%, -46%) scale(0.97);
	transition:
		opacity var(--speed-fast) var(--ease-soft),
		transform var(--speed) var(--ease-out);
}

.area-modal.is-open {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.area-modal__inner {
	position: relative;
	padding: clamp(26px, 2.4vw, 40px);
}

.area-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	background-color: transparent;
	border: 0;
	border-radius: var(--radius-pill);
	color: var(--color-heading);
	cursor: pointer;
	transition: background-color var(--speed-fast) var(--ease-soft);
}

.area-modal__close:hover,
.area-modal__close:focus-visible {
	background-color: var(--color-surface-muted);
}

.area-modal__title {
	margin: 0 44px 6px 0;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(22px, 1.5vw, 28px);
	line-height: 1.2;
	color: var(--color-heading);
}

.area-modal__intro {
	margin: 0 0 4px;
	font-size: 15px;
	line-height: 1.6;
	color: var(--color-body);
}

.area-modal__block {
	margin-top: 26px;
}

.area-modal__subtitle {
	margin: 0 0 14px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.area-modal__subtitle {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.area-modal__tag {
	padding: 4px 11px;
	border-radius: var(--radius-pill);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: none;
}

.area-modal__tag--free {
	background-color: #e4f7ee;
	color: #17794b;
}

.area-modal__tag--fee {
	background-color: var(--color-primary-soft);
	color: var(--color-primary);
}

.area-modal__note {
	margin: -6px 0 14px;
	font-size: 14px;
	line-height: 1.55;
	color: var(--color-body);
}

.area-modal__locations {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.area-modal__location {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 16px 18px;
	background-color: var(--color-surface-muted);
	border-radius: var(--radius-small);
}

.area-modal__pin {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	background-color: var(--color-white);
	border-radius: var(--radius-pill);
	color: var(--color-primary);
}

.area-modal__location-body {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.area-modal__location-name {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 16px;
	color: var(--color-heading);
}

.area-modal__location-address {
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--color-body);
}

.area-modal__areas {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.area-modal__area {
	padding: 9px 16px;
	background-color: var(--color-primary-soft);
	border: 1px solid rgba(2, 143, 168, 0.22);
	border-radius: var(--radius-pill);
	font-size: 14.5px;
	font-weight: 500;
	color: var(--color-heading);
}

@media (prefers-reduced-motion: reduce) {
	.area-modal,
	.area-modal__overlay {
		transition: none;
	}

	.area-modal {
		transform: translate(-50%, -50%);
	}
}
