@font-face {
  font-family: "Questrial";
  src: url("assets/fonts/questrial.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Nexus Display";
  src: url("assets/fonts/nexus-display.woff2") format("woff2");
  font-display: swap;
}

:root {
  --ink: #0b120e;
  --ink-soft: #26332b;
  --forest: #10271b;
  --forest-deep: #07140d;
  --green: #2d8b57;
  --green-bright: #7ee4a8;
  --mint: #dff4e7;
  --cream: #f4f1e8;
  --paper: #fbfaf6;
  --white: #fff;
  --muted: #718077;
  --muted-light: #a8b6ad;
  --line: rgba(11, 18, 14, 0.13);
  --line-light: rgba(255, 255, 255, 0.13);
  --accent: #8e4dff;
  --danger: #ce4c4c;
  --shadow: 0 30px 80px rgba(7, 20, 13, 0.14);
  --shell: min(1220px, calc(100vw - 48px));
  --radius: 28px;
  --radius-small: 16px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--forest-deep);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Questrial", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  max-width: 100%;
  font-weight: 400;
  hyphens: none;
  letter-spacing: -0.045em;
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  font-size: clamp(4rem, 9vw, 8.4rem);
}

h2 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

h3 {
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
}

p {
  color: var(--ink-soft);
}

::selection {
  color: var(--white);
  background: var(--green);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 246, 0.82);
  backdrop-filter: blur(18px);
  transition: height 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  border-bottom-color: var(--line);
  box-shadow: 0 8px 34px rgba(7, 20, 13, 0.07);
}

.header-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  height: 100%;
  gap: 26px;
}

.brand {
  display: block;
  width: 190px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 2vw, 31px);
  font-size: 0.92rem;
}

.desktop-nav a,
.nav-text-button {
  position: relative;
  padding: 10px 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.desktop-nav a::after,
.nav-text-button::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after,
.nav-text-button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-toggle {
  position: relative;
  display: block;
}

.language-toggle::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.language-toggle select {
  min-width: 74px;
  height: 44px;
  padding: 0 31px 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  outline: none;
  appearance: none;
}

.language-toggle select:hover,
.language-toggle select:focus-visible {
  border-color: rgba(45, 139, 87, 0.55);
  box-shadow: 0 0 0 3px rgba(45, 139, 87, 0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.85rem;
}

.button-dark {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 10px 28px rgba(16, 39, 27, 0.2);
}

.button-dark:hover {
  background: #1d4b31;
  box-shadow: 0 14px 34px rgba(16, 39, 27, 0.24);
}

.button-green {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 28px rgba(45, 139, 87, 0.25);
}

.button-green:hover {
  background: #247548;
  box-shadow: 0 14px 34px rgba(45, 139, 87, 0.3);
}

.button-light {
  color: var(--forest);
  background: var(--cream);
}

.button-outline {
  color: currentColor;
  border-color: currentColor;
  background: transparent;
}

.button-accent {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(142, 77, 255, 0.28);
}

.button .arrow {
  margin-left: 14px;
  font-size: 1.1em;
  transition: transform 180ms ease;
}

.button:hover .arrow {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: -1;
  inset: var(--header-height) 0 auto;
  display: grid;
  gap: 0;
  padding: 22px 24px 34px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-menu a,
.mobile-menu button {
  padding: 15px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  text-align: left;
  cursor: pointer;
}

.mobile-menu .mobile-menu-cta {
  margin-top: 12px;
  padding: 14px 18px;
  border-bottom: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  text-align: center;
}

main {
  min-height: 75vh;
  padding-top: var(--header-height);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 13%, transparent);
}

.section {
  padding: clamp(88px, 11vw, 160px) 0;
}

.section-dark {
  color: var(--white);
  background: var(--forest-deep);
}

.section-dark p {
  color: var(--muted-light);
}

.section-mint {
  background: var(--mint);
}

.section-cream {
  background: var(--cream);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 64px;
}

.section-heading p {
  max-width: 690px;
  margin-top: 24px;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 8vw, 120px);
}

.copy-large {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.copy-large strong {
  color: var(--ink);
  font-weight: 500;
}

.section-dark .copy-large strong {
  color: var(--white);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--line);
}

.metric {
  padding: 23px;
  background: var(--paper);
}

.metric b {
  display: block;
  margin-bottom: 7px;
  color: var(--forest);
  font-size: 1.55rem;
  font-weight: 400;
}

.metric span {
  color: var(--muted);
  font-size: 0.8rem;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 44%, rgba(55, 151, 94, 0.16), transparent 29%),
    radial-gradient(circle at 58% 100%, rgba(25, 85, 51, 0.1), transparent 35%),
    linear-gradient(115deg, #050d09 0%, #07140d 54%, #091810 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 13, 0.99) 0%, rgba(7, 20, 13, 0.94) 40%, rgba(7, 20, 13, 0.76) 72%, rgba(7, 20, 13, 0.88) 100%),
    linear-gradient(0deg, rgba(7, 20, 13, 0.96) 0%, transparent 42%);
  content: "";
}

.hero-media video {
  width: 100%;
  height: 100%;
  opacity: 0.55;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(410px, 0.78fr);
  align-items: center;
  gap: clamp(30px, 4vw, 72px);
  min-height: calc(100svh - var(--header-height));
  padding-block: 54px 50px;
}

.hero-copy h1 {
  max-width: 850px;
  margin-bottom: 30px;
  font-size: clamp(4.8rem, 8vw, 7rem);
}

.hero-copy h1 .hero-product-name {
  display: block;
  white-space: nowrap;
}

.hero-copy h1 .hero-tagline {
  display: block;
  color: var(--green-bright);
  font-family: "Nexus Display", "Questrial", sans-serif;
  font-size: 0.27em;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-copy > p {
  max-width: 540px;
  margin-bottom: 38px;
  color: #d1ddd5;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-static-product {
  position: relative;
  isolation: isolate;
  align-self: center;
  justify-self: end;
  display: grid;
  width: min(100%, 600px);
  min-height: min(72vh, 690px);
  place-items: center;
}

.hero-static-product::before {
  position: absolute;
  z-index: -1;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 207, 122, 0.12), rgba(20, 85, 47, 0.04) 48%, transparent 72%);
  content: "";
  filter: blur(18px);
}

.hero-static-product img {
  width: min(96%, 565px);
  max-height: min(69vh, 660px);
  object-fit: contain;
  filter: drop-shadow(0 38px 30px rgba(0, 0, 0, 0.46)) drop-shadow(0 0 38px rgba(68, 213, 128, 0.07));
}

.hero-film-trigger {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 11%;
  display: grid;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  color: var(--forest);
  background: rgba(248, 246, 238, 0.94);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  place-items: center;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(12px);
}

.hero-film-trigger:hover {
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  transform: scale(1.06);
}

.hero-film-trigger:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 4px;
}

.hero-film-trigger svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  transform: translateX(1px);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue::before {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% { transform: scaleX(0.4); transform-origin: left; opacity: 0.45; }
  50% { transform: scaleX(1); transform-origin: left; opacity: 1; }
}

.audio-section {
  position: relative;
  overflow: hidden;
}

.audio-section::before {
  position: absolute;
  top: 20%;
  right: -14vw;
  width: 44vw;
  height: 44vw;
  border: 1px solid rgba(126, 228, 168, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(126, 228, 168, 0.025), 0 0 0 140px rgba(126, 228, 168, 0.02);
}

.audio-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.audio-intro h2 {
  margin: 0;
}

.audio-intro h2 em {
  color: var(--green-bright);
  font-style: normal;
}

.audio-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.audio-card {
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.audio-card:hover,
.audio-card.is-playing {
  border-color: rgba(126, 228, 168, 0.52);
  background: rgba(126, 228, 168, 0.08);
  transform: translateY(-3px);
}

.audio-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.audio-language {
  display: flex;
  align-items: center;
  gap: 12px;
}

.audio-language i {
  font-size: 1.45rem;
  font-style: normal;
}

.audio-language span {
  font-size: 0.94rem;
}

.audio-button {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--forest-deep);
  background: var(--green-bright);
  cursor: pointer;
  transition: transform 180ms ease;
}

.audio-button:hover {
  transform: scale(1.06);
}

.audio-button svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.audio-progress {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.audio-progress > span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--green-bright);
}

.audio-note {
  margin-top: 18px;
  color: var(--muted-light);
  font-size: 0.76rem;
}

.story-media {
  position: relative;
  min-height: 660px;
}

.story-media .media-large {
  position: absolute;
  inset: 0 15% 10% 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-media .media-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-media .media-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  padding: 12px;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.story-media .media-float img {
  aspect-ratio: 0.74;
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.product-stage {
  position: relative;
  min-height: 810px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 45%, rgba(45, 139, 87, 0.17), transparent 31%),
    linear-gradient(145deg, #f9f7f0, #e7eee7);
  overflow: hidden;
}

.product-stage::before,
.product-stage::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(45, 139, 87, 0.18);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.product-stage::before {
  width: 560px;
  height: 560px;
}

.product-stage::after {
  width: 760px;
  height: 760px;
}

.product-stage > img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(42%, 470px);
  max-height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 35px 50px rgba(7, 20, 13, 0.22));
  transform: translate(-50%, -50%);
}

.spec-node {
  position: absolute;
  z-index: 3;
  width: 260px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(7, 20, 13, 0.08);
}

.spec-node:nth-of-type(1) { top: 9%; left: 6%; }
.spec-node:nth-of-type(2) { top: 12%; right: 6%; }
.spec-node:nth-of-type(3) { bottom: 10%; left: 7%; }
.spec-node:nth-of-type(4) { right: 6%; bottom: 11%; }

.spec-node span {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--mint);
}

.spec-node h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.spec-node p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.finishes-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}

.finishes-layout > * {
  min-width: 0;
}

.finish-copy h2 {
  max-width: 100%;
  text-wrap: balance;
}

html:not([lang="en-GB"]) .finish-copy h2 {
  font-size: clamp(3rem, 4.5vw, 5.3rem);
}

html:not([lang="en-GB"]) .page-hero h1 {
  font-size: clamp(3.8rem, 6.5vw, 6.5rem);
}

.finish-selector {
  margin: 34px 0 30px;
}

.finish-selector-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finish-selector-head span {
  color: var(--muted);
}

.finish-selector-head strong {
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
}

.finish-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.finish-option {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 4px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  place-items: center;
  transition: border-color 180ms ease, transform 180ms ease;
}

.finish-option:hover {
  transform: translateY(-2px);
}

.finish-option:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.finish-option.is-selected {
  border-color: var(--ink);
}

.finish-swatch {
  position: relative;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 2px 9px rgba(12, 24, 17, 0.14);
}

.finish-swatch::after {
  position: absolute;
  inset: 2px 5px 52% 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  content: "";
  filter: blur(2px);
}

.finish-swatch-metallic {
  background: linear-gradient(135deg, #6f4937, #c5a487 46%, #79533f);
}

.finish-swatch-concrete {
  background-color: #aaa9a3;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,.5) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 65%, rgba(75,75,70,.25) 0 1px, transparent 1.5px);
  background-size: 8px 8px, 11px 11px;
}

.finish-hint {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.finish-hint span {
  color: var(--green);
  font-size: 0.95rem;
}

.finish-studio {
  --finish-filter: none;
  --finish-accent: #217b4e;
  --finish-studio: #dfece5;
  position: relative;
  display: grid;
  min-height: 650px;
  overflow: hidden;
  padding: 26px 30px 24px;
  border: 1px solid rgba(17, 28, 21, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 52% 42%, rgba(255,255,255,.94) 0 13%, rgba(255,255,255,.2) 43%, transparent 66%),
    var(--finish-studio);
  box-shadow: 0 30px 80px rgba(15, 30, 21, 0.12);
  grid-template-rows: auto 1fr auto;
  transition: background-color 560ms ease;
}

.finish-studio::before {
  position: absolute;
  inset: 8% auto auto 50%;
  width: 64%;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--finish-accent) 24%, transparent);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
  transition: border-color 560ms ease;
}

.finish-studio-head,
.finish-studio-foot {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(13, 26, 18, 0.58);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.studio-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--finish-accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--finish-accent) 13%, transparent);
  transition: background-color 560ms ease, box-shadow 560ms ease;
}

.finish-product-wrap {
  --studio-rotate-x: 0deg;
  --studio-rotate-y: 0deg;
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 515px;
  perspective: 900px;
  place-items: center;
  transform: rotateX(var(--studio-rotate-x)) rotateY(var(--studio-rotate-y));
  transform-style: preserve-3d;
  transition: transform 300ms cubic-bezier(.2,.8,.2,1);
}

.finish-product {
  position: relative;
  z-index: 2;
  width: min(73%, 500px);
  max-height: 500px;
  object-fit: contain;
  filter: var(--finish-filter) drop-shadow(0 28px 22px rgba(18, 29, 22, .18));
  transform: translateZ(28px);
  transition: filter 520ms cubic-bezier(.2,.8,.2,1);
  will-change: filter, transform;
}

.finish-orbit {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--finish-accent) 22%, transparent);
  border-radius: 50%;
  transform: rotateX(70deg) translateZ(-24px);
  transition: border-color 560ms ease;
}

.finish-shadow {
  position: absolute;
  z-index: 1;
  bottom: 5%;
  width: 46%;
  height: 6%;
  border-radius: 50%;
  background: rgba(12, 23, 16, 0.22);
  filter: blur(16px);
  transform: rotateX(70deg);
}

.finish-studio-foot {
  padding-top: 18px;
  border-top: 1px solid rgba(12, 24, 16, 0.1);
}

.finish-studio-foot div {
  display: grid;
  gap: 5px;
}

.finish-studio-foot strong {
  color: var(--ink);
  font-size: 0.86rem;
  letter-spacing: -0.01em;
  text-transform: none;
}

.finish-code {
  display: grid;
  min-width: 62px;
  min-height: 34px;
  border: 1px solid rgba(12, 24, 16, 0.15);
  border-radius: 99px;
  color: var(--ink);
  font-weight: 700;
  place-items: center;
}

.platform-showcase {
  position: relative;
  overflow: hidden;
}

.platform-showcase::before {
  position: absolute;
  right: -20%;
  bottom: -34%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(126, 228, 168, 0.07);
  content: "";
  pointer-events: none;
}

.platform-showcase > .shell {
  position: relative;
  z-index: 1;
}

.trademark-symbol {
  position: relative;
  top: -0.08em;
  margin-left: 0.06em;
  font-size: 0.24em;
  letter-spacing: 0;
  line-height: 0;
  vertical-align: super;
}

.dashboard-frame {
  position: relative;
  z-index: 1;
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.22);
}

.dashboard-frame img {
  width: 100%;
  border-radius: 13px;
}

.platform-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 34px 0 40px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-small);
  background: var(--line-light);
}

.platform-points div {
  padding: 19px;
  background: var(--forest-deep);
}

.platform-points b {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-weight: 400;
}

.platform-points span {
  color: var(--muted-light);
  font-size: 0.78rem;
}

.cabinet-selector {
  padding: 56px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(96, 224, 157, 0.14), transparent 32%),
    linear-gradient(120deg, #06140d, #0c2719);
}

.cabinet-selector-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.cabinet-selector-copy h2 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
  line-height: 0.96;
}

.cabinet-selector-copy > p:last-child {
  max-width: 510px;
  margin: 0;
  color: var(--muted-light);
  font-size: 1rem;
  line-height: 1.6;
}

.cabinet-selector-panel {
  padding-left: clamp(28px, 4vw, 62px);
  border-left: 1px solid var(--line-light);
}

.selector-question {
  min-width: 0;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.selector-question legend {
  width: 100%;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.35;
}

.selector-question legend span {
  margin-right: 8px;
  color: var(--green-bright);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.selector-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.selector-choice {
  position: relative;
  cursor: pointer;
}

.selector-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.selector-choice span {
  display: grid;
  min-height: 50px;
  place-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: var(--muted-light);
  text-align: center;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.selector-choice:hover span {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.selector-choice input:focus-visible + span {
  outline: 2px solid var(--green-bright);
  outline-offset: 3px;
}

.selector-choice input:checked + span {
  color: var(--forest-deep);
  border-color: var(--green-bright);
  background: var(--green-bright);
  transform: translateY(-1px);
}

.selector-result {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

.selector-result-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}

.selector-result-heading span {
  color: var(--muted-light);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.selector-result-heading strong {
  color: var(--green-bright);
  font-family: "Nexus Display", "Questrial", sans-serif;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
}

.selector-result p {
  min-height: 44px;
  margin: 0;
  color: var(--muted-light);
  font-size: 0.88rem;
  line-height: 1.5;
}

.selector-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
}

.selector-actions .button {
  min-height: 48px;
  padding: 13px 20px;
  font-size: 0.8rem;
}

.selector-contact-link {
  color: var(--white);
  font-size: 0.82rem;
  white-space: nowrap;
}

.selector-contact-link span {
  margin-left: 5px;
  color: var(--green-bright);
}

.page-hero {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.58;
}

.page-hero-bg img,
.page-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 20, 13, 0.96), rgba(7, 20, 13, 0.3)), linear-gradient(0deg, rgba(7, 20, 13, 0.65), transparent);
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 530px;
  max-width: 920px;
  padding: 110px 0 70px;
  flex-direction: column;
  justify-content: flex-end;
}

.page-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(4.3rem, 9vw, 8.3rem);
}

.page-hero p {
  max-width: 650px;
  margin: 0;
  color: #d2ddd6;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.models-platform {
  display: grid;
  min-height: 540px;
  margin-bottom: 70px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  grid-template-columns: 1.06fr 0.94fr;
  background: #eef1ed;
}

.models-platform-copy {
  display: flex;
  align-items: flex-start;
  padding: clamp(42px, 6vw, 82px);
  flex-direction: column;
  justify-content: center;
}

.models-platform-copy h2 {
  max-width: 760px;
  margin-bottom: 25px;
  font-size: clamp(3.5rem, 5.5vw, 4.75rem);
  text-wrap: balance;
}

.models-platform-copy .copy-large {
  max-width: 620px;
  margin-bottom: 28px;
}

.models-platform-facts {
  display: flex;
  margin-bottom: 34px;
  flex-wrap: wrap;
  gap: 9px;
}

.models-platform-facts span {
  padding: 9px 13px;
  border: 1px solid rgba(10, 34, 23, 0.15);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.77rem;
}

.models-platform-visual {
  position: relative;
  display: grid;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--line);
  place-items: center;
  background: #f1edf1;
}

.models-platform-visual::before,
.models-platform-visual::after {
  display: none;
}

.models-platform-video {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.models-platform-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.models-platform-visual figcaption b {
  color: var(--forest);
  font-weight: 500;
}

.models-tier-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 30px;
}

.models-tier-intro .eyebrow,
.models-tier-intro p {
  margin: 0;
}

.models-tier-intro > p:last-child {
  max-width: 390px;
  color: var(--ink-soft);
  text-align: right;
}

.model-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.model-card {
  position: relative;
  display: flex;
  min-height: 545px;
  padding: 34px 30px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  flex-direction: column;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.model-card:hover {
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.model-card.featured {
  color: var(--white);
  border-color: transparent;
  background: var(--forest);
}

.model-card.featured p,
.model-card.featured li,
.model-card.featured .model-kicker {
  color: #c3d0c8;
}

.model-card-number {
  margin-bottom: 66px;
  color: #a6ada8;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.model-card.featured .model-card-number {
  color: #85a390;
}

.model-kicker {
  margin-bottom: 13px;
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-card h2 {
  margin-bottom: 25px;
  font-size: 3.2rem;
}

.model-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.model-card li {
  position: relative;
  padding-left: 21px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.model-card li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.model-card.featured li::before {
  background: var(--green-bright);
}

.model-card .button {
  margin-top: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 0 0 1px var(--line);
}

.comparison-table th,
.comparison-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison-table th {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-table td:not(:first-child),
.comparison-table th:not(:first-child) {
  text-align: center;
}

.check {
  color: var(--green);
  font-size: 1.2rem;
}

.compat-controls {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr auto;
  gap: 12px;
  margin-bottom: 28px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(7, 20, 13, 0.05);
}

.field {
  position: relative;
}

.field label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

.compat-controls .field label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  color: var(--ink);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
  height: 54px;
  padding: 0 16px;
}

.field textarea {
  min-height: 150px;
  padding: 15px 16px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(45, 139, 87, 0.1);
}

.smart-filter {
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(45, 139, 87, 0.35);
  border-radius: 13px;
  color: var(--green);
  background: var(--mint);
  cursor: pointer;
}

.smart-filter[aria-pressed="true"] {
  color: var(--white);
  background: var(--green);
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

.brand-button {
  display: grid;
  min-height: 76px;
  padding: 9px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.brand-button:hover,
.brand-button.active {
  border-color: var(--green);
  box-shadow: 0 9px 24px rgba(7, 20, 13, 0.08);
  transform: translateY(-2px);
}

.brand-button img {
  max-width: 94%;
  max-height: 42px;
  object-fit: contain;
}

.brand-button.all {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 600;
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 18px;
}

.result-header strong {
  font-size: 1.2rem;
  font-weight: 400;
}

.result-header span {
  color: var(--muted);
  font-size: 0.78rem;
}

.aed-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.aed-card {
  display: flex;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  flex-direction: column;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.aed-card:hover {
  box-shadow: 0 17px 42px rgba(7, 20, 13, 0.08);
  transform: translateY(-3px);
}

.aed-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.aed-card img {
  width: 92px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}

.aed-card .brand-name {
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aed-card h3 {
  margin: 24px 0 20px;
  font-size: 1.35rem;
}

.aed-compatible {
  display: flex;
  gap: 6px;
  margin-top: auto;
}

.aed-compatible span {
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--green);
  background: var(--mint);
  font-size: 0.68rem;
}

.ser-badge {
  margin-top: 10px;
  color: var(--accent);
  font-size: 0.7rem;
}

.no-results {
  display: none;
  padding: 70px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--white);
  text-align: center;
}

.request-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin-top: 70px;
  padding: 45px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest);
}

.request-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.request-panel p {
  max-width: 690px;
  margin: 0;
  color: #c3d0c8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 350px);
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}

.gallery-grid figure:first-child {
  grid-row: 1 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
}

.gallery-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 14px 16px;
  border-radius: 13px;
  color: var(--white);
  background: rgba(7, 20, 13, 0.72);
  font-size: 0.76rem;
  backdrop-filter: blur(10px);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.feature-list article {
  padding: 32px;
  background: var(--white);
}

.feature-index {
  display: block;
  margin-bottom: 45px;
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.feature-list h3 {
  margin-bottom: 12px;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 70px;
}

.contact-card {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: var(--radius);
}

.contact-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 25px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(7, 20, 13, 0.82);
  backdrop-filter: blur(15px);
}

.contact-card-overlay a,
.contact-card-overlay address {
  display: block;
  margin-top: 12px;
  color: #d4e2d9;
  font-style: normal;
}

.premium-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 14px;
}

.premium-form .field-full {
  grid-column: 1 / -1;
}

.email-form-note {
  margin: -2px 0 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.required-mark {
  color: var(--green);
  font-weight: 700;
}

.premium-form button {
  justify-self: start;
}

.person-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
}

.person-card img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
}

.person-card b,
.person-card span,
.person-card a {
  display: block;
}

.person-card b {
  font-weight: 500;
}

.person-card span,
.person-card a {
  color: var(--muted);
  font-size: 0.78rem;
}

.news-section {
  background: var(--paper);
}

.news-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  margin-bottom: 64px;
  gap: 24px 80px;
}

.news-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.news-intro h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 5.7rem);
}

.news-intro > p:last-child {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(7, 20, 13, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.news-card:hover {
  box-shadow: 0 24px 60px rgba(7, 20, 13, 0.12);
  transform: translateY(-5px);
}

.news-card-featured {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 1.08fr 0.92fr;
}

.news-card-image {
  display: block;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: 1.22;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.news-card:hover .news-card-image img {
  transform: scale(1.035);
}

.news-card-featured .news-card-image img {
  aspect-ratio: auto;
}

.news-card-body {
  display: flex;
  min-width: 0;
  padding: 29px 28px 27px;
  flex-direction: column;
}

.news-card-featured .news-card-body {
  padding: clamp(32px, 4vw, 52px);
}

.news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  gap: 8px 14px;
  text-transform: uppercase;
}

.news-meta span:first-child {
  color: var(--green);
  font-weight: 700;
}

.news-meta time::before,
.news-meta time + span::before,
.news-meta span + span::before {
  margin-right: 14px;
  color: rgba(11, 18, 14, 0.24);
  content: "·";
}

.news-card h2 {
  margin-bottom: 17px;
  font-size: clamp(1.75rem, 2.5vw, 2.45rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.news-card-featured h2 {
  font-size: clamp(2rem, 3.35vw, 3.45rem);
}

.news-card h2 a:hover {
  color: var(--green);
}

.news-card p {
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 0.92rem;
}

.news-read {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding-bottom: 4px;
  margin-top: auto;
  border-bottom: 1px solid rgba(11, 18, 14, 0.28);
  color: var(--forest);
  font-size: 0.84rem;
  gap: 10px;
}

.news-read span {
  transition: transform 180ms ease;
}

.news-read:hover span {
  transform: translateX(4px);
}

.news-article {
  background: var(--paper);
}

.news-article-hero {
  padding: 190px 0 126px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(83, 211, 137, 0.15), transparent 32%),
    var(--forest-deep);
}

.news-article-heading {
  max-width: 1100px;
}

.news-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 58px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  gap: 10px;
}

.news-back:hover {
  color: var(--green-bright);
}

.news-meta-light {
  color: rgba(255, 255, 255, 0.58);
}

.news-meta-light span:first-child {
  color: var(--green-bright);
}

.news-meta-light time::before,
.news-meta-light time + span::before,
.news-meta-light span + span::before {
  color: rgba(255, 255, 255, 0.28);
}

.news-article-heading h1 {
  max-width: 1050px;
  margin-bottom: 30px;
  font-size: clamp(3.3rem, 7.1vw, 7.1rem);
  text-wrap: balance;
}

.news-article-heading > p {
  max-width: 780px;
  margin: 0;
  color: #c7d5cc;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.news-article-media {
  position: relative;
  z-index: 2;
  height: clamp(390px, 57vw, 690px);
  margin-top: -64px;
  overflow: hidden;
  border: 10px solid var(--paper);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.news-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: center;
  padding: 100px 0 150px;
  gap: 80px;
}

.news-article-aside {
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  flex-direction: column;
}

.news-article-aside > span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-article-aside strong {
  margin-bottom: 28px;
  font-size: 0.9rem;
  font-weight: 500;
}

.news-article-aside a {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-size: 0.8rem;
  gap: 8px;
}

.news-article-copy > section {
  padding: 12px 0 42px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.news-article-copy h2 {
  margin-bottom: 25px;
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.news-article-copy p {
  font-size: 1.08rem;
  line-height: 1.75;
}

.news-lead {
  margin-bottom: 44px;
  color: var(--ink);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem) !important;
  line-height: 1.5 !important;
}

.news-takeaway {
  padding: 30px 34px;
  margin-bottom: 64px;
  border-left: 3px solid var(--green);
  background: var(--mint);
}

.news-takeaway span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-takeaway p {
  margin: 0;
  color: var(--forest);
  font-size: 1.13rem;
  line-height: 1.55;
}

.news-article-cta {
  padding: 44px;
  margin-top: 66px;
  border-radius: 24px;
  color: var(--white);
  background: var(--forest);
}

.news-article-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
}

.news-article-cta p:not(.eyebrow) {
  color: #c7d5cc;
  font-size: 1rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.program-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.program-card img {
  width: 100%;
  aspect-ratio: 1.75;
  object-fit: cover;
}

.program-card div {
  padding: 24px;
}

.program-card h2 {
  min-height: 2.4em;
  margin-bottom: 25px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.program-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green);
  font-size: 0.8rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: center;
  gap: 80px;
}

.legal-layout > * {
  min-width: 0;
}

.legal-nav {
  position: sticky;
  top: 120px;
  align-self: start;
  display: grid;
}

.legal-nav a {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.legal-copy h2 {
  margin: 55px 0 20px;
  font-size: 2.2rem;
  line-height: 1.1;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-effective {
  margin-bottom: 38px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.legal-copy li {
  margin-bottom: 10px;
}

.legal-note {
  margin-top: 48px;
  padding: 22px;
  border-left: 3px solid var(--green);
  background: var(--mint);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer {
  color: var(--white);
  background: var(--forest-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.9fr 1fr;
  gap: 60px;
  padding-block: 80px 66px;
}

.footer-grid > * {
  min-width: 0;
}

.footer-brand img {
  width: min(100%, 190px);
  height: auto;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.footer-brand p {
  max-width: 280px;
  color: var(--muted-light);
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 12px;
  color: var(--muted-light);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column button {
  padding: 3px 0;
  border: 0;
  color: #e4ece7;
  background: none;
  font-size: 0.88rem;
  text-align: left;
  cursor: pointer;
}

.footer-column a:hover,
.footer-column button:hover {
  color: var(--green-bright);
}

.footer-trust > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-trust img {
  width: 44px;
  height: 32px;
  border-radius: 4px;
  object-fit: contain;
}

.footer-trust p {
  margin: 8px 0 0;
  color: var(--muted-light);
  font-size: 0.76rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 23px;
  border-top: 1px solid var(--line-light);
  color: var(--muted-light);
  font-size: 0.72rem;
}

.footer-bottom div {
  display: flex;
  gap: 21px;
}

.brochure-dialog {
  width: min(580px, calc(100vw - 30px));
  padding: 42px;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

.brochure-dialog::backdrop {
  background: rgba(7, 20, 13, 0.73);
  backdrop-filter: blur(8px);
}

.film-dialog {
  width: min(1120px, calc(100vw - 40px));
  max-width: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  color: var(--white);
  background: #020805;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.55);
}

.film-dialog::backdrop {
  background: rgba(2, 8, 5, 0.84);
  backdrop-filter: blur(10px);
}

.film-dialog video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020805;
  object-fit: contain;
}

.film-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  background: rgba(2, 8, 5, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  place-items: center;
  backdrop-filter: blur(10px);
}

.film-close:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 3px;
}

.brochure-dialog h2 {
  margin-bottom: 12px;
  font-size: 2.6rem;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.brochure-list {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.brochure-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 3px;
  border-bottom: 1px solid var(--line);
}

.brochure-list b {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 500;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  max-width: 380px;
  padding: 15px 20px;
  border-radius: 13px;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 36px, 1100px);
  }

  .header-inner {
    grid-template-columns: 180px 1fr auto;
  }

  .brand {
    width: 165px;
  }

  .desktop-nav {
    gap: 18px;
    font-size: 0.82rem;
  }

  .header-actions .button {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 28px;
  }

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

  .product-stage {
    min-height: 900px;
  }

  .product-stage > img {
    width: 46%;
  }

  .spec-node {
    width: 230px;
  }

  .brand-strip {
    grid-template-columns: repeat(7, 1fr);
  }

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

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

  .news-card-featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    height: 76px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .home-hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: center;
    padding-block: 72px 76px;
    gap: 64px;
  }

  .hero-copy h1 {
    font-size: clamp(4.5rem, 15vw, 7rem);
  }

  .hero-static-product {
    justify-self: center;
    width: min(100%, 640px);
    min-height: 570px;
  }

  .hero-static-product img {
    width: min(94%, 535px);
  }

  .split,
  .finishes-layout,
  .cabinet-selector-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .audio-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .story-media {
    min-height: 560px;
  }

  .product-stage {
    display: grid;
    min-height: auto;
    padding: 45px 24px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-stage::before,
  .product-stage::after {
    display: none;
  }

  .product-stage > img {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    width: min(70%, 420px);
    height: 410px;
    margin: 0 auto 25px;
    transform: none;
  }

  .spec-node,
  .spec-node:nth-of-type(n) {
    position: static;
    width: auto;
  }

  .model-cards {
    grid-template-columns: 1fr;
  }

  .models-platform {
    grid-template-columns: 1fr;
  }

  .models-platform-visual {
    min-height: 500px;
  }

  .model-card {
    min-height: 0;
  }

  .compat-controls {
    grid-template-columns: 1fr 1fr;
  }

  .compat-controls .smart-filter {
    grid-column: 1 / -1;
  }

  .brand-strip {
    grid-template-columns: repeat(5, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 280px;
  }

  .gallery-grid figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .news-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .news-intro .eyebrow {
    grid-column: auto;
  }

  .news-article-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .news-article-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .news-article-aside > span,
  .news-article-aside strong {
    grid-column: 1;
  }

  .news-article-aside a {
    grid-column: 2;
    grid-row: 1 / 3;
    justify-self: end;
  }

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

  .program-card {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
  }

  .program-card img {
    height: 100%;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-nav {
    position: static;
    display: flex;
    gap: 18px;
    max-width: 100%;
    overflow-x: auto;
  }

  .legal-nav a {
    flex: 0 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-trust {
    grid-column: 2 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
    --radius: 21px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .section {
    padding: 80px 0;
  }

  .brand {
    width: 145px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(7, 20, 13, 0.99) 7%, rgba(7, 20, 13, 0.88) 58%, rgba(7, 20, 13, 0.68) 100%);
  }

  .hero-media video {
    object-position: 61% center;
  }

  .hero-copy h1 {
    margin-bottom: 22px;
  }

  .hero-copy h1 .hero-product-name {
    white-space: normal;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .hero-static-product {
    min-height: 445px;
  }

  .hero-static-product img {
    width: min(100%, 390px);
    max-height: 430px;
  }

  .hero-film-trigger {
    right: 5%;
    bottom: 8%;
    width: 48px;
    height: 48px;
  }

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

  .metric-row {
    grid-template-columns: 1fr;
  }

  .story-media {
    min-height: 480px;
  }

  .story-media .media-large {
    inset: 0 8% 12% 0;
  }

  .story-media .media-float {
    width: 48%;
  }

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

  .product-stage > img {
    height: 340px;
  }

  .finish-studio {
    min-height: 520px;
    padding: 20px 20px 18px;
    border-radius: 20px;
  }

  .finish-product-wrap {
    min-height: 390px;
  }

  .finish-product {
    width: min(85%, 360px);
    max-height: 370px;
  }

  .finish-studio-head {
    font-size: 0.58rem;
  }

  .models-platform {
    margin-bottom: 52px;
    border-radius: 22px;
  }

  .models-platform-copy {
    padding: 38px 25px 42px;
  }

  .models-platform-visual {
    min-height: 390px;
  }

  .models-platform-visual figcaption {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }

  .models-tier-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .models-tier-intro > p:last-child {
    text-align: left;
  }

  .model-card-number {
    margin-bottom: 48px;
  }

  .finish-selector-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .platform-points {
    grid-template-columns: 1fr;
  }

  .cabinet-selector {
    padding: 34px 24px;
  }

  .cabinet-selector-grid {
    gap: 34px;
  }

  .cabinet-selector-panel {
    padding: 30px 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .selector-result-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .selector-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .selector-actions .button,
  .selector-contact-link {
    width: 100%;
    text-align: center;
  }

  .selector-contact-link {
    white-space: normal;
  }

  .page-hero,
  .page-hero-inner {
    min-height: 460px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  html:not([lang="en-GB"]) .page-hero h1 {
    font-size: clamp(2.85rem, 12.5vw, 4.3rem);
  }

  html:not([lang="en-GB"]) .legal-hero h1 {
    font-size: clamp(2.75rem, 13.5vw, 3.25rem);
  }

  html[lang="de-DE"] .legal-hero h1 {
    font-size: clamp(2.2rem, 9.5vw, 2.45rem);
  }

  html:not([lang="en-GB"]) main h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.8rem);
  }

  html:not([lang="en-GB"]) main .legal-copy h2 {
    font-size: 2rem;
  }

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

  .news-card-featured {
    display: block;
    grid-column: auto;
  }

  .news-card-featured .news-card-image img {
    aspect-ratio: 1.22;
  }

  .news-card-featured .news-card-body,
  .news-card-body {
    padding: 26px 23px;
  }

  .news-article-hero {
    padding: 142px 0 102px;
  }

  .news-back {
    margin-bottom: 38px;
  }

  .news-article-heading h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .news-article-media {
    width: calc(100% - 20px);
    height: 280px;
    margin-top: -45px;
    border-width: 6px;
    border-radius: 20px;
  }

  .news-article-layout {
    padding: 70px 0 92px;
  }

  .news-article-aside {
    display: flex;
    align-items: flex-start;
  }

  .news-article-aside a {
    margin-top: 4px;
  }

  .news-takeaway {
    padding: 25px 23px;
  }

  .news-article-cta {
    padding: 34px 25px;
  }

  .comparison-scroll {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 720px;
  }

  .compat-controls {
    grid-template-columns: 1fr;
  }

  .compat-controls .smart-filter {
    grid-column: auto;
  }

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

  .aed-results {
    grid-template-columns: 1fr;
  }

  .result-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .request-panel {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 340px);
  }

  .gallery-grid figure:first-child {
    grid-column: auto;
  }

  .contact-card {
    min-height: 520px;
  }

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

  .premium-form .field-full {
    grid-column: auto;
  }

  .program-card {
    display: block;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 25px;
  }

  .footer-brand,
  .footer-trust {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .brochure-dialog {
    padding: 36px 24px 24px;
  }

  .film-dialog {
    width: calc(100vw - 20px);
    border-radius: 16px;
  }

  .film-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
