:root {
	--color-bg: #081018;
	--color-surface: #0f1a23;
	--color-surface-soft: rgba(255, 255, 255, 0.08);
	--color-text: #f5f2ed;
	--color-text-dark: #171717;
	--color-muted: rgba(255, 255, 255, 0.72);
	--color-line: rgba(255, 255, 255, 0.16);
	--color-accent: #33b4e1;
	--color-accent-dark: #168bb5;
	--shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.24);
	--container: 1320px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Segoe UI", sans-serif;
	color: var(--color-text);
	background: #081018;
}

body.panel-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

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

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

.flow > * + * {
	margin-top: 1rem;
}

.site-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-breadcrumbs {
	position: relative;
	z-index: 2;
	margin: 0 0 0.9rem;
	padding: 0;
	width: 100%;
	background: transparent;
}

.site-breadcrumbs__inner {
	display: block;
	width: 100%;
	font-size: 0.85rem;
	line-height: 1.55;
	color: rgba(20, 57, 95, 0.72);
}

.site-breadcrumbs__inner .yoast-breadcrumb,
.site-breadcrumbs__inner p {
	margin: 0;
}

.site-breadcrumbs__inner a {
	color: #14395f;
	transition: color 0.2s ease;
}

.site-breadcrumbs__inner a:hover,
.site-breadcrumbs__inner a:focus-visible {
	color: var(--color-accent);
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: transparent;
	transition:
		background 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

body.is-page:not(.is-front-page) .site-header:not(.is-sticky-active) {
	background: transparent;
}

body.is-page:not(.is-front-page) .site-header:not(.is-sticky-active) .site-branding__title,
body.is-page:not(.is-front-page) .site-header:not(.is-sticky-active) .menu a,
body.is-page:not(.is-front-page) .site-header:not(.is-sticky-active) .header-action {
	color: #14395f;
}

body.is-page:not(.is-front-page) .site-header:not(.is-sticky-active) .menu > .menu-item > a::after {
	background: #14395f;
}

.site-header.is-sticky-active {
	background: #ffffff;
	box-shadow: 0 12px 30px rgba(16, 29, 42, 0.08);
	border-bottom: 1px solid rgba(20, 57, 95, 0.08);
}

.site-header__inner,
.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.75rem 0;
}

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(180px, 260px) 1fr auto;
	align-items: center;
}

.site-branding img {
	max-height: 64px;
	width: auto;
}

.site-branding__title {
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffffff;
	transition: color 0.25s ease;
}

.primary-nav {
	justify-self: center;
}

.menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 2.1rem;
	flex-wrap: wrap;
}

.menu > .menu-item {
	position: relative;
}

.menu a {
	display: inline-flex;
	align-items: center;
	position: relative;
	font-weight: 600;
	color: #ffffff;
	transition: color 0.25s ease;
}

.menu > .menu-item > a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.75rem;
	width: 0;
	height: 2px;
	background: #ffffff;
	transition: width 0.22s ease;
}

.menu > .current-menu-item > a::after,
.menu > .current-menu-ancestor > a::after,
.menu > .menu-item:hover > a::after,
.menu > .menu-item:focus-within > a::after {
	width: 100%;
}

.menu-item-has-children > a::after {
	content: "";
}

.menu > .menu-item-has-children > a {
	padding-right: 0;
}

.menu > .menu-item > .sub-menu {
	position: absolute;
	top: calc(100% + 1.7rem);
	left: -1.4rem;
	z-index: 1001;
	min-width: 210px;
	margin: 0;
	padding: 1.2rem 0;
	list-style: none;
	background: rgba(6, 23, 39, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition:
		opacity 0.22s ease,
		transform 0.22s ease,
		visibility 0.22s ease;
}

body.is-page:not(.is-front-page) .menu > .menu-item > .sub-menu {
	background: #ffffff;
	border: 1px solid rgba(20, 57, 95, 0.12);
	box-shadow: 0 24px 50px rgba(20, 57, 95, 0.12);
}

.menu > .menu-item:hover > .sub-menu,
.menu > .menu-item:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu .menu-item {
	position: relative;
}

.sub-menu a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 1.4rem;
	color: rgba(255, 255, 255, 0.86);
	font-weight: 500;
	white-space: nowrap;
}

body.is-page:not(.is-front-page) .sub-menu a {
	color: rgba(20, 57, 95, 0.88);
}

.site-header.is-sticky-active .site-branding__title,
.site-header.is-sticky-active .menu a,
.site-header.is-sticky-active .header-action {
	color: #14395f;
}

.site-header.is-sticky-active .sub-menu a,
body.is-page:not(.is-front-page) .site-header:not(.is-sticky-active) .sub-menu a {
	color: rgba(20, 57, 95, 0.86);
}

.site-header.is-sticky-active .menu > .menu-item > a::after {
	background: #14395f;
}

.sub-menu .current-menu-item > a,
.sub-menu a:hover,
.sub-menu a:focus-visible {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.04);
}

body.is-page:not(.is-front-page) .sub-menu .current-menu-item > a,
body.is-page:not(.is-front-page) .sub-menu a:hover,
body.is-page:not(.is-front-page) .sub-menu a:focus-visible {
	color: #14395f;
	background: rgba(20, 57, 95, 0.06);
}

.sub-menu .menu-item-has-children > a::before {
	content: "";
	width: 7px;
	height: 7px;
	margin-left: 1.25rem;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	transform: rotate(45deg);
}

.sub-menu .sub-menu {
	position: absolute;
	top: -1.2rem;
	left: calc(100% - 0.2rem);
	min-width: 210px;
	margin: 0;
	padding: 1.2rem 0;
	list-style: none;
	background: rgba(6, 23, 39, 0.98);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
	opacity: 0;
	visibility: hidden;
	transform: translateX(10px);
	transition:
		opacity 0.22s ease,
		transform 0.22s ease,
		visibility 0.22s ease;
}

body.is-page:not(.is-front-page) .sub-menu .sub-menu {
	background: #ffffff;
	border: 1px solid rgba(20, 57, 95, 0.12);
	box-shadow: 0 24px 50px rgba(20, 57, 95, 0.12);
}

.sub-menu .menu-item:hover > .sub-menu,
.sub-menu .menu-item:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.header-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #fff;
	cursor: pointer;
	transition:
		color 0.25s ease,
		background 0.25s ease;
}

.header-action__icon {
	position: relative;
	display: block;
	width: 22px;
	height: 22px;
}

.header-action__icon--search::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 2px solid currentColor;
	border-radius: 50%;
	transform: translate(-2px, -2px) scale(0.7);
	transform-origin: center;
}

.header-action__icon--search::after {
	content: "";
	position: absolute;
	right: 1px;
	bottom: 0;
	width: 9px;
	height: 2px;
	background: currentColor;
	transform: rotate(45deg);
	transform-origin: right center;
}

.header-action__icon--grid::before,
.header-action__icon--grid::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle, currentColor 2px, transparent 2.5px) 0 0 / 10px 10px;
}

.header-action--menu {
	display: none;
}

.header-action__icon--menu,
.header-action__icon--menu::before,
.header-action__icon--menu::after {
	width: 24px;
	height: 2px;
	background: currentColor;
}

.header-action__icon--menu {
	position: relative;
}

.header-action__icon--menu::before,
.header-action__icon--menu::after {
	content: "";
	position: absolute;
	left: 0;
}

.header-action__icon--menu::before {
	top: -7px;
}

.header-action__icon--menu::after {
	top: 7px;
}

.site-header.is-sticky-active .header-action:hover,
.site-header.is-sticky-active .header-action:focus-visible {
	background: rgba(20, 57, 95, 0.08);
}

.site-panel {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1100;
	width: min(420px, 100%);
	height: 100vh;
	padding: 1.5rem;
	background: rgba(4, 10, 16, 0.92);
	backdrop-filter: blur(18px);
	box-shadow: -18px 0 50px rgba(0, 0, 0, 0.3);
}

.site-panel[hidden] {
	display: none;
}

.site-panel__inner {
	position: relative;
	height: 100%;
	padding: 4rem 1.5rem 1.5rem;
	border: 1px solid var(--color-line);
	background: rgba(255, 255, 255, 0.04);
}

.site-panel__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

.site-panel__eyebrow {
	margin: 0 0 2rem;
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-accent);
}

.company-panel {
	display: grid;
	gap: 1.65rem;
	color: rgba(255, 255, 255, 0.82);
}

.company-panel__title {
	margin: 0;
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	line-height: 1;
	color: #ffffff;
}

.company-panel__group {
	display: grid;
	gap: 0.45rem;
	padding-top: 1.15rem;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.company-panel__heading {
	margin: 0;
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-accent);
}

.company-panel p {
	margin: 0;
	line-height: 1.65;
}

.company-panel a {
	color: #ffffff;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.34);
	text-underline-offset: 0.25em;
}

.mobile-nav .menu--mobile {
	display: grid;
	gap: 0;
}

.mobile-nav .menu-item {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav .menu > .menu-item {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
}

.mobile-nav .menu a {
	display: flex;
	width: 100%;
	padding: 1rem 0;
	color: #ffffff;
	font-size: 1.08rem;
	font-weight: 700;
}

.mobile-nav .menu > .menu-item > a::after {
	display: none;
}

.mobile-nav .menu > .menu-item > .sub-menu,
.mobile-nav .sub-menu,
.mobile-nav .sub-menu .sub-menu {
	position: static;
	grid-column: 1 / -1;
	min-width: 100%;
	margin: 0;
	padding: 0 0 0.75rem 1rem;
	background: transparent;
	border: 0;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	transform: none;
}

.mobile-nav .sub-menu[hidden] {
	display: none;
}

.mobile-nav .sub-menu .menu-item {
	border-top: 0;
}

.mobile-nav .sub-menu a {
	padding: 0.48rem 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.94rem;
	font-weight: 500;
	white-space: normal;
}

.mobile-nav__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-left: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.04);
	color: #ffffff;
	cursor: pointer;
}

.mobile-nav__toggle span {
	width: 9px;
	height: 9px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.2s ease;
}

.mobile-nav .menu-item.is-open > .mobile-nav__toggle span {
	transform: rotate(225deg) translate(-2px, -2px);
}

.mobile-nav .sub-menu .menu-item-has-children > a::before {
	display: none;
}

.site-main {
	flex: 1;
	padding: 0;
}

.hero-slider {
	position: relative;
	min-height: 100vh;
}

.hero-slider__stack {
	position: relative;
	min-height: 100vh;
}

.hero-slide {
	position: relative;
	display: none;
	min-height: 100vh;
	background:
		linear-gradient(90deg, rgba(7, 13, 20, 0.64) 0%, rgba(7, 13, 20, 0.38) 32%, rgba(7, 13, 20, 0.18) 100%),
		radial-gradient(circle at right center, rgba(255, 255, 255, 0.09), transparent 28%),
		linear-gradient(180deg, #131e27 0%, #081018 100%);
	background-size: cover;
	background-position: center center;
}

.hero-slide.is-active {
	display: block;
}

.hero-slide__inner {
	display: flex;
	align-items: center;
	min-height: 100vh;
	padding-top: 7rem;
	padding-bottom: 3.5rem;
}

.hero-slide__content {
	max-width: 560px;
	margin-top: 7vh;
}

.hero-slide__kicker {
	margin: 0 0 1.15rem;
	font-size: 0.68rem;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.82);
}

.hero-slide__title {
	margin: 0;
	max-width: 540px;
	font-size: clamp(3.2rem, 6.6vw, 5.9rem);
	line-height: 0.95;
	font-weight: 700;
	letter-spacing: -0.05em;
	text-transform: uppercase;
}

.hero-slide__meta {
	display: flex;
	align-items: flex-start;
	gap: 1.75rem;
	margin-top: 1.9rem;
}

.hero-slide__excerpt {
	max-width: 355px;
	padding-top: 0.15rem;
	font-size: 0.94rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.82);
}

.hero-slide__text {
	display: grid;
	gap: 1.35rem;
}

.hero-slide__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.hero-slide__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0.95rem 1.35rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.hero-slide__button--primary {
	background: var(--color-accent);
	color: #ffffff;
}

.hero-slide__button--primary:hover,
.hero-slide__button--primary:focus-visible {
	background: #14395f;
	color: #ffffff;
}

.hero-slide__button--secondary {
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #fff;
}

.hero-slide__button--secondary:hover,
.hero-slide__button--secondary:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.55);
}

.hero-slide__scroll {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 42px;
	margin-top: 0.15rem;
	border: 0;
	border-radius: 0;
}

.hero-slide__scroll-arrow {
	position: relative;
	width: 18px;
	height: 42px;
}

.hero-slide__scroll-arrow::before,
.hero-slide__scroll-arrow::after {
	content: "";
	position: absolute;
	left: 50%;
	background: #fff;
	transform: translateX(-50%);
}

.hero-slide__scroll-arrow::before {
	top: 0;
	width: 1px;
	height: 30px;
}

.hero-slide__scroll-arrow::after {
	bottom: 0;
	width: 12px;
	height: 8px;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.hero-slider__controls {
	position: absolute;
	inset: auto 2rem 2rem 2rem;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: space-between;
	pointer-events: none;
}

.hero-slider__arrow {
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	border: 0;
	background: rgba(6, 23, 39, 0.78);
	color: #fff;
	cursor: pointer;
	transition:
		background 0.2s ease,
		transform 0.2s ease;
}

.hero-slider__arrow:hover,
.hero-slider__arrow:focus-visible {
	background: rgba(10, 34, 54, 0.94);
	transform: translateY(-1px);
}

.hero-slider__arrow-icon {
	position: relative;
	display: block;
	width: 18px;
	height: 18px;
}

.hero-slider__arrow-icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;
	transform: translate(-35%, -50%) rotate(-45deg);
}

.hero-slider__arrow--next .hero-slider__arrow-icon::before {
	transform: translate(-65%, -50%) rotate(135deg);
}

.hero-slider__nav {
	display: flex;
	gap: 0.75rem;
	pointer-events: auto;
}

.hero-slider__dot {
	width: 14px;
	height: 14px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
}

.hero-slider__dot.is-active {
	background: var(--color-accent);
	border-color: var(--color-accent);
}

.products-section {
	padding: 6rem 0 5rem;
	background: #f7f3ec;
	color: var(--color-text-dark);
}

.products-section__intro {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
	gap: 3rem;
	align-items: end;
	margin-bottom: 3rem;
}

.products-section__title {
	margin: 0;
	max-width: 520px;
	font-size: clamp(2.5rem, 4vw, 4.2rem);
	line-height: 0.95;
	letter-spacing: -0.04em;
}

.products-section__intro-text {
	max-width: 470px;
	font-size: 1.02rem;
	line-height: 1.8;
	color: rgba(23, 23, 23, 0.78);
}

.products-section__intro-text p {
	margin: 0;
}

.contact-card__text > p,
.final-cta__text > p,
.why-section__feature > p {
	margin: 0;
}

.contact-card__text > p + p,
.final-cta__text > p + p,
.why-section__feature > p + p {
	margin-top: 0.75rem;
}

.products-carousel {
	position: relative;
}

.products-grid {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding: 0 0 1.25rem;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-color: rgba(20, 57, 95, 0.35) transparent;
}

.product-card {
	display: flex;
	flex-direction: column;
	flex: 0 0 calc((100% - 2rem) / 3);
	min-width: 0;
	opacity: 0;
	transform: translateY(42px);
	scroll-snap-align: start;
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
	transition-delay: var(--reveal-delay, 0s);
}

.product-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.product-card__media {
	position: relative;
	display: block;
	min-height: 420px;
	background:
		linear-gradient(180deg, rgba(7, 14, 21, 0.08) 0%, rgba(7, 14, 21, 0.58) 100%),
		linear-gradient(180deg, #ded7cd 0%, #b6aa9a 100%);
	background-size: cover;
	background-position: center;
	overflow: hidden;
	transition: transform 0.45s ease;
}

.product-card--placeholder .product-card__media {
	background:
		linear-gradient(180deg, rgba(7, 14, 21, 0.08) 0%, rgba(7, 14, 21, 0.58) 100%),
		linear-gradient(180deg, #b78f66 0%, #6e5039 100%);
}

.product-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
	background: linear-gradient(180deg, rgba(7, 14, 21, 0.08) 0%, rgba(7, 14, 21, 0.42) 58%, rgba(7, 14, 21, 0.72) 100%);
	transition: background 0.35s ease;
}

.product-card__hover {
	display: grid;
	gap: 0.65rem;
	margin-top: 0.9rem;
	max-height: 0;
	opacity: 0;
	transition:
		max-height 0.35s ease,
		opacity 0.35s ease;
}

.product-card__title {
	margin: 0;
	font-size: 1.45rem;
	line-height: 1.02;
	color: #fff;
}

.product-card__hover-text {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
}

.product-card__hover-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 1rem;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.88);
}

.product-card:hover .product-card__media,
.product-card:focus-within .product-card__media {
	transform: scale(1.04);
}

.product-card:hover .product-card__overlay,
.product-card:focus-within .product-card__overlay {
	background: linear-gradient(180deg, rgba(7, 14, 21, 0.18) 0%, rgba(7, 14, 21, 0.52) 45%, rgba(7, 14, 21, 0.88) 100%);
}

.product-card:hover .product-card__hover,
.product-card:focus-within .product-card__hover {
	max-height: 220px;
	opacity: 1;
}

.products-carousel__controls {
	display: flex;
	justify-content: flex-end;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.products-carousel__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 1px solid rgba(20, 57, 95, 0.18);
	background: #ffffff;
	color: #14395f;
	font-size: 1.15rem;
	font-weight: 700;
	cursor: pointer;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.products-carousel__button:hover,
.products-carousel__button:focus-visible {
	background: #14395f;
	border-color: #14395f;
	color: #ffffff;
}

.home-intro {
	padding-top: 4rem;
}

.services-section {
	padding: 6rem 0 6.5rem;
	background: #ffffff;
	color: var(--color-text-dark);
}

.services-section__intro {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: 3rem;
	align-items: start;
	margin-bottom: 2.75rem;
}

.services-section__eyebrow {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #6b8098;
}

.services-section__title {
	margin: 0;
	max-width: 520px;
	font-size: clamp(2.3rem, 4vw, 4rem);
	line-height: 0.96;
	letter-spacing: -0.04em;
	color: #14395f;
}

.services-section__intro-text {
	max-width: 520px;
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(20, 57, 95, 0.72);
}

.services-section__intro-text p {
	margin: 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid rgba(20, 57, 95, 0.12);
}

.service-card {
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
	transition-delay: var(--reveal-delay, 0s);
}

.service-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.service-card + .service-card {
	border-left: 1px solid rgba(20, 57, 95, 0.12);
}

.service-card__inner {
	display: grid;
	gap: 1rem;
	min-height: 100%;
	padding: 2rem 1.75rem 1.6rem;
}

.service-card__icon {
	position: relative;
	display: inline-block;
	width: 38px;
	height: 38px;
	color: #6f84a0;
}

.service-card__icon::before,
.service-card__icon::after {
	content: "";
	position: absolute;
	box-sizing: border-box;
}

.service-card__icon--lavorazioni-in-legno::before {
	left: 7px;
	top: 15px;
	width: 24px;
	height: 14px;
	border: 1.5px solid currentColor;
	border-top: 0;
}

.service-card__icon--lavorazioni-in-legno::after {
	left: 9px;
	top: 6px;
	width: 20px;
	height: 10px;
	border: 1.5px solid currentColor;
	border-bottom: 0;
	border-radius: 10px 10px 0 0;
}

.service-card__icon--riparazioni::before {
	left: 7px;
	top: 8px;
	width: 24px;
	height: 24px;
	border: 1.5px solid currentColor;
	transform: rotate(45deg);
}

.service-card__icon--riparazioni::after {
	left: 17px;
	top: 3px;
	width: 4px;
	height: 32px;
	background: currentColor;
}

.service-card__icon--assistenza::before {
	inset: 5px;
	border: 1.5px solid currentColor;
	border-radius: 50%;
}

.service-card__icon--assistenza::after {
	left: 18px;
	top: 10px;
	width: 2px;
	height: 18px;
	background: currentColor;
	box-shadow:
		-8px 8px 0 0 currentColor,
		8px 8px 0 0 currentColor;
}

.service-card__title {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.08;
	color: #14395f;
}

.service-card__text {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.75;
	color: rgba(20, 57, 95, 0.74);
}

.service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: auto;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #14395f;
}

.why-section {
	padding: 6rem 0 7rem;
	background: #edf4f7;
	color: var(--color-text-dark);
}

.why-section__grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.2fr);
	gap: 4rem;
	align-items: start;
}

.why-section__media-column {
	position: relative;
	min-height: 560px;
}

.why-section__image {
	background:
		linear-gradient(180deg, rgba(20, 57, 95, 0.08) 0%, rgba(20, 57, 95, 0.18) 100%),
		linear-gradient(180deg, #dbc7af 0%, #b88964 100%);
	background-size: cover;
	background-position: center;
	box-shadow: 0 24px 60px rgba(20, 57, 95, 0.12);
}

.why-section__image--single {
	width: 100%;
	height: 560px;
}

.why-section__content {
	display: grid;
	gap: 2.4rem;
}

.why-section__title {
	margin: 0;
	max-width: 580px;
	font-size: clamp(2.3rem, 4vw, 4rem);
	line-height: 0.95;
	letter-spacing: -0.04em;
	color: #14395f;
}

.why-section__features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.4rem 2rem;
}

.why-section__feature {
	padding-top: 1.1rem;
	border-top: 1px solid rgba(20, 57, 95, 0.14);
	opacity: 0;
	transform: translateY(26px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}

.why-section__feature.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.why-section__feature h3 {
	margin: 0 0 0.85rem;
	font-size: 1.35rem;
	line-height: 1.08;
	color: #14395f;
}

.why-section__feature p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.8;
	color: rgba(20, 57, 95, 0.76);
}

.contact-hero {
	padding: 10.75rem 0 5.5rem;
	background: #edf4f7;
	color: var(--color-text-dark);
}

.contact-hero__inner {
	display: grid;
	place-items: center;
}

.contact-hero__title {
	margin: 0;
	max-width: 44rem;
	font-size: clamp(3.1rem, 5.2vw, 4.5rem);
	line-height: 0.94;
	letter-spacing: -0.05em;
	color: #14395f;
}

.contact-hero__text {
	margin: 0;
	max-width: 760px;
	font-size: 1.08rem;
	line-height: 1.85;
	text-align: center;
	color: rgba(20, 57, 95, 0.76);
}

.contact-hero__content {
	display: grid;
	justify-items: center;
	text-align: center;
}

.contact-hero__content .site-breadcrumbs {
	max-width: 44rem;
}

.contact-hero__scroll {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-top: 0.75rem;
	font-size: 2rem;
	line-height: 1;
	color: #14395f;
}

.contact-layout {
	padding: 0 0 4.5rem;
	background: #edf4f7;
	color: var(--color-text-dark);
}

.contact-layout__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
	gap: 7rem;
	align-items: start;
}

.contact-intro {
	display: grid;
	gap: 2.5rem;
}

.contact-card__title {
	margin: 0 0 1.5rem;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 0.98;
	letter-spacing: -0.04em;
	color: #14395f;
}

.contact-intro__title {
	margin: 0;
	max-width: 360px;
	font-size: clamp(2.4rem, 4.5vw, 4.1rem);
	line-height: 0.94;
	letter-spacing: -0.05em;
	color: #14395f;
}

.contact-details {
	display: grid;
	gap: 1.1rem;
	margin-top: 1rem;
}

.contact-details__item {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 0.9rem;
	align-items: start;
}

.contact-details__icon {
	position: relative;
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-top: 0.25rem;
	color: #168bb5;
}

.contact-details__icon::before,
.contact-details__icon::after {
	content: "";
	position: absolute;
	box-sizing: border-box;
}

.contact-details__icon--location::before {
	left: 4px;
	top: 1px;
	width: 14px;
	height: 14px;
	border: 1.5px solid currentColor;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
}

.contact-details__icon--location::after {
	left: 8px;
	top: 5px;
	width: 6px;
	height: 6px;
	border: 1.5px solid currentColor;
	border-radius: 50%;
}

.contact-details__icon--phone::before {
	inset: 2px;
	background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.5 4.5c1.2 4.7 4.3 8.4 8.9 11.1l2.2-2.2c.5-.5 1.3-.7 2-.4l2.3 1c.8.4 1.2 1.3.9 2.1l-.8 2c-.4 1-1.4 1.6-2.4 1.5C11.1 19.1 4.9 12.9 3.6 5.3c-.2-1 .4-2 1.4-2.3l2-.6c.8-.2 1.6.2 1.9 1.1z' stroke='%23168bb5' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-details__icon--phone::after {
	content: none;
}

.contact-details__icon--mail::before {
	inset: 2px;
	background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='6' width='16' height='12' rx='1.8' stroke='%23168bb5' stroke-width='1.7'/%3E%3Cpath d='m5.2 7.8 6.8 5 6.8-5' stroke='%23168bb5' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m5.2 17 4.7-4.6' stroke='%23168bb5' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='m18.8 17-4.7-4.6' stroke='%23168bb5' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.contact-details__icon--mail::after {
	content: none;
}

.contact-details__icon--hours::before {
	inset: 1px;
	background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='8.2' stroke='%23168bb5' stroke-width='1.7'/%3E%3Cpath d='M12 8.5v4.2l2.8 1.8' stroke='%23168bb5' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-details__icon--hours::after {
	content: none;
}

.contact-card__heading {
	margin: 0 0 0.85rem;
	font-size: 1.02rem;
	line-height: 1.2;
	color: #14395f;
}

.contact-card__text {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.65;
	color: rgba(20, 57, 95, 0.76);
}

.contact-card__text + .contact-card__text {
	margin-top: 0.2rem;
}

.contact-card__text--lead {
	max-width: 420px;
	margin-bottom: 0;
}

.contact-card__text--strong {
	font-size: 0.98rem;
	font-weight: 700;
	color: #14395f;
}

.contact-form-panel {
	padding-top: 0.15rem;
}

.contact-form-shell {
	margin-top: 0;
}

.contact-form-shell .wpforms-container,
.contact-form-shell .wpforms-form {
	margin: 0 !important;
}

.contact-form-shell .wpforms-field-container {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 2.3rem 1.85rem !important;
}

.contact-form-shell .wpforms-field {
	position: relative;
	max-width: none !important;
	min-height: 50px;
	padding: 0 0 0.7rem 2.25rem !important;
	border: 0 !important;
	border-bottom: 1px solid rgba(20, 57, 95, 0.28) !important;
}

.contact-form-shell .wpforms-field-textarea,
.contact-form-shell .wpforms-field-gdpr-checkbox {
	grid-column: 1 / -1;
}

.contact-form-shell .wpforms-field-label {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.contact-form-shell .wpforms-required-label {
	color: #d84040;
}

.contact-form-shell .wpforms-field::before,
.contact-form-shell .wpforms-field::after {
	content: none;
}

.contact-form-shell .wpforms-form input[type="text"],
.contact-form-shell .wpforms-form input[type="email"],
.contact-form-shell .wpforms-form input[type="tel"],
.contact-form-shell .wpforms-form textarea {
	width: 100% !important;
	max-width: none !important;
	min-height: 50px;
	padding: 0.75rem 0 0.1rem !important;
	border: 0 !important;
	background: transparent !important;
	font: inherit !important;
	color: #14395f !important;
	box-shadow: none !important;
	outline: 0 !important;
}

.contact-form-shell .wpforms-form input::placeholder,
.contact-form-shell .wpforms-form textarea::placeholder {
	color: #14395f;
	opacity: 1;
}

.contact-form-shell .wpforms-form input:focus,
.contact-form-shell .wpforms-form textarea:focus {
	box-shadow: none !important;
}

.contact-form-shell .wpforms-field-gdpr-checkbox ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-form-shell .wpforms-field-gdpr-checkbox li {
	display: flex;
	gap: 0.65rem;
	align-items: flex-start;
	margin: 0;
}

.contact-form-shell .wpforms-field-gdpr-checkbox {
	min-height: auto;
	padding: 0 !important;
	border-bottom: 0 !important;
}

.contact-form-shell .wpforms-field-gdpr-checkbox::before,
.contact-form-shell .wpforms-field-gdpr-checkbox::after {
	display: none;
}

.contact-form-shell .wpforms-field-gdpr-checkbox input[type="checkbox"] {
	flex: 0 0 auto;
	width: 16px !important;
	height: 16px;
	margin-top: 0.25rem;
}

.contact-form-shell .wpforms-field-label-inline {
	font-size: 0.92rem;
	line-height: 1.55;
	color: rgba(20, 57, 95, 0.78);
}

.contact-form-shell textarea,
.contact-form-shell .contact-form-shell__full {
	grid-column: 1 / -1;
	min-height: 96px !important;
	resize: vertical;
}

.contact-form-shell .wpforms-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto !important;
	max-width: max-content !important;
	min-height: 54px !important;
	padding: 0.95rem 1.5rem !important;
	border: 0 !important;
	background: var(--color-accent) !important;
	color: #ffffff !important;
	font-size: 0.82rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	cursor: pointer;
}

.contact-form-shell .wpforms-submit::before {
	content: "";
	width: 17px;
	height: 17px;
	margin-right: 0.65rem;
	background: currentColor;
	clip-path: polygon(0 45%, 100% 0, 58% 100%, 44% 58%);
}

.contact-form-shell .wpforms-submit-container {
	margin: 2rem 0 0 !important;
	padding: 0 !important;
	text-align: left !important;
}

.contact-form-placeholder,
.contact-map__placeholder {
	padding: 0;
	background: transparent;
	border: 0;
}

.contact-form-placeholder__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem 1.75rem;
}

.contact-form-placeholder__field {
	display: flex;
	align-items: center;
	gap: 0;
	min-height: 46px;
	padding-bottom: 0.9rem;
	border-bottom: 1px solid rgba(20, 57, 95, 0.18);
}

.contact-form-placeholder__field--full {
	grid-column: 1 / -1;
	min-height: 94px;
	padding-top: 0.15rem;
	align-items: flex-start;
}

.contact-form-placeholder__label {
	display: inline-block;
	font-size: 0.95rem;
	color: #14395f;
}

.contact-form-placeholder__icon {
	position: relative;
	display: inline-block !important;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	color: #14395f;
}

.contact-form-placeholder__icon::before,
.contact-form-placeholder__icon::after {
	content: "";
	position: absolute;
	box-sizing: border-box;
}

.contact-form-placeholder__icon--user::before {
	left: 5px;
	top: 1px;
	width: 8px;
	height: 8px;
	border: 1.4px solid currentColor;
	border-radius: 50%;
}

.contact-form-placeholder__icon--user::after {
	left: 3px;
	bottom: 1px;
	width: 14px;
	height: 8px;
	border: 1.4px solid currentColor;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom: 0;
}

.contact-form-placeholder__icon--mail::before {
	inset: 3px 1px;
	border: 1.4px solid currentColor;
}

.contact-form-placeholder__icon--mail::after {
	left: 3px;
	top: 5px;
	width: 12px;
	height: 8px;
	border-left: 1.4px solid currentColor;
	border-bottom: 1.4px solid currentColor;
	transform: rotate(-45deg) skewY(-16deg);
	transform-origin: left bottom;
}

.contact-form-placeholder__icon--phone::before {
	left: 4px;
	top: 4px;
	width: 12px;
	height: 12px;
	border: 1.4px solid currentColor;
	border-top-color: transparent;
	border-right-color: transparent;
	border-radius: 10px 0 10px 0;
	transform: rotate(-35deg);
}

.contact-form-placeholder__icon--phone::after {
	left: 10px;
	top: 2px;
	width: 6px;
	height: 6px;
	border-top: 1.4px solid currentColor;
	border-right: 1.4px solid currentColor;
}

.contact-form-placeholder__icon--info::before {
	inset: 2px;
	border: 1.4px solid currentColor;
	border-radius: 50%;
}

.contact-form-placeholder__icon--info::after {
	left: 9px;
	top: 6px;
	width: 1.4px;
	height: 7px;
	background: currentColor;
	box-shadow: 0 -4px 0 0 currentColor;
}

.contact-form-placeholder__icon--edit::before {
	left: 2px;
	top: 12px;
	width: 14px;
	height: 1.6px;
	background: currentColor;
	transform: rotate(-45deg);
}

.contact-form-placeholder__icon--edit::after {
	right: 1px;
	top: 4px;
	width: 6px;
	height: 6px;
	border: 1.4px solid currentColor;
	transform: rotate(-45deg);
}

.contact-form-placeholder__footer {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-top: 2.2rem;
}

.contact-form-placeholder__footer p {
	margin: 0;
	max-width: 300px;
	font-size: 0.9rem;
	line-height: 1.65;
	color: rgba(20, 57, 95, 0.72);
}

.contact-form-placeholder p,
.contact-map__placeholder p {
	margin: 0;
	color: rgba(20, 57, 95, 0.76);
	line-height: 1.8;
}

.contact-map {
	padding: 0 0 5.5rem;
	background: #edf4f7;
	color: var(--color-text-dark);
}

.contact-map__header {
	padding: 0 0 1.6rem;
}

.contact-map__frame iframe {
	display: block;
	width: 100%;
	height: 560px;
}

.about-page {
	padding: 0 0 5rem;
	background: #edf4f7;
	color: var(--color-text-dark);
}

.about-page__stack {
	display: grid;
	gap: 5.5rem;
}

.service-copy {
	display: flex;
	justify-content: center;
	padding: 4.75rem 0 5.75rem;
}

.service-copy__content {
	width: min(100%, 820px);
}

.about-showcase {
	display: grid;
	grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 0.9fr);
	gap: 7rem;
	align-items: end;
	padding-top: 2.25rem;
}

.about-block--reverse .about-block__content {
	order: 1;
}

.about-block--reverse .about-block__media {
	order: 2;
}

.about-showcase__media {
	position: relative;
	min-height: 620px;
	max-width: 640px;
}

.about-showcase__media--single {
	display: flex;
	align-items: center;
	min-height: 520px;
}

.about-showcase__media--single .about-block__image {
	width: 100%;
}

.about-showcase__content {
	max-width: 540px;
	padding-bottom: 2rem;
}

.about-showcase__title {
	margin: 0;
	font-size: clamp(2.8rem, 4.6vw, 4.15rem);
	line-height: 0.94;
	letter-spacing: -0.04em;
	color: #14395f;
}

.about-showcase__text {
	display: grid;
	gap: 1rem;
}

.about-showcase__text p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(20, 57, 95, 0.76);
}

.about-showcase__text h3,
.about-block__text h3 {
	margin: 0.4rem 0 0;
	font-size: 1.05rem;
	line-height: 1.35;
	color: #14395f;
}

.about-showcase__text ul,
.about-block__text ul {
	margin: 0;
	padding-left: 1.15rem;
	color: rgba(20, 57, 95, 0.76);
}

.about-showcase__text li,
.about-block__text li {
	margin: 0.35rem 0;
	line-height: 1.65;
}

.content-table {
	display: block;
	width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
	color: rgba(20, 57, 95, 0.8);
}

.content-table th,
.content-table td {
	min-width: 150px;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(20, 57, 95, 0.14);
	text-align: left;
	vertical-align: top;
}

.content-table th {
	color: #14395f;
	background: rgba(20, 57, 95, 0.06);
	font-weight: 700;
}

.about-block {
	display: grid;
	grid-template-columns: minmax(420px, 0.9fr) minmax(420px, 0.95fr);
	gap: 4rem;
	align-items: center;
}

.about-block--story {
	grid-template-columns: minmax(420px, 0.78fr) minmax(420px, 1fr);
	align-items: start;
	padding: 4.5rem 0;
	margin-top: 0;
}

.about-block--full {
	grid-template-columns: 1fr;
}

.about-block--padded {
	padding: 4.5rem 0 5.5rem;
}

.about-block__content.about-block__content--wide {
	max-width: none;
}

.comparison-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 1.5rem;
}

.comparison-card {
	display: grid;
	align-content: start;
	gap: 0.9rem;
	padding: 1.5rem;
	background: #f4f8fa;
	border: 1px solid rgba(20, 57, 95, 0.12);
}

.comparison-card--featured {
	background: #ffffff;
	border-color: rgba(51, 180, 225, 0.45);
}

.comparison-card h3 {
	margin: 0;
	color: #14395f;
}

.comparison-card p,
.comparison-card ul {
	margin: 0;
}

.about-band {
	width: 100%;
	padding: 2rem 0 0;
	background: #ffffff;
}

.about-block__media {
	position: relative;
}

.about-block__media--cluster {
	min-height: 620px;
	max-width: 640px;
}

.about-block__media--pair {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	max-width: 760px;
}

.about-block__media--single {
	max-width: 760px;
}

.about-block__image {
	background:
		linear-gradient(180deg, rgba(20, 57, 95, 0.08) 0%, rgba(20, 57, 95, 0.18) 100%),
		linear-gradient(180deg, #dbc7af 0%, #b88964 100%);
	background-size: cover;
	background-position: center;
	box-shadow: 0 24px 60px rgba(20, 57, 95, 0.12);
}

.about-block__image--small {
	position: absolute;
	left: 0;
	top: 0;
	width: 68%;
	height: 360px;
}

.about-block__image--large {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 54%;
	height: 270px;
}

.about-block__image--portrait {
	height: 460px;
}

.about-block__image--wide {
	min-height: 460px;
	background-position: center;
}

.about-block__content {
	max-width: 520px;
}

.about-block__title {
	margin: 0;
	font-size: clamp(2.3rem, 4vw, 3.4rem);
	line-height: 0.94;
	letter-spacing: -0.04em;
	color: #14395f;
}

.about-block__text {
	display: grid;
	gap: 1rem;
}

.about-block__text p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(20, 57, 95, 0.76);
}

.final-cta {
	padding: 0;
	background: linear-gradient(180deg, #edf4f7 0%, #f7f3ec 100%);
	color: var(--color-text-dark);
}

body:not(.is-front-page) .final-cta {
	background: #f7f3ec;
}

body:not(.is-front-page) .final-cta__inner {
	min-height: 520px;
}

body:not(.is-front-page) .final-cta__panel {
	gap: 1.35rem;
	width: min(100%, 600px);
	padding: clamp(1.75rem, 3vw, 2.75rem);
}

body:not(.is-front-page) .final-cta__title {
	max-width: 520px;
	font-size: clamp(1.85rem, 3vw, 3rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
}

.final-cta__inner {
	display: flex;
	align-items: center;
	min-height: 640px;
	padding: clamp(2rem, 4vw, 2rem) 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.02) 100%),
		linear-gradient(180deg, #d7d9d4 0%, #bcc4bf 100%);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.final-cta__container {
	display: flex;
	justify-content: flex-end;
}

.final-cta__panel {
	display: grid;
	gap: 2rem;
	width: min(100%, 640px);
	padding: clamp(2rem, 4vw, 3.5rem);
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 30px 70px rgba(20, 57, 95, 0.12);
}

.final-cta__content {
	max-width: 100%;
}

.final-cta__title {
	margin: 0;
	max-width: 460px;
	font-size: clamp(2.4rem, 4.6vw, 4.8rem);
	line-height: 0.95;
	letter-spacing: -0.04em;
	color: #14395f;
}

.final-cta__text {
	margin: 0;
	max-width: 500px;
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(20, 57, 95, 0.74);
}

.final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 0.85rem;
}

.final-cta__button-secondary {
	border-color: rgba(20, 57, 95, 0.18);
	color: #14395f;
}

.final-cta__button-secondary:hover,
.final-cta__button-secondary:focus-visible {
	background: rgba(20, 57, 95, 0.08);
	border-color: rgba(20, 57, 95, 0.38);
}

.content-card {
	background: #fff;
	border: 1px solid rgba(23, 23, 23, 0.08);
	box-shadow: var(--shadow-soft);
	border-radius: 28px;
	padding: clamp(1.5rem, 3vw, 3rem);
}

.serramenti-links-section {
	padding: 5rem 0 6rem;
	background: #edf4f7;
	color: #14395f;
}

.serramenti-links-section__intro {
	display: grid;
	gap: 0.85rem;
	max-width: 720px;
	margin-bottom: 2rem;
}

.serramenti-links-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.serramenti-link-card {
	position: relative;
	display: grid;
	grid-template-rows: minmax(210px, 0.72fr) auto;
	min-height: 385px;
	background: #ffffff;
	overflow: hidden;
	box-shadow: 0 18px 42px rgba(20, 57, 95, 0.1);
	transition:
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.serramenti-link-card:hover,
.serramenti-link-card:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 24px 52px rgba(20, 57, 95, 0.16);
}

.serramenti-link-card__media {
	display: block;
	min-height: 210px;
	background-color: #dce8ed;
	background-position: center;
	background-size: cover;
	transition: transform 0.25s ease;
}

.serramenti-link-card:hover .serramenti-link-card__media,
.serramenti-link-card:focus-visible .serramenti-link-card__media {
	transform: scale(1.04);
}

.serramenti-link-card__body {
	position: relative;
	display: grid;
	gap: 0.8rem;
	padding: 1.35rem 3.2rem 1.55rem 1.35rem;
	background: #ffffff;
	color: #14395f;
}

.serramenti-link-card__title {
	font-size: 1.18rem;
	font-weight: 800;
	line-height: 1.15;
}

.serramenti-link-card__text {
	max-width: 26ch;
	font-size: 0.95rem;
	line-height: 1.55;
	color: rgba(20, 57, 95, 0.72);
}

.serramenti-link-card:hover .serramenti-link-card__text,
.serramenti-link-card:focus-visible .serramenti-link-card__text {
	color: rgba(20, 57, 95, 0.82);
}

.serramenti-link-card__arrow {
	position: absolute;
	right: 1.35rem;
	bottom: 1.2rem;
	color: var(--color-accent);
	font-size: 1.35rem;
	font-weight: 700;
}

.eyebrow {
	margin: 0;
	font-size: 0.85rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-accent);
}

.entry-title {
	margin: 0;
	font-size: clamp(2rem, 5vw, 4.5rem);
	line-height: 0.95;
	color: var(--color-text-dark);
}

.entry-content {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--color-text-dark);
}

.entry-content p {
	margin: 0 0 1rem;
}

.site-footer {
	padding: 5.5rem 0 2rem;
	border-top: 0;
	background: #081d32;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 3rem;
	padding-bottom: 3rem;
}

.site-footer__column {
	display: grid;
	align-content: start;
	gap: 1.5rem;
}

.site-footer__logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.site-footer__logo img {
	width: auto;
	max-width: 190px;
	max-height: 82px;
}

.site-footer__brand {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.1;
	color: #ffffff;
}

.site-footer__heading {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: #ffffff;
}

.site-footer__stack {
	display: grid;
	gap: 0.9rem;
}

.site-footer__text,
.site-footer__copy {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__phone {
	margin: 0.5rem 0 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: #ffffff;
}

.site-footer__link {
	color: inherit;
}

.site-footer__link--underline {
	display: inline-block;
	padding-bottom: 0.2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.site-footer__menu {
	display: grid;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__menu a {
	font-size: 0.98rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__totop {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: #69c2cf;
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: 700;
}

@media (max-width: 820px) {
	.site-header__inner {
		display: grid;
		grid-template-columns: minmax(120px, 1fr) auto;
		gap: 1rem;
		padding: 0.9rem 0;
	}

	.site-footer__inner {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.site-branding img {
		max-height: 52px;
	}

	.primary-nav {
		display: none;
	}

	.header-action--menu {
		display: inline-flex;
	}

	.hero-slide__inner {
		align-items: center;
		padding-top: 8rem;
		padding-bottom: 3rem;
	}

	.hero-slide__title {
		font-size: clamp(2.8rem, 14vw, 4.8rem);
		max-width: 100%;
	}

	.hero-slide__meta {
		flex-direction: column;
		gap: 1rem;
	}

	.hero-slider__nav {
		order: 2;
	}

	.hero-slider__controls {
		inset: auto 1rem 1.25rem 1rem;
		gap: 1rem;
	}

	.hero-slider__arrow {
		width: 56px;
		height: 56px;
	}

	.products-section {
		padding-top: 4rem;
	}

	.products-section__intro {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.products-grid {
		padding-right: 1rem;
	}

	.product-card {
		flex-basis: min(86vw, 360px);
	}

	.product-card__media {
		min-height: 320px;
	}

	.services-section {
		padding-top: 4rem;
	}

	.services-section__intro {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

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

	.why-section {
		padding-top: 4rem;
	}

	.why-section__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.why-section__media-column {
		min-height: 0;
		display: grid;
		gap: 1rem;
	}

	.why-section__image--single {
		width: 100%;
		height: 320px;
	}

	.why-section__features {
		grid-template-columns: 1fr;
	}

	.contact-hero {
		padding-top: 6.25rem;
		padding-bottom: 3.25rem;
	}

	.contact-hero__content {
		gap: 0.35rem;
	}

	.contact-hero__title {
		max-width: 100%;
		font-size: clamp(2.25rem, 7.2vw, 3.5rem);
		line-height: 0.98;
	}

	.contact-hero__scroll {
		margin-top: 0.15rem;
	}

	.contact-layout {
		padding-bottom: 4rem;
	}

	.contact-layout__grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.contact-intro__title {
		max-width: 100%;
	}

	.contact-form-shell .wpforms-field-container {
		grid-template-columns: 1fr !important;
	}

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

	.contact-map {
		padding-bottom: 4rem;
	}

	.about-page {
		padding-bottom: 4rem;
	}

	.about-page__stack {
		gap: 3rem;
	}

	.service-copy {
		padding: 3rem 0 4rem;
	}

	.about-showcase {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding-top: 0.5rem;
	}

	.about-showcase__media {
		min-height: 0;
		max-width: 100%;
		width: 100%;
	}

	.about-showcase__content {
		max-width: 100%;
		padding-bottom: 0;
	}

	.about-block,
	.about-block--story {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about-block--story {
		padding: 2rem 0;
		margin-top: 0;
	}

	.about-block--padded {
		padding: 3rem 0 4rem;
	}

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

	.serramenti-links-section {
		padding: 3.5rem 0 4rem;
	}

	.serramenti-links-grid {
		grid-template-columns: 1fr;
	}

	.serramenti-link-card {
		grid-template-rows: minmax(220px, auto) auto;
		min-height: 0;
	}

	.about-band {
		padding-top: 1rem;
	}

	.about-showcase__media,
	.about-block__media--cluster {
		min-height: 0;
		display: grid;
		gap: 1rem;
	}

	.about-block__image--small,
	.about-block__image--large {
		position: static;
		width: 100%;
		height: 230px;
	}

	.about-block__content {
		max-width: 100%;
	}

	.about-block__media--pair,
	.about-block__media--cluster {
		max-width: 100%;
		width: 100%;
	}

	.about-block__image--portrait {
		height: 320px;
	}

	.final-cta {
		padding-bottom: 0;
	}

	body:not(.is-front-page) .final-cta {
		padding-top: 0;
	}

	.final-cta__inner {
		min-height: 0;
		padding: 1.25rem 0;
	}

	body:not(.is-front-page) .final-cta__inner {
		min-height: 0;
	}

	body:not(.is-front-page) .final-cta__title {
		font-size: clamp(1.65rem, 8vw, 2.25rem);
	}

	.final-cta__container {
		width: min(calc(100% - 2rem), var(--container));
	}

	.final-cta__panel {
		width: 100%;
		padding: 1.75rem;
	}

	.site-footer {
		padding-top: 4rem;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.service-card + .service-card {
		border-left: 0;
		border-top: 1px solid rgba(20, 57, 95, 0.12);
	}

	.product-card {
		opacity: 1;
		transform: none;
	}

	.product-card__hover {
		max-height: 220px;
		opacity: 1;
	}

	.site-panel {
		padding: 0.75rem;
	}
}
.is-sticky-active .menu > .menu-item > .sub-menu {background-color:#ffffff;}