:root {
	--navy: #0a1c33;
	--navy-deep: #06101c;
	--ink: #121a24;
	--muted: #5a6675;
	--line: #d8dee6;
	--paper: #f3f5f7;
	--white: #ffffff;
	--amber: #e89b1c;
	--amber-hot: #f0b040;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--pad: clamp(1.25rem, 4vw, 3.5rem);
	--max: 72rem;
}

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

html {
	scroll-behavior: auto;
}

body {
	font-family: "Source Sans 3", system-ui, sans-serif;
	color: var(--ink);
	background: var(--paper);
	line-height: 1.55;
	font-weight: 400;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

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

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

ul {
	list-style: none;
}

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

.mtm-picture {
	display: block;
	width: 100%;
	height: 100%;
}

[hidden] {
	display: none !important;
}

/* —— Nav —— */
.nav {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem var(--pad);
	isolation: isolate;
	transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.is-scrolled {
	background: rgba(6, 16, 28, 0.88);
	backdrop-filter: blur(14px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav.is-open {
	background: var(--navy-deep);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

body:not(.mtm-home) .nav {
	background: rgba(6, 16, 28, 0.96);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav__brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	position: relative;
	z-index: 4;
}

.nav__mark {
	font-family: Syne, sans-serif;
	font-weight: 800;
	font-size: 1.35rem;
	letter-spacing: -0.03em;
	color: var(--white);
	line-height: 1;
}

.nav__mark em {
	font-style: normal;
	color: var(--amber);
}

.nav__word {
	display: none;
	font-size: 0.62rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.2;
}

.nav__links {
	display: none;
	gap: 2rem;
	align-items: center;
}

.nav__links a {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.25s;
}

.nav__links a:hover {
	color: var(--amber-hot);
}

.nav__menu-list {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.55rem 1.1rem;
	background: var(--amber);
	color: var(--navy-deep);
	font-weight: 700;
	font-size: 0.88rem;
	letter-spacing: 0.02em;
	transition: background 0.25s, transform 0.25s;
}

.nav__cta:hover {
	background: var(--amber-hot);
	color: var(--navy-deep);
	transform: translateY(-1px);
}

.language-switcher {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.language-switcher__link {
	color: rgba(255, 255, 255, 0.6);
	font-family: "Source Sans 3", sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.language-switcher__link + .language-switcher__link::before {
	content: "/";
	margin-right: 0.5rem;
	color: rgba(255, 255, 255, 0.3);
}

.language-switcher__link:hover,
.language-switcher__link:focus-visible,
.language-switcher__link.is-current {
	color: var(--amber-hot);
}

.nav__toggle {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 2rem;
	padding: 0.35rem;
	position: relative;
	z-index: 4;
}

.nav__toggle span {
	display: block;
	height: 2px;
	background: var(--white);
	transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav.is-open .nav__toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav__toggle span:nth-child(2) {
	opacity: 0;
}

.nav.is-open .nav__toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.nav__drawer {
	position: fixed;
	inset: 0;
	height: 100dvh;
	max-height: 100dvh;
	background-color: var(--navy-deep);
	color: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	overflow-y: auto;
	padding: 5.5rem var(--pad) 2rem;
	gap: 1.5rem;
	transform: translateX(100%);
	visibility: hidden;
	pointer-events: none;
	transition: transform 0.45s var(--ease), visibility 0s linear 0.45s;
	z-index: 3;
}

.nav.is-open .nav__drawer {
	transform: translateX(0);
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0s;
}

.nav__drawer-list a {
	font-family: Syne, sans-serif;
	font-size: clamp(1.75rem, 6vw, 2.5rem);
	font-weight: 700;
	color: var(--white);
}

.nav__drawer-list a:hover {
	color: var(--amber);
}

.nav__drawer-list {
	display: grid;
	gap: 0.5rem;
}

.nav__drawer-list .sub-menu {
	display: grid;
	gap: 0.25rem;
	padding: 0.35rem 0 0.75rem 1rem;
}

.nav__drawer-list .sub-menu a {
	font-family: "Source Sans 3", sans-serif;
	font-size: 1.05rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.68);
}

.nav__drawer-foot {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nav__drawer-foot a {
	font-family: "Source Sans 3", sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.nav__drawer-foot .language-switcher__link {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 900px) {
	.nav__links {
		display: flex;
	}
	.nav__menu-list > li {
		position: relative;
	}
	.nav__menu-list .sub-menu {
		position: absolute;
		top: calc(100% + 0.8rem);
		left: -1rem;
		display: grid;
		min-width: 16rem;
		padding: 0.75rem 0;
		background: rgba(6, 16, 28, 0.98);
		border: 1px solid rgba(255, 255, 255, 0.12);
		box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.2);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-0.5rem);
		transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s var(--ease);
	}
	.nav__menu-list > li:hover > .sub-menu,
	.nav__menu-list > li:focus-within > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
	.nav__menu-list .sub-menu a {
		display: block;
		padding: 0.45rem 1rem;
		font-family: "Source Sans 3", sans-serif;
		font-size: 0.95rem;
		white-space: nowrap;
	}
	.nav__toggle {
		display: none;
	}
	.nav__drawer {
		display: none;
	}
	.nav__word {
		display: block;
	}
}

@media (max-width: 899px) {
	/* A filtered fixed header can capture fixed descendants on mobile. */
	.nav.is-scrolled {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
}

/* —— Hero —— */
.hero {
	position: relative;
	min-height: 100svh;
	display: grid;
	align-items: end;
	color: var(--white);
	overflow: hidden;
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
	transform: scale(1.08);
	will-change: transform;
}

.hero__veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(6, 16, 28, 0.92) 0%, rgba(6, 16, 28, 0.55) 48%, rgba(6, 16, 28, 0.35) 100%),
		linear-gradient(to top, rgba(6, 16, 28, 0.75) 0%, transparent 45%);
	z-index: 1;
}

.hero__grid {
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0.12;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: radial-gradient(ellipse 70% 60% at 30% 50%, black, transparent);
	pointer-events: none;
}

.hero__inner {
	position: relative;
	z-index: 2;
	width: min(100%, var(--max));
	margin: 0 auto;
	padding: calc(5.5rem + env(safe-area-inset-top)) var(--pad) clamp(3rem, 8vh, 5rem);
}

.hero__brand {
	font-family: Syne, sans-serif;
	font-weight: 800;
	font-size: clamp(3.4rem, 12vw, 7.5rem);
	line-height: 0.9;
	letter-spacing: -0.03em;
	margin-bottom: 1.25rem;
}

.hero__brand em {
	font-style: normal;
	color: var(--amber);
}

.hero__title {
	font-family: Syne, sans-serif;
	font-weight: 600;
	font-size: clamp(1.35rem, 3.2vw, 2rem);
	line-height: 1.25;
	max-width: 22ch;
	margin-bottom: 0.85rem;
	letter-spacing: -0.01em;
}

.hero__lead {
	max-width: 38ch;
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	color: rgba(255, 255, 255, 0.78);
	margin-bottom: 1.75rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* —— Buttons —— */
.btn,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.4rem;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.01em;
	transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover,
.button:hover {
	transform: translateY(-2px);
}

.btn--amber,
.button--amber {
	background: var(--amber);
	color: var(--navy-deep);
}

.btn--amber:hover,
.button--amber:hover {
	background: var(--amber-hot);
}

.btn--ghost,
.button--ghost,
.button--light {
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--white);
	background: transparent;
}

.btn--ghost:hover,
.button--ghost:hover,
.button--light:hover {
	border-color: var(--white);
	background: rgba(255, 255, 255, 0.06);
}

.btn--navy,
.button--dark {
	background: var(--navy);
	color: var(--white);
}

.btn--navy:hover,
.button--dark:hover {
	background: #12304f;
}

.btn--outline {
	border: 1.5px solid var(--navy);
	color: var(--navy);
}

.btn--outline:hover {
	background: var(--navy);
	color: var(--white);
}

.button--small {
	padding: 0.6rem 1rem;
	font-size: 0.8rem;
}

.hero__scroll {
	position: absolute;
	right: var(--pad);
	bottom: 2rem;
	z-index: 2;
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 0.65rem;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.hero__scroll-line {
	width: 1px;
	height: 3.5rem;
	background: linear-gradient(to bottom, var(--amber), transparent);
	transform-origin: top;
}

@media (min-width: 768px) {
	.hero__scroll {
		display: flex;
	}
}

/* —— Sections shared —— */
.section {
	padding: clamp(4rem, 10vw, 7.5rem) var(--pad);
}

.section__inner {
	width: min(100%, var(--max));
	margin: 0 auto;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--amber);
	margin-bottom: 0.85rem;
}

.eyebrow__rule {
	display: inline-block;
	width: 2rem;
	height: 1px;
	background: currentColor;
}

.eyebrow--light {
	color: var(--amber-hot);
}

.section h2 {
	font-family: Syne, sans-serif;
	font-weight: 700;
	font-size: clamp(1.85rem, 4.2vw, 3rem);
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--navy);
	max-width: 18ch;
	margin-bottom: 1.1rem;
}

.section p.lead,
.section .section-lead {
	font-size: clamp(1.05rem, 1.8vw, 1.2rem);
	color: var(--muted);
	max-width: 48ch;
}

/* —— About —— */
.about {
	background: var(--white);
}

.about__grid {
	display: grid;
	gap: 2.5rem;
	align-items: end;
}

@media (min-width: 860px) {
	.about__grid {
		grid-template-columns: 1.2fr 0.8fr;
		gap: 4rem;
		align-items: center;
	}
}

.about__credential {
	display: grid;
	gap: 0.85rem;
	margin-top: 2rem;
	padding: 1rem 0 1rem 1.25rem;
	border-left: 3px solid var(--amber);
	color: var(--navy);
	transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.about__credential:hover {
	transform: translateX(4px);
	border-color: var(--amber-hot);
}

.about__credential-logo {
	width: min(100%, 15rem);
	padding: 0.65rem 0.75rem;
	background: var(--white);
	border: 1px solid var(--line);
}

.about__credential-logo img {
	width: 100%;
	height: auto;
}

.about__credential-copy {
	display: grid;
	gap: 0.2rem;
}

.about__credential-copy strong {
	font-family: Syne, sans-serif;
	font-size: 0.95rem;
	line-height: 1.25;
}

.about__credential-copy span {
	color: var(--muted);
	font-size: 0.9rem;
}

.about__actions {
	margin-top: 1.75rem;
}

.about__aside {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--navy);
}

.about__aside img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.9) contrast(1.04);
	opacity: 0.92;
}

.about__badge {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	padding: 1rem 1.1rem;
	background: rgba(6, 16, 28, 0.88);
	color: var(--white);
	backdrop-filter: blur(8px);
}

.about__badge strong {
	display: block;
	font-family: Syne, sans-serif;
	font-size: 0.95rem;
	margin-bottom: 0.25rem;
}

.about__badge span {
	font-size: 0.85rem;
	opacity: 0.75;
}

/* —— Featured Product (Home) —— */
.home-featured {
	background: var(--navy-deep);
	color: var(--white);
	overflow: hidden;
}

.home-featured h2 {
	color: var(--white);
}

.home-featured .lead,
.home-featured .section-lead {
	color: rgba(255, 255, 255, 0.68);
}

.home-featured__layout {
	display: grid;
	gap: 2.5rem;
}

@media (min-width: 900px) {
	.home-featured__layout {
		grid-template-columns: 1fr 1.05fr;
		gap: 3.5rem;
		align-items: center;
	}
}

.home-featured__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 1.5rem 0 1.75rem;
}

.chip {
	padding: 0.4rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
}

.home-featured__visual {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #0d2238;
}

.home-featured__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-featured__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(232, 155, 28, 0.35);
	pointer-events: none;
	mix-blend-mode: screen;
}

/* —— Benefits —— */
.benefits {
	background:
		radial-gradient(ellipse 80% 50% at 100% 0%, rgba(232, 155, 28, 0.08), transparent 55%),
		var(--paper);
}

.benefits__intro {
	margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.benefits__list {
	display: grid;
	gap: 0;
	border-top: 1px solid var(--line);
}

.benefits__item {
	display: grid;
	gap: 0.75rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
	.benefits__item {
		grid-template-columns: 4rem 1fr 1.2fr;
		gap: 1.5rem;
		align-items: baseline;
		padding: 1.75rem 0;
	}
}

.benefits__num {
	font-family: Syne, sans-serif;
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--amber);
}

.benefits__item h3 {
	font-family: Syne, sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--navy);
}

.benefits__item p {
	color: var(--muted);
	font-size: 1rem;
}

/* —— Lineup & Interactive Showcase —— */
.lineup {
	background: var(--white);
}

.lineup__head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: end;
	gap: 1.5rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.lineup__head h2 {
	margin-bottom: 0;
}

/* Showcase Display (Image + Text) */
.lineup__showcase {
	margin-bottom: 2rem;
	border: 1px solid var(--line);
	background: var(--paper);
	box-shadow: 0 8px 30px rgba(10, 28, 51, 0.04);
	overflow: hidden;
}

.lineup__panel {
	display: grid;
	gap: 0;
	background: var(--white);
}

.lineup__panel[hidden] {
	display: none;
}

.lineup__panel.is-active {
	animation: lineupFade 0.4s var(--ease) forwards;
}

@keyframes lineupFade {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (min-width: 860px) {
	.lineup__panel {
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.25fr);
		align-items: stretch;
	}
}

.lineup__panel-media {
	position: relative;
	min-height: 18rem;
	background: var(--navy-deep);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.lineup__panel:hover .lineup__panel-img {
	transform: scale(1.03);
}

.lineup__panel-badge {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	padding: 0.35rem 0.8rem;
	background: var(--amber);
	color: var(--navy-deep);
	font-family: "Source Sans 3", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.lineup__panel-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2rem, 5vw, 3.5rem);
	background: var(--white);
}

.lineup__panel-title {
	font-family: Syne, sans-serif;
	font-size: clamp(1.75rem, 3.2vw, 2.4rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--navy);
	margin-bottom: 0.85rem;
}

.lineup__panel-lead {
	color: var(--muted);
	font-size: clamp(1rem, 1.6vw, 1.12rem);
	line-height: 1.55;
	margin-bottom: 1.5rem;
	max-width: 48ch;
}

.lineup__panel-features {
	display: grid;
	gap: 0.75rem;
	margin-bottom: 2rem;
	list-style: none;
	padding: 0;
}

.lineup__panel-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--navy);
}

.lineup__panel-features svg {
	width: 1.1rem;
	height: 1.1rem;
	flex-shrink: 0;
	margin-top: 0.15rem;
	color: var(--amber);
}

.lineup__panel-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
}

/* Lineup Navigation Grid / Tabs */
.lineup__grid {
	display: grid;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}

@media (min-width: 700px) {
	.lineup__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.lineup__item {
	position: relative;
	background: var(--white);
	padding: 1.75rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	min-height: 12.5rem;
	text-align: left;
	cursor: pointer;
	border: 0;
	font: inherit;
	color: var(--ink);
	transition: background 0.3s var(--ease), color 0.3s, transform 0.25s;
}

.lineup__item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--amber);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--ease);
}

.lineup__item-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem;
}

.lineup__item-num {
	font-family: Syne, sans-serif;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: var(--amber);
}

.lineup__item h3 {
	font-family: Syne, sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--navy);
	transition: color 0.25s;
}

.lineup__item p {
	color: var(--muted);
	flex: 1;
	font-size: 0.95rem;
	line-height: 1.5;
	transition: color 0.25s;
}

.lineup__link {
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--navy);
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	transition: color 0.25s;
}

.lineup__link svg {
	width: 1rem;
	height: 1rem;
	transition: transform 0.25s var(--ease);
}

.lineup__item:hover {
	background: #f8fafc;
}

.lineup__item:hover h3 {
	color: var(--navy-deep);
}

.lineup__item:hover .lineup__link svg {
	transform: translateX(4px);
}

.lineup__item.is-active {
	background: var(--navy);
	color: var(--white);
}

.lineup__item.is-active::before {
	transform: scaleX(1);
}

.lineup__item.is-active h3 {
	color: var(--white);
}

.lineup__item.is-active p {
	color: rgba(255, 255, 255, 0.72);
}

.lineup__item.is-active .lineup__link {
	color: var(--amber-hot);
}

/* —— CTA —— */
.cta {
	position: relative;
	color: var(--white);
	overflow: hidden;
	padding: clamp(4.5rem, 12vw, 8rem) var(--pad);
}

.cta__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.cta__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cta__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(10, 28, 51, 0.94) 0%, rgba(10, 28, 51, 0.78) 55%, rgba(10, 28, 51, 0.55) 100%);
	z-index: 1;
}

.cta__inner {
	position: relative;
	z-index: 2;
	width: min(100%, var(--max));
	margin: 0 auto;
}

.cta h2 {
	color: var(--white);
	max-width: 16ch;
	margin-bottom: 0.85rem;
}

.cta .lead,
.cta .section-lead {
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 1.75rem;
}

/* —— Footer —— */
.footer {
	background: var(--navy-deep);
	color: rgba(255, 255, 255, 0.72);
	padding: 3rem var(--pad) 2rem;
}

.footer__inner {
	width: min(100%, var(--max));
	margin: 0 auto;
	display: grid;
	gap: 2rem;
}

@media (min-width: 800px) {
	.footer__inner {
		grid-template-columns: 1.4fr 1fr 1fr;
		gap: 3rem;
	}
}

.footer__brand {
	font-family: Syne, sans-serif;
	font-weight: 800;
	font-size: 1.75rem;
	color: var(--white);
	letter-spacing: -0.02em;
	margin-bottom: 0.5rem;
}

.footer__brand em {
	font-style: normal;
	color: var(--amber);
}

.footer h4 {
	font-family: Syne, sans-serif;
	color: var(--white);
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.footer a:hover {
	color: var(--amber-hot);
}

.footer__list {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	font-size: 0.95rem;
}

.footer__language {
	margin-top: 1.75rem;
}

.footer__language .language-switcher {
	gap: 0.7rem;
}

.footer__language .language-switcher__link {
	color: rgba(255, 255, 255, 0.72);
}

.footer__bottom {
	width: min(100%, var(--max));
	margin: 2.5rem auto 0;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: 0.85rem;
}

/* —— WhatsApp —— */
.wa {
	position: fixed;
	right: 1.1rem;
	bottom: 1.1rem;
	z-index: 40;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 50%;
	background: #25d366;
	display: grid;
	place-items: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	transition: transform 0.25s var(--ease);
}

.wa:hover {
	transform: scale(1.06);
}

.wa svg {
	width: 1.55rem;
	height: 1.55rem;
	fill: white;
}

/* —— Product-family pages —— */
.site-main.site-main--product,
.site-main.site-main--product-index {
	padding-top: 0;
	background: var(--white);
}

.product-hero {
	position: relative;
	overflow: hidden;
	background: var(--navy-deep);
	color: var(--white);
	isolation: isolate;
}

.product-hero::after {
	content: "";
	position: absolute;
	inset: auto -10% -35% 35%;
	height: 70%;
	border: 1px solid rgba(232, 155, 28, 0.3);
	border-radius: 50%;
	transform: rotate(-17deg);
	pointer-events: none;
}

.product-hero__grid {
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0.18;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: linear-gradient(100deg, black 0%, transparent 78%);
	pointer-events: none;
}

.product-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	width: min(100%, var(--max));
	min-height: min(38rem, 80svh);
	margin: 0 auto;
	padding: clamp(5.5rem, 9vw, 7.5rem) var(--pad) clamp(2.5rem, 5vw, 4rem);
}

.product-hero__copy {
	max-width: 42rem;
}

.product-hero__copy h1 {
	max-width: 16ch;
	margin-bottom: 1.15rem;
	font-family: Syne, sans-serif;
	font-size: clamp(1.85rem, 3.6vw, 2.75rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.025em;
	color: var(--white);
}

.product-hero__intro {
	max-width: 54ch;
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	line-height: 1.6;
}

.product-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}

.product-hero__media,
.product-hero__gallery {
	position: relative;
}

.product-hero__media {
	min-height: 18rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	overflow: hidden;
}

.product-hero__image {
	width: 100%;
	height: 100%;
	min-height: 18rem;
	object-fit: cover;
	object-position: center;
}

.product-hero__media--contain {
	background: #e9edf0;
}

.product-hero__media--contain .product-hero__image {
	padding: 1rem;
	object-fit: contain;
}

.product-hero__badge {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	max-width: min(12rem, 48%);
	padding: 0.55rem;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.2);
}

.product-hero__badge-image {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 5rem;
	object-fit: contain;
}

.product-hero__gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.product-hero__gallery figure {
	display: grid;
	min-height: 13rem;
	place-items: center;
	background: #e9edf0;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-hero__gallery-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* The intraosseous hero uses two source images; keep them balanced instead
 * of allowing the grid row to turn them into tall, cramped cards. */
.product-hero--intraosseous .product-hero__inner {
	grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.85fr);
	align-items: center;
	gap: clamp(1.75rem, 4vw, 3rem);
	min-height: min(44rem, 86svh);
}

.product-hero--intraosseous .product-hero__copy h1 {
	max-width: 15ch;
	text-wrap: balance;
}

.product-hero--intraosseous .product-hero__gallery {
	width: min(100%, 27rem);
	justify-self: end;
	align-self: center;
}

.product-hero--intraosseous .product-hero__gallery figure {
	aspect-ratio: 1;
	min-height: 0;
	padding: clamp(0.5rem, 1.5vw, 1rem);
}

.product-family-nav {
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.product-family-nav__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.75rem 1.5rem;
	width: min(100%, var(--max));
	margin: 0 auto;
	padding: 1rem var(--pad);
}

.product-family-nav__label {
	color: var(--amber);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.product-family-nav__links {
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	gap: 0.25rem 1.15rem;
}

.product-family-nav__link {
	position: relative;
	padding: 0.25rem 0;
	color: var(--muted);
	font-size: 0.92rem;
	font-weight: 600;
}

.product-family-nav__link::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: var(--amber);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s var(--ease);
}

.product-family-nav__link:hover,
.product-family-nav__link:focus-visible,
.product-family-nav__link.is-current {
	color: var(--navy);
}

.product-family-nav__link:hover::after,
.product-family-nav__link:focus-visible::after,
.product-family-nav__link.is-current::after {
	transform: scaleX(1);
}

.product-detail {
	padding-top: clamp(2.5rem, 6vw, 5rem);
	padding-bottom: 5rem;
}

.product-section {
	padding: clamp(2rem, 5vw, 4rem) 0;
	border-bottom: 1px solid var(--line);
}

.product-section h2,
.product-section h3 {
	font-family: Syne, sans-serif;
	letter-spacing: -0.025em;
	color: var(--navy);
}

.product-section h2 {
	max-width: 22ch;
	font-size: clamp(1.5rem, 2.8vw, 2.2rem);
	line-height: 1.2;
}

.product-section h3 {
	margin-bottom: 0.75rem;
	font-size: clamp(1.2rem, 2vw, 1.55rem);
	line-height: 1.25;
}

.product-section p {
	max-width: 65ch;
	color: var(--muted);
	font-size: 1.08rem;
}

.product-section__lead {
	max-width: 58ch;
	margin-top: 1rem;
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.5;
}

.product-section__note {
	margin-top: 1.5rem;
	color: var(--navy) !important;
	font-weight: 700;
}

.product-video-section {
	max-width: 58rem;
}

.product-video {
	position: relative;
	aspect-ratio: 16 / 9;
	margin-top: 1.25rem;
	background: var(--navy-deep);
	box-shadow: 1rem 1rem 0 var(--amber);
}

.product-video iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.product-tabs {
	padding: clamp(2rem, 5vw, 4rem) 0;
	border-bottom: 1px solid var(--line);
}

.product-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.product-tabs__button {
	padding: 0.8rem 1.1rem;
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}

.product-tabs__button:hover,
.product-tabs__button:focus-visible,
.product-tabs__button.is-active {
	border-color: var(--navy);
	background: var(--navy);
	color: var(--white);
	transform: translateY(-2px);
}

.product-tabs__panel[hidden] {
	display: none;
}

.product-tabs__panel {
	padding: clamp(1.5rem, 4vw, 3rem);
	background: var(--white);
	border-left: 4px solid var(--amber);
}

.product-tabs__panel p + p {
	margin-top: 0.9rem;
}

.product-sections--exposed {
	border-bottom: 0;
}

.product-exposed-section {
	background: transparent;
}

.product-exposed-section:last-child {
	border-bottom: 0;
}

.product-exposed-section > .eyebrow {
	margin-bottom: 1rem;
}

.product-exposed-section h2 {
	max-width: 38ch;
}

.product-feature-list,
.product-number-list {
	display: grid;
	gap: 0.8rem;
	margin-top: 1.5rem;
}

.product-feature-list li {
	display: grid;
	grid-template-columns: minmax(9rem, 0.55fr) 1fr;
	gap: 1rem;
	padding-top: 0.8rem;
	border-top: 1px solid var(--line);
}

.product-feature-list strong,
.product-kit-list strong {
	color: var(--navy);
	font-weight: 700;
}

.product-feature-list span,
.product-kit-list span {
	color: var(--muted);
}

.product-number-list {
	counter-reset: product-step;
	list-style: none;
	padding: 0;
}

.product-number-list li {
	position: relative;
	padding: 0.8rem 0 0.8rem 2.75rem;
	border-top: 1px solid var(--line);
	color: var(--navy);
	font-weight: 600;
}

.product-number-list li::before {
	counter-increment: product-step;
	content: counter(product-step, decimal-leading-zero);
	position: absolute;
	left: 0;
	color: var(--amber);
	font-family: Syne, sans-serif;
	font-weight: 800;
}

.product-technical__body {
	padding: 0;
}

.product-technical__body h3 {
	margin-top: 1.2rem;
	font-size: 1.2rem;
}

.product-technical dl {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin-top: 1rem;
}

.product-technical dl div {
	padding: 0.75rem;
	background: var(--paper);
}

.product-technical dt {
	color: var(--muted);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-technical dd {
	margin-top: 0.2rem;
	color: var(--navy);
	font-family: Syne, sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
}

.procedure-panel__grid,
.product-kits {
	display: grid;
	gap: clamp(1.5rem, 5vw, 4rem);
	align-items: center;
}

.procedure-panel__media,
.product-kits__media {
	background: var(--paper);
	border: 1px solid var(--line);
	overflow: hidden;
}

.procedure-panel__image,
.product-kits__image {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.procedure-panel__copy h3 {
	margin-bottom: 0.8rem;
}

.product-kits__copy {
	order: 1;
}

.product-kits__media {
	order: 0;
	padding: clamp(0.5rem, 2vw, 1.5rem);
}

.product-kit-list {
	display: grid;
	gap: 0.9rem;
	margin-top: 1.5rem;
}

.product-kit-list li {
	display: grid;
	gap: 0.15rem;
	padding: 0.8rem 0;
	border-top: 1px solid var(--line);
}

.product-intraosseous-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.product-intraosseous-gallery figure {
	display: grid;
	min-height: 15rem;
	place-items: center;
	padding: 1rem;
	background: var(--white);
	border: 1px solid var(--line);
}

.product-intraosseous-gallery__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-content-list {
	padding-top: 0;
}

.product-content-list article {
	display: grid;
	grid-template-columns: 4.5rem minmax(0, 1fr);
	gap: 1.25rem;
	padding: 2rem 0;
	border-bottom: 1px solid var(--line);
}

.product-content-list__number {
	color: var(--amber);
	font-family: Syne, sans-serif;
	font-size: 1rem;
	font-weight: 800;
}

.product-content-list article h2 {
	margin-bottom: 0.6rem;
	font-size: clamp(1.35rem, 2.8vw, 2rem);
}

.product-detail__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem;
	padding-top: clamp(2rem, 5vw, 3.5rem);
	padding-bottom: clamp(3rem, 7vw, 5rem);
}

.page-shell.product-detail {
	padding-top: clamp(2.5rem, 6vw, 5rem);
	padding-bottom: 0;
}

.page-shell.product-index-hero {
	padding-top: clamp(6rem, 10vw, 8rem);
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.product-index-hero h1 {
	max-width: 18ch;
	margin: 0.75rem 0 1.2rem;
	font-family: Syne, sans-serif;
	font-size: clamp(1.85rem, 3.6vw, 2.6rem);
	line-height: 1.15;
	letter-spacing: -0.025em;
	color: var(--navy);
}

.page-shell.product-index-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	background: transparent;
	border: 0;
	padding-bottom: 5rem;
}

.product-index-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: 0 2px 14px rgba(10, 28, 51, 0.04);
	overflow: hidden;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.product-index-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(10, 28, 51, 0.09);
	border-color: rgba(232, 155, 28, 0.4);
}

.product-index-card__media {
	display: grid;
	aspect-ratio: 4 / 3;
	place-items: center;
	background: #f8fafc;
	padding: 1.25rem;
	overflow: hidden;
}

.product-index-card__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.5s var(--ease);
}

.product-index-card:hover .product-index-card__image {
	transform: scale(1.05);
}

.product-index-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1.5rem;
}

.product-index-card__body h2 {
	max-width: 18ch;
	font-family: Syne, sans-serif;
	font-size: clamp(1.2rem, 2vw, 1.45rem);
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--navy);
}

.product-index-card__body .text-link {
	margin-top: auto;
}

@media (max-width: 900px) {
	.page-shell.product-index-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.page-shell.product-index-grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 700px) {
	.product-hero__inner {
		grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.8fr);
	}

	.product-hero--intraosseous .product-hero__copy h1 {
		font-size: clamp(1.85rem, 3.6vw, 2.75rem);
	}

	.procedure-panel__grid,
	.product-kits {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.product-kits__copy {
		order: 0;
	}

	.product-kits__media {
		order: 1;
	}
}

/* —— Generic pages, posts and forms —— */
.site-main {
	min-height: 60vh;
	padding-top: clamp(5.5rem, 12vw, 7rem);
}

.site-main--home {
	padding-top: 0;
}

.page-shell {
	width: min(100%, var(--max));
	margin: 0 auto;
	padding: 0 var(--pad);
}

.page-hero {
	max-width: 46rem;
	padding: clamp(2rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 3rem);
}

.page-hero h1 {
	font-family: Syne, sans-serif;
	font-weight: 700;
	font-size: clamp(1.85rem, 3.8vw, 2.75rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--navy);
	max-width: 22ch;
	margin-bottom: 0.85rem;
}

.page-hero__intro {
	max-width: 46ch;
	margin: 0;
	color: var(--muted);
	font-size: clamp(1.05rem, 1.8vw, 1.2rem);
	line-height: 1.5;
}

.page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	padding: 1.5rem 0 3rem;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--navy);
	border-bottom: 1px solid currentColor;
	padding-bottom: 0.2rem;
	transition: color 0.25s;
}

.text-link:hover,
.text-link:focus-visible {
	color: var(--amber);
	border-color: currentColor;
}

.text-link--light {
	color: var(--white);
}

.arrow-icon {
	display: inline-block;
	font-size: 1.05em;
	line-height: 1;
	transition: transform 0.25s var(--ease);
}

a:hover .arrow-icon,
button:hover .arrow-icon {
	transform: translate(3px, -3px);
}

.entry-content {
	max-width: 46rem;
	padding-bottom: 5rem;
	color: #3d4855;
	font-size: 1.08rem;
}

.entry-content > * + * {
	margin-top: 1.2em;
}

.entry-content h2,
.entry-content h3 {
	font-family: Syne, sans-serif;
	letter-spacing: -0.02em;
	color: var(--navy);
}

.entry-content h2 {
	font-size: 1.7rem;
	margin-top: 1.7em;
}

.entry-content h3 {
	font-size: 1.3rem;
	margin-top: 1.5em;
}

.entry-content a {
	color: var(--navy);
	text-decoration: underline;
	text-decoration-color: var(--amber);
	text-underline-offset: 3px;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.3em;
}

.entry-content li {
	margin-top: 0.5em;
}

.entry-content img,
.single-article__image img {
	width: 100%;
	height: auto;
}

.entry-content .wp-block-button__link,
.entry-content .wp-block-button a {
	display: inline-flex;
	align-items: center;
	padding: 0.85rem 1.4rem;
	background: var(--navy);
	color: var(--white);
	font-weight: 700;
	text-decoration: none;
}

.single-article__image {
	max-width: 1000px;
	margin-bottom: 2.5rem;
}

.legacy-page__sections {
	border-top: 1px solid var(--line);
}

.legacy-section {
	display: grid;
	grid-template-columns: 4rem minmax(0, 1fr);
	gap: 1.25rem;
	padding: 2rem 0;
	border-bottom: 1px solid var(--line);
}

.legacy-section__number {
	font-family: Syne, sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: var(--amber);
}

.legacy-section h2 {
	font-family: Syne, sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--navy);
	margin-bottom: 0.5rem;
}

.legacy-section p {
	max-width: 60ch;
	color: var(--muted);
	font-size: 1.05rem;
}

/* —— Company page —— */
.site-main--company {
	padding-top: 0;
	background: var(--paper);
}

.company-page {
	padding-top: clamp(5.5rem, 12vw, 8rem);
	padding-bottom: clamp(4rem, 9vw, 7rem);
}

.company-page__hero {
	max-width: 60rem;
	padding-top: 0;
}

.company-page__hero h1 {
	max-width: 15ch;
	font-size: clamp(2.5rem, 6vw, 5rem);
	line-height: 1;
}

.company-page__overview {
	display: grid;
	gap: 1rem;
	margin: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
}

@media (min-width: 760px) {
	.company-page__overview {
		grid-template-columns: minmax(10rem, 0.32fr) minmax(0, 1fr);
		align-items: stretch;
	}
}

.company-page__year {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 13rem;
	padding: 1.5rem;
	border-left: 3px solid var(--amber);
	background: var(--navy);
	color: var(--white);
}

.company-page__year-label {
	color: var(--amber-hot);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.company-page__year strong {
	margin-top: 0.35rem;
	font-family: Syne, sans-serif;
	font-size: clamp(3rem, 7vw, 5.5rem);
	line-height: 0.9;
	letter-spacing: -0.05em;
}

.company-page__media {
	position: relative;
	min-height: 18rem;
	overflow: hidden;
	background: var(--navy);
}

.company-page__media .mtm-picture,
.company-page__media .company-page__image {
	width: 100%;
	height: 100%;
}

.company-page__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.company-page__body {
	display: grid;
	gap: clamp(2rem, 6vw, 5rem);
}

@media (min-width: 960px) {
	.company-page__body {
		grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
		align-items: start;
	}
}

.company-page__credential {
	padding: 1.25rem;
	border-top: 3px solid var(--amber);
	background: var(--navy-deep);
	color: var(--white);
}

.company-page__credential-logo {
	margin-bottom: 1.25rem;
	padding: 0.8rem;
	background: var(--white);
}

.company-page__credential-logo img {
	width: 100%;
	height: auto;
}

.company-page__credential .eyebrow {
	margin-bottom: 0.75rem;
}

.company-page__credential > p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.98rem;
}

.company-page__credential .text-link {
	margin-top: 1.25rem;
	font-size: 0.75rem;
}

.company-page__actions {
	padding: 0;
	margin-top: clamp(2.5rem, 6vw, 4rem);
}

.page-form-page__body {
	max-width: 850px;
	padding-bottom: 5rem;
}

.mtm-form {
	padding: clamp(1.5rem, 5vw, 3rem);
	background: var(--white);
	border: 1px solid var(--line);
}

.mtm-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.mtm-field {
	margin: 0;
}

.mtm-field--wide {
	grid-column: 1 / -1;
}

.mtm-field label {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--navy);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.mtm-field label span {
	color: var(--amber);
}

.mtm-field input,
.mtm-field select,
.mtm-field textarea {
	width: 100%;
	padding: 0.8rem 0.9rem;
	border: 1px solid var(--line);
	border-radius: 0;
	background: var(--paper);
	color: var(--ink);
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mtm-field textarea {
	resize: vertical;
}

.mtm-field input:focus,
.mtm-field select:focus,
.mtm-field textarea:focus {
	border-color: var(--amber);
	box-shadow: 0 0 0 3px rgba(232, 155, 28, 0.15);
}

.mtm-form .button {
	margin-top: 1.75rem;
}

.mtm-form__trap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-notice {
	padding: 1rem 1.1rem;
	margin-bottom: 1.25rem;
	background: var(--white);
	border-left: 4px solid var(--amber);
}

.form-notice--error {
	border-left-color: #bd4b38;
}

/* —— Archives & search —— */
.archive-shell {
	padding-bottom: 5rem;
}

.post-grid {
	display: grid;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}

@media (min-width: 700px) {
	.post-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.post-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	padding: 0;
}

.post-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--navy);
}

.post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}

.post-card:hover .post-card__image img {
	transform: scale(1.05);
}

.post-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	color: var(--amber);
	font-family: Syne, sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
}

.post-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding: 1.5rem 1.4rem;
	flex: 1;
}

.post-card__meta {
	color: var(--amber);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.post-card h2 {
	font-family: Syne, sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--navy);
}

.post-card h2 a:hover {
	color: var(--amber);
}

.post-card__body > p:not(.post-card__meta) {
	color: var(--muted);
	font-size: 0.95rem;
	flex: 1;
}

.post-card .text-link {
	margin-top: 0.5rem;
}

.empty-state {
	padding: 2rem;
	color: var(--muted);
}

.empty-page {
	padding: clamp(3rem, 10vw, 6rem) 0 5rem;
}

.empty-page h1 {
	font-family: Syne, sans-serif;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--navy);
	max-width: 20ch;
	margin-bottom: 1rem;
}

.empty-page p:not(.eyebrow) {
	max-width: 46ch;
	margin-bottom: 1.75rem;
	color: var(--muted);
}

.pagination {
	padding: 3rem 0 0;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--navy);
	font-weight: 600;
	transition: background 0.25s, color 0.25s;
}

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

/* —— Catalog Hero —— */
.catalog-hero {
	position: relative;
	background: var(--navy-deep);
	color: var(--white);
	overflow: hidden;
	padding: clamp(5.5rem, 10vw, 8rem) var(--pad) clamp(2.5rem, 5vw, 3.5rem);
}

.catalog-hero__grid {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0.15;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 80% 70% at 30% 40%, black, transparent);
	pointer-events: none;
}

.catalog-hero__inner {
	position: relative;
	z-index: 1;
	width: min(100%, var(--max));
	margin: 0 auto;
}

.catalog-hero__title {
	font-family: Syne, sans-serif;
	font-weight: 700;
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	line-height: 1.12;
	letter-spacing: -0.025em;
	color: var(--white);
	margin-bottom: 0.85rem;
}

.catalog-hero__lead {
	max-width: 58ch;
	font-size: clamp(1.05rem, 1.7vw, 1.2rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 0;
}

/* —— WooCommerce Catalog Grid & Product Cards —— */
.site-main--commerce {
	background: var(--paper);
	padding-top: 0;
}

.commerce-shell {
	width: min(100%, var(--max));
	margin: 0 auto;
	padding: clamp(2rem, 5vw, 3.5rem) var(--pad) 5rem;
}

.woocommerce .woocommerce-breadcrumb {
	margin: 0 0 1.75rem;
	color: var(--muted);
	font-size: 0.85rem;
	font-weight: 600;
}

.woocommerce .woocommerce-breadcrumb a {
	color: var(--navy);
	transition: color 0.2s;
}

.woocommerce .woocommerce-breadcrumb a:hover {
	color: var(--amber);
}

.woocommerce .woocommerce-ordering {
	display: none !important;
}

.woocommerce .woocommerce-result-count {
	margin-bottom: 2rem;
	color: var(--muted);
	font-size: 0.95rem;
	font-weight: 600;
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	margin: 0 0 3rem;
	background: transparent;
	border: 0;
	padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: 0 2px 12px rgba(10, 28, 51, 0.03);
	padding: 0;
	margin: 0;
	width: auto;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.woocommerce ul.products li.product:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(10, 28, 51, 0.09);
	border-color: rgba(232, 155, 28, 0.4);
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.woocommerce ul.products li.product img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	background: #f8fafc;
	padding: 1.25rem;
	margin: 0;
	transition: transform 0.4s var(--ease);
}

.woocommerce ul.products li.product:hover img {
	transform: scale(1.04);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding: 1.25rem 1.25rem 0.5rem;
	font-family: Syne, sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--navy);
}

.woocommerce ul.products li.product .price {
	padding: 0 1.25rem 1rem;
	color: var(--muted);
	font-size: 0.95rem;
}

.woocommerce ul.products li.product .button {
	margin: auto 1.25rem 1.25rem;
	padding: 0.75rem 1.2rem;
	background: var(--navy);
	color: var(--white);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: center;
	border-radius: 0;
	transition: background 0.25s, transform 0.25s;
}

.woocommerce ul.products li.product .button:hover {
	background: var(--amber);
	color: var(--navy-deep);
}

/* —— WooCommerce Single Product Page —— */
.site-main--commerce-single {
	padding-top: clamp(5.5rem, 10vw, 7rem);
}

.site-main--commerce-single .commerce-shell {
	padding-top: 1.5rem;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 5vw, 4rem);
	background: transparent;
	margin-bottom: 4rem;
}

.woocommerce div.product div.images {
	float: none;
	width: 100%;
	margin: 0;
	background: var(--white);
	border: 1px solid var(--line);
	padding: 1.5rem;
	box-shadow: 0 4px 20px rgba(10, 28, 51, 0.03);
}

.woocommerce div.product div.images img {
	width: 100%;
	height: auto;
	object-fit: contain;
	background: transparent;
}

.woocommerce div.product div.summary {
	float: none;
	width: 100%;
	padding: 0;
}

.woocommerce div.product .summary h1.product_title {
	font-family: Syne, sans-serif;
	font-size: clamp(1.75rem, 3.2vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--navy);
	margin-bottom: 0.75rem;
}

.woocommerce div.product .summary .product_meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	padding: 0.75rem 0 1rem;
	border-bottom: 1px solid var(--line);
	margin-bottom: 1.25rem;
	font-size: 0.85rem;
	color: var(--muted);
}

.woocommerce div.product .summary .product_meta .sku_wrapper,
.woocommerce div.product .summary .product_meta .posted_in {
	font-weight: 600;
}

.woocommerce div.product .summary .product_meta span.sku,
.woocommerce div.product .summary .product_meta a {
	color: var(--navy);
}

.woocommerce div.product .summary .woocommerce-product-details__short-description {
	color: #3d4855;
	font-size: 1.05rem;
	line-height: 1.6;
	margin-bottom: 1.75rem;
}

.woocommerce div.product .summary .price {
	color: var(--navy);
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
}

.product-quote-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1.5rem 0 2rem;
}

.btn--whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1.4rem;
	background: #25d366;
	color: var(--white);
	font-weight: 700;
	font-size: 0.95rem;
	transition: background 0.25s, transform 0.25s;
}

.btn--whatsapp:hover {
	background: #20ba5a;
	color: var(--white);
	transform: translateY(-2px);
}

/* Tabs on single product */
.woocommerce div.product .woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 0.5rem;
	padding: 0;
	margin: 0 0 1.5rem;
	border-bottom: 0;
	list-style: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 0;
	padding: 0.75rem 1.4rem;
	margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	font-family: Syne, sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--muted);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: var(--navy);
	border-color: var(--navy);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--white);
}

.woocommerce div.product .woocommerce-tabs .panel {
	background: var(--white);
	border: 1px solid var(--line);
	border-left: 4px solid var(--amber);
	padding: clamp(1.5rem, 4vw, 2.5rem);
	box-shadow: 0 4px 20px rgba(10, 28, 51, 0.03);
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
	font-family: Syne, sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 1rem;
}

.woocommerce div.product .woocommerce-tabs .panel p {
	color: #3d4855;
	font-size: 1.05rem;
	line-height: 1.65;
}

/* Related products */
.woocommerce .related.products {
	grid-column: 1 / -1;
	margin-top: 3rem;
}

.woocommerce .related.products > h2 {
	font-family: Syne, sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 1.5rem;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-top-color: var(--amber);
	background: var(--white);
	border: 1px solid var(--line);
	border-top: 3px solid var(--amber);
	padding: 1rem 1.25rem;
	margin-bottom: 2rem;
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button {
	border-radius: 0;
	background: var(--navy);
	color: var(--white);
	font-weight: 700;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover {
	background: #12304f;
}

.woocommerce table.shop_table {
	border-collapse: collapse;
	border-radius: 0;
	background: var(--white);
	border: 1px solid var(--line);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	padding: 0.8rem;
	border: 1px solid var(--line);
	border-radius: 0;
	background: var(--paper);
}

.woocommerce form .form-row label {
	color: var(--navy);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* —— Responsive —— */
@media (max-width: 900px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 800px) {
	.woocommerce ul.products {
		grid-template-columns: minmax(0, 1fr);
	}

	.woocommerce ul.products li.product {
		min-width: 0;
	}
}

@media (max-width: 700px) {
	.product-hero--intraosseous .product-hero__inner {
		grid-template-columns: 1fr;
		align-items: start;
		min-height: auto;
	}

	.product-hero--intraosseous .product-hero__gallery {
		width: 100%;
		max-width: 30rem;
		justify-self: start;
	}

	.product-intraosseous-gallery {
		grid-template-columns: 1fr;
	}

	.product-content-list article {
		grid-template-columns: 3rem minmax(0, 1fr);
		gap: 0.75rem;
	}

	.legacy-section {
		grid-template-columns: 2.5rem minmax(0, 1fr);
		gap: 0.75rem;
	}

	.post-grid,
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.woocommerce div.product {
		display: block;
	}

	.woocommerce div.product .summary {
		padding-top: 2rem;
	}

	.mtm-form__grid {
		display: block;
	}

	.mtm-field {
		margin-bottom: 1.25rem;
	}

	.footer__bottom {
		flex-direction: column;
	}
}

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

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