/* Gymlease — mockup design tokens */
:root {
	--color-primary: #238ae6;
	--color-primary-hover: #1a7acc;
	--color-dark: #111827;
	--color-text: #374151;
	--color-muted: #6b7280;
	--color-border: #e5e7eb;
	--color-bg: #ffffff;
	--color-bg-alt: #f3f4f6;
	--color-success: #16a34a;
	--color-hero-overlay: rgba(15, 23, 42, 0.82);
	--font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 20px;
	--shadow-card: 0 20px 50px rgba(15, 23, 42, 0.12);
	--container: 1200px;
	--header-height: 80px;
	--hero-height: 67vh;
	--contact-hero-height: clamp(320px, calc(50vh - var(--header-height)), 400px);
	--hero-image-position: 50% 32%;
	--contact-hero-image-position: 50% 26%;
	--hero-sign-space: 0;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
}

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

a {
	color: var(--color-primary);
	text-decoration: none;
}

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

.container {
	width: min(100% - 2rem, var(--container));
	margin-inline: auto;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.5rem;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.2;
	border-radius: var(--radius-md);
	border: 2px solid transparent;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
	text-decoration: none;
}

.btn--primary {
	background: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
}

.btn--primary:hover {
	background: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
	color: #fff;
}

.btn--outline-light {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-color: #fff;
}

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

.btn--white:hover {
	background: #f8fafc;
	color: var(--color-primary-hover);
}

.btn--sm {
	padding: 0.625rem 1.125rem;
	font-size: 0.875rem;
}

.btn--block {
	width: 100%;
}

.card {
	background: #fff;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-card);
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--header-height);
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, transparent 100%);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	height: var(--header-height);
}

.site-header__brand {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	background: #fff;
	border-radius: var(--radius-sm);
	padding: 0.35rem 0.75rem;
	line-height: 0;
}

.site-header__logo,
.site-footer__logo {
	height: auto;
	max-height: 40px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}

.site-nav {
	flex: 1;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list a {
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 500;
	text-decoration: none;
}

.site-nav__list a:hover {
	color: rgba(255, 255, 255, 0.85);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}

.site-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
}

.site-header__phone:hover {
	color: #fff;
	opacity: 0.9;
}

.site-header__phone img {
	filter: brightness(0) invert(1);
}

.lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.2rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	flex-shrink: 0;
}

.lang-switch__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.625rem;
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.lang-switch__btn:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.lang-switch__btn.is-active {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.lang-switch__flag {
	width: 16px;
	height: 11px;
	border-radius: 2px;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
	flex-shrink: 0;
}

.lang-switch__flag--nl {
	background: linear-gradient(180deg, #ef3340 0 33.33%, #fff 33.33% 66.66%, #21468b 66.66% 100%);
}

.lang-switch__flag--en {
	background:
		linear-gradient(90deg, transparent 42%, #cf142b 42%, #cf142b 58%, transparent 58%),
		linear-gradient(0deg, transparent 42%, #cf142b 42%, #cf142b 58%, transparent 58%),
		#012169;
}

.lang-switch__code {
	letter-spacing: 0.04em;
}

.site-header__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 0.5rem;
	background: transparent;
	border: none;
	cursor: pointer;
}

.site-header__toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	border-radius: 1px;
}

/* Hero — 2/3 van viewporthoogte (1/3 kleiner dan full-screen) */
.hero {
	position: relative;
	min-height: var(--hero-height);
	padding-top: var(--header-height);
	background-image: var(--hero-image);
	background-size: cover;
	background-position: var(--hero-image-position);
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(15, 23, 42, 0.5) 0%,
		rgba(15, 23, 42, 0.08) 42%,
		transparent 62%
	);
}

.hero__overlay {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 40%) minmax(340px, 440px);
	justify-content: space-between;
	align-content: end;
	align-items: stretch;
	column-gap: 2rem;
	min-height: calc(var(--hero-height) - var(--header-height));
	padding: 1.5rem 0 1.25rem;
}

.hero__content,
.hero .calculator {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	height: 100%;
	min-height: 100%;
}

.hero__content {
	background: var(--color-hero-overlay);
	border-radius: var(--radius-lg);
	padding: 1.5rem 1.75rem 1.5rem;
	color: #fff;
	max-width: 100%;
	width: 100%;
}

.hero__main {
	flex: 1 1 auto;
	min-height: 0;
}

.hero__actions {
	flex: 0 0 auto;
	padding-top: 1rem;
	width: 100%;
}

.hero__actions .btn,
.hero .calculator > .hero__cta {
	min-height: 3rem;
	padding: 0.875rem 1.5rem;
	font-size: 0.9375rem;
}

.hero__actions .btn img,
.hero .hero__cta img {
	filter: brightness(0) invert(1);
}

.hero .calculator > .hero__cta {
	flex: 0 0 auto;
	margin-top: 0;
	padding-top: 1rem;
}

/* Calculator */
.hero .calculator {
	padding: 1.35rem 1.5rem 1.5rem;
	width: 100%;
}

.calculator__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
}

.calculator__label {
	margin: 0.75rem 0 0.5rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-dark);
}

.hero__eyebrow {
	margin: 0;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.hero__title {
	margin: 2rem 0 0.875rem;
	font-size: clamp(1.375rem, 2.8vw, 1.875rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.hero__text {
	margin: 0 0 1.125rem;
	font-size: 0.875rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
	max-width: 42ch;
}

.calculator {
	padding: 1.25rem;
}

.calculator__tabs {
	display: flex;
	gap: 0;
	border-bottom: 1px solid var(--color-border);
	margin: -0.25rem -0.25rem 1rem;
}

.calculator__tab {
	flex: 1;
	padding: 0.5rem 0.375rem;
	font-family: inherit;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-muted);
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	cursor: pointer;
	text-align: center;
	line-height: 1.3;
}

.calculator__tab.is-active {
	color: var(--color-primary);
	border-bottom-color: var(--color-primary);
}

.calculator__terms {
	display: flex;
	gap: 0.375rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.calculator__term {
	padding: 0.375rem 0.75rem;
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-muted);
	background: var(--color-bg-alt);
	border: 2px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	transition: all 0.15s;
}

.calculator__term.is-active {
	color: #fff;
	background: var(--color-primary);
	border-color: var(--color-primary);
}

.calculator__field label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-muted);
}

.calculator__input-wrap input::placeholder {
	color: var(--color-muted);
	font-weight: 500;
	font-size: 1.125rem;
	opacity: 0.75;
}

.calculator__input-wrap input:focus {
	outline: none;
}

.calculator__input-wrap {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin-bottom: 0.5rem;
	padding: 0.75rem 1rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-dark);
	background: #fff;
	border: 2px solid var(--color-border);
	border-radius: var(--radius-md);
	cursor: text;
	min-height: 3rem;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.calculator__input-wrap:focus-within {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(35, 138, 230, 0.15);
}

.calculator__input-wrap > span {
	flex-shrink: 0;
	padding-right: 0.625rem;
	border-right: 1px solid var(--color-border);
	color: var(--color-muted);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1;
}

.calculator__input-wrap input {
	width: 100%;
	border: none;
	font: inherit;
	color: inherit;
	background: transparent;
	outline: none;
	min-width: 0;
}

.calculator__range {
	width: 100%;
	height: 6px;
	margin-bottom: 1rem;
	appearance: none;
	background: var(--color-bg-alt);
	border-radius: 999px;
}

.calculator__range::-webkit-slider-thumb {
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--color-primary);
	cursor: pointer;
}

.calculator__field.is-hidden {
	display: none;
}

.calculator__summary {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
	margin-bottom: 1rem;
	padding: 0.75rem;
	background: var(--color-bg-alt);
	border-radius: var(--radius-md);
}

.calculator__stat-label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 500;
	color: var(--color-muted);
	margin-bottom: 0.25rem;
	line-height: 1.3;
}

.calculator__stat strong {
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--color-dark);
}

.calculator .btn img {
	filter: brightness(0) invert(1);
}

/* Features bar — volledig onder de hero, geen overlap */
.features-bar {
	position: relative;
	z-index: 2;
	margin-top: 0;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
	background: var(--color-bg);
}

.features-bar__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	background: #fff;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-card);
	padding: 2rem 2.5rem;
}

.features-bar__item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.features-bar__item img {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
}

.features-bar__item h2 {
	margin: 0 0 0.25rem;
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--color-dark);
}

.features-bar__item p {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--color-muted);
}

/* Sections */
.section {
	padding: 5rem 0;
}

.section--alt {
	background: var(--color-bg-alt);
}

.section__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.section__title {
	margin: 0 0 2.5rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--color-dark);
	text-align: center;
	letter-spacing: -0.02em;
}

.section__title--left {
	text-align: left;
	margin-bottom: 1.5rem;
}

.section__intro {
	max-width: 52ch;
	margin: -1.5rem auto 2.5rem;
	text-align: center;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--color-muted);
}

/* Equipment categories */
.equipment__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.equipment-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.equipment-card:hover {
	border-color: var(--color-primary);
	box-shadow: 0 12px 32px rgba(35, 138, 230, 0.12);
	transform: translateY(-2px);
}

.equipment-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	padding: 1.5rem;
	background: linear-gradient(180deg, #f8fafc 0%, var(--color-bg-alt) 100%);
}

.equipment-card__media img {
	width: 100%;
	height: 100%;
	max-height: 180px;
	object-fit: contain;
}

.equipment-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.25rem 1.5rem 1.5rem;
}

.equipment-card__body h3 {
	margin: 0 0 0.5rem;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--color-dark);
}

.equipment-card__body p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--color-muted);
}

.equipment__cta {
	display: flex;
	justify-content: center;
	margin-top: 2.5rem;
}

.equipment__cta .btn img {
	filter: brightness(0) invert(1);
}

/* Sectors */
.sectors__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.sector-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1rem;
	padding: 2rem 1.25rem;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	transition: box-shadow 0.2s, border-color 0.2s;
}

.sector-card:hover {
	border-color: var(--color-primary);
	box-shadow: 0 8px 24px rgba(35, 138, 230, 0.1);
}

.sector-card img {
	width: 56px;
	height: 56px;
}

.sector-card h3 {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--color-dark);
}

/* Process */
.process__steps {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 1.5rem;
}

.process__step {
	flex: 1;
	max-width: 280px;
	text-align: center;
}

.process__step img {
	margin: 0 auto 1.25rem;
	width: 64px;
	height: 64px;
}

.process__step h3 {
	margin: 0 0 0.5rem;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--color-dark);
}

.process__step p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--color-muted);
}

.process__arrow {
	font-size: 1.5rem;
	color: var(--color-primary);
	padding-top: 2rem;
	font-weight: 300;
}

/* Showroom */
.showroom__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2rem;
	align-items: stretch;
}

.showroom__info {
	align-self: start;
}

.showroom__contacts {
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
}

.showroom__contacts li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-size: 0.9375rem;
	color: var(--color-text);
}

.showroom__contacts a {
	color: var(--color-text);
	font-weight: 500;
}

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

.showroom__hours {
	padding: 1.5rem;
	height: 100%;
}

.showroom__hours h3 {
	margin: 0 0 1rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-dark);
}

.showroom__hours table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
}

.showroom__hours th {
	text-align: left;
	font-weight: 500;
	color: var(--color-muted);
	padding: 0.375rem 0;
	width: 45%;
}

.showroom__hours td {
	text-align: right;
	font-weight: 600;
	color: var(--color-dark);
	padding: 0.375rem 0;
}

.showroom__image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	height: 100%;
	min-height: 0;
}

.showroom__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* CTA banner */
.cta-banner {
	background: var(--color-primary);
	padding: 2.5rem 0;
}

.cta-banner__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.cta-banner__icon {
	flex-shrink: 0;
	filter: brightness(0) invert(1);
}

.cta-banner__text {
	flex: 1;
	margin: 0;
	color: #fff;
	font-size: 1.0625rem;
}

.cta-banner__text strong {
	display: block;
	font-size: 1.25rem;
	margin-bottom: 0.25rem;
}

/* Footer */
.site-footer {
	background: var(--color-dark);
	color: rgba(255, 255, 255, 0.75);
	padding-top: 4rem;
}

.site-footer__main {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 2rem;
	padding-bottom: 3rem;
}

.site-footer__logo-link {
	display: inline-block;
	margin-bottom: 1rem;
	background: #fff;
	border-radius: var(--radius-sm);
	padding: 0.35rem 0.75rem;
	line-height: 0;
}

.site-footer__logo {
	max-height: 36px;
}

.site-footer__tagline {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.6;
	max-width: 28ch;
}

.site-footer__heading {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: #fff;
}

.site-footer__col ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__col li {
	margin-bottom: 0.5rem;
}

.site-footer__col a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	text-decoration: none;
}

.site-footer__col a:hover {
	color: #fff;
}

.newsletter-form {
	display: flex;
	gap: 0;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input {
	flex: 1;
	padding: 0.75rem 1rem;
	border: none;
	background: transparent;
	color: #fff;
	font-family: inherit;
	font-size: 0.875rem;
	outline: none;
}

.newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.newsletter-form__submit {
	padding: 0.75rem 1rem;
	background: var(--color-primary);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.newsletter-form__submit img {
	filter: brightness(0) invert(1);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 0 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.8125rem;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__legal {
	display: flex;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__legal a {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.8125rem;
}

/* Content pages */
.content-area {
	padding-block: 2rem;
}

.content-area .entry-content {
	max-width: 70ch;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero {
		--hero-image-position: 50% 28%;
	}

	.hero__overlay {
		grid-template-columns: 1fr;
		justify-content: stretch;
		column-gap: 0;
		row-gap: 1.25rem;
		padding-right: 0;
		align-items: stretch;
	}

	.hero__content,
	.hero .calculator {
		min-height: 0;
		height: auto;
	}

	.features-bar__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.equipment__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sectors__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.showroom__grid {
		grid-template-columns: 1fr 1fr;
	}

	.showroom__image {
		grid-column: 1 / -1;
		height: auto;
		min-height: 280px;
	}

	.showroom__image img {
		min-height: 280px;
	}

	.site-footer__main {
		grid-template-columns: repeat(3, 1fr);
	}

	.site-footer__brand-col {
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	.site-header {
		background: rgba(15, 23, 42, 0.95);
	}

	.site-header__toggle {
		display: flex;
		margin-left: auto;
		order: 5;
	}

	.site-header__brand {
		order: 1;
	}

	.site-nav {
		order: 6;
	}

	.lang-switch {
		order: 4;
		margin-left: auto;
	}

	.site-header__actions {
		display: none;
	}

	.site-header__inner.container {
		flex-wrap: wrap;
	}

	.site-nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		right: 0;
		background: rgba(15, 23, 42, 0.98);
		padding: 1rem;
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.25s, opacity 0.25s;
	}

	.site-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.site-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.hero__content {
		padding: 1.5rem;
	}

	.features-bar {
		padding-top: 2rem;
	}

	.features-bar__grid {
		grid-template-columns: 1fr;
		padding: 1.5rem;
	}

	.equipment__grid {
		grid-template-columns: 1fr;
	}

	.process__steps {
		flex-direction: column;
		align-items: center;
	}

	.process__arrow {
		padding: 0;
		transform: rotate(90deg);
	}

	.calculator__summary {
		grid-template-columns: 1fr;
	}

	.showroom__grid {
		grid-template-columns: 1fr;
	}

	.cta-banner__inner {
		flex-direction: column;
		text-align: center;
	}

	.site-footer__main {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
}

/* Inner pages: solid header */
body:not(.home):not(.front-page) .site-header,
body.page-slug-contact .site-header {
	background: var(--color-dark);
}

/* Page hero (contact & inner pages) */
.page-hero {
	position: relative;
	padding-top: calc(var(--header-height) + 2rem);
	padding-bottom: 2.5rem;
	background-image: var(--hero-image);
	background-size: cover;
	background-position: var(--hero-image-position, 50% 32%);
	color: #fff;
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(15, 23, 42, 0.5) 0%,
		rgba(15, 23, 42, 0.08) 42%,
		transparent 62%
	);
}

.page-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 640px;
}

.page-hero--contact {
	margin-top: var(--header-height);
	min-height: var(--contact-hero-height);
	display: flex;
	align-items: flex-end;
	padding-top: 0;
	padding-bottom: 1.75rem;
	background-position: var(--contact-hero-image-position, 50% 26%);
}

.page-hero--contact::before {
	background:
		linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.35) 100%),
		linear-gradient(
			90deg,
			rgba(15, 23, 42, 0.5) 0%,
			rgba(15, 23, 42, 0.08) 42%,
			transparent 62%
		);
}

.page-hero--contact .page-hero__inner {
	padding-top: 0;
	max-width: 720px;
}

.page-hero--contact .page-hero__text {
	max-width: 62ch;
}

.page-hero--legal {
	margin-top: var(--header-height);
	min-height: var(--contact-hero-height);
	display: flex;
	align-items: flex-end;
	padding-top: 0;
	padding-bottom: 1.75rem;
	background-position: var(--contact-hero-image-position, 50% 26%);
}

.page-hero--legal::before {
	background:
		linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.35) 100%),
		linear-gradient(
			90deg,
			rgba(15, 23, 42, 0.5) 0%,
			rgba(15, 23, 42, 0.08) 42%,
			transparent 62%
		);
}

.page-hero--legal .page-hero__inner {
	padding-top: 0;
	max-width: 720px;
}

.page-hero--legal .page-hero__text {
	max-width: 62ch;
}

.page-hero__logo {
	display: inline-flex;
	background: #fff;
	border-radius: var(--radius-sm);
	padding: 0.5rem 1rem;
	margin-bottom: 1.25rem;
	line-height: 0;
}

.page-hero__logo-img {
	max-height: 48px;
	width: auto;
}

.page-hero__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.page-hero__text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
	max-width: 48ch;
}

.page-hero .section__eyebrow {
	margin-bottom: 0.75rem;
}

/* Contact page */
.contact {
	padding-top: 3rem;
}

/* Legal pages (privacy & cookies) */
.legal {
	padding-top: 3rem;
	padding-bottom: 4rem;
}

.legal__content {
	padding: 2.5rem;
	max-width: 820px;
	margin-inline: auto;
}

.legal__section + .legal__section {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--color-border);
}

.legal__section h2 {
	margin: 0 0 0.875rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-dark);
	letter-spacing: -0.01em;
}

.legal__section p {
	margin: 0 0 0.875rem;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--color-text);
}

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

.legal__section ul {
	margin: 0 0 0.875rem;
	padding-left: 1.25rem;
	color: var(--color-text);
}

.legal__section li {
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
	line-height: 1.65;
}

.legal__section li:last-child {
	margin-bottom: 0;
}

.legal__section a {
	color: var(--color-primary);
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 2px;
}

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

.legal__address {
	margin: 0 0 0.875rem;
	font-style: normal;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--color-text);
}

.legal__address strong {
	color: var(--color-dark);
}

.contact__grid {
	display: grid;
	grid-template-columns: minmax(280px, 360px) 1fr;
	gap: 2rem;
	align-items: stretch;
}

.contact__info,
.contact__form-wrap {
	padding: 2rem;
	height: 100%;
}

.contact__info {
	display: flex;
	flex-direction: column;
}

.contact__info h2,
.contact__form-wrap h2 {
	margin: 0 0 1.25rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-dark);
}

.contact__form-intro {
	margin: -0.5rem 0 1.5rem;
	font-size: 0.9375rem;
	color: var(--color-muted);
}

.contact__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	margin-bottom: 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--color-text);
}

.contact__list li:last-child {
	margin-bottom: 0;
}

.contact__list strong {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--color-dark);
}

.contact__list a {
	color: var(--color-text);
	font-weight: 500;
}

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

.contact-notice {
	margin-bottom: 1.25rem;
	padding: 0.875rem 1rem;
	border-radius: var(--radius-md);
	font-size: 0.875rem;
	font-weight: 500;
}

.contact-notice--success {
	background: #dcfce7;
	color: #166534;
	border: 1px solid #bbf7d0;
}

.contact-notice--error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.contact-form__field {
	margin-bottom: 1rem;
}

.contact-form__field label {
	display: block;
	margin-bottom: 0.375rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-dark);
}

.contact-form__field input,
.contact-form__field textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	font-family: inherit;
	font-size: 0.9375rem;
	color: var(--color-dark);
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(35, 138, 230, 0.15);
}

.contact-form__field textarea {
	resize: vertical;
	min-height: 140px;
}

.contact-form .btn {
	margin-top: 0.5rem;
}

.contact-form .btn img {
	filter: brightness(0) invert(1);
}

.contact__map-wrap {
	margin-top: 2rem;
}

.contact__map {
	overflow: hidden;
	padding: 0;
}

.contact-map__embed {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 7;
	min-height: 320px;
	background: var(--color-bg-alt);
}

.contact-map__embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.contact-map__link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 1rem 1.5rem 1.25rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--color-primary);
	text-decoration: none;
}

.contact-map__link:hover {
	color: var(--color-primary-hover);
}

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

	.contact-form__row {
		grid-template-columns: 1fr;
	}
}
