:root {
  --ink: #141513;
  --ink-2: #242522;
  --steel: #686b68;
  --muted: #777972;
  --line: rgba(20, 21, 19, 0.13);
  --paper: #f5f2ea;
  --paper-2: #ebe5d8;
  --white: #fffef9;
  --gold: #c69a2d;
  --gold-2: #e2bd58;
  --gold-dark: #856516;
  --success: #128c3d;
  --container: min(1240px, calc(100vw - 48px));
  --header-height: 86px;
  --radius: 22px;
  --shadow: 0 24px 68px rgba(20, 21, 19, 0.13);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

img {
  height: auto;
}

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

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

button {
  cursor: pointer;
}

::selection {
  color: var(--ink);
  background: var(--gold-2);
}

:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 4px;
}

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

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

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

.section {
  position: relative;
  padding: 96px 0;
}

.section-sm {
  padding: 76px 0;
}

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

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

.section-grid {
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: var(--gold-2);
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  content: "";
  background: currentColor;
}

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

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.9rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 3.6vw, 3.9rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.75;
}

.section-dark .lead {
  color: rgba(255, 254, 249, 0.69);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading > :last-child {
  justify-self: end;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), color 260ms ease, background 260ms ease;
}

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

.btn-primary {
  color: var(--ink);
  background: var(--gold-2);
  box-shadow: 0 12px 34px rgba(198, 154, 45, 0.24);
}

.btn-primary:hover {
  background: #f0ce75;
  box-shadow: 0 18px 40px rgba(198, 154, 45, 0.34);
}

.btn-dark {
  color: var(--white);
  background: var(--ink);
}

.btn-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(20, 21, 19, 0.24);
  backdrop-filter: blur(12px);
}

.btn-outline {
  border-color: var(--line);
  background: transparent;
}

.btn-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.btn > svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.preloader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  transition: opacity 600ms var(--ease), visibility 600ms;
}

.preloader::before,
.preloader::after {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(226, 189, 88, 0.55), transparent);
  transform: scaleX(0);
  animation: loader-line 1.15s var(--ease) forwards;
}

.preloader::before {
  top: 30%;
  right: 0;
  left: 0;
  height: 1px;
}

.preloader::after {
  right: 0;
  bottom: 30%;
  left: 0;
  height: 1px;
  animation-delay: 100ms;
}

.preloader-inner {
  position: relative;
  width: min(420px, 72vw);
  text-align: center;
}

.preloader img {
  width: 100%;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.26));
  animation: loader-logo 1s var(--ease) both;
}

.preloader span {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: loader-logo 800ms 160ms var(--ease) both;
}

.preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

@keyframes loader-logo {
  from { opacity: 0; transform: translateY(20px) scale(0.94); }
  to { opacity: 1; transform: none; }
}

@keyframes loader-line {
  to { transform: scaleX(1); }
}

.site-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(12, 13, 12, 0.7), rgba(12, 13, 12, 0));
}

.site-header.is-scrolled,
.site-header.header-solid {
  height: var(--header-height);
  color: var(--white);
  background: rgba(20, 21, 19, 0.98);
  box-shadow: none;
}

.header-inner {
  display: grid;
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: 190px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity 220ms ease;
}

.site-header.is-scrolled .brand img,
.site-header.header-solid .brand img {
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

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

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

.header-icon,
.lang-link,
.menu-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  transition: border-color 220ms ease, background 220ms ease;
}

.site-header.is-scrolled .header-icon,
.site-header.is-scrolled .lang-link,
.site-header.is-scrolled .menu-toggle,
.site-header.header-solid .header-icon,
.site-header.header-solid .lang-link,
.site-header.header-solid .menu-toggle {
  border-color: rgba(255, 255, 255, 0.25);
}

.header-icon:hover,
.lang-link:hover,
.menu-toggle:hover {
  border-color: var(--gold);
  background: rgba(198, 154, 45, 0.12);
}

.header-icon svg,
.menu-toggle svg {
  width: 19px;
  height: 19px;
}

.lang-link {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.lang-link .flag-icon {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.menu-toggle {
  display: none;
}

.mobile-panel {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  padding: 116px 24px 36px;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--white);
  background: var(--ink);
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 350ms var(--ease), transform 350ms var(--ease), visibility 350ms;
}

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

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

.mobile-panel nav a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(1.45rem, 7vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.mobile-panel-meta {
  display: grid;
  margin-top: auto;
  gap: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: max(780px, 100svh);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background:
    radial-gradient(ellipse at 78% 48%, rgba(232, 192, 82, 0.16) 0%, rgba(232, 192, 82, 0.035) 34%, transparent 62%),
    radial-gradient(circle at 10% 92%, rgba(183, 143, 42, 0.11), transparent 30%),
    linear-gradient(116deg, #0b0d0b 0%, #11140f 52%, #0a0e0b 100%);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: 1;
}

.hero-grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.72;
  background-image: radial-gradient(circle, rgba(239, 204, 111, 0.18) 0 1px, transparent 1.35px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse at 78% 48%, #000 0%, rgba(0, 0, 0, 0.74) 30%, transparent 69%);
  animation: hero-grid-flow 28s linear infinite;
}

.hero-atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-atmosphere::before,
.hero-atmosphere::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-atmosphere::before {
  top: 9%;
  right: 2%;
  width: min(52vw, 760px);
  height: 76%;
  opacity: 0;
  background:
    radial-gradient(circle at 48% 46%, rgba(242, 205, 105, 0.18), transparent 32%),
    radial-gradient(circle at 53% 52%, transparent 0 42%, rgba(242, 205, 105, 0.09) 42.3% 42.7%, transparent 43%);
  filter: blur(0.2px);
  transform: translate3d(36px, 12px, 0) scale(0.94);
  will-change: opacity, transform;
}

.hero-atmosphere::after {
  top: -22%;
  right: 4%;
  width: 34%;
  height: 142%;
  opacity: 0.34;
  background: linear-gradient(90deg, transparent, var(--hero-halo), transparent);
  filter: blur(56px);
  transform: rotate(11deg);
}

.hero-slide.is-active .hero-atmosphere::before {
  opacity: 0.9;
  animation: hero-ghost-drift 9.5s ease-in-out infinite;
}

.hero-atmosphere-ring {
  position: absolute;
  top: 50%;
  right: -8%;
  width: min(57vw, 790px);
  aspect-ratio: 1;
  opacity: 0.32;
  border: 1px solid rgba(232, 192, 82, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 86px rgba(232, 192, 82, 0.018);
  transform: translateY(-50%);
}

.hero-slide.is-active .hero-atmosphere-ring {
  animation: hero-ring-breathe 6.8s ease-in-out infinite;
}

.hero-atmosphere-line {
  position: absolute;
  right: 5%;
  bottom: 18%;
  left: auto;
  width: min(28vw, 390px);
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(232, 192, 82, 0.5), transparent);
}

.hero-atmosphere-line::after {
  position: absolute;
  top: -1px;
  left: -18%;
  width: 18%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  filter: blur(1px);
}

.hero-slide.is-active .hero-atmosphere-line::after {
  animation: hero-line-scan 4.8s 900ms ease-in-out infinite;
}

.hero-atmosphere-code {
  position: absolute;
  top: 50%;
  right: 26px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero-atmosphere-dots {
  position: absolute;
  top: 18%;
  left: 46%;
  display: grid;
  grid-template-columns: repeat(2, 4px);
  gap: 14px;
}

.hero-atmosphere-dots i {
  width: 4px;
  height: 4px;
  background: var(--gold-2);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(226, 189, 88, 0.76);
}

.hero-atmosphere-dots i:nth-child(2),
.hero-atmosphere-dots i:nth-child(3) {
  opacity: 0.35;
}

.hero-slide.is-active .hero-atmosphere-dots i {
  animation: hero-dot-pulse 2.4s ease-in-out infinite;
}

.hero-slide.is-active .hero-atmosphere-dots i:nth-child(2) { animation-delay: 300ms; }
.hero-slide.is-active .hero-atmosphere-dots i:nth-child(3) { animation-delay: 600ms; }
.hero-slide.is-active .hero-atmosphere-dots i:nth-child(4) { animation-delay: 900ms; }

.hero-slide {
  --hero-stage: #e6bf58;
  --hero-halo: rgba(226, 189, 88, 0.2);
  visibility: hidden;
  opacity: 0;
  transform: scale(1.012);
  transition:
    opacity 720ms var(--ease),
    transform 1100ms var(--ease),
    visibility 0s linear 720ms;
}

.hero-slide::before {
  position: absolute;
  z-index: -1;
  top: -18%;
  right: -8%;
  width: 58%;
  height: 136%;
  content: "";
  background: radial-gradient(circle at center, var(--hero-halo), transparent 68%);
  transform: rotate(-8deg);
}

.hero-slide-ivory {
  --hero-stage: #e7e0d3;
  --hero-halo: rgba(225, 218, 203, 0.18);
}

.hero-slide-steel {
  --hero-stage: #cbd3cf;
  --hero-halo: rgba(167, 187, 181, 0.2);
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition:
    opacity 720ms var(--ease),
    transform 1100ms var(--ease),
    visibility 0s linear 0s;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: max(780px, 100svh);
  padding: calc(var(--header-height) + 58px) 0 110px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.78fr);
  gap: clamp(50px, 7vw, 102px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
  max-width: 740px;
  padding-bottom: 78px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 42px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero h1,
.hero h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 5.8vw, 6.35rem);
  line-height: 1.04;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero h1 span,
.hero h2 span {
  color: var(--gold-2);
}

.hero-description {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
}

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

.hero-copy > * {
  opacity: 0;
  transform: translateY(22px);
}

.hero-slide.is-active .hero-copy > * {
  opacity: 1;
  transform: none;
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.hero-slide.is-active .hero-copy > :nth-child(2) { transition-delay: 100ms; }
.hero-slide.is-active .hero-copy > :nth-child(3) { transition-delay: 190ms; }
.hero-slide.is-active .hero-copy > :nth-child(4) { transition-delay: 280ms; }
.hero-slide.is-active .hero-copy > :nth-child(5) { transition-delay: 350ms; }

.hero-features {
  display: flex;
  flex-wrap: wrap;
  margin: 28px 0 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.hero-features li {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-product {
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 12px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  transform: translateX(42px) scale(0.96);
  transition: opacity 700ms 150ms var(--ease), transform 850ms 150ms var(--ease);
}

.hero-product.hero-product--3d {
  --hero-light-x: 50%;
  --hero-light-y: 44%;
  padding: 0;
  overflow: visible;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-slide.is-active .hero-product.hero-product--3d {
  transform: none;
}

.hero-product--3d .hero-product-number {
  top: 12%;
  right: 3%;
  left: auto;
  color: var(--gold-2);
  background: rgba(11, 14, 11, 0.7);
  border-color: rgba(232, 192, 82, 0.26);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2);
}

.hero-slide.is-active .hero-product {
  opacity: 1;
  transform: perspective(1100px) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
}

.hero-product-number {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 28px;
  padding: 8px 11px;
  color: var(--ink);
  background: rgba(255, 254, 249, 0.88);
  border: 1px solid rgba(20, 21, 19, 0.1);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

.hero-product.hero-product--static {
  padding: 0;
  overflow: visible;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-slide.is-active .hero-product.hero-product--static {
  transform: none;
}

.hero-product--static .hero-product-number {
  top: 11%;
  right: 3%;
  left: auto;
  color: var(--gold-2);
  background: rgba(11, 14, 11, 0.72);
  border-color: rgba(232, 192, 82, 0.26);
}

.hero-product-stage {
  position: relative;
  display: grid;
  min-height: 410px;
  place-items: center;
  padding: clamp(48px, 6vw, 76px);
  overflow: hidden;
  background: var(--hero-stage);
  border-radius: 20px;
}

.hero-product-stage::before {
  position: absolute;
  right: -110px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(20, 21, 19, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(20, 21, 19, 0.025), 0 0 0 92px rgba(20, 21, 19, 0.02);
  transition: transform 6.5s ease;
}

.hero-product-stage::after {
  position: absolute;
  z-index: 3;
  inset: -40% auto -40% -46%;
  width: 30%;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  pointer-events: none;
  transform: skewX(-18deg);
}

.hero-product-stage img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 285px;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(20, 21, 19, 0.2));
  mix-blend-mode: multiply;
  transform-origin: 50% 58%;
  will-change: transform;
}

.hero-slide.is-active .hero-product-stage > img {
  animation: hero-product-float 5.4s 680ms ease-in-out infinite;
}

.hero-product--static .hero-product-stage--static {
  position: relative;
  display: block;
  min-height: 500px;
  padding: 0;
  overflow: visible !important;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  isolation: isolate;
}

.hero-product--static .hero-product-stage--static::before {
  z-index: 0;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: min(94%, 530px);
  height: auto;
  aspect-ratio: 1;
  border: 0;
  background: radial-gradient(circle, rgba(236, 197, 91, 0.26), rgba(212, 169, 59, 0.07) 42%, transparent 70%);
  border-radius: 50%;
  box-shadow: none;
  filter: blur(2px);
  transform: translate(-50%, -50%);
  transition: none;
}

.hero-product--static .hero-product-stage--static::after {
  display: none;
}

.hero-slide.is-active .hero-product--static .hero-product-stage--static::before {
  animation: none;
  transform: translate(-50%, -50%);
}

.hero-static-product {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 116%;
  height: 330px;
  place-items: center;
  transform: translate(-50%, -50%);
}

.hero-static-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 32px 26px rgba(5, 6, 5, 0.34));
  animation: none !important;
  transform: none !important;
}

.hero-product-stage--3d {
  perspective: 980px;
  perspective-origin: 50% 42%;
  isolation: isolate;
}

.hero-product--3d .hero-product-stage--3d {
  min-height: 500px;
  padding: 42px 0 34px;
  overflow: visible !important;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-product--3d .hero-product-stage--3d::before {
  z-index: -1;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: min(94%, 520px);
  height: auto;
  aspect-ratio: 1;
  border: 0;
  background: radial-gradient(circle at var(--hero-light-x) var(--hero-light-y), rgba(240, 201, 96, 0.34), rgba(212, 169, 59, 0.1) 38%, transparent 70%);
  border-radius: 50%;
  box-shadow: none;
  filter: blur(2px);
  transform: translate(-50%, -50%);
}

.hero-product--3d .hero-product-stage--3d::after {
  z-index: 0;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: min(92%, 510px);
  height: auto;
  aspect-ratio: 1.55;
  opacity: 0.46;
  background: transparent;
  border: 1px solid rgba(239, 203, 108, 0.2);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -48%) rotate(-9deg);
}

.hero-slide.is-active .hero-product--3d .hero-product-stage--3d::before {
  animation: hero-pallet-halo 7.8s ease-in-out infinite;
}

.hero-slide.is-active .hero-product--3d .hero-product-stage--3d::after {
  animation: hero-pallet-stage-orbit 10s ease-in-out infinite;
}

.hero-pallet-field {
  position: absolute;
  z-index: 1;
  inset: 5% -5%;
  overflow: visible;
  pointer-events: none;
}

.hero-pallet-field::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62%;
  height: 34%;
  content: "";
  opacity: 0.72;
  background: radial-gradient(ellipse at center, rgba(233, 193, 84, 0.26), transparent 69%);
  filter: blur(24px);
  transform: translate(-50%, -50%);
}

.hero-pallet-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(236, 199, 101, 0.22);
  border-radius: 50%;
  transform-origin: center;
}

.hero-pallet-orbit::before,
.hero-pallet-orbit::after {
  position: absolute;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--gold-2);
  border: 2px solid rgba(12, 15, 12, 0.92);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(232, 192, 82, 0.75);
}

.hero-pallet-orbit--outer {
  width: 92%;
  aspect-ratio: 1.64;
  transform: translate(-50%, -50%) rotate(-10deg);
}

.hero-pallet-orbit--outer::before { top: 14%; right: 13%; }
.hero-pallet-orbit--outer::after { bottom: 8%; left: 22%; opacity: 0.42; }

.hero-pallet-orbit--inner {
  width: 69%;
  aspect-ratio: 1.48;
  opacity: 0.58;
  transform: translate(-50%, -50%) rotate(9deg);
}

.hero-pallet-orbit--inner::before { top: 10%; left: 22%; opacity: 0.56; }
.hero-pallet-orbit--inner::after { right: 11%; bottom: 20%; }

.hero-pallet-beacon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: rgba(239, 203, 108, 0.9);
  border: 3px solid rgba(13, 16, 13, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(232, 192, 82, 0.08), 0 0 34px rgba(232, 192, 82, 0.62);
  transform: translate(226px, -132px);
}

.hero-pallet-3d {
  --pallet-look-x: 0deg;
  --pallet-look-y: 0deg;
  position: relative;
  z-index: 2;
  display: grid;
  width: 116%;
  height: 315px;
  place-items: center;
  transform-origin: 50% 62%;
  transform: rotateX(var(--pallet-look-x)) rotateY(var(--pallet-look-y));
  transform-style: preserve-3d;
  transition: transform 520ms var(--ease);
}

.hero-pallet-3d-rotor {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-pallet-3d img {
  width: 100%;
  height: 100%;
  mix-blend-mode: normal;
  filter:
    drop-shadow(-18px 30px 18px rgba(5, 6, 5, 0.28))
    drop-shadow(18px 42px 26px rgba(5, 6, 5, 0.32));
  backface-visibility: hidden;
  transform: translateZ(74px);
}

.hero-pallet-shadow {
  position: absolute;
  z-index: 0;
  bottom: 6%;
  left: 16%;
  width: 68%;
  height: 16%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(3, 5, 3, 0.78), rgba(151, 113, 27, 0.18) 44%, transparent 72%);
  filter: blur(13px);
  opacity: 0.68;
  transform: translate3d(var(--pallet-shadow-x, 0px), 0, -58px) rotateX(76deg) scale(1.02);
  transform-origin: center;
  will-change: transform, opacity;
}

.hero-pallet-dimension {
  position: absolute;
  z-index: 4;
  right: 7%;
  bottom: 4%;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.hero-pallet-dimension::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 1px;
  content: "";
  background: rgba(232, 192, 82, 0.66);
}

.hero-slide.is-active .hero-pallet-3d-rotor {
  animation: hero-pallet-orbit 8.8s 320ms cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.hero-slide.is-active .hero-pallet-shadow {
  animation: hero-pallet-shadow-pulse 8.4s 520ms ease-in-out infinite;
}

.hero-slide.is-active .hero-product-stage::before {
  transform: translate3d(-12px, -10px, 0) scale(1.035);
}

.hero-slide.is-active .hero-product-stage::after {
  animation: hero-stage-sweep 1.25s 460ms var(--ease) both;
}

@keyframes hero-grid-flow {
  to { background-position: 30px 30px; }
}

@keyframes hero-ghost-drift {
  0%, 100% { transform: translate3d(30px, 12px, 0) scale(0.96); }
  50% { transform: translate3d(2px, -10px, 0) scale(1.025); }
}

@keyframes hero-ring-breathe {
  0%, 100% { opacity: 0.24; transform: translateY(-50%) scale(0.96); }
  50% { opacity: 0.42; transform: translateY(-50%) scale(1.035); }
}

@keyframes hero-line-scan {
  0% { left: -18%; opacity: 0; }
  18%, 72% { opacity: 1; }
  100% { left: 104%; opacity: 0; }
}

@keyframes hero-dot-pulse {
  0%, 100% { opacity: 0.28; transform: scale(0.72); }
  50% { opacity: 1; transform: scale(1.28); }
}

@keyframes hero-product-float {
  0%, 100% { transform: translate3d(0, -4px, 0) rotate(-0.25deg) scale(1.025); }
  50% { transform: translate3d(0, -17px, 0) rotate(0.35deg) scale(1.045); }
}

@keyframes hero-pallet-orbit {
  0%, 100% { transform: translate3d(-18px, -2px, 34px) rotateX(4deg) rotateY(-22deg) rotateZ(-1.2deg) scale(0.965); }
  24% { transform: translate3d(-5px, -17px, 72px) rotateX(8deg) rotateY(-8deg) rotateZ(-0.35deg) scale(1.01); }
  50% { transform: translate3d(18px, -31px, 112px) rotateX(12deg) rotateY(22deg) rotateZ(1.2deg) scale(1.06); }
  76% { transform: translate3d(6px, -16px, 76px) rotateX(8deg) rotateY(8deg) rotateZ(0.35deg) scale(1.02); }
}

@keyframes hero-pallet-orbit-mobile {
  0%, 100% { transform: translate3d(-6px, -1px, 26px) rotateX(3deg) rotateY(-11deg) scale(0.98); }
  50% { transform: translate3d(7px, -16px, 54px) rotateX(7deg) rotateY(11deg) scale(1.035); }
}

@keyframes hero-pallet-shadow-pulse {
  0%, 100% { opacity: 0.68; transform: translate3d(calc(var(--pallet-shadow-x, 0px) - 8px), 0, -58px) rotateX(76deg) scale(1.02); }
  50% { opacity: 0.38; transform: translate3d(calc(var(--pallet-shadow-x, 0px) + 8px), 2px, -58px) rotateX(76deg) scale(0.82); }
}

@keyframes hero-pallet-halo {
  0%, 100% { opacity: 0.76; transform: translate(-50%, -50%) scale(0.94); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

@keyframes hero-pallet-stage-orbit {
  0%, 100% { opacity: 0.32; transform: translate(-50%, -48%) rotate(-10deg) scale(0.97); }
  50% { opacity: 0.62; transform: translate(-50%, -48%) rotate(-5deg) scale(1.03); }
}

@keyframes hero-stage-sweep {
  0% { left: -46%; opacity: 0; }
  22% { opacity: 0.62; }
  100% { left: 124%; opacity: 0; }
}

.hero-product figcaption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 10px 6px;
}

.hero-product figcaption span {
  color: var(--gold-2);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-product figcaption strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  text-align: right;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 42px;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(7, 9, 7, 0.76);
  border: 1px solid rgba(232, 192, 82, 0.2);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  backdrop-filter: blur(12px);
}

.hero-status > span {
  min-width: 18px;
  text-align: center;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  position: relative;
  width: 26px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  transition: width 280ms var(--ease);
}

.hero-dot::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  transform: translateY(-50%);
  transition: background 280ms ease, box-shadow 280ms ease;
}

.hero-dot.is-active {
  width: 52px;
}

.hero-dot.is-active::before {
  background: var(--gold-2);
  box-shadow: 0 0 16px rgba(232, 192, 82, 0.32);
}

.hero-arrows {
  display: flex;
  gap: 8px;
}

.hero-arrows button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 18px;
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

.hero-arrows button:hover {
  color: var(--ink);
  background: var(--gold-2);
  transform: translateY(-2px);
}

.quick-finder {
  position: relative;
  z-index: 8;
  width: var(--container);
  margin: -36px auto 0;
  padding: 26px;
  color: var(--white);
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-finder-inner {
  display: grid;
  grid-template-columns: 0.75fr 1.35fr auto;
  gap: 22px;
  align-items: center;
}

.quick-finder strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.quick-finder small {
  color: rgba(255, 255, 255, 0.58);
}

.finder-search {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.finder-search svg {
  width: 20px;
  opacity: 0.7;
}

.finder-search input {
  width: 100%;
  color: var(--white);
  border: 0;
  outline: 0;
  background: transparent;
}

.finder-search input::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.about-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.about-media {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-media-main {
  position: relative;
  overflow: hidden;
  background: #e8e2d6;
  border: 1px solid rgba(20, 21, 19, 0.08);
  border-radius: 28px;
}

.about-media-main img,
.about-media-small img,
.application-card img,
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media-small {
  position: relative;
  overflow: hidden;
  background: #dfd7c9;
  border: 1px solid rgba(20, 21, 19, 0.08);
  border-radius: 28px;
}

.about-media .product-art {
  display: grid;
  place-items: center;
  padding: clamp(54px, 5vw, 76px) clamp(24px, 3vw, 42px) clamp(36px, 4vw, 54px);
  background: linear-gradient(145deg, #fffef9, #e9e3d7 74%);
}

.about-media .product-art:nth-child(2) {
  background: linear-gradient(150deg, #efe8da, #d5ccbb);
}

.about-media .product-art img {
  width: 100%;
  height: 240px;
  max-height: none;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: scale(var(--product-art-scale, 1));
  transform-origin: center;
}

.about-media .product-art--pallet { --product-art-scale: 1.12; }
.about-media .product-art--crate { --product-art-scale: 0.94; }

.about-media .product-art:nth-child(2) img {
  mix-blend-mode: multiply;
}

.about-media .product-art--hq img,
.about-media .product-art--hq:nth-child(2) img {
  image-rendering: auto;
  mix-blend-mode: normal;
  filter: drop-shadow(0 18px 18px rgba(20, 21, 19, 0.14));
}

.product-art-label {
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-badge {
  position: absolute;
  z-index: 3;
  right: auto;
  bottom: 20px;
  left: 20px;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--gold-2);
  border: 1px solid rgba(20, 21, 19, 0.14);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(20, 21, 19, 0.15);
}

.about-badge strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.about-badge span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Stacked editorial about-media: wide pallet on top, square crate + badge below.
   Frames match the product shapes so the (flat) pallet and (square) crate both fill. */
.about-media.about-media--stack {
  display: flex;
  min-height: 0;
  flex-direction: column;
  grid-template-columns: none;
  gap: 16px;
}

.about-media--stack .about-media-main {
  aspect-ratio: 21 / 9;
  min-height: 0;
}

.about-media-row {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr);
  gap: 16px;
}

.about-media--stack .about-media-row .about-media-small {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

/* Products now fill their frame; drop the fixed height and per-image scale hacks.
   Vertical padding stays small so the flat pallet fills the wide frame edge-to-edge. */
.about-media--stack .product-art {
  padding: clamp(12px, 1.3vw, 18px) clamp(22px, 2.6vw, 34px);
}

.about-media--stack .product-art img,
.about-media--stack .product-art:nth-child(2) img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  transform: none;
}

.about-media--stack .product-art--hq img {
  filter: drop-shadow(0 22px 26px rgba(20, 21, 19, 0.16));
}

/* Badge becomes a real cell in the bottom row instead of a floating overlay. */
.about-badge.about-badge--inline {
  position: static;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(150deg, var(--gold-2), var(--gold));
}

.about-badge.about-badge--inline strong {
  font-size: clamp(30px, 3.4vw, 42px);
}

.about-badge.about-badge--inline span {
  margin-top: 2px;
  font-size: 11px;
}

.feature-list {
  display: grid;
  margin: 34px 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-check {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--gold-2);
  border-radius: 50%;
  font-weight: 900;
}

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

.category-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.category-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(13, 14, 13, 0.88) 0%, rgba(13, 14, 13, 0.06) 68%);
}

.category-card img {
  transition: transform 800ms var(--ease), filter 800ms ease;
}

.category-card-product {
  border: 1px solid rgba(20, 21, 19, 0.08);
}

.category-card-product.category-card-gold {
  background: linear-gradient(145deg, #f6e7b8, #d8a82f);
}

.category-card-product.category-card-dark {
  background: linear-gradient(145deg, #efebe2, #cbc4b6);
}

.category-card-product > img {
  position: absolute;
  top: 34px;
  left: 8%;
  width: 84%;
  height: 300px;
  padding: 0;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.category-card-product.category-card-dark > img {
  margin: 0;
  padding: 0;
  width: 84%;
  height: 300px;
  background: transparent;
  border-radius: 0;
  mix-blend-mode: multiply;
}

.category-card-product::after {
  background: linear-gradient(0deg, rgba(13, 14, 13, 0.9) 0%, rgba(13, 14, 13, 0.04) 72%);
}

.category-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.category-card-content {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  left: 34px;
}

.category-card-number {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--ink);
  background: var(--gold-2);
  border-radius: 50%;
  font-weight: 900;
}

.category-card h3 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.category-card p {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms ease;
}

.product-card:hover {
  z-index: 2;
  border-color: rgba(198, 154, 45, 0.55);
  box-shadow: 0 20px 52px rgba(20, 21, 19, 0.13);
  transform: translateY(-7px);
}

.product-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f6f6f3;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 500ms var(--ease);
}

.product-card:hover .product-card-media img {
  transform: scale(1.06);
}

.product-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255, 254, 249, 0.9);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-card-content {
  display: flex;
  min-height: 188px;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-card h3 {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.product-meta span {
  padding: 5px 8px;
  color: var(--muted);
  background: var(--paper);
  border-radius: 7px;
  font-size: 10px;
  font-weight: 700;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
}

.card-link::after {
  content: "→";
  transition: transform 220ms var(--ease);
}

.product-card:hover .card-link::after {
  transform: translateX(5px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.service-card {
  min-height: 370px;
  padding: 36px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 320ms ease, transform 320ms var(--ease);
}

.service-card:hover {
  z-index: 2;
  color: var(--ink);
  background: var(--gold-2);
  transform: translateY(-6px);
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 64px;
  color: var(--gold-2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.service-card:hover .service-icon {
  color: var(--ink);
  border-color: rgba(20, 21, 19, 0.25);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: 14px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.58);
}

.service-card:hover p {
  color: rgba(20, 21, 19, 0.68);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 38px 28px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.application-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
}

.application-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(15, 16, 15, 0.82), transparent 62%);
}

.application-card img {
  transition: transform 700ms var(--ease);
}

.application-card:hover img {
  transform: scale(1.06);
}

.application-card-content {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  left: 26px;
}

.application-card-content span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  gap: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  padding: 34px 28px 0;
  border-top: 1px solid var(--line);
  counter-increment: process;
}

.process-list li::before {
  display: block;
  margin-bottom: 42px;
  color: var(--gold-dark);
  content: "0" counter(process);
  font-size: 15px;
  font-weight: 900;
}

.process-list li:not(:last-child)::after {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.process-list p {
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  max-width: 930px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 40px;
  gap: 24px;
  align-items: center;
  padding: 25px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 750;
}

.faq-plus {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 260ms var(--ease);
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-button[aria-expanded="true"] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  color: var(--muted);
  transition: grid-template-rows 320ms var(--ease);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 800px;
  padding-bottom: 26px;
}

.faq-button[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.faq-home-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: end;
  margin-bottom: 42px;
}

.faq-home-heading h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.faq-contact-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, #2d2f2b, #151614);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  box-shadow: 0 20px 54px rgba(20, 21, 19, 0.13);
}

.faq-contact-card::after {
  position: absolute;
  top: -54px;
  right: -54px;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid rgba(226, 189, 88, 0.24);
  border-radius: 50%;
}

.faq-contact-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-contact-card h3 {
  max-width: 410px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.faq-contact-card p {
  max-width: 430px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.faq-contact-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-contact-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 11px;
  font-size: 12px;
  font-weight: 900;
}

.faq-contact-actions a:first-child {
  background: #149447;
  border-color: #149447;
}

.faq-contact-actions svg {
  width: 19px;
  height: 19px;
}

.faq-list-home {
  max-width: none;
  margin: 0;
}

.faq-list-home .faq-item {
  margin-bottom: 10px;
  padding: 0 24px;
  background: #fbfaf5;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.faq-list-home .faq-button {
  padding: 21px 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.faq-list-home .faq-answer p {
  padding-bottom: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
}

.text-link svg {
  width: 18px;
  height: 18px;
}

.cta-band {
  position: relative;
  padding: 84px 0;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(120deg, #e4bb4e, #f0d277);
}

.cta-band::before {
  position: absolute;
  top: -160px;
  right: -80px;
  width: 480px;
  height: 480px;
  content: "";
  border: 1px solid rgba(20, 21, 19, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(20, 21, 19, 0.035), 0 0 0 116px rgba(20, 21, 19, 0.025);
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, auto);
  gap: 50px;
  align-items: center;
}

.cta-grid h2 {
  max-width: 820px;
  margin-bottom: 12px;
}

.cta-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  color: rgba(20, 21, 19, 0.72);
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(20, 21, 19, 0.1);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cta-grid p {
  max-width: 680px;
  margin: 0;
  color: rgba(20, 21, 19, 0.66);
}

.cta-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cta-actions .btn {
  min-width: 160px;
}

.site-footer {
  padding: 76px 0 24px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 58px;
  padding-bottom: 58px;
}

.footer-brand img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 340px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.floating-actions {
  position: fixed;
  z-index: 800;
  right: 22px;
  bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 7px;
  background: rgba(20, 21, 19, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(20, 21, 19, 0.28);
  backdrop-filter: blur(14px);
}

.floating-action {
  display: flex;
  min-width: 132px;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 15px;
  color: var(--white);
  background: #292b28;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  box-shadow: none;
  font-size: 12px;
  font-weight: 900;
  transition: transform 260ms var(--ease), background 260ms ease;
}

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

.floating-action.whatsapp {
  background: #149447;
}

.floating-action svg {
  width: 21px;
  height: 21px;
}

.page-hero {
  --page-accent: #d2a83c;
  position: relative;
  min-height: 430px;
  padding: calc(var(--header-height) + 54px) 0 58px;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: #1a1b18;
}

.page-hero::before,
.page-hero::after,
.page-hero-grid {
  position: absolute;
  content: "";
  pointer-events: none;
}

.page-hero::before {
  z-index: -2;
  top: -250px;
  right: -170px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, color-mix(in srgb, var(--page-accent) 30%, transparent) 0%, transparent 67%);
  border: 1px solid color-mix(in srgb, var(--page-accent) 35%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 255, 255, 0.018), 0 0 0 144px rgba(255, 255, 255, 0.012);
}

.page-hero::after {
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.page-hero-grid {
  z-index: -3;
  inset: 0;
  opacity: 0.1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, #000 56%, transparent 96%);
}

.page-hero-gold {
  --page-accent: #d1a331;
}

.page-hero-steel {
  --page-accent: #7d9891;
}

.page-hero-olive {
  --page-accent: #7f8e58;
}

.page-hero-graphite {
  --page-accent: #777b74;
}

.page-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 310px;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.page-hero-content {
  min-width: 0;
  max-width: 980px;
}

.page-hero-kicker {
  display: block;
  margin-bottom: 17px;
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin-bottom: 18px;
  max-width: 960px;
  font-size: clamp(2.7rem, 4.65vw, 5rem);
  line-height: 0.98;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.page-hero p {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.7;
}

.page-hero-signature {
  display: grid;
  min-height: 210px;
  align-content: space-between;
  justify-items: end;
  padding: 12px 0 12px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.page-hero-signature span {
  max-width: 120px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
}

.page-hero-signature strong {
  color: var(--page-accent);
  font-size: clamp(4.8rem, 8vw, 7.6rem);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.08em;
}

.page-hero-404 {
  display: grid;
  min-height: 100svh;
  align-items: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: var(--gold-2);
}

.filter-bar {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(150px, 0.6fr)) auto;
  gap: 10px;
  margin-bottom: 36px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.filter-input,
.filter-select {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: #fbfaf5;
}

.filter-input:focus,
.filter-select:focus {
  border-color: var(--gold);
}

.filter-count {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 42px;
}

.pagination button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.pagination button.is-active {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold-2);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  gap: 70px;
  align-items: start;
}

.product-detail-media {
  position: sticky;
  top: 100px;
  display: grid;
  min-height: 580px;
  place-items: center;
  padding: 40px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-detail-media::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(198, 154, 45, 0.22);
  border-radius: 16px;
  pointer-events: none;
}

.product-detail-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-detail-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 4.8vw, 5rem);
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.detail-badges span {
  padding: 7px 11px;
  color: var(--gold-dark);
  background: rgba(198, 154, 45, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.spec-table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
  background: var(--white);
}

.spec-table th,
.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 38%;
  color: var(--muted);
  font-size: 12px;
}

.spec-table td {
  font-size: 13px;
  font-weight: 700;
}

.detail-note {
  padding: 18px 20px;
  color: #66531e;
  background: #f4e8c8;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  font-size: 13px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 70px;
  align-items: start;
}

.prose {
  max-width: 850px;
  color: #393a36;
  font-size: 17px;
  line-height: 1.85;
}

.prose h2 {
  margin: 64px 0 22px;
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3.15rem);
}

.prose h3 {
  margin: 40px 0 16px;
  color: var(--ink);
}

.prose p {
  margin-bottom: 22px;
}

.prose ul,
.prose ol {
  margin: 0 0 28px;
  padding-left: 24px;
}

.prose li {
  margin-bottom: 10px;
}

.prose blockquote {
  margin: 38px 0;
  padding: 24px 28px;
  color: var(--ink);
  background: #eee7d6;
  border-left: 4px solid var(--gold);
  font-size: 19px;
  font-weight: 650;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.article-toc {
  position: sticky;
  top: 104px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.article-toc strong {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
}

.article-toc ol {
  display: grid;
  margin: 0;
  padding-left: 18px;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.article-toc a:hover {
  color: var(--gold-dark);
}

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

.blog-grid-home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.blog-home-section {
  background: linear-gradient(180deg, #eee8dc 0%, var(--paper) 100%);
}

.blog-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.blog-card-media {
  position: relative;
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 26px;
  overflow: hidden;
  background: linear-gradient(145deg, #f4f0e7, #ded7c9);
  border-bottom: 1px solid var(--line);
}

.blog-card:nth-child(2n) .blog-card-media {
  background: linear-gradient(145deg, #f4f0e7, #ded7c9);
}

.blog-card:nth-child(3n) .blog-card-media {
  background: linear-gradient(145deg, #f4f0e7, #ded7c9);
}

.blog-card-media img {
  width: 100%;
  height: 156px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  mix-blend-mode: multiply;
  transition: transform 500ms var(--ease);
}

.blog-card:nth-child(3n) .blog-card-media img {
  padding: 0;
  mix-blend-mode: multiply;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.035);
}

.blog-card-index {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: var(--gold-2);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 900;
}

.blog-card-body {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 25px;
}

.blog-card-number {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
  margin: 18px 0 14px;
  font-size: clamp(1.25rem, 1.8vw, 1.72rem);
  line-height: 1.18;
}

.blog-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.blog-card .card-link {
  margin-top: auto;
  padding-top: 22px;
}

.blog-grid-home .blog-card-media {
  min-height: 180px;
  padding: 24px;
}

.blog-grid-home .blog-card-media img {
  height: 128px;
}

.blog-grid-home .blog-card-body {
  min-height: 315px;
  padding: 22px;
}

.blog-grid-home .blog-card h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
}

.section-footer-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

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

.contact-card {
  min-height: 260px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h2,
.contact-card h3 {
  font-size: 1.45rem;
}

.map-link {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  margin-top: 26px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  text-align: center;
}

.map-link::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(600px) rotateX(58deg) scale(1.5);
}

.map-link-content {
  position: relative;
  z-index: 1;
}

.quote-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 10%, rgba(226, 189, 88, 0.16), transparent 32%),
    radial-gradient(circle at 92% 88%, rgba(198, 154, 45, 0.12), transparent 34%),
    var(--ink);
}

.quote-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.07;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.quote-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  padding-top: 22px;
}

.quote-copy .eyebrow {
  color: var(--gold-2);
}

.quote-copy h2 {
  max-width: 640px;
  margin-bottom: 24px;
}

.quote-copy > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.04rem;
}

.quote-points {
  display: grid;
  gap: 0;
  margin: 38px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.quote-points li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  padding: 17px 0;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.quote-points strong {
  color: var(--gold-2);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.quote-direct-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quote-direct-links a {
  display: flex;
  min-height: 72px;
  gap: 13px;
  align-items: center;
  padding: 14px 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease;
}

.quote-direct-links a:hover {
  border-color: rgba(226, 189, 88, 0.55);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

.quote-direct-links svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--gold-2);
}

.quote-direct-links small,
.quote-direct-links span {
  display: block;
}

.quote-direct-links small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-form {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 4vw, 46px);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
}

.quote-form-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.quote-form-head span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-form-head h3 {
  margin: 7px 0 0;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.quote-form-head > small {
  flex: 0 0 auto;
  color: var(--muted);
}

.quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.form-field {
  min-width: 0;
}

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

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(20, 21, 19, 0.19);
  border-radius: 12px;
  outline: 0;
  background: #fbfaf6;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field textarea {
  min-height: 118px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-dark);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(198, 154, 45, 0.14);
}

.form-field [aria-invalid="true"] {
  border-color: #a82d2d;
  box-shadow: 0 0 0 4px rgba(168, 45, 45, 0.1);
}

.form-error {
  display: block;
  min-height: 18px;
  padding-top: 4px;
  color: #9d2525;
  font-size: 0.72rem;
  line-height: 1.35;
}

.quote-form-footer {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.quote-form-footer p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.quote-form-footer .btn {
  flex: 0 0 auto;
}

.quote-form-footer svg {
  width: 19px;
  height: 19px;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 13px 15px;
  border-radius: 11px;
  font-size: 0.86rem;
  line-height: 1.5;
}

.form-status.is-error,
.form-status.is-success {
  display: block;
}

.form-status.is-error {
  color: #7f1d1d;
  background: #fff0f0;
  border: 1px solid #f0c5c5;
}

.form-status.is-success {
  color: #0d642c;
  background: #ecf9f0;
  border: 1px solid #b9e1c5;
}

.form-status a {
  font-weight: 850;
  text-decoration: underline;
}

.form-noscript {
  margin: 18px 0 0;
  color: #7f1d1d;
  font-size: 0.84rem;
}

.search-overlay {
  position: fixed;
  z-index: 2000;
  inset: 0;
  visibility: hidden;
  padding: 80px 24px;
  color: var(--white);
  background: rgba(17, 18, 16, 0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease), visibility 320ms;
}

.search-overlay.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.search-shell {
  width: min(900px, 100%);
  margin: 0 auto;
}

.search-close {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-left: auto;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
}

.search-shell h2 {
  margin: 45px 0 28px;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.search-field {
  width: 100%;
  padding: 18px 0;
  color: var(--white);
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.26);
  outline: 0;
  background: transparent;
  font-size: clamp(1.25rem, 3vw, 2rem);
}

.search-results {
  display: grid;
  max-height: 52vh;
  margin-top: 24px;
  overflow: auto;
  gap: 8px;
}

.search-result {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.search-result img {
  width: 74px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
}

.search-result small {
  display: block;
  color: rgba(255, 255, 255, 0.5);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

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

.empty-state {
  grid-column: 1 / -1;
  padding: 60px 20px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1100px) {
  :root { --container: min(100% - 36px, 1080px); }
  .main-nav { display: none; }
  .header-inner { grid-template-columns: 190px 1fr auto; }
  .menu-toggle { display: grid; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr); gap: 38px; }
  .hero h1,
  .hero h2 { font-size: clamp(3.1rem, 6.6vw, 5.5rem); }
  .hero-product-stage { min-height: 360px; padding: 46px; }
  .hero-product-stage img { height: 245px; }
  .hero-pallet-3d { height: 245px; }
  .page-hero-layout { grid-template-columns: minmax(0, 1fr) 130px; gap: 42px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .application-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-home-heading { grid-template-columns: 1fr; }
  .filter-bar { grid-template-columns: 1fr 1fr 1fr; }
  .filter-input { grid-column: 1 / -1; }
  .filter-count { justify-content: flex-start; }
}

@media (max-width: 800px) {
  :root {
    --container: min(100% - 28px, 760px);
    --header-height: 72px;
  }
  body { padding-bottom: 70px; }
  .section { padding: 78px 0; }
  .section-sm { padding: 58px 0; }
  .section-heading,
  .about-grid,
  .split-grid,
  .product-detail,
  .content-layout,
  .cta-grid,
  .quote-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .quote-copy { position: relative; top: auto; padding-top: 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading > :last-child { justify-self: start; }
  .header-inner { grid-template-columns: 1fr auto; gap: 12px; }
  .brand { width: 165px; }
  .header-actions .btn { display: none; }
  .hero { min-height: max(1030px, 100svh); }
  .hero-content { min-height: max(1030px, 100svh); padding: calc(var(--header-height) + 42px) 0 104px; }
  .hero-layout { grid-template-columns: 1fr; gap: 28px; align-content: center; }
  .hero-copy { width: 100%; max-width: 680px; padding-bottom: 0; }
  .hero h1,
  .hero h2 { font-size: clamp(2.8rem, 10vw, 4.7rem); }
  .hero-product { width: min(100%, 640px); }
  .hero-product-stage { min-height: 300px; padding: 38px; }
  .hero-product-stage img { height: 220px; }
  .hero-pallet-3d { width: 108%; height: 220px; }
  .hero-slide.is-active .hero-pallet-3d-rotor { animation-name: hero-pallet-orbit-mobile; animation-duration: 8.6s; }
  .hero-atmosphere::before { top: 42%; right: -42%; width: 126%; height: 62%; }
  .hero-slide.is-active .hero-atmosphere::before { opacity: 0.045; }
  .hero-atmosphere::after { top: 28%; right: -18%; width: 78%; height: 94%; opacity: 0.28; }
  .hero-atmosphere-ring { top: 49%; right: -34%; width: 720px; }
  .hero-atmosphere-line { bottom: 34%; }
  .hero-atmosphere-code { display: none; }
  .hero-atmosphere-dots { top: 13%; right: 24px; left: auto; }
  .hero-controls { bottom: 20px; }
  .quick-finder { margin-top: -12px; padding: 18px; }
  .quick-finder-inner { grid-template-columns: 1fr; gap: 14px; }
  .about-media { min-height: 460px; }
  .category-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 430px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-list { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .application-grid { grid-template-columns: 1fr; }
  .application-card:first-child { grid-column: auto; }
  .application-card,
  .application-card:nth-child(2),
  .application-card:nth-child(3) { min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .floating-actions {
    right: 8px;
    bottom: 8px;
    left: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 5px;
    border-radius: 16px;
  }
  .floating-action {
    min-width: 0;
    height: 56px;
    justify-content: center;
    border-radius: 11px;
    box-shadow: none;
  }
  .page-hero { min-height: 0; padding: calc(var(--header-height) + 42px) 0 52px; }
  .page-hero::before { right: -300px; opacity: 0.72; }
  .page-hero-layout { min-height: 270px; grid-template-columns: 1fr; gap: 0; }
  .page-hero-content { max-width: 720px; }
  .page-hero-signature { display: none; }
  .filter-bar { grid-template-columns: 1fr 1fr; }
  .filter-input { grid-column: 1 / -1; }
  .filter-count { grid-column: 1 / -1; }
  .product-detail-media { position: relative; top: auto; min-height: 440px; }
  .article-toc { position: relative; top: auto; order: -1; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero { min-height: max(1040px, 100svh); }
  .hero-content { min-height: max(1040px, 100svh); padding: calc(var(--header-height) + 34px) 0 92px; }
  .hero-layout { gap: 22px; }
  .hero-kicker { margin-bottom: 16px; font-size: 10px; }
  .hero h1,
  .hero h2 { margin-bottom: 17px; font-size: clamp(2.35rem, 11.5vw, 3.5rem); }
  .hero-description { margin-bottom: 22px; font-size: 0.98rem; line-height: 1.55; }
  .hero-features { margin-top: 18px; gap: 6px; }
  .hero-features li { padding: 6px 9px; font-size: 8px; }
  .hero-product { padding: 7px; border-radius: 20px; }
  .hero-product-number { top: 18px; left: 18px; }
  .hero-product-stage { min-height: 230px; padding: 30px 24px; border-radius: 14px; }
  .hero-product-stage img { height: 165px; }
  .hero-pallet-3d { width: 108%; height: 165px; }
  .hero-grid { opacity: 0.14; background-size: 48px 48px; }
  .hero-atmosphere::before { top: 56%; right: -66%; width: 158%; height: 42%; }
  .hero-slide.is-active .hero-atmosphere::before { opacity: 0.03; }
  .hero-atmosphere-ring { top: 62%; right: -92%; width: 630px; opacity: 0.38; }
  .hero-atmosphere-line { bottom: 29%; }
  .hero-atmosphere-dots { display: none; }
  .hero-product figcaption { grid-template-columns: 1fr; gap: 4px; padding: 12px 8px 5px; }
  .hero-product figcaption strong { text-align: left; }
  .hero-dot { width: 18px; }
  .hero-dot.is-active { width: 34px; }
  .hero-arrows button { width: 40px; height: 40px; }
  .category-card-content { right: 22px; bottom: 24px; left: 22px; }
  .about-media { min-height: 0; grid-template-columns: 1fr; }
  .about-media-main { min-height: 330px; }
  .about-media-small { min-height: 230px; }
  .about-media .product-art { padding: 58px 24px 34px; }
  .about-media .product-art img { max-height: 220px; }
  .blog-card-body { min-height: 280px; }
  .faq-contact-card { padding: 25px 22px; border-radius: 18px; }
  .faq-contact-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .faq-contact-actions a { justify-content: center; }
  .faq-list-home .faq-item { padding: 0 18px; }
  .page-hero { padding: calc(var(--header-height) + 34px) 0 42px; }
  .page-hero-layout { min-height: 250px; }
  .page-hero h1 { font-size: clamp(2.35rem, 11.2vw, 3.55rem); line-height: 1; }
  .page-hero p { font-size: 0.98rem; line-height: 1.62; }
  .breadcrumbs { margin-bottom: 18px; font-size: 10px; }
  .cta-actions { grid-template-columns: 1fr; }
  .cta-actions .btn { min-width: 0; width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { display: grid; grid-template-columns: 42% 1fr; }
  .product-card-media { aspect-ratio: auto; min-height: 180px; }
  .product-card-content { min-height: 180px; padding: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .service-icon { margin-bottom: 42px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .process-list { grid-template-columns: 1fr; }
  .process-list li:not(:last-child)::after { display: none; }
  .filter-bar { grid-template-columns: 1fr; }
  .filter-input, .filter-count { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .product-detail-media { min-height: 340px; padding: 24px; }
  .contact-card { min-height: 220px; }
  .quote-form { padding: 24px 18px; border-radius: 20px; }
  .quote-form-head { display: block; }
  .quote-form-head > small { display: block; margin-top: 10px; }
  .quote-form-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .quote-form-footer { align-items: stretch; flex-direction: column; }
  .quote-form-footer p { max-width: none; }
  .quote-form-footer .btn { width: 100%; }
  .quote-direct-links { grid-template-columns: 1fr; }
}

/* Mobile-first hardening: safe areas, compact hero, touch targets and overflow control. */
@media (max-width: 800px) {
  :root {
    --container: min(100% - 24px, 760px);
    --header-height: 70px;
    --radius: 18px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  }

  body.menu-open,
  body.search-open {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
  }

  .container,
  .header-inner,
  .quick-finder,
  .hero-controls {
    max-width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .section-sm {
    padding: 50px 0;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 30px;
  }

  .section-heading h2,
  .quote-copy h2,
  .cta-grid h2 {
    font-size: clamp(2rem, 8.6vw, 3.15rem);
    line-height: 1.05;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.header-solid {
    position: fixed;
    height: var(--header-height);
    background: rgba(20, 21, 19, 0.96);
    backdrop-filter: blur(14px);
  }

  .header-inner {
    width: calc(100% - 24px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .brand {
    width: min(154px, 48vw);
    min-width: 0;
  }

  .header-actions {
    min-width: 0;
    gap: 6px;
  }

  .lang-link,
  .menu-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .mobile-panel {
    width: 100%;
    height: 100dvh;
    padding: calc(var(--header-height) + 18px) 18px calc(28px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-panel nav a {
    padding: 11px 2px;
    font-size: clamp(1.2rem, 5.8vw, 1.65rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .mobile-panel-meta {
    margin-top: 24px;
    padding-bottom: 10px;
    font-size: 12px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: max(930px, 100svh);
    touch-action: pan-y;
  }

  .hero-content {
    min-height: max(930px, 100svh);
    padding: calc(var(--header-height) + 28px) 0 150px;
    align-content: start;
  }

  .hero-layout {
    gap: 20px;
  }

  .hero h1,
  .hero h2 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 9.7vw, 3.7rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero-kicker {
    margin-bottom: 14px;
  }

  .hero-description {
    max-width: 100%;
    margin-bottom: 19px;
    font-size: 0.95rem;
    line-height: 1.52;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .btn {
    min-height: 50px;
  }

  .hero-features {
    margin-top: 14px;
  }

  .hero-product {
    width: 100%;
    max-width: 520px;
    justify-self: center;
    padding: 7px;
    border-radius: 18px;
  }

  .hero-product-stage {
    min-height: 220px;
    padding: 24px 20px;
    border-radius: 13px;
  }

  .hero-product-stage img,
  .hero-pallet-3d {
    width: 100%;
    height: 160px;
    max-width: 100%;
  }

  .hero-product.hero-product--3d {
    max-width: 600px;
    padding: 0;
  }

  .hero-product--3d .hero-product-stage--3d {
    min-height: 320px;
    padding: 22px 0 18px;
  }

  .hero-product.hero-product--static {
    max-width: 600px;
    padding: 0;
  }

  .hero-product--static .hero-product-stage--static {
    min-height: 320px;
    padding: 0;
  }

  .hero-product--static .hero-product-number {
    top: 8%;
    right: 2%;
  }

  .hero-static-product {
    width: 112%;
    height: 250px;
  }

  .hero-product--3d .hero-product-number {
    top: 8%;
    right: 2%;
  }

  .hero-product--3d .hero-pallet-3d {
    width: 108%;
    height: 205px;
  }

  .hero-pallet-field {
    inset: 7% 0;
  }

  .hero-pallet-beacon {
    transform: translate(176px, -94px);
  }

  .hero-pallet-dimension {
    right: 5%;
    bottom: 2%;
  }

  .hero-product figcaption {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 10px 6px 3px;
  }

  .hero-product figcaption span,
  .hero-product figcaption strong {
    min-width: 0;
    font-size: 8px;
    overflow-wrap: anywhere;
  }

  .hero-controls {
    bottom: calc(82px + env(safe-area-inset-bottom, 0px));
    width: var(--container);
  }

  .hero-arrows button {
    width: 42px;
    height: 42px;
  }

  .quick-finder {
    margin-top: 0;
    padding: 16px;
    border-radius: 16px;
  }

  .quick-finder-inner {
    gap: 12px;
  }

  .quick-finder-inner > .btn,
  .finder-search {
    width: 100%;
  }

  .finder-search,
  .filter-input,
  .filter-select,
  .form-field input,
  .form-field select,
  .form-field textarea,
  .search-field {
    font-size: 16px;
  }

  .about-grid,
  .split-grid,
  .product-detail,
  .content-layout,
  .quote-shell,
  .cta-grid {
    gap: 32px;
  }

  .about-media,
  .product-detail-media,
  .map-link {
    min-height: 320px;
  }

  .category-card {
    min-height: 410px;
  }

  .category-card-product > img,
  .category-card-product.category-card-dark > img {
    top: 24px;
    left: 8%;
    width: 84%;
    height: 238px;
  }

  .process-list li {
    padding: 26px 18px 0;
  }

  .process-list li::before {
    margin-bottom: 22px;
  }

  .page-hero {
    min-height: 0;
    padding: calc(var(--header-height) + 32px) 0 42px;
  }

  .page-hero-layout {
    min-height: 230px;
  }

  .page-hero h1,
  .product-detail-copy h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9.6vw, 3.75rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .breadcrumbs {
    max-width: 100%;
    font-size: 10px;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .filter-bar {
    padding: 14px;
    gap: 9px;
    border-radius: 14px;
  }

  .filter-input,
  .filter-select {
    min-width: 0;
  }

  .filter-count {
    justify-content: flex-start;
    padding: 4px 2px;
    white-space: normal;
  }

  .product-detail-media {
    top: auto;
    padding: 22px;
  }

  .product-detail-media img {
    max-height: 300px;
  }

  .detail-badges,
  .article-meta,
  .pagination {
    max-width: 100%;
  }

  .content-layout,
  .prose,
  .article-toc {
    min-width: 0;
    max-width: 100%;
  }

  .prose {
    font-size: 15.5px;
    line-height: 1.75;
    overflow-wrap: anywhere;
  }

  .prose h2 {
    margin: 44px 0 18px;
    font-size: clamp(1.75rem, 7.8vw, 2.6rem);
  }

  .prose h3 {
    margin: 30px 0 13px;
  }

  .prose blockquote {
    margin: 28px 0;
    padding: 19px 18px;
    font-size: 1rem;
  }

  .article-toc {
    padding: 20px;
  }

  .blog-card-body,
  .blog-grid-home .blog-card-body {
    min-height: 0;
  }

  .blog-card h2,
  .blog-card h3,
  .contact-card h2,
  .contact-card h3,
  .footer-links,
  .cta-grid,
  .quote-direct-links {
    overflow-wrap: anywhere;
  }

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

  .contact-card span {
    margin-bottom: 24px;
  }

  .quote-copy {
    padding-top: 0;
  }

  .quote-points {
    margin: 26px 0;
  }

  .quote-form {
    max-width: 100%;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .quote-form-head {
    display: block;
    margin-bottom: 22px;
    padding-bottom: 18px;
  }

  .quote-form-head > small {
    display: block;
    margin-top: 9px;
  }

  .quote-form-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

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

  .quote-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .quote-form-footer p {
    max-width: none;
  }

  .quote-form-footer .btn {
    width: 100%;
  }

  .cta-band {
    padding: 62px 0;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn,
  .section-footer-action .btn {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    padding: 58px 0 22px;
  }

  .footer-grid {
    gap: 34px 24px;
    padding-bottom: 38px;
  }

  .footer-brand img {
    width: min(190px, 64vw);
  }

  .floating-actions {
    right: 6px;
    bottom: max(6px, env(safe-area-inset-bottom, 0px));
    left: 6px;
    width: auto;
    max-width: none;
    padding: 4px;
    gap: 4px;
    border-radius: 14px;
  }

  .floating-action {
    width: 100%;
    min-width: 0;
    height: 54px;
    padding: 0 10px;
    gap: 7px;
    border-radius: 10px;
    font-size: 11px;
  }

  .floating-action svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
  }

  .search-overlay {
    padding: calc(var(--header-height) + 18px) 14px calc(24px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
  }

  .search-shell h2 {
    margin: 28px 0 18px;
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .search-results {
    max-height: none;
  }

  .btn {
    max-width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --container: calc(100% - 20px);
  }

  .brand {
    width: min(142px, 45vw);
  }

  .hero {
    min-height: max(900px, 100svh);
  }

  .hero-content {
    min-height: max(900px, 100svh);
    padding-top: calc(var(--header-height) + 24px);
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(2.05rem, 10.7vw, 3rem);
  }

  .hero-product-stage {
    min-height: 194px;
    padding: 20px 16px;
  }

  .hero-product-stage img,
  .hero-pallet-3d {
    height: 142px;
  }

  .hero-product--3d .hero-product-stage--3d {
    min-height: 238px;
    padding: 14px 0 8px;
  }

  .hero-product--static .hero-product-stage--static {
    min-height: 238px;
    padding: 0;
  }

  .hero-product--static .hero-product-number {
    top: 4%;
    right: 0;
  }

  .hero-static-product {
    width: 108%;
    height: 188px;
  }

  .hero-product--3d .hero-pallet-3d {
    width: 110%;
    height: 158px;
  }

  .hero-product--3d .hero-product-number {
    top: 4%;
    right: 0;
  }

  .hero-pallet-field {
    inset: 4% -4%;
  }

  .hero-pallet-orbit--outer {
    width: 98%;
  }

  .hero-pallet-beacon,
  .hero-pallet-dimension {
    display: none;
  }

  .hero-status > span:last-child {
    display: none;
  }

  .hero-status {
    gap: 8px;
  }

  .hero-dot {
    width: 16px;
  }

  .hero-dot.is-active {
    width: 28px;
  }

  .about-media {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-media-main,
  .about-media-small {
    min-height: 240px;
  }

  .product-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
  }

  .product-card-media {
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .product-card-content {
    min-height: 0;
    padding: 19px;
  }

  .product-card h2,
  .product-card h3 {
    overflow-wrap: anywhere;
  }

  .blog-card-media,
  .blog-grid-home .blog-card-media {
    min-height: 180px;
    padding: 22px;
  }

  .blog-card-media img,
  .blog-grid-home .blog-card-media img {
    height: 135px;
  }

  .blog-card-body,
  .blog-grid-home .blog-card-body {
    padding: 20px;
  }

  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table tr {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .spec-table th,
  .spec-table td {
    padding: 5px 13px;
    border: 0;
    overflow-wrap: anywhere;
  }

  .quote-points li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
  }

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

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

  .search-result {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
  }

  .search-result img {
    width: 58px;
    height: 50px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .product-card:hover,
  .blog-card:hover,
  .service-card:hover,
  .category-card:hover,
  .application-card:hover img,
  .floating-action:hover {
    transform: none;
  }
}

@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;
  }
  .preloader { display: none; }
  .reveal,
  .hero-copy > * { opacity: 1; transform: none; }
  .hero-product,
  .hero-product-stage img { opacity: 1; transform: none !important; }
  .hero-pallet-3d,
  .hero-pallet-3d-rotor,
  .hero-pallet-shadow { animation: none !important; transform: none !important; }
  .hero-grid,
  .hero-product-stage::after,
  .hero-atmosphere::before,
  .hero-atmosphere-ring,
  .hero-atmosphere-line::after,
  .hero-atmosphere-dots i { animation: none !important; }
}

/* Stacked about-media responsive tuning (placed last to win over legacy .about-media rules) */
@media (max-width: 800px) {
  .about-media.about-media--stack .product-art {
    padding: clamp(12px, 2.4vw, 18px) clamp(18px, 4vw, 30px);
  }
  .about-media.about-media--stack .product-art img,
  .about-media.about-media--stack .product-art:nth-child(2) img {
    height: 100%;
    max-height: none;
  }
}
@media (max-width: 540px) {
  .about-media.about-media--stack { gap: 12px; }
  .about-media.about-media--stack .about-media-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .about-media.about-media--stack .about-media-main { aspect-ratio: 21 / 9; }
  .about-media.about-media--stack .about-media-row .about-media-small { aspect-ratio: 3 / 2; }
  .about-badge.about-badge--inline { padding: 20px 22px; }
}

@media print {
  .site-header,
  .floating-actions,
  .preloader,
  .search-overlay,
  .cta-band { display: none !important; }
  body { padding: 0; color: #000; background: #fff; }
  .page-hero { min-height: auto; padding: 30px 0; color: #000; background: #fff; }
  .page-hero-layout { grid-template-columns: 1fr; }
  .page-hero-signature,
  .page-hero-grid { display: none; }
}
