:root {
  --ink: #173531;
  --deep: #0d5b51;
  --green: #35796e;
  --mint: #eef8f2;
  --pale-green: #f3faf5;
  --mist-green: #eaf5ee;
  --cream: #fbfbf7;
  --paper: #ffffff;
  --line: #dfeae3;
  --muted: #64756f;
  --gold: #b89555;
  --blue-mist: #eaf3fb;
  --rose-mist: #f8e9ee;
  --lilac-mist: #f1edf8;
  --aqua-mist: #e9f8f5;
  --shadow: 0 18px 54px rgba(23, 53, 49, 0.085);
  --soft-shadow: 0 12px 34px rgba(23, 53, 49, 0.055);
  --hover-shadow: 0 22px 64px rgba(23, 53, 49, 0.105);
  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --font-sans: Montserrat, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --font-display: Montserrat, -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  letter-spacing: 0;
  font-weight: 400;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(40px, 5.25vw, 76px);
  font-weight: 650;
  line-height: 1.02;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4.1vw, 56px);
  font-weight: 650;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.2;
}

p,
li,
td {
  line-height: 1.58;
  text-wrap: pretty;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(251, 253, 249, 0.82);
  border-bottom: 1px solid rgba(223, 234, 227, 0.72);
  box-shadow: 0 12px 42px rgba(23, 53, 49, 0.055);
  backdrop-filter: blur(20px);
}

.brand img {
  width: clamp(178px, 18vw, 266px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.55vw, 22px);
  color: #38514d;
  font-size: 13px;
  font-weight: 800;
}

.site-nav a {
  padding: 10px 0;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(23, 53, 49, 0.15);
  border-radius: 6px;
  background: var(--paper);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-primary {
  color: #fff;
  background: var(--deep);
  box-shadow: 0 12px 28px rgba(13, 91, 81, 0.18);
}

.button-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(13, 91, 81, 0.18);
  outline: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--deep);
  font-weight: 800;
  border-bottom: 2px solid var(--deep);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  grid-template-rows: minmax(520px, 1fr) auto;
  gap: clamp(22px, 4vw, 56px);
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(20px, 5vw, 72px) 28px;
  color: #fff;
  isolation: isolate;
  --hero-pan-x: 0px;
  --hero-pan-y: 0px;
  --hero-push: 1;
}

.hero-photo {
  position: absolute;
  inset: -18px;
  z-index: -2;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.94) brightness(1.1);
  transform: translate3d(var(--hero-pan-x), var(--hero-pan-y), 0) scale(var(--hero-push));
  transition: transform 420ms ease-out;
  will-change: transform;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 55, 49, 0.72) 0%, rgba(39, 83, 75, 0.36) 44%, rgba(255, 255, 255, 0.05) 82%),
    linear-gradient(180deg, rgba(250, 250, 246, 0.08), rgba(18, 45, 41, 0.22));
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  max-width: 780px;
  padding-bottom: clamp(52px, 9vh, 112px);
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

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

.pillow-assembly {
  position: relative;
  z-index: 5;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  width: min(640px, 46vw);
  margin-left: auto;
  margin-bottom: clamp(8px, 4vh, 54px);
  perspective: 1200px;
}

.pillow-photo-stage {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1672 / 941;
  border: 0;
  background: transparent;
  cursor: pointer;
  perspective: 1200px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 34px 48px rgba(16, 42, 38, 0.34));
  transition: transform 360ms var(--ease-out), filter 360ms var(--ease-out);
}

.pillow-photo-stage:disabled {
  cursor: progress;
}

.pillow-photo-stage:hover,
.pillow-photo-stage:focus-visible {
  transform: translateY(-5px) scale(1.015);
  filter: drop-shadow(0 42px 58px rgba(16, 42, 38, 0.36));
  outline: 0;
}

.pillow-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: 52% 56%;
  backface-visibility: hidden;
  transition:
    opacity 720ms cubic-bezier(.2, .9, .18, 1),
    transform 900ms cubic-bezier(.2, .9, .18, 1),
    filter 720ms var(--ease-out);
  will-change: opacity, transform;
  pointer-events: none;
}

.pillow-photo--exploded {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateZ(-2deg) rotateY(0deg) scale(1.02);
}

.pillow-photo--complete {
  opacity: 0;
  transform: translate3d(2%, 6%, 0) rotateZ(-88deg) rotateY(-76deg) scale(0.68);
  filter: blur(5px);
}

.pillow-assembly.is-assembled .pillow-photo--exploded {
  opacity: 0;
  transform: translate3d(-1%, -4%, 0) rotateZ(-88deg) rotateY(74deg) scale(0.72);
  filter: blur(5px);
}

.pillow-assembly.is-assembled .pillow-photo--complete {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateZ(-3deg) rotateY(0deg) scale(1.04);
  filter: blur(0);
}

.pillow-assembly.is-rotating:not(.is-reversing) .pillow-photo--exploded {
  animation: pillowExplodedVerticalSpin 880ms cubic-bezier(.16, .86, .18, 1) both;
}

.pillow-assembly.is-rotating.is-assembled:not(.is-reversing) .pillow-photo--complete {
  animation: pillowCompleteSettleHorizontal 920ms cubic-bezier(.16, .86, .18, 1) both;
}

.pillow-assembly.is-rotating.is-reversing .pillow-photo--complete {
  animation: pillowCompleteVerticalAway 760ms cubic-bezier(.16, .86, .18, 1) both;
}

.pillow-assembly.is-rotating.is-reversing:not(.is-assembled) .pillow-photo--exploded {
  animation: pillowExplodedReturn 760ms cubic-bezier(.16, .86, .18, 1) both;
}

.hero-product-reveal {
  position: absolute;
  left: clamp(36px, 7vw, 96px);
  right: clamp(14px, 2vw, 28px);
  top: calc(100% - 74px);
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  color: var(--ink);
  background:
    radial-gradient(circle at var(--mx, 24%) var(--my, 20%), rgba(255, 255, 255, 0.86), transparent 34%),
    linear-gradient(145deg, rgba(247, 252, 248, 0.9), rgba(233, 245, 238, 0.78));
  box-shadow: 0 24px 66px rgba(16, 42, 38, 0.2);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 520ms var(--ease-out),
    transform 640ms cubic-bezier(.16, .86, .18, 1),
    max-height 620ms cubic-bezier(.16, .86, .18, 1),
    margin 620ms cubic-bezier(.16, .86, .18, 1),
    padding 620ms cubic-bezier(.16, .86, .18, 1),
    border-color 420ms var(--ease-out);
}

.pillow-assembly.is-revealed .hero-product-reveal {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.hero-product-reveal__thumb {
  width: 98px;
  height: 78px;
  object-fit: contain;
  align-self: center;
  filter: drop-shadow(0 14px 18px rgba(16, 42, 38, 0.16));
}

.hero-product-reveal__body {
  min-width: 0;
}

.hero-product-reveal__label {
  margin: 0 0 4px;
  color: var(--deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-product-reveal strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.18;
}

.hero-product-reveal__intro {
  margin: 0;
  color: #526965;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.42;
}

.hero-product-reveal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.hero-product-reveal__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 5px 8px;
  border: 1px solid rgba(14, 105, 92, 0.12);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

@keyframes pillowExplodedVerticalSpin {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateZ(-2deg) rotateY(0deg) scale(1.02);
    filter: blur(0);
  }
  52% {
    opacity: 0.96;
    transform: translate3d(0, -2%, 0) rotateZ(-88deg) rotateY(190deg) scale(0.74);
    filter: blur(1px);
  }
  100% {
    opacity: 0;
    transform: translate3d(-1%, -3%, 0) rotateZ(-88deg) rotateY(360deg) scale(0.68);
    filter: blur(5px);
  }
}

@keyframes pillowCompleteSettleHorizontal {
  0% {
    opacity: 0;
    transform: translate3d(1%, 6%, 0) rotateZ(-88deg) rotateY(-120deg) scale(0.66);
    filter: blur(6px);
  }
  46% {
    opacity: 1;
    transform: translate3d(0, -3%, 0) rotateZ(-86deg) rotateY(18deg) scale(0.84);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateZ(-3deg) rotateY(0deg) scale(1.04);
    filter: blur(0);
  }
}

@keyframes pillowCompleteVerticalAway {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateZ(-3deg) rotateY(0deg) scale(1.04);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translate3d(1%, 6%, 0) rotateZ(-86deg) rotateY(160deg) scale(0.7);
    filter: blur(5px);
  }
}

@keyframes pillowExplodedReturn {
  0% {
    opacity: 0;
    transform: translate3d(-1%, -3%, 0) rotateZ(-88deg) rotateY(-160deg) scale(0.68);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateZ(-2deg) rotateY(0deg) scale(1.02);
    filter: blur(0);
  }
}

.hero-hotspots {
  position: absolute;
  inset: 92px clamp(20px, 5vw, 72px) 194px;
  z-index: 4;
  pointer-events: none;
}

.hero-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 210px;
  padding: 8px 11px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(243, 250, 245, 0.82);
  box-shadow: 0 16px 46px rgba(16, 42, 38, 0.16);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.hero-hotspot::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--deep);
  box-shadow: 0 0 0 7px rgba(238, 248, 242, 0.48);
}

.hero-hotspot::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  animation: hotspotPulse 2.6s ease-out infinite;
}

.hero-hotspot:hover,
.hero-hotspot:focus-visible,
.hero-hotspot.is-active {
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 58px rgba(16, 42, 38, 0.2);
  outline: 0;
  transform: translate(-50%, -50%) translateY(-3px);
}

@keyframes hotspotPulse {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.7);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.4);
  }
}

.hero-product-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  background: rgba(238, 248, 242, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(16, 42, 38, 0.12);
  backdrop-filter: blur(20px);
}

.hero-product-nav-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hero-product-nav a {
  min-height: 158px;
  padding: 22px;
  color: rgba(47, 74, 69, 0.84);
  background: rgba(243, 250, 245, 0.7);
  font-size: 14px;
  transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}

.hero-product-nav a:hover,
.hero-product-nav a:focus-visible {
  transform: translateY(-4px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  outline: 0;
}

.hero-product-nav span,
.showcase-card span,
.directory-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero-product-nav strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(223, 234, 227, 0.72);
}

.stats-strip div {
  padding: 34px clamp(20px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.86);
}

.stats-strip strong {
  display: block;
  margin-bottom: 9px;
  color: var(--deep);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.stats-strip span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading p:not(.eyebrow),
.split-heading > p,
.factory-panel p,
.latex-copy p,
.inquiry-copy p,
.page-hero p,
.product-detail-hero p,
.detail-main p,
.showcase-card p,
.directory-card p,
.directory-card li,
.detail-cards p,
.process-line p,
.capability-list span,
.benefit-card p,
.article-card p,
.article-modal__body,
.article-modal__points {
  color: var(--muted);
}

.hero-content .hero-lead {
  color: rgba(255, 255, 255, 0.86);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
}

.product-preview {
  background:
    linear-gradient(180deg, #fff 0%, var(--pale-green) 100%);
}

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

.category-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 18px;
  border: 1px solid rgba(223, 234, 227, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 250, 245, 0.96)),
    var(--pale-green);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.category-tile::after {
  content: "View specifications";
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(23, 53, 49, 0.1);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.category-tile:hover::after,
.category-tile:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.category-tile:hover,
.category-tile:focus-visible,
.directory-card:hover,
.directory-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(53, 121, 110, 0.3);
  box-shadow: var(--hover-shadow);
  outline: 0;
}

.category-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: transform 420ms ease, filter 420ms ease;
}

.category-tile:hover img,
.category-tile:focus-visible img,
.directory-card:hover img,
.directory-card:focus-visible img,
.spec-gallery-grid article:hover img,
.spec-gallery-grid article:focus-within img,
.detail-cards article:hover img {
  transform: scale(1.025);
  filter: saturate(0.98) contrast(0.98);
}

.category-tile span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.category-tile p {
  color: var(--muted);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 20px;
}

.showcase-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--pale-green);
  box-shadow: var(--soft-shadow);
}

.showcase-card.large-card {
  grid-row: 1 / 3;
  grid-template-columns: 1fr;
  align-content: end;
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}

.showcase-card.large-card img {
  aspect-ratio: 16 / 10;
}

.process-section {
  background: linear-gradient(135deg, var(--pale-green), #f7f7fb);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(53, 121, 110, 0.14);
  border: 1px solid rgba(53, 121, 110, 0.14);
}

.process-line article {
  min-height: 250px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  transition: background 180ms ease, transform 180ms ease;
}

.process-line article:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.94);
}

.process-line span {
  display: block;
  margin-bottom: 44px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.benefit-teaser {
  background:
    linear-gradient(180deg, #fff 0%, var(--pale-green) 100%);
}

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

.benefit-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(223, 234, 227, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(234, 245, 238, 0.72)),
    var(--pale-green);
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.benefit-card:hover,
.benefit-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(53, 121, 110, 0.3);
  box-shadow: var(--hover-shadow);
  outline: 0;
}

.benefit-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.latex-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  background: var(--paper);
}

.latex-copy {
  max-width: 650px;
}

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

.latex-visuals figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(23, 53, 49, 0.08);
}

.latex-visuals img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.latex-visuals figcaption {
  padding: 12px 14px;
  color: #3c5550;
  font-size: 13px;
  font-weight: 800;
}

.latex-visuals .wide {
  grid-column: 1 / -1;
}

.latex-visuals .wide img {
  aspect-ratio: 16 / 7;
}

.factory-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(30px, 6vw, 82px);
  color: var(--ink);
  background:
    linear-gradient(135deg, #edf7f1, #fbfaf5);
  border-top: 1px solid rgba(223, 234, 227, 0.86);
  border-bottom: 1px solid rgba(223, 234, 227, 0.86);
}

.factory-band .eyebrow {
  color: var(--green);
}

.factory-panel p,
.capability-list span {
  color: var(--muted);
}

.capability-list {
  display: grid;
  gap: 14px;
}

.capability-list article {
  padding: 24px 0;
  border-bottom: 1px solid rgba(53, 121, 110, 0.16);
}

.capability-list strong,
.capability-list span {
  display: block;
}

.capability-list strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(30px, 5vw, 72px);
  background: var(--paper);
}

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

.inquiry-form label {
  display: grid;
  gap: 9px;
  color: #405452;
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form label:nth-child(5) {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d9d1c6;
  border-radius: 6px;
  color: var(--ink);
  background: #fffdf9;
  font: inherit;
  font-size: 15px;
}

textarea {
  resize: vertical;
}

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

.page-hero,
.product-detail-hero {
  padding: 150px clamp(20px, 5vw, 72px) clamp(60px, 8vw, 110px);
}

.compact-hero {
  max-width: 1080px;
  padding-bottom: clamp(36px, 5vw, 64px);
}

.page-hero p,
.product-detail-hero p {
  max-width: 720px;
  font-size: 18px;
}

.knowledge-hero {
  max-width: none;
  background:
    linear-gradient(135deg, rgba(232, 242, 237, 0.92), rgba(248, 233, 238, 0.72)),
    var(--cream);
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 23, 21, 0.88), rgba(16, 38, 35, 0.64) 54%, rgba(16, 38, 35, 0.24)),
    linear-gradient(135deg, rgba(16, 47, 43, 0.96), rgba(32, 115, 101, 0.72)),
    url("assets/homepage/homepage3.jpg") center / cover;
}

.product-detail-hero h1,
.product-detail-hero .eyebrow {
  color: #fff;
}

.product-detail-hero p {
  color: rgba(255, 255, 255, 0.8);
}

.product-detail-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.directory-section,
.detail-grid-section {
  background: #fff;
}

.directory-section {
  padding-top: clamp(36px, 5vw, 64px);
}

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

.directory-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.directory-card {
  display: flex;
  flex-direction: column;
  min-height: 590px;
  padding: 20px;
  border: 1px solid rgba(223, 234, 227, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 250, 245, 0.96)),
    var(--pale-green);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.directory-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 24px;
  border-radius: 6px;
  background: #fff;
  transition: transform 420ms ease, filter 420ms ease;
}

.directory-card h2 {
  margin-bottom: 12px;
  font-size: clamp(27px, 2.45vw, 38px);
  line-height: 1.04;
}

.directory-card ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.quick-catalog,
.spec-section,
.spec-gallery-section,
.spec-index-section {
  background: var(--pale-green);
}

.article-section {
  padding-top: clamp(46px, 6vw, 78px);
  background:
    linear-gradient(180deg, #fff 0%, var(--pale-green) 100%);
}

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

.article-card {
  min-height: 280px;
  padding: 24px;
  text-align: left;
  border: 1px solid rgba(223, 234, 227, 0.95);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 250, 245, 0.94)),
    var(--pale-green);
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.article-card:hover,
.article-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(53, 121, 110, 0.3);
  box-shadow: var(--hover-shadow);
  outline: 0;
}

.article-card span {
  display: block;
  margin-bottom: 52px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.article-card h2 {
  margin-bottom: 14px;
  font-size: clamp(22px, 2vw, 30px);
}

.spec-gallery-section {
  padding-bottom: clamp(22px, 4vw, 54px);
}

.spec-card-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--pale-green) 100%);
}

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

.model-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(223, 234, 227, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 250, 245, 0.94)),
    var(--pale-green);
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.model-card:hover,
.model-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(53, 121, 110, 0.3);
  box-shadow: var(--hover-shadow);
}

.model-card__media {
  position: relative;
  overflow: hidden;
  margin: 18px 18px 0;
  border-radius: 6px;
  background: #fff;
}

.model-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.model-card:hover .model-card__media img {
  transform: scale(1.025);
  filter: saturate(0.98) contrast(0.98);
}

.model-card__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.model-card__dimension {
  position: absolute;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--ink);
  background: rgba(243, 250, 245, 0.92);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(23, 53, 49, 0.1);
}

.model-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.model-card__series {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.model-card h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.model-card__intro {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.model-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.model-card__chips span {
  padding: 7px 9px;
  border: 1px solid rgba(53, 121, 110, 0.16);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(238, 248, 242, 0.86);
  font-size: 12px;
  font-weight: 800;
}

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

.spec-gallery-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.spec-gallery-grid article {
  min-height: 390px;
  padding: 20px;
  border: 1px solid rgba(223, 234, 227, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 250, 245, 0.9));
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.spec-gallery-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 121, 110, 0.28);
  box-shadow: var(--hover-shadow);
}

.spec-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 6px;
  background: #fff;
}

.spec-gallery-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.spec-gallery-grid p {
  color: var(--muted);
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.table-stack {
  display: grid;
  gap: 18px;
}

.spec-index-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

th,
td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--deep);
  background: var(--mint);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

tbody tr:last-child td {
  border-bottom: 0;
}

.detail-grid-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.detail-main {
  position: sticky;
  top: 112px;
}

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

.detail-cards article {
  min-height: 420px;
  padding: 20px;
  border: 1px solid rgba(223, 234, 227, 0.95);
  border-radius: 8px;
  background: var(--pale-green);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.detail-cards article:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 121, 110, 0.28);
  box-shadow: var(--hover-shadow);
}

.detail-cards img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 6px;
  background: #fff;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(20px, 5vw, 72px);
  color: #5b6967;
  background: #f5f1ea;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.site-footer img {
  width: 210px;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 42px);
}

.product-modal.is-open {
  display: flex;
}

.product-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 45, 41, 0.46);
  backdrop-filter: blur(16px);
}

.product-modal__card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(360px, 0.92fr);
  width: min(1120px, 100%);
  max-height: min(760px, calc(100vh - 32px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 245, 0.96));
  box-shadow: 0 30px 92px rgba(10, 28, 26, 0.24);
}

.product-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(23, 53, 49, 0.14);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.product-modal__close:hover,
.product-modal__close:focus-visible,
.article-modal__close:hover,
.article-modal__close:focus-visible {
  transform: rotate(90deg);
  background: var(--pale-green);
  outline: 0;
}

.product-modal__media {
  position: relative;
  min-height: 520px;
  background: #173531;
}

.product-modal__media::after {
  content: attr(data-label);
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(13, 39, 35, 0.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-modal__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal__content {
  overflow: auto;
  padding: clamp(26px, 4vw, 44px);
}

.product-modal__label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.product-modal__content h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.6vw, 48px);
}

.product-modal__intro {
  color: var(--muted);
  font-size: 17px;
}

.product-modal__preview {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin: 26px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(243, 250, 245, 0.82);
}

.product-modal__preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.product-modal__preview strong,
.product-modal__columns strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 14px;
}

.product-modal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-modal__chips span {
  padding: 7px 9px;
  border: 1px solid rgba(53, 121, 110, 0.18);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(238, 248, 242, 0.86);
  font-size: 12px;
  font-weight: 800;
}

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

.product-modal__columns div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.product-modal__columns ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.product-modal__matrix {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.product-modal__matrix-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.product-modal__matrix-head strong {
  color: var(--ink);
  font-size: 14px;
}

.product-modal__matrix-head span {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--deep);
  background: rgba(238, 248, 242, 0.9);
  font-size: 12px;
  font-weight: 800;
}

.product-modal__spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-height: 250px;
  overflow: auto;
  padding-right: 4px;
}

.product-modal__spec-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(223, 234, 227, 0.95);
  border-radius: 8px;
  background: rgba(243, 250, 245, 0.72);
}

.product-modal__spec-list img {
  width: 72px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  background: #fff;
}

.product-modal__spec-list span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.product-modal__spec-list h4 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.05;
}

.product-modal__spec-list p,
.product-modal__spec-list strong {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.product-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
}

.product-modal__source {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.article-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
}

.article-modal.is-open {
  display: flex;
}

.article-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 45, 41, 0.44);
  backdrop-filter: blur(14px);
}

.article-modal__card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 245, 0.96)),
    #fff;
  box-shadow: 0 30px 92px rgba(10, 28, 26, 0.22);
}

.article-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(23, 53, 49, 0.14);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.article-modal__label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.article-modal__card h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
}

.article-modal__body {
  max-width: 640px;
  font-size: 17px;
}

.article-modal__points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding-left: 18px;
  font-weight: 700;
}

/* Uiverse-inspired premium interaction layer */
.button,
.category-tile,
.directory-card,
.model-card,
.benefit-card,
.article-card,
.process-line article,
.product-modal__card,
.article-modal__card {
  transition-timing-function: var(--ease-out);
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.28), transparent 34%, rgba(255, 255, 255, 0.18));
  opacity: 0;
  transform: translateX(-36%);
  transition: opacity 180ms var(--ease-out), transform 360ms var(--ease-out);
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.button:active,
.category-tile:active,
.directory-card:active,
.model-card:active {
  transform: translateY(-1px) scale(0.992);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto clamp(20px, 5vw, 72px) 18px;
  height: 42%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 78%, rgba(243, 250, 245, 0.35), transparent 28%),
    radial-gradient(circle at 82% 74%, rgba(241, 237, 248, 0.26), transparent 30%);
  filter: blur(28px);
}

.hero-photo img {
  transform-origin: 58% 56%;
  transition: transform 520ms var(--ease-out), filter 520ms var(--ease-out);
}

.hero-content {
  position: relative;
  z-index: 5;
  transform: translateZ(0);
}

.hero-lead {
  text-wrap: balance;
}

.hero-hotspot {
  gap: 9px;
  min-height: 38px;
  overflow: visible;
  border-color: rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(243, 250, 245, 0.76));
  box-shadow: 0 18px 50px rgba(16, 42, 38, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.hero-hotspot span {
  position: relative;
  z-index: 2;
}

.hero-hotspot::before {
  background:
    radial-gradient(circle at 35% 30%, #fff 0 18%, transparent 20%),
    linear-gradient(145deg, #5c9a90, var(--deep));
}

.hero-hotspot:hover,
.hero-hotspot:focus-visible,
.hero-hotspot.is-active {
  box-shadow: 0 24px 64px rgba(16, 42, 38, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-product-nav {
  position: relative;
  z-index: 6;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 72px rgba(16, 42, 38, 0.16);
}

.hero-product-nav a {
  position: relative;
  min-height: 168px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 6px;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255, 255, 255, 0.94), transparent 28%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.82), rgba(243, 250, 245, 0.72) 58%, rgba(241, 237, 248, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.hero-product-nav a::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.45) 38%, transparent 64%);
  opacity: 0;
  transform: translateX(-56%);
  transition: opacity 220ms var(--ease-out), transform 620ms var(--ease-out);
}

.hero-product-nav a:hover::after,
.hero-product-nav a:focus-visible::after {
  opacity: 1;
  transform: translateX(48%);
}

.hero-product-nav em {
  display: inline-flex;
  margin: 2px 0 12px;
  padding: 6px 9px;
  border: 1px solid rgba(53, 121, 110, 0.16);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.product-preview,
.benefit-teaser {
  background:
    radial-gradient(circle at 15% 6%, rgba(248, 233, 238, 0.62), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(233, 248, 245, 0.74), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f6fbf8 100%);
}

.category-overview-grid,
.directory-grid,
.spec-card-grid,
.benefit-teaser-grid,
.article-grid {
  align-items: stretch;
}

.category-tile,
.directory-card,
.model-card,
.benefit-card,
.article-card {
  position: relative;
  isolation: isolate;
}

.category-tile,
.directory-card {
  gap: 0;
  border-color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255, 255, 255, 0.98), transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(242, 250, 246, 0.92) 58%, rgba(241, 237, 248, 0.72));
  box-shadow: 0 14px 42px rgba(23, 53, 49, 0.065), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.category-tile::before,
.directory-card::before,
.model-card::before,
.benefit-card::before,
.article-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(132, 174, 165, 0.36), rgba(241, 237, 248, 0.7));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
}

.category-tile:hover::before,
.category-tile:focus-visible::before,
.directory-card:hover::before,
.directory-card:focus-visible::before,
.model-card:hover::before,
.model-card:focus-within::before,
.benefit-card:hover::before,
.benefit-card:focus-visible::before,
.article-card:hover::before,
.article-card:focus-visible::before {
  opacity: 1;
}

.category-tile::after {
  content: "Tap for detail";
  top: 28px;
  right: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(6px) scale(0.98);
}

.category-tile:hover,
.category-tile:focus-visible,
.directory-card:hover,
.directory-card:focus-visible,
.model-card:hover,
.model-card:focus-within,
.benefit-card:hover,
.benefit-card:focus-visible,
.article-card:hover,
.article-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 80px rgba(23, 53, 49, 0.11), 0 4px 14px rgba(184, 149, 85, 0.08);
}

.category-tile img,
.directory-card img,
.model-card__media img,
.spec-gallery-grid img,
.detail-cards img {
  box-shadow: inset 0 0 0 1px rgba(53, 121, 110, 0.08);
}

.category-tile img {
  margin-bottom: 20px;
}

.category-tile h3,
.directory-card h2,
.model-card h3 {
  text-wrap: balance;
}

.tile-meta,
.model-card__chips,
.product-modal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tile-meta {
  margin-top: auto;
  padding-top: 18px;
}

.tile-meta b,
.category-tile small {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(53, 121, 110, 0.16);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.category-tile small {
  position: relative;
  width: max-content;
  margin-top: 14px;
  border-color: rgba(184, 149, 85, 0.24);
  color: #7a6130;
  background: rgba(255, 252, 242, 0.82);
}

.category-tile small::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms var(--ease-out);
}

.category-tile:hover small::after,
.category-tile:focus-visible small::after {
  transform: translateX(3px) rotate(45deg);
}

.stats-strip div {
  position: relative;
  overflow: hidden;
}

.stats-strip div::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 58px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(53, 121, 110, 0), rgba(53, 121, 110, 0.32));
}

.process-line {
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
}

.process-line article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.process-line article::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 20px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(53, 121, 110, 0.28), rgba(248, 233, 238, 0.48));
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 260ms var(--ease-out);
}

.process-line article:hover::after {
  transform: scaleX(1);
}

.factory-band,
.inquiry {
  background:
    radial-gradient(circle at 12% 16%, rgba(241, 237, 248, 0.56), transparent 34%),
    linear-gradient(135deg, #f4fbf6, #fffaf3);
}

.inquiry-form {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 58px rgba(23, 53, 49, 0.08);
  backdrop-filter: blur(18px);
}

input,
select,
textarea {
  border-color: rgba(53, 121, 110, 0.16);
  background: rgba(255, 255, 255, 0.84);
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background 160ms var(--ease-out);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(53, 121, 110, 0.5);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(53, 121, 110, 0.1);
  outline: 0;
}

.product-modal,
.article-modal {
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
}

.product-modal.is-open,
.article-modal.is-open {
  opacity: 1;
}

.product-modal__overlay,
.article-modal__overlay {
  background:
    radial-gradient(circle at 28% 20%, rgba(248, 233, 238, 0.24), transparent 36%),
    rgba(18, 45, 41, 0.42);
}

.product-modal__card,
.article-modal__card {
  transform: translateY(18px) scale(0.982);
  opacity: 0;
  transition: transform 300ms var(--ease-out), opacity 220ms var(--ease-out);
}

.product-modal.is-open .product-modal__card,
.article-modal.is-open .article-modal__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.product-modal__card {
  width: min(1220px, 100%);
  background:
    radial-gradient(circle at 10% 0%, rgba(248, 233, 238, 0.5), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 246, 0.96));
}

.product-modal__media {
  background:
    linear-gradient(145deg, rgba(23, 53, 49, 0.95), rgba(49, 87, 78, 0.92));
}

.product-modal__media video {
  filter: saturate(0.92) contrast(0.96);
}

.product-modal__preview,
.product-modal__columns div,
.product-modal__matrix {
  border-color: rgba(53, 121, 110, 0.14);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.product-modal__matrix {
  margin-top: 24px;
}

.product-modal__spec-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: 300px;
  scrollbar-color: rgba(53, 121, 110, 0.35) transparent;
}

.product-modal__spec-list article {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.88), transparent 40%),
    rgba(243, 250, 245, 0.7);
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}

.product-modal__spec-list article:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 121, 110, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

.product-modal__spec-list img {
  box-shadow: 0 8px 20px rgba(23, 53, 49, 0.08);
}

.article-modal__card {
  background:
    radial-gradient(circle at 100% 0%, rgba(233, 248, 245, 0.72), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 246, 0.96));
}

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

@media (max-width: 1080px) {
  .home-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-items: start;
    min-height: 0;
  }

  .hero-content,
  .pillow-assembly,
  .hero-product-nav {
    grid-column: 1;
  }

  .hero-content {
    grid-row: 1;
    max-width: 760px;
    padding-bottom: 0;
  }

  .pillow-assembly {
    grid-row: 2;
    width: min(660px, 100%);
    margin: 0 auto;
  }

  .hero-product-reveal {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: min(560px, 100%);
    max-height: 0;
    margin: 0 auto;
    padding: 0 12px;
    overflow: hidden;
    border-color: transparent;
  }

  .pillow-assembly.is-revealed .hero-product-reveal {
    max-height: 280px;
    margin-top: 10px;
    padding: 12px;
    border-color: rgba(255, 255, 255, 0.52);
  }

  .hero-product-nav {
    grid-row: 3;
  }

  .hero-hotspots {
    display: none;
  }

  .hero-product-nav,
  .hero-product-nav-five,
  .stats-strip,
  .directory-grid,
  .directory-grid-five,
  .category-overview-grid,
  .benefit-teaser-grid,
  .article-grid,
  .spec-card-grid,
  .detail-cards,
  .spec-gallery-grid,
  .spec-gallery-grid-three,
  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-grid,
  .split-heading,
  .latex-section,
  .factory-band,
  .inquiry,
  .product-detail-hero,
  .detail-grid-section {
    grid-template-columns: 1fr;
  }

  .showcase-card,
  .showcase-card.large-card {
    grid-row: auto;
    grid-template-columns: 1fr;
  }

  .detail-main {
    position: static;
  }

  .directory-card,
  .category-tile,
  .detail-cards article {
    min-height: 0;
  }

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

  .product-modal__media {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  h2 {
    font-size: clamp(29px, 9vw, 40px);
  }

  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand img {
    width: 178px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .home-hero {
    min-height: 0;
    padding: 96px 18px 22px;
  }

  .hero-hotspots {
    display: none;
  }

  .hero-content {
    padding-bottom: 24px;
  }

  .pillow-assembly {
    width: 100%;
    margin-top: 4px;
  }

  .pillow-photo-stage {
    width: min(100%, 700px);
    margin: 0 auto;
  }

  .hero-product-reveal {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .hero-product-reveal__thumb {
    width: 72px;
    height: 58px;
  }

  .hero-product-reveal strong {
    font-size: 15px;
  }

  .hero-product-reveal__intro {
    font-size: 11px;
  }

  .hero-product-reveal__chips {
    gap: 5px;
    margin-top: 8px;
  }

  .hero-product-reveal__chips span {
    min-height: 23px;
    padding: 5px 7px;
    font-size: 10px;
  }

  .hero-product-nav a {
    min-height: 132px;
    padding: 18px;
  }

  .hero-product-nav,
  .hero-product-nav-five,
  .directory-grid,
  .directory-grid-five,
  .category-overview-grid,
  .benefit-teaser-grid,
  .article-grid,
  .spec-card-grid,
  .detail-cards,
  .spec-gallery-grid,
  .spec-gallery-grid-three,
  .process-line {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero,
  .product-detail-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-hero,
  .product-detail-hero {
    padding-top: 116px;
  }

  .hero-actions,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

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

  .stats-strip div,
  .process-line article,
  .directory-card,
  .category-tile,
  .detail-cards article,
  .showcase-card {
    padding: 20px;
  }

  .latex-visuals,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .latex-visuals .wide {
    grid-column: auto;
  }

  .latex-visuals .wide img {
    aspect-ratio: 4 / 3;
  }

  .inquiry-form label:nth-child(5) {
    grid-column: auto;
  }

  .product-modal {
    padding: 12px;
  }

  .product-modal__card {
    max-height: calc(100vh - 24px);
  }

  .product-modal__media {
    min-height: 220px;
  }

  .product-modal__preview,
  .product-modal__columns,
  .product-modal__spec-list {
    grid-template-columns: 1fr;
  }

  .article-card,
  .benefit-card {
    min-height: 220px;
  }

  .article-modal {
    padding: 12px;
  }

  .article-modal__card {
    max-height: calc(100vh - 24px);
  }
}

/* Impeccable homepage redesign */
h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.hero-kicker,
.section-note {
  margin: 0 0 14px;
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.home-hero-redesign {
  min-height: 100vh;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.74fr);
  grid-template-rows: minmax(560px, 1fr) auto;
  gap: clamp(24px, 4vw, 58px);
  padding-bottom: clamp(22px, 3.5vw, 42px);
}

.home-hero-redesign::before {
  background:
    linear-gradient(90deg, rgba(15, 45, 40, 0.74) 0%, rgba(28, 72, 64, 0.48) 42%, rgba(255, 255, 255, 0.04) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(13, 42, 38, 0.18));
}

.home-hero-redesign::after {
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(0deg, rgba(10, 34, 31, 0.42), rgba(10, 34, 31, 0));
  filter: none;
}

.home-hero-redesign .hero-photo img {
  filter: saturate(0.9) contrast(0.96) brightness(1.06);
}

.home-hero-redesign .hero-content {
  max-width: 720px;
  padding-bottom: clamp(44px, 8vh, 96px);
}

.home-hero-redesign .hero-kicker {
  color: rgba(244, 252, 247, 0.9);
}

.home-hero-redesign h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.2vw, 5.7rem);
  line-height: 0.98;
}

.home-hero-redesign .hero-lead {
  max-width: 66ch;
  color: rgba(244, 252, 247, 0.9);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 600;
  line-height: 1.66;
  text-wrap: pretty;
}

.home-hero-redesign .button-light {
  color: var(--ink);
  background: rgba(247, 252, 248, 0.94);
  border-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: none;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin-top: 24px;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(244, 252, 247, 0.32);
  border-radius: 999px;
  color: rgba(244, 252, 247, 0.9);
  background: rgba(18, 55, 49, 0.42);
  font-size: 0.78rem;
  font-weight: 800;
}

.home-hero-redesign .pillow-assembly {
  width: min(690px, 47vw);
  margin-bottom: clamp(18px, 4vh, 62px);
}

.home-hero-redesign .pillow-photo-stage {
  filter: drop-shadow(0 38px 48px rgba(11, 34, 31, 0.34));
}

.home-hero-redesign .hero-product-reveal {
  top: calc(100% - 58px);
  left: clamp(24px, 5vw, 84px);
  right: clamp(12px, 2vw, 24px);
  border-color: rgba(223, 234, 227, 0.9);
  color: var(--ink);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 244, 0.94));
  box-shadow: 0 24px 58px rgba(13, 42, 38, 0.18);
  backdrop-filter: none;
}

.home-hero-redesign .hero-product-reveal__label {
  color: var(--deep);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
}

.home-hero-redesign .hero-product-reveal__intro {
  color: #405d57;
  font-weight: 700;
}

.home-hero-redesign .hero-product-nav {
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: rgba(251, 253, 249, 0.96);
  border-color: rgba(223, 234, 227, 0.88);
  box-shadow: 0 22px 56px rgba(13, 42, 38, 0.14);
  backdrop-filter: none;
}

.home-hero-redesign .hero-product-nav a {
  min-height: 158px;
  padding: 20px;
  border: 0;
  border-right: 1px solid rgba(223, 234, 227, 0.86);
  border-radius: 0;
  color: #405d57;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 246, 0.94));
  box-shadow: none;
}

.home-hero-redesign .hero-product-nav a:last-child {
  border-right: 0;
}

.home-hero-redesign .hero-product-nav span {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: none;
}

.home-hero-redesign .hero-product-nav strong {
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.18;
}

.home-hero-redesign .hero-product-nav em {
  margin: 2px 0 12px;
  border-radius: 6px;
  color: #294f48;
  background: rgba(234, 245, 238, 0.82);
}

.manufacturing-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(203, 222, 213, 0.9);
}

.manufacturing-ledger div {
  padding: clamp(24px, 3.6vw, 42px);
  background: linear-gradient(180deg, #ffffff, #f5fbf7);
}

.manufacturing-ledger span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
}

.manufacturing-ledger strong {
  display: block;
  max-width: 34ch;
  color: var(--ink);
  font-size: clamp(1.03rem, 1.45vw, 1.25rem);
  line-height: 1.48;
}

.section-heading .section-note,
.factory-panel .section-note,
.inquiry-copy .section-note {
  color: var(--deep);
}

.product-preview,
.benefit-teaser {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fcf8 72%, #eef8f2 100%);
}

.product-atlas {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  align-items: stretch;
}

.product-atlas .category-tile {
  grid-column: span 5;
  display: grid;
  grid-template-columns: minmax(148px, 0.42fr) minmax(0, 0.58fr);
  min-height: 268px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(203, 222, 213, 0.72);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(23, 53, 49, 0.07);
}

.product-atlas .category-tile:nth-child(4),
.product-atlas .category-tile:nth-child(5) {
  grid-column: span 6;
}

.product-atlas .category-tile--lead {
  grid-column: span 7;
  grid-row: span 2;
  grid-template-columns: 1fr;
  min-height: 560px;
}

.product-atlas .category-tile::after {
  content: "Open detail";
  top: 18px;
  right: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  letter-spacing: 0;
  text-transform: none;
}

.product-atlas .category-tile img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 18px;
  border-radius: 0;
  object-fit: contain;
  background: #f7fbf8;
}

.product-atlas .category-tile--lead img {
  height: clamp(310px, 35vw, 440px);
  min-height: 0;
  padding: clamp(20px, 3vw, 42px);
  object-fit: contain;
  background:
    linear-gradient(135deg, #fbf8f2, #edf7f1);
}

.product-atlas .tile-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(22px, 2.5vw, 32px);
}

.product-atlas .category-tile span,
.product-atlas .tile-label {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.product-atlas .category-tile h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.14;
}

.product-atlas .category-tile--lead h3 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.product-atlas .category-tile p {
  margin-bottom: 0;
  color: #4b625d;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.6;
}

.product-atlas .tile-meta {
  margin-top: auto;
  padding-top: 18px;
}

.product-atlas .tile-meta b,
.product-atlas .category-tile small {
  border-radius: 6px;
  letter-spacing: 0;
}

.process-section {
  background:
    linear-gradient(180deg, #eef8f2, #f8fbf8);
}

.process-line--atelier {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(203, 222, 213, 0.86);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(23, 53, 49, 0.06);
}

.process-line--atelier::before {
  content: "";
  position: absolute;
  top: 82px;
  left: 34px;
  right: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(53, 121, 110, 0.4), rgba(184, 149, 85, 0.3));
}

.process-line--atelier article {
  min-height: 306px;
  padding: clamp(24px, 2.7vw, 34px);
  border: 0;
  border-right: 1px solid rgba(203, 222, 213, 0.72);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.process-line--atelier article:last-child {
  border-right: 0;
}

.process-line--atelier article::after {
  left: clamp(24px, 2.7vw, 34px);
  right: auto;
  bottom: auto;
  top: 81px;
  width: 18px;
  height: 18px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--deep);
  transform: none;
  box-shadow: 0 0 0 1px rgba(53, 121, 110, 0.24);
}

.process-line--atelier article:hover::after {
  transform: scale(1.08);
}

.process-line--atelier span {
  margin-bottom: 74px;
  color: var(--green);
  font-size: 0.84rem;
  letter-spacing: 0;
  text-transform: none;
}

.process-line--atelier h3 {
  font-size: clamp(1.18rem, 1.45vw, 1.4rem);
}

.benefit-stories {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.benefit-stories .benefit-card {
  grid-column: span 2;
  min-height: 280px;
  border-color: rgba(203, 222, 213, 0.74);
  background: linear-gradient(160deg, #ffffff, #f4fbf6);
  box-shadow: 0 18px 48px rgba(23, 53, 49, 0.065);
}

.benefit-stories .benefit-card--wide,
.benefit-stories .benefit-card:nth-child(2) {
  grid-column: span 3;
}

.benefit-stories .benefit-card span {
  margin-bottom: 40px;
  color: var(--green);
  letter-spacing: 0;
  text-transform: none;
}

.benefit-stories .benefit-card h3 {
  max-width: 15ch;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.benefit-stories .benefit-card p {
  color: #4b625d;
  font-weight: 650;
}

.factory-band,
.inquiry {
  background:
    linear-gradient(135deg, #f5fbf7 0%, #ffffff 52%, #eef8f2 100%);
}

.capability-list article {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.inquiry-form {
  border-color: rgba(203, 222, 213, 0.78);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(23, 53, 49, 0.07);
  backdrop-filter: none;
}

.product-modal__label,
.article-modal__label,
.product-modal__spec-list span {
  letter-spacing: 0;
  text-transform: none;
}

.section[id] {
  scroll-margin-top: 98px;
}

.product-modal__media {
  background-size: cover;
  background-position: center;
}

.product-modal__media video {
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
}

.product-modal__media.is-video-ready video {
  opacity: 1;
}

.product-modal__media::after {
  letter-spacing: 0;
  text-transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .home-hero-redesign .hero-content {
    animation: heroCopyIn 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .home-hero-redesign .pillow-assembly {
    animation: heroObjectIn 860ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
  }

  .home-hero-redesign .hero-product-nav {
    animation: heroDockIn 680ms cubic-bezier(0.16, 1, 0.3, 1) 260ms both;
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroObjectIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroDockIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .home-hero-redesign {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
  }

  .home-hero-redesign h1 {
    max-width: 14ch;
  }

  .home-hero-redesign .hero-content {
    padding-bottom: 0;
  }

  .home-hero-redesign .pillow-assembly {
    width: min(700px, 100%);
  }

  .home-hero-redesign .hero-product-nav-five,
  .manufacturing-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero-redesign .hero-product-nav a {
    border-right: 0;
    border-bottom: 1px solid rgba(223, 234, 227, 0.86);
  }

  .product-atlas .category-tile,
  .product-atlas .category-tile:nth-child(4),
  .product-atlas .category-tile:nth-child(5),
  .product-atlas .category-tile--lead {
    grid-column: 1 / -1;
  }

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

  .process-line--atelier::before {
    display: none;
  }

  .process-line--atelier article {
    border-bottom: 1px solid rgba(203, 222, 213, 0.72);
  }

  .benefit-stories,
  .benefit-stories .benefit-card,
  .benefit-stories .benefit-card--wide,
  .benefit-stories .benefit-card:nth-child(2) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .home-hero-redesign {
    padding-top: 96px;
  }

  .home-hero-redesign h1 {
    font-size: clamp(2.25rem, 10.4vw, 3.25rem);
    line-height: 1.02;
  }

  .home-hero-redesign .hero-lead {
    font-size: 1rem;
    line-height: 1.56;
  }

  .home-hero-redesign .hero-actions {
    gap: 10px;
  }

  .home-hero-redesign .hero-proof-row {
    display: none;
  }

  .home-hero-redesign .hero-product-reveal {
    top: auto;
  }

  .home-hero-redesign .pillow-assembly {
    margin-top: 4px;
  }

  .home-hero-redesign .hero-product-nav-five,
  .manufacturing-ledger,
  .process-line--atelier,
  .benefit-stories {
    grid-template-columns: 1fr;
  }

  .product-atlas .category-tile,
  .product-atlas .category-tile--lead {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-atlas .category-tile img,
  .product-atlas .category-tile--lead img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    padding: 18px;
  }

  .product-atlas .category-tile--lead h3 {
    max-width: none;
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .capability-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Product detail object view moved out of the homepage hero */
.home-hero-redesign {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.74fr);
}

.home-hero-redesign .hero-content {
  grid-column: 1;
}

.home-hero-redesign .hero-product-nav {
  grid-column: 1 / -1;
}

.product-modal__media {
  display: grid;
  place-items: center;
  min-height: 520px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(18, 45, 41, 0.96), rgba(83, 64, 42, 0.82));
}

@media (min-width: 1081px) {
  .product-modal__card {
    height: min(840px, calc(100vh - 32px));
    max-height: min(840px, calc(100vh - 32px));
  }

  .product-modal__media,
  .product-modal__content {
    min-height: 0;
    height: 100%;
    max-height: 100%;
  }
}

.product-modal__media::after {
  content: attr(data-label);
  left: 22px;
  bottom: 22px;
  letter-spacing: 0;
  text-transform: none;
}

.modal-product-stage {
  position: relative;
  display: block;
  width: min(80%, 640px);
  aspect-ratio: 16 / 10;
  border: 0;
  background: transparent;
  cursor: pointer;
  perspective: 1200px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.24));
  transition: transform 320ms var(--ease-out), filter 320ms var(--ease-out);
}

.modal-product-stage:hover,
.modal-product-stage:focus-visible {
  transform: translateY(-5px) scale(1.012);
  filter: drop-shadow(0 42px 64px rgba(0, 0, 0, 0.28));
  outline: 0;
}

.modal-product-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: 52% 56%;
  backface-visibility: hidden;
  pointer-events: none;
  transition:
    opacity 620ms cubic-bezier(.16, .86, .18, 1),
    transform 820ms cubic-bezier(.16, .86, .18, 1),
    filter 620ms var(--ease-out);
}

.modal-product-visual--exploded {
  opacity: 1;
  transform: translate3d(0, -3%, 0) rotateZ(-2deg) rotateY(0deg) scale(0.9);
}

.modal-product-visual--complete {
  opacity: 0;
  transform: translate3d(1%, 7%, 0) rotateZ(-84deg) rotateY(-70deg) scale(0.72);
  filter: blur(5px);
}

.modal-product-stage.is-assembled .modal-product-visual--exploded {
  opacity: 0;
  transform: translate3d(-1%, -4%, 0) rotateZ(-84deg) rotateY(78deg) scale(0.74);
  filter: blur(5px);
}

.modal-product-stage.is-assembled .modal-product-visual--complete {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateZ(-2deg) rotateY(0deg) scale(1.03);
  filter: blur(0);
}

.modal-product-stage__label {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(13, 42, 38, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-modal__video-card {
  position: relative;
  min-height: 176px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(53, 121, 110, 0.14);
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.product-modal__video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 42, 38, 0.02), rgba(13, 42, 38, 0.18));
  pointer-events: none;
}

.product-modal__video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
}

.product-modal__video-card.is-video-ready video {
  opacity: 1;
}

.product-modal__video-card span {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  max-width: calc(100% - 28px);
  overflow: hidden;
  padding: 6px 9px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(13, 39, 35, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Reference-site typography pass: Montserrat, calmer weights, tighter hierarchy. */
.site-nav,
.button,
.text-link,
.menu-button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

.site-nav {
  font-weight: 500;
}

.site-nav a,
.button,
.text-link {
  letter-spacing: 0;
}

.button,
.text-link,
.inquiry-form label,
.product-modal__source {
  font-weight: 600;
}

.hero-content h1,
.home-hero-redesign h1,
.page-hero h1,
.product-detail-hero h1,
.product-modal__content h2 {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: 0;
}

.home-hero-redesign h1 {
  line-height: 1.02;
}

.hero-lead,
.section-heading p,
.tile-copy p,
.factory-panel p,
.inquiry-copy p,
.product-detail-hero p,
.product-modal__intro,
.product-modal__columns li,
.capability-list span {
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.54;
}

.hero-kicker,
.section-note,
.tile-label,
.product-modal__label,
.model-card__badge,
.model-card__dimension,
.product-modal__matrix-head span,
.product-modal__video-card span {
  font-weight: 600;
  letter-spacing: 0;
}

.hero-proof-row span,
.hero-product-nav a span,
.hero-product-nav a em,
.tile-meta b,
.product-modal__chips span,
.product-modal__spec-list span,
.product-modal__spec-list strong {
  font-weight: 550;
  letter-spacing: 0;
}

.hero-product-nav a strong,
.product-atlas h3,
.process-line h3,
.benefit-card h3,
.capability-list strong,
.product-modal__matrix-head strong,
.product-modal__columns strong,
.model-card h4 {
  font-weight: 650;
  letter-spacing: 0;
}

@media (max-width: 1080px) {
  .home-hero-redesign {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .home-hero-redesign .hero-content,
  .home-hero-redesign .hero-product-nav {
    grid-column: 1;
  }

  .home-hero-redesign .hero-product-nav {
    grid-row: auto;
  }

  .product-modal__media {
    min-height: 360px;
  }

  .modal-product-stage {
    width: min(78%, 560px);
  }
}

@media (max-width: 760px) {
  .product-modal__media {
    min-height: 260px;
  }

  .modal-product-stage {
    width: min(92%, 420px);
  }

  .modal-product-stage__label {
    right: 0;
    bottom: 0;
  }

  .product-modal__video-card {
    min-height: 150px;
  }
}

/* Apple.com-inspired homepage structure: clear hero, product focus, grid, process, proof, brief. */
.apple-home {
  display: grid;
  gap: 12px;
  background: #f5f5f7;
}

.apple-home__hero {
  display: flex;
  min-height: calc(100vh - 12px);
  align-items: center;
  justify-content: center;
  padding: 124px clamp(20px, 5vw, 72px) 88px;
  text-align: center;
}

.apple-home__hero .hero-content {
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 0;
}

.apple-home__hero h1 {
  max-width: 13ch;
  margin-inline: auto;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1;
}

.apple-home__hero .hero-lead {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
  line-height: 1.46;
}

.apple-home__hero .hero-actions,
.apple-home__hero .hero-proof-row {
  justify-content: center;
}

.apple-home__hero::before {
  background:
    linear-gradient(180deg, rgba(11, 34, 31, 0.56) 0%, rgba(11, 34, 31, 0.22) 44%, rgba(11, 34, 31, 0.52) 100%),
    linear-gradient(90deg, rgba(15, 45, 40, 0.16), rgba(15, 45, 40, 0.08));
}

.apple-section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: #fff;
}

.apple-section__intro {
  max-width: 820px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  text-align: center;
}

.apple-section__intro h2 {
  margin: 0 auto 16px;
  max-width: 13ch;
  font-size: clamp(2.45rem, 5.6vw, 4.9rem);
  line-height: 1.02;
}

.apple-section__intro p:not(.section-note) {
  max-width: 720px;
  margin: 0 auto;
  color: #5f706c;
  font-size: clamp(1.03rem, 1.5vw, 1.28rem);
  line-height: 1.5;
}

.apple-feature-product,
.apple-family-card {
  position: relative;
  color: var(--ink);
}

.apple-feature-product::after,
.apple-family-card::after {
  content: none;
}

.apple-feature-product {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
  max-width: 1220px;
  min-height: 620px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 76px);
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 22%, rgba(248, 233, 238, 0.8), transparent 32%),
    linear-gradient(135deg, #f8fbf8 0%, #edf7f1 100%);
  box-shadow: none;
}

.apple-feature-product:hover,
.apple-feature-product:focus-visible,
.apple-family-card:hover,
.apple-family-card:focus-visible {
  transform: none;
  box-shadow: none;
}

.apple-feature-product__copy {
  max-width: 480px;
}

.apple-feature-product .tile-label,
.apple-family-card .tile-label,
.apple-process-steps span,
.apple-knowledge-grid span,
.apple-capability-row strong {
  letter-spacing: 0;
  text-transform: none;
}

.apple-feature-product h3 {
  margin: 0 0 14px;
  font-size: clamp(2.5rem, 5.2vw, 5.2rem);
  line-height: 0.98;
}

.apple-feature-product p,
.apple-family-card p {
  color: #586b67;
  font-size: clamp(1rem, 1.22vw, 1.14rem);
  line-height: 1.5;
}

.apple-feature-product img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(23, 53, 49, 0.12));
}

.apple-feature-product .tile-meta,
.apple-family-card .tile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 18px;
}

.apple-feature-product small,
.apple-family-card small {
  display: inline-flex;
  color: var(--deep);
  font-weight: 600;
}

.apple-family-section,
.apple-knowledge-section,
.apple-inquiry-section {
  background: #f5f5f7;
}

.apple-family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1220px;
  margin: 0 auto;
}

.apple-family-card {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  text-align: center;
  background: #fff;
}

.apple-family-card img {
  order: 4;
  width: 100%;
  max-height: 310px;
  margin-top: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(23, 53, 49, 0.08));
}

.apple-family-card h3 {
  max-width: 12ch;
  margin: 8px auto 12px;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1;
}

.apple-family-card p {
  max-width: 36ch;
  margin-inline: auto;
}

.apple-family-card .tile-meta {
  justify-content: center;
}

.apple-process-section {
  background: #fff;
}

.apple-process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  max-width: 1220px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(203, 222, 213, 0.9);
}

.apple-process-steps article {
  min-height: 330px;
  padding: clamp(24px, 2.8vw, 36px);
  background: linear-gradient(180deg, #fff, #f7fbf8);
}

.apple-process-steps span,
.apple-capability-row strong,
.apple-knowledge-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 600;
}

.apple-process-steps h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 1.55vw, 1.52rem);
}

.apple-process-steps p {
  color: #5f706c;
}

.apple-knowledge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1220px;
  margin: 0 auto;
}

.apple-knowledge-grid .benefit-card {
  min-height: 340px;
  padding: clamp(26px, 3vw, 38px);
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.apple-knowledge-grid .benefit-card--wide,
.apple-knowledge-grid .benefit-card:nth-child(2) {
  grid-column: auto;
}

.apple-knowledge-grid .benefit-card h3 {
  max-width: 14ch;
  font-size: clamp(1.45rem, 2.2vw, 2.28rem);
  line-height: 1.06;
}

.apple-knowledge-grid .benefit-card p {
  color: #5f706c;
  font-weight: 400;
}

.apple-capability-section {
  background: #fff;
}

.apple-capability-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1220px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(203, 222, 213, 0.9);
}

.apple-capability-row article {
  min-height: 250px;
  padding: clamp(28px, 3.4vw, 46px);
  background: #f9fcfa;
}

.apple-capability-row strong {
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: 0;
}

.apple-capability-row span {
  color: #5f706c;
  line-height: 1.55;
}

.apple-inquiry-section {
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  max-width: none;
}

.apple-inquiry-section .inquiry-copy,
.apple-inquiry-section .inquiry-form {
  max-width: 620px;
}

.apple-inquiry-section .inquiry-copy {
  justify-self: end;
}

.apple-inquiry-section .inquiry-form {
  justify-self: start;
}

@media (max-width: 1080px) {
  .apple-home__hero {
    min-height: 760px;
  }

  .apple-feature-product,
  .apple-inquiry-section {
    grid-template-columns: 1fr;
  }

  .apple-feature-product {
    text-align: center;
  }

  .apple-feature-product__copy,
  .apple-inquiry-section .inquiry-copy,
  .apple-inquiry-section .inquiry-form {
    max-width: 720px;
    justify-self: center;
  }

  .apple-feature-product .tile-meta {
    justify-content: center;
  }

  .apple-process-steps,
  .apple-knowledge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .apple-home {
    gap: 10px;
  }

  .apple-home__hero {
    min-height: 720px;
    padding-top: 112px;
    padding-bottom: 58px;
  }

  .apple-home__hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .apple-home__hero .hero-lead {
    font-size: 1.04rem;
  }

  .apple-section {
    padding-block: clamp(54px, 14vw, 82px);
  }

  .apple-section__intro {
    margin-bottom: 30px;
  }

  .apple-section__intro h2 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }

  .apple-feature-product,
  .apple-family-card,
  .apple-process-steps article,
  .apple-knowledge-grid .benefit-card,
  .apple-capability-row article {
    min-height: auto;
    padding: 28px;
  }

  .apple-feature-product h3,
  .apple-family-card h3 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .apple-feature-product img,
  .apple-family-card img {
    max-height: 260px;
  }

  .apple-family-grid,
  .apple-process-steps,
  .apple-knowledge-grid,
  .apple-capability-row {
    grid-template-columns: 1fr;
  }

  .apple-process-steps span,
  .apple-capability-row strong,
  .apple-knowledge-grid span {
    margin-bottom: 22px;
  }
}

/* Realistic MUMENG pass: more product proof, less abstract showcase spacing. */
.apple-home__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.56fr);
  gap: clamp(28px, 6vw, 92px);
  min-height: calc(100vh - 12px);
  justify-content: initial;
  text-align: left;
}

.apple-home__hero .hero-content {
  max-width: 760px;
  margin: 0;
}

.apple-home__hero h1 {
  max-width: 12.5ch;
  margin-inline: 0;
  font-size: clamp(3.1rem, 6vw, 5.65rem);
}

.apple-home__hero .hero-lead {
  max-width: 680px;
  margin-inline: 0;
}

.apple-home__hero .hero-actions,
.apple-home__hero .hero-proof-row {
  justify-content: flex-start;
}

.hero-sourcing-card {
  position: relative;
  align-self: center;
  max-width: 430px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  color: #f8fcf9;
  background:
    linear-gradient(180deg, rgba(11, 37, 33, 0.74), rgba(11, 37, 33, 0.58)),
    rgba(11, 37, 33, 0.6);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.hero-sourcing-card span {
  display: block;
  margin-bottom: 16px;
  color: rgba(244, 252, 247, 0.76);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-sourcing-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-sourcing-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-sourcing-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(244, 252, 247, 0.9);
  font-size: 0.94rem;
  line-height: 1.42;
}

.hero-sourcing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #cbe6d7;
}

.real-proof-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  background: #f5f5f7;
}

.real-proof-section article {
  display: grid;
  grid-template-rows: minmax(260px, 0.82fr) auto;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.real-proof-section img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  background: #f7f7f5;
}

.real-proof-section article:nth-child(2) img {
  object-fit: contain;
  padding: 34px;
  background: #111;
}

.real-proof-section div {
  padding: clamp(22px, 2.7vw, 34px);
}

.real-proof-section span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 600;
}

.real-proof-section h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  line-height: 1.06;
}

.real-proof-section p {
  margin-bottom: 0;
  color: #5f706c;
  line-height: 1.54;
}

.apple-section {
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.apple-section__intro {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.apple-section__intro h2 {
  max-width: 14ch;
}

.apple-feature-product {
  min-height: 540px;
  border: 1px solid rgba(203, 222, 213, 0.72);
  background:
    linear-gradient(135deg, rgba(245, 251, 247, 0.92), rgba(255, 255, 255, 0.96)),
    #fff;
  box-shadow: 0 18px 46px rgba(23, 53, 49, 0.06);
}

.apple-feature-product img {
  border: 1px solid rgba(203, 222, 213, 0.6);
  border-radius: 8px;
  background: #fff;
}

.apple-family-card {
  min-height: 575px;
  align-items: stretch;
  border: 1px solid rgba(220, 226, 223, 0.86);
  text-align: left;
  box-shadow: 0 10px 28px rgba(23, 53, 49, 0.04);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.apple-family-card:hover,
.apple-family-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(53, 121, 110, 0.28);
  box-shadow: 0 18px 44px rgba(23, 53, 49, 0.09);
  outline: 0;
}

.apple-family-card img {
  order: 0;
  height: 240px;
  max-height: none;
  margin: 0 0 24px;
  border-radius: 8px;
  object-fit: contain;
  background:
    linear-gradient(135deg, #fbfaf7, #f2f7f3);
  transition: transform 360ms var(--ease-out), filter 360ms var(--ease-out);
}

.apple-family-card:hover img,
.apple-family-card:focus-visible img {
  transform: scale(1.025);
  filter: saturate(1.02) contrast(1.02);
}

.apple-family-card h3 {
  margin-inline: 0;
}

.apple-family-card p {
  max-width: none;
  margin-inline: 0;
}

.apple-family-card .tile-meta {
  justify-content: flex-start;
}

.apple-card-facts {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.apple-card-facts li {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(53, 121, 110, 0.14);
  border-radius: 6px;
  color: #36524d;
  background: rgba(242, 248, 244, 0.84);
  font-size: 0.88rem;
  line-height: 1.3;
}

.apple-family-card small,
.apple-feature-product small {
  margin-top: auto;
  min-height: 34px;
  align-items: center;
}

.apple-family-card small::after,
.apple-feature-product small::after {
  content: ">";
  margin-left: 8px;
  transition: transform 180ms var(--ease-out);
}

.apple-family-card:hover small::after,
.apple-family-card:focus-visible small::after,
.apple-feature-product:hover small::after,
.apple-feature-product:focus-visible small::after {
  transform: translateX(3px);
}

.apple-process-steps article,
.apple-capability-row article,
.apple-knowledge-grid .benefit-card {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

@media (max-width: 1080px) {
  .apple-home__hero {
    grid-template-columns: 1fr;
    align-content: center;
    text-align: center;
  }

  .apple-home__hero .hero-content,
  .hero-sourcing-card {
    margin-inline: auto;
  }

  .apple-home__hero h1,
  .apple-home__hero .hero-lead {
    margin-inline: auto;
  }

  .apple-home__hero .hero-actions,
  .apple-home__hero .hero-proof-row {
    justify-content: center;
  }

  .real-proof-section {
    grid-template-columns: 1fr;
  }

  .real-proof-section article {
    grid-template-columns: minmax(260px, 0.84fr) minmax(280px, 1fr);
    grid-template-rows: auto;
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .apple-home__hero {
    min-height: auto;
    padding-bottom: 44px;
    text-align: left;
  }

  .apple-home__hero .hero-content,
  .hero-sourcing-card,
  .apple-home__hero h1,
  .apple-home__hero .hero-lead {
    margin-inline: 0;
  }

  .apple-home__hero .hero-actions,
  .apple-home__hero .hero-proof-row {
    justify-content: flex-start;
  }

  .hero-sourcing-card {
    width: 100%;
  }

  .real-proof-section article {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .real-proof-section img {
    height: 260px;
  }

  .apple-feature-product {
    text-align: left;
  }

  .apple-feature-product .tile-meta {
    justify-content: flex-start;
  }

  .apple-family-card {
    text-align: left;
  }

  .apple-family-card img {
    height: 210px;
  }
}

.immersive-story {
  --story-progress: 0;
  position: relative;
  min-height: 440vh;
  color: #fff;
  background: #0b211d;
}

.immersive-story,
.immersive-story * {
  letter-spacing: 0;
}

.immersive-story__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  background: #0b211d;
}

.immersive-story__backdrop,
.immersive-story__depth,
.immersive-hotspots,
.immersive-story__light {
  position: absolute;
  inset: 0;
}

.immersive-bg {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  max-width: none;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  filter: saturate(0.92) brightness(0.64);
  transition:
    opacity 820ms var(--ease-out),
    transform 1100ms var(--ease-out),
    filter 820ms var(--ease-out);
}

.immersive-bg--bedroom {
  opacity: 1;
}

.immersive-story[data-scene="0"] .immersive-bg--bedroom {
  opacity: 1;
  transform: scale(1.08) translate3d(0, 0, 0);
  filter: saturate(0.9) brightness(0.66);
}

.immersive-story[data-scene="1"] .immersive-bg--bedroom {
  opacity: 0.64;
  transform: scale(1.14) translate3d(-1.5%, -1.2%, 0);
  filter: saturate(0.86) brightness(0.54) blur(1px);
}

.immersive-story[data-scene="2"] .immersive-bg--bedroom {
  opacity: 0.18;
  transform: scale(1.18) translate3d(-2.5%, -2%, 0);
}

.immersive-story[data-scene="2"] .immersive-bg--factory,
.immersive-story[data-scene="3"] .immersive-bg--catalog {
  opacity: 0.72;
  transform: scale(1.04);
  filter: saturate(0.9) brightness(0.58);
}

.immersive-story[data-scene="3"] .immersive-bg--factory {
  opacity: 0.2;
}

.immersive-story__light {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 68% 26%, rgba(255, 214, 170, 0.35), transparent 25%),
    radial-gradient(circle at 26% 78%, rgba(188, 214, 255, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(5, 25, 22, 0.78), rgba(5, 25, 22, 0.23) 45%, rgba(5, 25, 22, 0.74));
}

.immersive-story__light::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 25, 22, 0.52), transparent 28%, rgba(5, 25, 22, 0.64)),
    rgba(9, 34, 30, 0.18);
}

.immersive-story__depth {
  z-index: 2;
  pointer-events: none;
  perspective: 1400px;
}

.immersive-object {
  position: absolute;
  max-width: none;
  object-fit: contain;
  opacity: 0;
  transform-style: preserve-3d;
  filter: drop-shadow(0 36px 46px rgba(0, 0, 0, 0.34));
  transition:
    opacity 760ms var(--ease-out),
    transform 980ms var(--ease-out),
    filter 760ms var(--ease-out);
}

.immersive-object--pillow {
  right: clamp(28px, 9vw, 150px);
  bottom: clamp(68px, 11vh, 130px);
  width: clamp(360px, 43vw, 760px);
  opacity: 1;
  transform: translate3d(0, 0, 120px) rotateX(5deg) rotateY(-16deg) scale(0.94);
}

.immersive-story[data-scene="1"] .immersive-object--pillow {
  opacity: 0.38;
  transform: translate3d(6vw, -6vh, 40px) rotateX(10deg) rotateY(-34deg) scale(0.72);
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.28)) blur(1px);
}

.immersive-story[data-scene="2"] .immersive-object--pillow,
.immersive-story[data-scene="3"] .immersive-object--pillow {
  opacity: 0;
  transform: translate3d(14vw, -10vh, -120px) rotateY(-58deg) scale(0.5);
}

.immersive-object--latex {
  left: 50%;
  top: 50%;
  width: clamp(330px, 38vw, 650px);
  transform: translate3d(-30%, -42%, 80px) rotateX(8deg) rotateY(22deg) scale(0.72);
}

.immersive-story[data-scene="1"] .immersive-object--latex {
  opacity: 1;
  transform: translate3d(-22%, -48%, 150px) rotateX(2deg) rotateY(0) scale(1);
}

.immersive-story[data-scene="2"] .immersive-object--latex {
  opacity: 0.3;
  transform: translate3d(-54%, -48%, 10px) rotateY(18deg) scale(0.64);
}

.immersive-object--factory {
  right: clamp(40px, 8vw, 140px);
  top: clamp(120px, 17vh, 180px);
  width: clamp(320px, 34vw, 600px);
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transform: translate3d(7vw, 4vh, 40px) rotateY(-18deg) scale(0.82);
}

.immersive-story[data-scene="2"] .immersive-object--factory {
  opacity: 0.94;
  transform: translate3d(0, 0, 130px) rotateY(-5deg) scale(1);
}

.immersive-story[data-scene="3"] .immersive-object--factory {
  opacity: 0;
  transform: translate3d(10vw, 2vh, -120px) rotateY(-28deg) scale(0.72);
}

.immersive-object--mattress {
  right: clamp(36px, 7vw, 126px);
  bottom: clamp(70px, 10vh, 128px);
  width: clamp(360px, 40vw, 700px);
  border-radius: 10px;
  transform: translate3d(8vw, 8vh, 80px) rotateX(7deg) rotateY(-18deg) scale(0.78);
}

.immersive-story[data-scene="3"] .immersive-object--mattress {
  opacity: 0.95;
  transform: translate3d(0, 0, 150px) rotateX(3deg) rotateY(-5deg) scale(1);
}

.immersive-story__copy {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.immersive-copy {
  position: absolute;
  left: clamp(24px, 6vw, 92px);
  bottom: clamp(70px, 12vh, 132px);
  width: min(560px, calc(100vw - 48px));
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 260ms var(--ease-out),
    transform 420ms var(--ease-out);
}

.immersive-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.immersive-copy h1,
.immersive-copy h2 {
  max-width: 12.6ch;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.immersive-copy--catalog h2 {
  max-width: 12ch;
  font-size: clamp(40px, 5.2vw, 74px);
}

.immersive-copy p {
  max-width: 42rem;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.36vw, 20px);
  line-height: 1.52;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.immersive-copy .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  pointer-events: auto;
}

.immersive-story[data-scene="0"] .immersive-copy--brief,
.immersive-story[data-scene="1"] .immersive-copy--material,
.immersive-story[data-scene="2"] .immersive-copy--factory,
.immersive-story[data-scene="3"] .immersive-copy--catalog {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.immersive-hotspots {
  z-index: 5;
  pointer-events: none;
}

.story-hotspot {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 156px;
  padding: 13px 15px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.28), transparent 34%),
    rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px) saturate(1.18);
  transform: translate3d(0, 18px, 0) scale(0.96);
  transition:
    opacity 420ms var(--ease-out),
    transform 420ms var(--ease-out),
    border-color 180ms var(--ease-out),
    background 180ms var(--ease-out);
}

.story-hotspot::before {
  content: "";
  position: absolute;
  left: 14px;
  top: -22px;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(194, 229, 216, 0.98);
  box-shadow: 0 0 0 8px rgba(194, 229, 216, 0.22), 0 0 28px rgba(255, 255, 255, 0.62);
}

.story-hotspot span {
  font-size: 13px;
  font-weight: 700;
}

.story-hotspot strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
}

.story-hotspot:hover,
.story-hotspot:focus-visible,
.story-hotspot.is-active {
  border-color: rgba(255, 255, 255, 0.62);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.34), transparent 36%),
    rgba(255, 255, 255, 0.2);
  transform: translate3d(0, 10px, 0) scale(1);
  outline: 0;
}

.story-hotspot--pillow {
  right: clamp(280px, 29vw, 520px);
  bottom: clamp(285px, 38vh, 390px);
}

.story-hotspot--mattress {
  right: clamp(90px, 12vw, 230px);
  bottom: clamp(215px, 28vh, 310px);
}

.story-hotspot--dunlop {
  right: clamp(380px, 40vw, 680px);
  bottom: clamp(120px, 18vh, 210px);
}

.story-hotspot--travel {
  right: clamp(88px, 13vw, 240px);
  bottom: clamp(110px, 16vh, 190px);
}

.immersive-story[data-scene="0"] .story-hotspot--pillow,
.immersive-story[data-scene="0"] .story-hotspot--travel,
.immersive-story[data-scene="3"] .story-hotspot {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.immersive-story[data-scene="0"] .story-hotspot--mattress,
.immersive-story[data-scene="0"] .story-hotspot--dunlop {
  opacity: 0;
}

.immersive-story__rail {
  position: absolute;
  right: clamp(18px, 3vw, 46px);
  top: 50%;
  z-index: 6;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.immersive-story__rail button {
  display: grid;
  grid-template-columns: 28px minmax(48px, auto);
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 10px 0 0;
  border: 0;
  color: rgba(255, 255, 255, 0.56);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.immersive-story__rail button span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transition: width 180ms var(--ease-out), background 180ms var(--ease-out);
}

.immersive-story__rail button.is-active,
.immersive-story__rail button:hover,
.immersive-story__rail button:focus-visible {
  color: #fff;
  transform: translateX(-4px);
  outline: 0;
}

.immersive-story__rail button.is-active span {
  width: 44px;
  background: #fff;
}

.immersive-story__steps {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  height: 0;
  pointer-events: none;
}

@media (max-width: 1080px) {
  .immersive-story {
    min-height: 390vh;
  }

  .immersive-story__stage {
    min-height: 680px;
  }

  .immersive-copy {
    left: clamp(20px, 5vw, 48px);
    bottom: clamp(52px, 8vh, 92px);
  }

  .immersive-copy h1,
  .immersive-copy h2 {
    font-size: clamp(38px, 7vw, 68px);
  }

  .immersive-object--pillow,
  .immersive-object--mattress {
    right: clamp(10px, 4vw, 46px);
    width: clamp(330px, 52vw, 620px);
  }

  .immersive-object--latex,
  .immersive-object--factory {
    width: clamp(300px, 48vw, 560px);
  }

  .story-hotspot {
    min-width: 142px;
  }

  .story-hotspot--pillow {
    right: 40vw;
  }

  .story-hotspot--mattress,
  .story-hotspot--travel {
    right: 5vw;
  }

  .story-hotspot--dunlop {
    right: 45vw;
  }
}

@media (max-width: 760px) {
  .immersive-story {
    min-height: 360vh;
  }

  .immersive-story__stage {
    height: 100svh;
    min-height: 620px;
  }

  .immersive-bg {
    inset: -14%;
    width: 128%;
    height: 128%;
  }

  .immersive-story__light {
    background:
      radial-gradient(circle at 68% 24%, rgba(255, 214, 170, 0.22), transparent 26%),
      linear-gradient(180deg, rgba(5, 25, 22, 0.5), rgba(5, 25, 22, 0.3) 38%, rgba(5, 25, 22, 0.82));
  }

  .immersive-copy {
    left: 20px;
    right: 20px;
    bottom: 42px;
    width: auto;
  }

  .immersive-copy h1,
  .immersive-copy h2 {
    max-width: 12.6ch;
    font-size: clamp(34px, 11vw, 50px);
    line-height: 1.02;
  }

  .immersive-copy p {
    max-width: 22rem;
    font-size: 15px;
  }

  .immersive-copy .hero-actions {
    gap: 8px;
  }

  .immersive-copy .button {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .immersive-object--pillow,
  .immersive-object--mattress {
    right: -120px;
    top: 116px;
    bottom: auto;
    width: 380px;
  }

  .immersive-object--latex {
    left: 48%;
    top: 38%;
    width: 340px;
  }

  .immersive-object--factory {
    right: -56px;
    top: 22%;
    width: 330px;
  }

  .immersive-story__rail {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 16px;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    transform: none;
  }

  .immersive-story__rail button {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 6px;
    min-height: 26px;
    padding: 0;
    font-size: 0;
  }

  .immersive-story__rail button span,
  .immersive-story__rail button.is-active span {
    width: 100%;
  }

  .story-hotspot {
    min-width: 128px;
    padding: 10px 11px;
  }

  .story-hotspot--pillow,
  .story-hotspot--dunlop {
    left: 22px;
    right: auto;
    bottom: 36vh;
  }

  .story-hotspot--mattress,
  .story-hotspot--travel {
    right: 18px;
    bottom: 29vh;
  }

  .story-hotspot--dunlop {
    bottom: 26vh;
  }

  .story-hotspot--mattress {
    bottom: 36vh;
  }

  .immersive-story[data-scene="0"] .story-hotspot--pillow,
  .immersive-story[data-scene="0"] .story-hotspot--travel {
    opacity: 0;
    pointer-events: none;
  }

  .immersive-story[data-scene="3"] .story-hotspot--pillow {
    top: 132px;
    bottom: auto;
  }

  .immersive-story[data-scene="3"] .story-hotspot--mattress {
    top: 132px;
    bottom: auto;
  }

  .immersive-story[data-scene="3"] .story-hotspot--dunlop {
    top: 228px;
    bottom: auto;
  }

  .immersive-story[data-scene="3"] .story-hotspot--travel {
    top: 228px;
    bottom: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .immersive-bg,
  .immersive-object,
  .immersive-copy,
  .story-hotspot,
  .immersive-story__rail button,
  .immersive-story__rail button span {
    transition: none;
  }
}

.purchase-hero {
  position: relative;
  min-height: 100svh;
  padding: 92px clamp(16px, 3.8vw, 54px) 18px;
  color: #fff;
  background: #0d241f;
}

.purchase-hero,
.purchase-hero * {
  letter-spacing: 0;
}

.purchase-hero__scene {
  --scene-x: 0;
  --scene-y: 0;
  position: relative;
  min-height: calc(100svh - 132px);
  overflow: hidden;
  isolation: isolate;
  border-radius: 8px;
  background: #102821;
}

.purchase-hero__room {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  max-width: none;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.66);
  transform: translate3d(calc(var(--scene-x) * -10px), calc(var(--scene-y) * -8px), 0) scale(1.05);
  transition: transform 360ms var(--ease-out);
}

.purchase-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 30%, rgba(255, 220, 174, 0.28), transparent 26%),
    radial-gradient(circle at 56% 76%, rgba(194, 232, 217, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(6, 26, 22, 0.84), rgba(6, 26, 22, 0.34) 50%, rgba(6, 26, 22, 0.8));
}

.purchase-hero__copy {
  position: absolute;
  left: clamp(28px, 5vw, 74px);
  top: clamp(78px, 14vh, 150px);
  z-index: 4;
  width: min(610px, 44vw);
}

.purchase-hero__copy span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 17px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 700;
}

.purchase-hero__copy h1 {
  max-width: 11.8ch;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(44px, 5.9vw, 84px);
  font-weight: 650;
  line-height: 1;
}

.purchase-hero__copy p {
  max-width: 46rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.52;
}

.purchase-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 620px;
}

.purchase-hero__proof b {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(194, 232, 217, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.09);
  font-size: 12px;
  font-weight: 600;
}

.purchase-hotspots {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.purchase-hotspot {
  position: absolute;
  display: grid;
  min-width: 166px;
  gap: 3px;
  padding: 12px 14px 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  pointer-events: auto;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.24), transparent 34%),
    rgba(21, 43, 38, 0.64);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

.purchase-hotspot::before {
  content: "";
  position: absolute;
  left: 14px;
  top: -20px;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: #c9eadc;
  box-shadow: 0 0 0 8px rgba(201, 234, 220, 0.2), 0 0 24px rgba(255, 255, 255, 0.45);
}

.purchase-hotspot span {
  font-size: 13px;
  font-weight: 700;
}

.purchase-hotspot strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
}

.purchase-hotspot:hover,
.purchase-hotspot:focus-visible,
.purchase-hotspot.is-active {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.32), transparent 36%),
    rgba(31, 68, 59, 0.76);
  transform: translateY(-4px);
  outline: 0;
}

.purchase-hotspot.is-tapped {
  transform: translateY(-4px) scale(0.98);
}

.purchase-hotspot--pillow {
  right: clamp(540px, 48vw, 820px);
  bottom: clamp(300px, 42vh, 410px);
}

.purchase-hotspot--mattress {
  right: clamp(440px, 38vw, 680px);
  bottom: clamp(120px, 18vh, 220px);
}

.purchase-hotspot--shredded {
  left: clamp(520px, 42vw, 700px);
  bottom: clamp(76px, 12vh, 130px);
}

.purchase-hotspot--dunlop {
  right: clamp(420px, 39vw, 590px);
  bottom: clamp(250px, 35vh, 340px);
}

.purchase-hotspot--travel {
  right: clamp(430px, 39vw, 660px);
  bottom: clamp(430px, 58vh, 520px);
}

.purchase-panel {
  position: absolute;
  top: clamp(34px, 7vh, 74px);
  right: clamp(24px, 4vw, 58px);
  z-index: 6;
  width: min(430px, 31vw);
  max-height: calc(100% - 70px);
  overflow: auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  color: #183531;
  background: rgba(250, 253, 249, 0.92);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.22);
}

.purchase-panel__head span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.purchase-panel__head h2 {
  margin-bottom: 10px;
  color: #102d28;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.05;
}

.purchase-panel__head p {
  margin-bottom: 16px;
  color: #435a55;
  font-size: 14px;
  line-height: 1.48;
}

.purchase-panel__video {
  position: relative;
  height: 172px;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 8px;
  background: #e9f2ec;
}

.purchase-panel__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.purchase-panel__video span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(16, 45, 40, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.purchase-panel__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.purchase-panel__specs button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(53, 121, 110, 0.18);
  border-radius: 999px;
  color: #2d4b45;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(53, 121, 110, 0.12), transparent 38%),
    #f7fbf8;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), border-color 160ms var(--ease-out), background 160ms var(--ease-out), color 160ms var(--ease-out);
}

.purchase-panel__specs button:hover,
.purchase-panel__specs button:focus-visible,
.purchase-panel__specs button.is-active {
  border-color: rgba(13, 91, 81, 0.48);
  color: #fff;
  background: var(--deep);
  transform: translateY(-2px);
  outline: 0;
}

.purchase-panel__brief {
  margin-bottom: 15px;
  padding: 13px;
  border: 1px solid rgba(53, 121, 110, 0.16);
  border-radius: 8px;
  background: #edf7f1;
}

.purchase-panel__brief strong,
.purchase-panel__columns strong {
  display: block;
  margin-bottom: 7px;
  color: #102d28;
  font-size: 13px;
}

.purchase-panel__brief p {
  margin: 0;
  color: #435a55;
  font-size: 13px;
  line-height: 1.42;
}

.purchase-panel__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.purchase-panel__columns ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.purchase-panel__columns li {
  color: #526b65;
  font-size: 12px;
  line-height: 1.38;
}

.purchase-panel__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.purchase-panel__actions .button {
  min-height: 42px;
  padding-inline: 12px;
  font-size: 12px;
}

.purchase-panel__actions .button-light {
  color: var(--deep);
  border-color: rgba(13, 91, 81, 0.28);
  background: #fff;
}

.purchase-switcher {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.purchase-switcher button {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(194, 232, 217, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.18), transparent 40%),
    rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}

.purchase-switcher button span {
  color: rgba(201, 234, 220, 0.84);
  font-size: 12px;
}

.purchase-switcher button:hover,
.purchase-switcher button:focus-visible,
.purchase-switcher button.is-active {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.26), transparent 40%),
    rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
  outline: 0;
}

@media (max-width: 1180px) {
  .purchase-hero {
    padding-inline: 14px;
  }

  .purchase-hero__scene {
    min-height: 980px;
  }

  .purchase-hero__copy {
    width: min(620px, calc(100% - 40px));
  }

  .purchase-panel {
    top: auto;
    right: 22px;
    bottom: 22px;
    width: min(460px, calc(100% - 44px));
  }

  .purchase-hotspot--pillow,
  .purchase-hotspot--mattress,
  .purchase-hotspot--dunlop,
  .purchase-hotspot--travel {
    right: auto;
    left: clamp(28px, 6vw, 70px);
  }

  .purchase-hotspot--pillow {
    bottom: 510px;
  }

  .purchase-hotspot--mattress {
    bottom: 440px;
  }

  .purchase-hotspot--dunlop {
    bottom: 370px;
  }

  .purchase-hotspot--travel {
    bottom: 300px;
  }
}

@media (max-width: 760px) {
  .purchase-hero {
    padding: 68px 0 10px;
  }

  .purchase-hero__scene {
    display: grid;
    min-height: auto;
    gap: 18px;
    padding: 58px 16px 18px;
    overflow: hidden;
    border-radius: 0;
  }

  .purchase-hero__copy {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
  }

  .purchase-hero__copy h1 {
    max-width: 11.5ch;
    font-size: clamp(38px, 12vw, 52px);
  }

  .purchase-hero__copy p {
    font-size: 15px;
  }

  .purchase-hero__proof {
    gap: 6px;
  }

  .purchase-hero__proof b {
    min-height: 30px;
    font-size: 11px;
  }

  .purchase-hotspots {
    display: none;
  }

  .purchase-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    max-height: none;
    padding: 16px;
  }

  .purchase-panel__head h2 {
    font-size: 28px;
  }

  .purchase-panel__video {
    height: 140px;
  }

  .purchase-panel__columns,
  .purchase-panel__actions {
    grid-template-columns: 1fr;
  }

  .purchase-switcher {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 10px;
  }

  .purchase-switcher button {
    min-height: 48px;
    justify-content: flex-start;
    padding-inline: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .purchase-hero__room,
  .purchase-hotspot,
  .purchase-panel__specs button,
  .purchase-switcher button {
    transition: none;
  }
}

.attract-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #0b211d;
}

.attract-hero,
.attract-hero * {
  letter-spacing: 0;
}

.attract-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) brightness(0.72);
}

.attract-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 220, 174, 0.32), transparent 30%),
    radial-gradient(circle at 22% 75%, rgba(190, 221, 210, 0.2), transparent 32%),
    linear-gradient(90deg, rgba(4, 24, 20, 0.84), rgba(4, 24, 20, 0.42) 48%, rgba(4, 24, 20, 0.76)),
    linear-gradient(180deg, rgba(4, 24, 20, 0.48), transparent 40%, rgba(4, 24, 20, 0.62));
}

.attract-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  width: min(1160px, calc(100% - clamp(32px, 9vw, 144px)));
  flex-direction: column;
  justify-content: center;
  margin-left: clamp(20px, 6vw, 112px);
  padding: 108px 0 110px;
}

.attract-hero__content span,
.experience-strip span {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 700;
}

.attract-hero__content h1 {
  max-width: 12.5ch;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 650;
  line-height: 0.98;
}

.attract-hero__content p {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.42vw, 22px);
  line-height: 1.55;
}

.attract-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.attract-hero__mini {
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  bottom: clamp(24px, 6vh, 66px);
  z-index: 3;
  display: grid;
  grid-template-columns: 210px minmax(180px, 260px);
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(12, 38, 33, 0.64);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.attract-hero__mini video {
  width: 210px;
  height: 118px;
  border-radius: 6px;
  object-fit: cover;
  background: #102d28;
}

.attract-hero__mini strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.attract-hero__mini span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.42;
}

.product-lab {
  padding-top: 28px;
  background: #0b211d;
}

.product-lab .purchase-hero__scene {
  min-height: calc(100svh - 118px);
}

.product-lab .purchase-hero__copy h1 {
  max-width: 12.2ch;
  font-size: clamp(40px, 5.4vw, 74px);
}

.experience-strip {
  display: grid;
  gap: 12px;
  padding: 12px;
  color: #fff;
  background: #0b211d;
}

.experience-strip__feature,
.experience-strip__grid article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 8px;
  background: #102d28;
}

.experience-strip__feature {
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: stretch;
}

.experience-strip__feature video,
.experience-strip__grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) brightness(0.9);
}

.experience-strip__feature > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 74px);
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 234, 220, 0.12), transparent 30%),
    #0f2b26;
}

.experience-strip h2,
.experience-strip h3 {
  color: #fff;
  letter-spacing: 0;
}

.experience-strip h2 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
}

.experience-strip p {
  max-width: 42rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.55;
}

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

.experience-strip__grid article {
  min-height: 470px;
}

.experience-strip__grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 28, 24, 0.12), rgba(6, 28, 24, 0.78));
}

.experience-strip__grid article > span,
.experience-strip__grid article > h3 {
  position: absolute;
  left: clamp(24px, 3vw, 44px);
  z-index: 2;
}

.experience-strip__grid article > span {
  bottom: clamp(118px, 13vw, 142px);
}

.experience-strip__grid article > h3 {
  bottom: clamp(36px, 5vw, 58px);
  max-width: 14ch;
  margin: 0;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.05;
}

@media (max-width: 1080px) {
  .attract-hero__content {
    width: calc(100% - 48px);
    margin-left: 24px;
  }

  .attract-hero__mini {
    left: 24px;
    right: 24px;
    grid-template-columns: 180px 1fr;
  }

  .experience-strip__feature,
  .experience-strip__grid {
    grid-template-columns: 1fr;
  }

  .experience-strip__feature video {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .attract-hero__content {
    width: calc(100% - 32px);
    min-height: 92svh;
    margin-left: 16px;
    padding-top: 96px;
    padding-bottom: 260px;
  }

  .attract-hero__content h1 {
    max-width: 11ch;
    font-size: clamp(40px, 12vw, 54px);
  }

  .attract-hero__content p {
    font-size: 15px;
  }

  .attract-hero__mini {
    grid-template-columns: 1fr;
  }

  .attract-hero__mini video {
    width: 100%;
    height: 150px;
  }

  .product-lab {
    padding-top: 0;
  }

  .experience-strip {
    padding: 10px 0;
  }

  .experience-strip__feature,
  .experience-strip__grid article {
    border-radius: 0;
  }

  .experience-strip__feature {
    min-height: auto;
  }

  .experience-strip__feature video {
    min-height: 320px;
  }

  .experience-strip__feature > div {
    padding: 34px 20px 42px;
  }

  .experience-strip h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .experience-strip__grid article {
    min-height: 420px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .attract-hero__video,
  .attract-hero__mini video,
  .experience-strip video {
    display: none;
  }
}
