:root {
  --ink: #15201c;
  --ink-soft: #44514b;
  --forest: #16372e;
  --forest-deep: #0d2921;
  --forest-light: #315a4c;
  --copper: #c98b57;
  --copper-light: #e9c9a9;
  --paper: #f3f0e8;
  --paper-deep: #e8e3d8;
  --white: #fffef9;
  --line: rgba(21, 32, 28, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 14px;
  --shadow-soft: 0 22px 70px rgba(31, 43, 38, 0.12);
  --shadow-card: 0 16px 40px rgba(24, 37, 31, 0.1);
  --shell: min(1440px, calc(100vw - 72px));
}

/* Product archive preview */
.collection-preview {
  padding-top: clamp(82px, 9vw, 150px);
  padding-bottom: clamp(82px, 9vw, 150px);
  background: #f4f0e7;
}

.collection-preview-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  margin-bottom: 55px;
}

.collection-preview-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.055em;
}

.collection-preview-heading h2 em { color: #a9683c; font-weight: 400; }
.collection-preview-heading > div:last-child > p { margin: 0 0 25px; color: #5f6b64; font-size: 15px; line-height: 1.75; }

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

.collection-preview-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 1.05;
  overflow: hidden;
  border: 1px solid rgba(13, 39, 32, .13);
  border-radius: 25px;
  background: #fff;
  transition: transform .28s ease, box-shadow .28s ease;
}

.collection-preview-card:hover { transform: translateY(-5px); box-shadow: 0 25px 60px rgba(13,39,32,.12); }
.collection-preview-card img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.collection-preview-card:hover img { transform: scale(1.035); }
.collection-preview-card > span { position: absolute; left: 16px; right: 16px; bottom: 16px; padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; border-radius: 15px; background: rgba(12, 34, 28, .93); color: #fff; backdrop-filter: blur(10px); }
.collection-preview-card small { font-size: 9px; font-weight: 800; letter-spacing: .1em; color: #9fddc1; }
.collection-preview-card strong { font-family: var(--display); font-size: 20px; font-weight: 400; text-align: right; }

.collection-preview-categories {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(13,39,32,.16);
  border-radius: 22px;
  overflow: hidden;
}

.collection-preview-categories a { min-height: 90px; padding: 21px; display: flex; align-items: flex-end; justify-content: space-between; border-right: 1px solid rgba(13,39,32,.16); font-family: var(--display); font-size: 21px; transition: background .2s ease, color .2s ease; }
.collection-preview-categories a:last-child { border-right: 0; }
.collection-preview-categories span { align-self: flex-start; font-family: var(--sans); font-size: 9px; font-weight: 800; letter-spacing: .08em; opacity: .55; }
.collection-preview-categories a:hover, .collection-preview-categories a:focus-visible { background: #123a30; color: #fff; }

@media (max-width: 900px) {
  .collection-preview-heading { grid-template-columns: 1fr; gap: 28px; }
  .collection-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collection-preview-categories { grid-template-columns: repeat(2, 1fr); }
  .collection-preview-categories a:nth-child(2) { border-right: 0; }
  .collection-preview-categories a:nth-child(-n+2) { border-bottom: 1px solid rgba(13,39,32,.16); }
}

@media (max-width: 580px) {
  .collection-preview-heading h2 { font-size: clamp(46px, 14vw, 66px); }
  .collection-preview-grid { grid-template-columns: 1fr; }
  .collection-preview-card { aspect-ratio: 1.08; }
  .collection-preview-card > span { padding: 13px 15px; }
  .collection-preview-card strong { font-size: 18px; }
  .collection-preview-categories a { min-height: 78px; padding: 16px; font-size: 17px; }
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 4%, rgba(201, 139, 87, 0.08), transparent 28rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  border: 0;
}

.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: 14px;
  left: 14px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-progress {
  position: fixed;
  z-index: 130;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  width: var(--shell);
  min-height: 72px;
  padding: 10px 12px 10px 18px;
  background: rgba(255, 254, 249, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 22px;
  box-shadow: 0 14px 50px rgba(30, 42, 36, 0.08);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: background 300ms ease, box-shadow 300ms ease, top 300ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(255, 254, 249, 0.92);
  box-shadow: 0 12px 36px rgba(30, 42, 36, 0.12);
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  width: fit-content;
}

.brand-mark {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(15, 34, 27, 0.2);
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(15, 34, 27, 0.14);
}

.brand-mark img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 116%;
  height: 116%;
  max-width: none;
  object-fit: cover;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
}

.brand-name small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 38px);
  align-items: center;
  justify-content: center;
}

.main-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

.language-switcher {
  position: relative;
  margin-right: 8px;
}

.language-toggle {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink-soft);
  background: rgba(232, 227, 216, 0.72);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.language-toggle svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.language-switcher.is-open .language-toggle svg {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  z-index: 10;
  top: calc(100% + 10px);
  right: 0;
  overflow: hidden;
  width: 178px;
  padding: 7px;
  background: rgba(255, 254, 249, 0.98);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 18px 45px rgba(21, 32, 28, 0.16);
  backdrop-filter: blur(18px);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  width: 100%;
  padding: 9px 11px;
  background: transparent;
  border-radius: 9px;
  cursor: pointer;
  font-size: 11px;
  text-align: left;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.is-active {
  color: var(--white);
  background: var(--forest);
}

.header-cta,
.button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.header-cta {
  min-height: 48px;
  color: var(--white);
  background: var(--forest);
}

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

.header-cta svg,
.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.header-cta:hover {
  background: var(--forest-deep);
  box-shadow: 0 10px 24px rgba(13, 41, 33, 0.2);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(30px, 6vw, 100px);
  align-items: center;
  min-height: 100svh;
  width: var(--shell);
  margin: 0 auto;
  padding: 136px 0 76px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 18%;
  left: -12%;
  width: 32vw;
  height: 32vw;
  background: radial-gradient(circle, rgba(201, 139, 87, 0.08), transparent 68%);
  content: "";
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 1px;
  background: var(--copper);
}

.hero h1,
.section-intro h2,
.market-copy h3,
.mould-heading h2,
.capability-sticky h2,
.workshop-copy h2,
.quality-copy h2,
.process-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(62px, 7vw, 116px);
}

h1 em,
h2 em,
h3 em {
  color: var(--forest-light);
  font-weight: 400;
}

.hero-lead {
  max-width: 610px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 38px;
}

.button-primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 15px 32px rgba(22, 55, 46, 0.16);
}

.button-primary:hover {
  background: var(--forest-deep);
  box-shadow: 0 18px 38px rgba(22, 55, 46, 0.22);
}

.text-link {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  color: var(--copper);
  transition: transform 220ms ease;
}

.text-link:hover span {
  transform: translate(3px, 2px);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 660px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-meta div {
  display: flex;
  flex-direction: column;
}

.hero-meta strong {
  color: var(--forest);
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.hero-meta span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  min-height: min(720px, 72vh);
  isolation: isolate;
}

.hero-stage::before {
  position: absolute;
  z-index: -3;
  top: 3%;
  right: 2%;
  bottom: 4%;
  left: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(232, 227, 216, 0.52)),
    var(--paper-deep);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 44% 44% 30% 30% / 26% 25% 38% 38%;
  box-shadow: inset 0 0 0 1px rgba(21, 32, 28, 0.03), var(--shadow-soft);
  content: "";
  transform: rotate(-1.6deg);
}

.stage-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(22, 55, 46, 0.12);
  border-radius: 50%;
}

.orbit-one {
  top: 17%;
  left: 13%;
  width: 67%;
  aspect-ratio: 1;
  transform: rotate(17deg);
}

.orbit-two {
  right: 6%;
  bottom: 14%;
  width: 46%;
  aspect-ratio: 1;
}

.floating-product {
  --float-x: 0px;
  --float-y: 0px;
  --product-rotation: 0deg;
  position: absolute;
  overflow: hidden;
  background: rgba(255, 254, 249, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: 0 20px 52px rgba(25, 39, 33, 0.16);
  transform: translate3d(var(--float-x), var(--float-y), 0) rotate(var(--product-rotation));
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.floating-product:hover {
  z-index: 6;
  box-shadow: 0 26px 70px rgba(25, 39, 33, 0.22);
}

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

.floating-product small {
  position: absolute;
  right: 12px;
  bottom: 11px;
  left: 12px;
  overflow: hidden;
  padding: 8px 10px;
  color: var(--ink);
  background: rgba(255, 254, 249, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 9px;
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-chip {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-a {
  top: 6%;
  left: 4%;
  width: 43%;
  aspect-ratio: 1.2;
  --product-rotation: -5deg;
}

.product-b {
  top: 11%;
  right: 4%;
  width: 42%;
  aspect-ratio: 1.08;
  --product-rotation: 4deg;
}

.product-c {
  right: 7%;
  bottom: 9%;
  width: 48%;
  aspect-ratio: 1.25;
  --product-rotation: -3deg;
}

.product-d {
  bottom: 6%;
  left: 4%;
  width: 41%;
  aspect-ratio: 1.04;
  --product-rotation: 5deg;
}

.stage-caption {
  position: absolute;
  z-index: 7;
  top: 45%;
  left: 37%;
  display: flex;
  flex-direction: column;
  padding: 14px 17px;
  color: var(--white);
  background: rgba(13, 41, 33, 0.93);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(13, 41, 33, 0.24);
  transform: rotate(-2deg);
}

.stage-caption span {
  color: var(--copper-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-caption strong {
  margin-top: 4px;
  font-size: 11px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;
  width: 56px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.hero-scroll i::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--copper);
  content: "";
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(220%); }
}

.category-rail {
  overflow: hidden;
  padding: 18px 0;
  color: var(--white);
  background: var(--forest);
}

.rail-track {
  display: flex;
  width: max-content;
  gap: 28px;
  align-items: center;
  animation: marquee 35s linear infinite;
}

.rail-track span {
  font-family: var(--display);
  font-size: 18px;
  white-space: nowrap;
}

.rail-track i {
  width: 5px;
  height: 5px;
  background: var(--copper);
  border-radius: 50%;
}

@keyframes marquee {
  to { transform: translateX(-48%); }
}

.section-shell {
  width: var(--shell);
  margin-right: auto;
  margin-left: auto;
}

.section-intro {
  padding-top: clamp(64px, 6vw, 92px);
}

.section-index {
  margin-bottom: clamp(40px, 5vw, 74px);
  padding-bottom: 16px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.55fr);
  gap: 8vw;
  align-items: end;
}

.section-intro h2,
.mould-heading h2,
.capability-sticky h2,
.workshop-copy h2,
.quality-copy h2,
.process-heading h2,
.contact-copy h2 {
  font-size: clamp(52px, 6vw, 94px);
}

.intro-grid > p,
.mould-heading > div > p,
.capability-sticky > p,
.workshop-copy > p,
.quality-copy > p,
.process-heading > p,
.contact-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.market-panels {
  display: grid;
  gap: 34px;
  padding-top: 48px;
  padding-bottom: 44px;
}

.market-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  overflow: hidden;
  min-height: 650px;
  padding: clamp(38px, 5vw, 76px);
  border-radius: var(--radius-lg);
}

.market-west {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 30%, rgba(201, 139, 87, 0.18), transparent 28rem),
    var(--forest-deep);
}

.market-middle-east {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.52), transparent 30rem),
    #d9b98f;
}

.market-copy {
  position: relative;
  z-index: 3;
  align-self: center;
}

.market-number {
  position: absolute;
  top: -100px;
  left: -12px;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: 190px;
  line-height: 1;
}

.market-middle-east .market-number {
  color: rgba(21, 32, 28, 0.07);
}

.market-west .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.market-copy h3 {
  font-size: clamp(44px, 4vw, 68px);
}

.market-west h3 em {
  color: var(--copper-light);
}

.market-copy > p:not(.eyebrow) {
  max-width: 460px;
  margin: 28px 0 0;
  color: inherit;
  opacity: 0.72;
  font-size: 15px;
  line-height: 1.75;
}

.market-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.market-copy li {
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.62;
  text-transform: uppercase;
}

.market-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 40px;
  padding: 0 0 8px;
  color: inherit;
  background: transparent;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.market-link span {
  color: var(--copper);
  transition: transform 220ms ease;
}

.market-middle-east .market-link span {
  color: var(--forest);
}

.market-link:hover span {
  transform: translate(4px, 3px);
}

.market-images {
  position: relative;
  min-height: 520px;
}

.market-images figure {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  box-shadow: 0 20px 54px rgba(8, 24, 18, 0.2);
}

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

.market-image-large {
  top: 0;
  right: 0;
  width: 72%;
  height: 72%;
  transform: rotate(3deg);
}

.market-image-small {
  bottom: 0;
  left: 3%;
  width: 51%;
  height: 47%;
  transform: rotate(-5deg);
}

.market-middle-east .market-image-large {
  transform: rotate(-3deg);
}

.market-middle-east .market-image-small {
  transform: rotate(4deg);
}

.immersive-product {
  position: relative;
  overflow: hidden;
  padding: 0 clamp(16px, 2.7vw, 52px) 44px;
  background: var(--paper);
}

.immersive-stage {
  --rx: -5deg;
  --ry: 10deg;
  --mx: 50%;
  --my: 34%;
  --shift-x: 0px;
  --shift-y: 0px;
  --particle-x: 0px;
  --particle-y: 0px;
  --depth-x: 0px;
  --shadow-drop-x: 0px;
  --shadow-counter-x: 0px;
  --tz: 125px;
  --scene-scale: 1.035;
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(620px, 74vh, 820px);
  overflow: hidden;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.98), rgba(255, 250, 230, 0.82) 20rem, transparent 34rem),
    radial-gradient(circle at 50% 68%, rgba(204, 143, 45, 0.31), transparent 33rem),
    linear-gradient(145deg, #f6ecd2 0%, #d8b56f 48%, #15382c 100%);
  border: 1px solid rgba(88, 58, 17, 0.16);
  border-radius: var(--radius-lg);
  perspective: 1800px;
  perspective-origin: var(--mx) var(--my);
  isolation: isolate;
  outline: none;
}

.immersive-stage:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(18, 61, 47, 0.72);
}

.immersive-motion-control {
  position: absolute;
  z-index: 12;
  top: 18px;
  right: 18px;
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 13px;
  color: rgba(236, 246, 255, 0.9);
  background: rgba(4, 19, 31, 0.62);
  border: 1px solid rgba(154, 202, 255, 0.27);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, opacity 400ms ease, transform 180ms ease;
}

.immersive-motion-control[hidden] {
  display: none !important;
}

.immersive-motion-control.needs-permission {
  display: inline-flex;
  cursor: pointer;
}

.immersive-motion-control.is-active {
  display: inline-flex;
  color: #dfffea;
  border-color: rgba(114, 236, 164, 0.42);
  background: rgba(7, 47, 36, 0.68);
  pointer-events: none;
}

.immersive-motion-control.is-active.is-settled {
  opacity: 0.54;
}

.immersive-motion-control:active {
  transform: scale(0.97);
}

.motion-sensor-icon {
  position: relative;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.9;
}

.motion-sensor-icon::before,
.motion-sensor-icon::after {
  position: absolute;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  content: "";
}

.motion-sensor-icon::before {
  top: -2px;
}

.motion-sensor-icon::after {
  right: -2px;
}

.motion-sensor-icon i {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 13px currentColor;
}

.immersive-stage.is-gyro-active .immersive-object {
  transition-duration: 70ms;
}

.immersive-stage.is-gyro-active .immersive-particles,
.immersive-stage.is-gyro-active .immersive-shadow {
  transition-duration: 90ms;
}

.immersive-stage::before {
  position: absolute;
  z-index: 8;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 24%, transparent 72%, rgba(64, 144, 255, 0.08)),
    radial-gradient(ellipse at center, transparent 44%, rgba(0, 0, 0, 0.46) 100%);
  content: "";
  pointer-events: none;
}

.immersive-frame {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(152, 196, 255, 0.16);
  border-radius: 34px;
  transform-style: preserve-3d;
  pointer-events: none;
}

.frame-back {
  inset: 9%;
  box-shadow: inset 0 0 90px rgba(49, 120, 215, 0.08);
  transform: translateZ(-150px);
}

.frame-front {
  z-index: 7;
  inset: 20px;
  border-color: rgba(199, 150, 93, 0.34);
  box-shadow: inset 0 0 0 1px rgba(126, 183, 255, 0.08), 0 0 38px rgba(34, 111, 201, 0.08);
  transform: translateZ(180px);
}

.immersive-grid {
  position: absolute;
  inset: 45% -12% -25%;
  background:
    linear-gradient(rgba(95, 160, 218, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 160, 218, 0.11) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 82%);
  transform: rotateX(68deg) translateZ(-130px) scale(1.15);
  transform-origin: top;
}

.immersive-particles {
  position: absolute;
  z-index: 1;
  inset: 8%;
  background:
    radial-gradient(circle at 12% 32%, rgba(190, 222, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 81% 18%, rgba(190, 222, 255, 0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 66%, rgba(203, 158, 96, 0.75) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 75%, rgba(190, 222, 255, 0.55) 0 1px, transparent 2px);
  background-size: 260px 210px, 310px 250px, 280px 230px, 340px 270px;
  filter: drop-shadow(0 0 6px rgba(99, 169, 255, 0.7));
  opacity: 0.56;
  transform: translate3d(var(--particle-x), var(--particle-y), -90px);
  transition: transform 180ms ease-out;
}

.immersive-beam {
  position: absolute;
  z-index: 1;
  top: -32%;
  left: calc(var(--mx) - 9%);
  width: 18%;
  height: 135%;
  background: linear-gradient(to bottom, rgba(130, 189, 255, 0.16), transparent 76%);
  filter: blur(12px);
  opacity: 0.65;
  transform: rotate(8deg) translateZ(-110px);
  transform-origin: top;
  pointer-events: none;
}

.immersive-halo {
  position: absolute;
  border: 1px solid rgba(128, 181, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(38, 113, 205, 0.14);
}

.halo-one {
  width: min(72vw, 900px);
  aspect-ratio: 1;
}

.halo-two {
  width: min(52vw, 650px);
  aspect-ratio: 1;
  border-color: rgba(199, 150, 93, 0.23);
}

.immersive-object {
  position: relative;
  z-index: 3;
  width: min(68vw, 760px);
  padding: 0;
  background: transparent;
  border: 0;
  cursor: grab;
  transform: translate3d(var(--shift-x), var(--shift-y), var(--tz)) rotateX(var(--rx)) rotateY(var(--ry)) scale(var(--scene-scale));
  transform-style: preserve-3d;
  transition: transform 120ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.immersive-object:active {
  cursor: grabbing;
}

.immersive-object img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.immersive-main-product {
  filter:
    drop-shadow(var(--shadow-drop-x) 48px 34px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 20px rgba(70, 140, 238, 0.18))
    saturate(1.13) contrast(1.04);
  transform: translateZ(120px);
}

.immersive-depth-copy {
  position: absolute !important;
  z-index: 0 !important;
  inset: 0;
  opacity: 0.22;
  filter: blur(18px) saturate(1.3) brightness(1.18);
  transform: translate3d(var(--depth-x), 16px, -85px) scale(0.94);
}

.immersive-shadow {
  position: absolute;
  z-index: 0;
  right: 12%;
  bottom: 5%;
  left: 12%;
  height: 16%;
  background: rgba(0, 0, 0, 0.68);
  border-radius: 50%;
  filter: blur(34px);
  transform: translate3d(var(--shadow-counter-x), 10px, -100px) rotateX(75deg) scaleX(1.08);
  transition: transform 130ms ease-out;
}

.immersive-glare {
  position: absolute;
  z-index: 4;
  inset: 7% 8% 18%;
  background:
    linear-gradient(112deg, transparent 22%, rgba(255, 255, 255, 0.16) 42%, transparent 57%),
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.31), transparent 19%);
  mix-blend-mode: screen;
  border-radius: 35%;
  transform: translateZ(148px);
  pointer-events: none;
}

.immersive-product-meta {
  position: absolute;
  z-index: 10;
  top: clamp(24px, 4vw, 52px);
  left: clamp(24px, 4vw, 58px);
  display: grid;
  max-width: min(34vw, 360px);
  gap: 8px;
  color: #123429;
  pointer-events: none;
}

.immersive-product-meta span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.immersive-product-meta strong {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 46px);
  font-weight: 400;
  line-height: 0.98;
}

.immersive-image-stack {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: radial-gradient(circle at 50% 38%, #f5e6bd 0%, #dec28c 54%, #b88d4f 100%);
  border: 1px solid rgba(103, 70, 19, 0.16);
  border-radius: 34px;
  box-shadow: 0 36px 90px rgba(44, 28, 6, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  transform: translateZ(110px);
}

.immersive-image-stack::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 26%, rgba(255, 255, 255, 0.44) 45%, transparent 61%);
  mix-blend-mode: screen;
  opacity: 0.46;
  content: "";
  pointer-events: none;
  transform: translateX(calc((var(--mx) - 50%) * 0.32));
}

.immersive-object .immersive-product-view,
.immersive-object .immersive-product-open {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(1.06) contrast(1.025);
  opacity: 0;
  transform: translate3d(5%, 0, 0) scale(0.93) rotateY(-7deg);
  transition: opacity 420ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 420ms ease;
}

.immersive-object .immersive-product-view.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.07) rotateY(0deg);
}

.immersive-object .immersive-product-open {
  transform: translate3d(-2%, 5%, 0) scale(0.82) rotateX(-8deg);
}

.immersive-stage.is-open .immersive-product-view.is-active {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(3%, 9%, 0) scale(0.84) rotateX(12deg);
}

.immersive-stage.is-open .immersive-product-open {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.07) rotateX(0deg);
}

.immersive-open-cue {
  position: absolute;
  z-index: 8;
  right: 5%;
  bottom: 4%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: #f9f4e8;
  background: rgba(16, 52, 41, 0.91);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(11, 31, 24, 0.2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateZ(148px);
}

.immersive-open-cue i {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.immersive-open-cue i::before,
.immersive-open-cue i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.immersive-open-cue i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 220ms ease;
}

.immersive-stage.is-open .immersive-open-cue i::after {
  opacity: 0;
}

.immersive-view-controls {
  position: absolute;
  z-index: 11;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(24px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #123429;
}

.immersive-view-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: inherit;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 52, 41, 0.18);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.immersive-view-controls button:hover {
  color: #fff;
  background: #123429;
  transform: translateY(-2px);
}

.immersive-view-controls span {
  min-width: 48px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
}

.immersive-instruction {
  position: absolute;
  z-index: 10;
  bottom: clamp(30px, 4.5vw, 54px);
  left: clamp(24px, 4vw, 58px);
  margin: 0;
  color: rgba(18, 52, 41, 0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mould-section {
  padding: clamp(110px, 12vw, 180px) 0;
  color: var(--white);
  background: #101b17;
}

.mould-section .section-index {
  color: rgba(255, 255, 255, 0.46);
  border-color: rgba(255, 255, 255, 0.14);
}

.mould-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
}

.mould-heading h2 em {
  color: var(--copper-light);
}

.mould-heading > div > p {
  max-width: 670px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.56);
}

.mould-count {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 8px;
}

.mould-count strong {
  color: var(--copper-light);
  font-family: var(--display);
  font-size: 80px;
  font-weight: 400;
  line-height: 0.8;
}

.mould-count span {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mould-count span b,
.mould-count span i {
  font: inherit;
}

.filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 66px 0 30px;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  color: #f6f4ee;
  background: #101318;
  border: 1px solid rgba(176, 155, 235, 0.2);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
  animation: cardIn 500ms cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  border-color: rgba(171, 225, 197, 0.46);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.4;
  padding: clamp(18px, 2vw, 30px);
  background: #fbfbfa;
}

.product-image::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(21, 32, 28, 0.04));
  content: "";
  pointer-events: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.045);
}

.product-info {
  padding: 25px 27px 26px;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-status {
  color: #7fdca9;
}

.product-size {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--sans);
  font-size: clamp(28px, 2.4vw, 40px);
  font-variant-numeric: tabular-nums;
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1;
}

.product-meta {
  display: flex;
  gap: 7px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.45;
}

.product-meta i {
  color: rgba(255, 255, 255, 0.25);
  font-style: normal;
}

.product-enquire {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 18px 27px;
  color: #d9ccff;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.product-enquire b {
  color: #d9ccff;
  font-size: 16px;
  font-weight: 500;
  transition: transform 220ms ease;
}

.product-enquire:hover b {
  transform: translate(3px, 3px);
}

.load-more-wrap {
  display: grid;
  place-items: center;
  margin-top: 42px;
}

.load-more-button {
  display: flex;
  gap: 30px;
  align-items: center;
  min-width: min(100%, 340px);
  justify-content: space-between;
  padding: 17px 20px 17px 24px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.load-more-button:hover {
  background: #fff;
  transform: translateY(-2px);
}

.load-more-button small {
  color: var(--forest);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.load-complete {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalogue-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
}

.catalogue-note > div {
  display: flex;
  flex-direction: column;
}

.catalogue-note > div span {
  color: var(--copper-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalogue-note > div strong {
  margin-top: 4px;
  font-size: 13px;
}

.button-dark {
  color: var(--ink);
  background: var(--paper);
}

.capabilities {
  padding-top: clamp(110px, 13vw, 190px);
  padding-bottom: clamp(110px, 13vw, 190px);
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
}

.capability-sticky {
  position: sticky;
  top: 130px;
}

.capability-sticky > p {
  max-width: 490px;
  margin-top: 30px;
}

.capability-sticky .text-link {
  margin-top: 34px;
}

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

.capability-list li {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  padding: 34px 0 38px;
  border-top: 1px solid var(--line);
}

.capability-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.cap-number {
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.capability-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.capability-list p {
  max-width: 570px;
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.tag-list span {
  padding: 5px 8px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cap-icon {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--forest);
  background: var(--paper-deep);
  border-radius: 14px;
  place-items: center;
  font-family: var(--display);
  font-size: 24px;
}

.workshop {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 760px;
  color: var(--white);
  background: var(--forest);
}

.workshop-image {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

.workshop-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(22, 55, 46, 0.28));
  content: "";
}

.workshop-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stamp {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: 32px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: rgba(13, 41, 33, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(18px);
}

.image-stamp span {
  color: var(--copper-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-stamp strong {
  margin-top: 6px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
}

.workshop-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 110px);
}

.workshop-copy .eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.workshop-copy h2 em {
  color: var(--copper-light);
}

.workshop-copy > p {
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.62);
}

.workshop-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.workshop-stats div {
  display: flex;
  flex-direction: column;
}

.workshop-stats strong {
  color: var(--copper-light);
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.workshop-stats span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quality {
  padding-top: clamp(110px, 13vw, 190px);
  padding-bottom: clamp(110px, 13vw, 190px);
}

.quality-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.quality-copy > p {
  max-width: 610px;
  margin-top: 32px;
}

.quality-copy .button {
  margin-top: 36px;
}

.document-stack {
  position: relative;
  min-height: 620px;
}

.document-stack::before {
  position: absolute;
  inset: 6% 9% 4% 9%;
  background: #d8d1c4;
  border-radius: 46% 46% 20px 20px;
  content: "";
  transform: rotate(-2deg);
}

.document-card {
  position: absolute;
  overflow: hidden;
  width: 67%;
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(21, 32, 28, 0.09);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(32, 44, 38, 0.18);
  cursor: pointer;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease, opacity 300ms ease;
}

.document-card img {
  width: 100%;
  height: auto;
  background: #fff;
  object-fit: contain;
  object-position: center;
}

.document-card figcaption {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px 17px;
  border-top: 1px solid var(--line);
}

.document-card figcaption span {
  color: var(--copper);
  font-size: 9px;
  font-weight: 800;
}

.document-card figcaption strong {
  font-size: 10px;
  letter-spacing: 0.04em;
}

.document-one {
  z-index: 2;
  top: 3%;
  left: 0;
  transform: rotate(-6deg);
}

.document-two {
  z-index: 1;
  right: 0;
  bottom: 5%;
  transform: rotate(7deg);
}

.document-stack.is-left-front .document-one {
  z-index: 4;
  transform: translate(-2%, -2%) rotate(-3deg) scale(1.035);
  box-shadow: 0 34px 78px rgba(18, 37, 29, 0.28);
}

.document-stack.is-left-front .document-two {
  z-index: 1;
  transform: translate(3%, 2%) rotate(9deg) scale(0.96);
  opacity: 0.72;
}

.document-stack.is-right-front .document-one {
  z-index: 1;
  transform: translate(-3%, 2%) rotate(-8deg) scale(0.96);
  opacity: 0.72;
}

.document-stack.is-right-front .document-two {
  z-index: 4;
  transform: translate(2%, -2%) rotate(3deg) scale(1.035);
  box-shadow: 0 34px 78px rgba(18, 37, 29, 0.28);
}

html[dir="rtl"] body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

html[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
}

html[dir="rtl"] .language-menu button,
html[dir="rtl"] .enquiry-form,
html[dir="rtl"] .product-info {
  text-align: right;
}

.process {
  padding-bottom: clamp(110px, 13vw, 190px);
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.4fr);
  gap: 8vw;
  align-items: end;
}

.process-heading > p {
  padding-bottom: 6px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 80px 0 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  padding-right: 30px;
}

.process-steps > li > span {
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.step-line {
  position: relative;
  height: 1px;
  margin: 22px 0 30px;
  background: var(--line);
}

.step-line i {
  position: absolute;
  top: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--forest);
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--forest);
}

.process-steps h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.process-steps p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.contact-section {
  padding: clamp(86px, 9vw, 140px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 18%, rgba(201, 139, 87, 0.15), transparent 34rem),
    var(--forest-deep);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
  width: var(--shell);
  margin: 0 auto;
}

.contact-copy {
  position: sticky;
  top: 128px;
}

.contact-copy .eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.contact-copy h2 em {
  color: var(--copper-light);
}

.contact-copy > p {
  max-width: 580px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.62);
}

.direct-contact {
  display: grid;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.direct-contact div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.direct-contact .contact-person-start {
  margin-top: 12px;
  padding-top: 25px;
  border-top: 1px solid rgba(233, 201, 169, 0.38);
}

.direct-contact span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.direct-contact strong,
.direct-contact a {
  font-size: 12px;
  font-weight: 700;
}

.direct-contact a:hover {
  color: var(--copper-light);
}

.enquiry-form {
  position: relative;
  padding: clamp(28px, 4vw, 52px);
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.enquiry-form label {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.enquiry-form label > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.enquiry-form label b {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  font-size: 13px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.enquiry-form input,
.enquiry-form select {
  height: 52px;
}

.enquiry-form textarea {
  min-height: 112px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  background: var(--white);
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(22, 55, 46, 0.09);
}

.enquiry-form label small {
  display: none;
  margin-top: 6px;
  color: #9e3f34;
  font-size: 10px;
}

.enquiry-form label.has-error small {
  display: block;
}

.enquiry-form label.has-error input,
.enquiry-form label.has-error select {
  border-color: #9e3f34;
}

.button-submit {
  width: 100%;
  margin-top: 6px;
  color: var(--white);
  background: var(--forest);
}

.button-submit:hover {
  background: var(--forest-deep);
}

.form-note {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 9px;
  text-align: center;
}

.form-success {
  position: absolute;
  z-index: 4;
  inset: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(243, 240, 232, 0.97);
  border: 1px solid var(--line);
  border-radius: 28px;
  text-align: center;
  backdrop-filter: blur(18px);
}

.form-success[hidden] {
  display: none;
}

.form-success > span {
  color: var(--copper);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-success > strong {
  max-width: 420px;
  margin-top: 12px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}

.form-success > div {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.form-success a {
  padding: 12px 16px;
  color: var(--white);
  background: var(--forest);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
}

.form-success a:last-child {
  color: var(--ink);
  background: var(--paper-deep);
}

.site-footer {
  padding: 58px max(36px, calc((100vw - 1440px) / 2));
  color: var(--white);
  background: #081b15;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand .brand-mark {
  background: #050505;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.footer-brand .brand-name small {
  color: rgba(255, 255, 255, 0.45);
}

.footer-top > p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  text-align: center;
}

.back-to-top {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-legal {
  display: inline-flex;
  gap: 14px;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 4px;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--white);
  text-decoration-color: var(--copper-light);
}

.legal-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
}

.legal-nav {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255, 254, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.legal-nav > a:last-child {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.legal-shell {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto;
  padding: 88px 0 110px;
}

.legal-shell .eyebrow {
  margin-bottom: 28px;
}

.legal-shell h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 8vw, 92px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.legal-updated {
  margin: 24px 0 56px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content {
  display: grid;
  gap: 34px;
}

.legal-content section {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-content a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.back-to-top span {
  color: var(--copper-light);
  font-size: 15px;
}

.footer-bottom {
  margin-top: 45px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.34);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

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

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

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 44px, 1120px);
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(60px, 6.6vw, 82px);
  }

  .hero-stage {
    min-height: 610px;
  }

  .market-panel {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
  }

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

  .immersive-stage {
    min-height: 620px;
  }

  .contact-shell {
    gap: 60px;
  }
}

@media (max-width: 920px) {
  :root {
    --shell: calc(100vw - 32px);
    --radius-lg: 28px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
    min-height: 64px;
  }

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

  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .site-header .language-switcher {
    grid-column: 3;
    grid-row: 1;
    margin-right: 6px;
  }

  .site-header .menu-toggle {
    grid-column: 4;
    grid-row: 1;
  }

  .menu-toggle {
    position: relative;
    z-index: 4;
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    background: var(--paper-deep);
    border-radius: 12px;
    cursor: pointer;
    place-content: center;
  }

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

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

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

  .main-nav {
    position: fixed;
    z-index: 3;
    inset: -11px -1px auto -1px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
    padding: 100px 24px 28px;
    background: rgba(255, 254, 249, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-120%);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 24px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
    padding-top: 134px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero h1 {
    font-size: clamp(58px, 12vw, 88px);
  }

  .hero-stage {
    min-height: 670px;
  }

  .hero-scroll {
    display: none;
  }

  .intro-grid,
  .mould-heading,
  .quality-grid,
  .process-heading {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 30px;
  }

  .intro-grid > p,
  .process-heading > p {
    max-width: 620px;
  }

  .market-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .market-copy {
    max-width: 620px;
  }

  .market-images {
    min-height: 520px;
  }

  .mould-count {
    display: none;
  }

  .capability-layout {
    grid-template-columns: 1fr;
  }

  .capability-sticky,
  .contact-copy {
    position: static;
  }

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

  .workshop-image {
    min-height: 600px;
  }

  .quality-grid {
    gap: 70px;
  }

  .document-stack {
    min-height: 700px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 0;
  }

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

@media (max-width: 640px) {
  .immersive-stage {
    min-height: 430px;
  }

  .immersive-motion-control {
    top: 12px;
    right: 12px;
    min-height: 38px;
    padding: 8px 11px;
    font-size: 9px;
  }

  .immersive-object {
    width: 112vw;
  }

  .immersive-grid {
    background-size: 44px 44px;
  }

  .product-info {
    padding: 22px;
  }

  .product-enquire {
    padding-right: 22px;
    padding-left: 22px;
  }

  :root {
    --shell: calc(100vw - 24px);
    --radius-lg: 24px;
    --radius-md: 18px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    top: 8px;
    width: calc(100vw - 16px);
    padding-left: 12px;
    border-radius: 18px;
  }

  .site-header.is-scrolled {
    top: 5px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .language-toggle {
    min-width: 50px;
    padding: 0 9px;
  }

  .hero {
    gap: 38px;
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .hero .eyebrow {
    max-width: 310px;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 68px);
    line-height: 0.98;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 30px;
  }

  .hero-actions .text-link {
    width: fit-content;
  }

  .hero-meta {
    gap: 14px;
    margin-top: 40px;
  }

  .hero-meta strong {
    font-size: 23px;
  }

  .hero-meta span {
    font-size: 7px;
    line-height: 1.4;
  }

  .hero-stage {
    min-height: 490px;
  }

  .hero-stage::before {
    border-radius: 32px;
  }

  .floating-product {
    border-radius: 16px;
  }

  .floating-product small {
    display: none;
  }

  .product-chip {
    top: 7px;
    left: 7px;
    padding: 5px 6px;
    font-size: 6px;
  }

  .stage-caption {
    top: 44%;
    left: 30%;
    max-width: 170px;
    padding: 10px 12px;
  }

  .stage-caption strong {
    font-size: 9px;
  }

  .rail-track {
    gap: 20px;
  }

  .section-intro {
    padding-top: 68px;
  }

  .section-index {
    margin-bottom: 36px;
  }

  .section-intro h2,
  .mould-heading h2,
  .capability-sticky h2,
  .workshop-copy h2,
  .quality-copy h2,
  .process-heading h2,
  .contact-copy h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .market-panels {
    padding-top: 46px;
    padding-bottom: 30px;
  }

  .market-panel {
    gap: 28px;
    padding: 30px 22px;
  }

  .market-copy h3 {
    font-size: 42px;
  }

  .market-images {
    min-height: 365px;
  }

  .market-image-large {
    width: 82%;
    height: 65%;
  }

  .market-image-small {
    width: 58%;
    height: 45%;
  }

  .mould-section,
  .capabilities,
  .quality {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .filter-row {
    margin-top: 42px;
  }

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

  .product-image {
    aspect-ratio: 1.35;
  }

  .immersive-product {
    padding-right: 16px;
    padding-bottom: 30px;
    padding-left: 16px;
  }

  .immersive-stage {
    min-height: 430px;
  }

  .immersive-object {
    width: min(92vw, 720px);
  }

  .catalogue-note {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
    padding: 22px;
  }

  .catalogue-note .button {
    width: 100%;
  }

  .capability-list li {
    grid-template-columns: 34px 1fr;
  }

  .cap-icon {
    display: none;
  }

  .capability-list h3 {
    font-size: 34px;
  }

  .workshop-image {
    min-height: 430px;
  }

  .workshop-copy {
    padding: 64px 22px 72px;
  }

  .image-stamp {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .document-stack {
    min-height: 470px;
  }

  .document-card {
    width: 86%;
  }

  .document-card figcaption {
    padding: 10px;
  }

  .document-card figcaption strong {
    font-size: 8px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .process-steps li {
    padding-right: 0;
  }

  .contact-section {
    padding: 82px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .enquiry-form {
    padding: 24px 18px;
  }

  .form-success {
    inset: 10px;
  }

  .form-success > strong {
    font-size: 28px;
  }

  .form-success > div {
    flex-direction: column;
    width: 100%;
  }

  .site-footer {
    padding: 46px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }

  .footer-top > p {
    text-align: left;
  }

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

@media (max-width: 640px) {
  .immersive-stage {
    min-height: 560px;
    align-items: center;
    padding-top: 74px;
    padding-bottom: 92px;
  }

  .immersive-product-meta {
    top: 22px;
    right: 78px;
    left: 20px;
    max-width: none;
  }

  .immersive-product-meta span {
    font-size: 8px;
  }

  .immersive-product-meta strong {
    font-size: 25px;
  }

  .immersive-object {
    width: min(88vw, 520px);
  }

  .immersive-image-stack {
    border-radius: 23px;
  }

  .immersive-open-cue {
    right: 50%;
    bottom: 3%;
    padding: 8px 10px;
    font-size: 8px;
    white-space: nowrap;
    transform: translate3d(50%, 0, 148px);
  }

  .immersive-instruction {
    right: 18px;
    bottom: 70px;
    left: 18px;
    font-size: 8px;
    text-align: center;
  }

  .immersive-view-controls {
    right: 50%;
    bottom: 18px;
    transform: translateX(50%);
  }

  .immersive-view-controls button {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .immersive-object .immersive-product-view,
  .immersive-object .immersive-product-open {
    transition-duration: 1ms;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 4px;
    padding-right: 8px;
    padding-left: 10px;
  }

  .site-header .brand {
    grid-column: 1;
    min-width: 0;
  }

  .site-header .language-switcher {
    grid-column: 2;
    margin-right: 2px;
  }

  .site-header .menu-toggle {
    grid-column: 3;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-name small {
    font-size: 6.5px;
    letter-spacing: 0.1em;
  }

  .hero,
  .hero-copy,
  .hero h1,
  .hero-lead,
  .hero-meta {
    min-width: 0;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(42px, 12.4vw, 56px);
    line-height: 1;
    letter-spacing: -0.06em;
    overflow-wrap: break-word;
  }

  .hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .hero-meta div {
    min-width: 0;
  }

  .hero-meta strong {
    font-size: 20px;
    white-space: nowrap;
  }

  .hero-meta span {
    font-size: 6.5px;
    letter-spacing: 0.035em;
    overflow-wrap: anywhere;
  }

  .immersive-object {
    width: min(78vw, 430px);
    max-width: calc(100% - 24px);
  }

  .immersive-image-stack {
    max-width: 100%;
  }

  .legal-nav {
    min-height: 68px;
    padding: 10px 14px;
  }

  .legal-shell {
    width: calc(100% - 28px);
    padding: 60px 0 80px;
  }

  .legal-shell h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .brand-name {
    font-size: 14px;
  }

  .brand-name small {
    max-width: 88px;
    font-size: 6px;
  }

  .language-toggle {
    min-width: 46px;
    padding: 0 7px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 48px);
  }
}

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