/* Wamatex · Photographic catalogue and interactive material studio.
   Original Wamatex assets, rounded surfaces, ten homepage sections.
   Contrast: text 13.91, muted 5.37, white/accent 5.14.
   See design/review.md and .tastemaker/style-lock.md. */
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
:root {
  --paper: #f7f6f2;
  --surface: #ebe9e2;
  --ink: #252725;
  --muted: #65665f;
  --accent: #ba4a1d;
  --white: #fff;
  --line: #d4d2ca;
  --dark: #252725;
  --on-dark-muted: #bcbfb5;
  --dark-line: #52554f;
  --hero-overlay: rgb(0 0 0 / 56%);
  --white-line: rgb(255 255 255 / 42%);
  --modal-overlay: rgb(17 20 17 / 60%);
  --font: Manrope, sans-serif;
  --gutter: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 200ms;
  --accordion-duration: 240ms;
  --radius-section: 32px;
  --radius-image: 24px;
  --radius-control: 12px;
  --radius-pill: 999px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.5 var(--font);
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) {
  overflow: hidden;
}
button,
input,
textarea {
  font: inherit;
}
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  border: 0;
  background: none;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
h2 {
  font-size: 60px;
  line-height: 1.08;
  letter-spacing: -0.055em;
}
::selection {
  color: var(--white);
  background: var(--accent);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
.hero :focus-visible,
.production-section :focus-visible,
.contact-section :focus-visible {
  outline-color: var(--white);
}
.page-width {
  width: 100%;
  max-width: 1640px;
  padding-inline: var(--gutter);
  margin-inline: auto;
}
.section-space {
  padding-block: 96px;
}
.eyebrow {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 12px 24px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  clip-path: inset(50%);
}
.skip-link:focus {
  transform: translateY(0);
  clip-path: none;
}
.icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}
.icon-arrow-up {
  --icon: url("assets/icons/arrow-up-right.svg");
}
.icon-arrow-right {
  --icon: url("assets/icons/arrow-right.svg");
}
.icon-arrow-left {
  --icon: url("assets/icons/arrow-left.svg");
}
.icon-arrow-down {
  --icon: url("assets/icons/arrow-down.svg");
}
.icon-search {
  --icon: url("assets/icons/magnifying-glass.svg");
}
.icon-close {
  --icon: url("assets/icons/x.svg");
}
.icon-download {
  --icon: url("assets/icons/download-simple.svg");
}
.icon-caret {
  --icon: url("assets/icons/caret-down.svg");
}
.icon-plus {
  --icon: url("assets/icons/plus.svg");
}
.site-header {
  height: 96px;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 20;
  max-width: 1800px;
  margin-inline: auto;
}
.brand {
  flex-shrink: 0;
}
.brand img {
  width: 188px;
  height: auto;
  filter: brightness(0);
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.desktop-nav a {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  padding-block: 12px;
  transition: color var(--fast) var(--ease);
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}
.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background-color var(--fast) var(--ease);
}
.language-menu {
  position: relative;
}
.language-menu summary {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.language-menu summary .icon {
  width: 12px;
  height: 12px;
}
.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.language-options a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
}
.language-code {
  display: inline-block;
  min-width: 32px;
  font-size: 12px;
  font-weight: 600;
}
.language-options [aria-current="page"] {
  color: var(--accent);
}
.menu-trigger {
  display: none;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0;
  font-size: 12px;
}
.menu-lines {
  position: relative;
  width: 24px;
  height: 16px;
}
.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 1px;
  background: currentColor;
  left: 0;
  transition: transform var(--fast) var(--ease);
}
.menu-lines::before {
  top: 4px;
}
.menu-lines::after {
  top: 12px;
}
.menu-trigger[aria-expanded="true"] .menu-lines::before {
  transform: translateY(4px) rotate(45deg);
}
.menu-trigger[aria-expanded="true"] .menu-lines::after {
  transform: translateY(-4px) rotate(-45deg);
}
.hero {
  position: relative;
  isolation: isolate;
  margin: 0 16px;
  min-height: 600px;
  height: calc(100svh - 128px);
  max-height: 1200px;
  color: var(--white);
  background: var(--ink);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-images,
.hero-slide,
.hero-image,
.hero-video,
.hero-images::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-images {
  z-index: -1;
}
.hero-images::after {
  content: "";
  background: var(--hero-overlay);
}
.hero-slide {
  opacity: 0;
  transition: opacity 400ms var(--ease);
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-image,
.hero-video {
  object-fit: cover;
  object-position: center;
}
.hero-video {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.hero-video.is-ready {
  opacity: 1;
}
.hero-content {
  width: 100%;
  min-width: 0;
  padding: 64px;
  margin-block: 0 48px;
  max-width: 850px;
}
.hero-intro {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.hero h1 {
  max-width: 800px;
  font-size: 96px;
  line-height: 1.08;
  letter-spacing: -0.055em;
}
.hero h1 > span {
  display: inline-block;
  white-space: nowrap;
}
.hero-description {
  font-size: 16px;
  line-height: 26px;
  max-width: 435px;
  margin-block: 24px 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 56px;
  padding: 12px 24px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  border: 1px solid transparent;
  transition:
    background-color var(--fast) var(--ease),
    color var(--fast) var(--ease),
    transform var(--fast) var(--ease);
}
.button .icon {
  width: 20px;
  height: 20px;
}
.button-white {
  color: var(--ink);
  background: var(--paper);
}
.button-dark {
  color: var(--white);
  background: var(--ink);
}
.button-accent {
  color: var(--white);
  background: var(--accent);
}
.hero-bottom {
  position: absolute;
  bottom: 32px;
  left: 64px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}
.hero-scroll .icon {
  width: 16px;
  height: 16px;
}
.hero-pagination {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-caption {
  font-size: 12px;
}
.slide-count {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.slide-count > :last-child {
  opacity: 0.65;
}
.slide-count-line {
  width: 48px;
  height: 1px;
  background: var(--white-line);
}
.hero-arrows {
  display: flex;
  gap: 8px;
}
.round-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  transition:
    color var(--fast) var(--ease),
    background-color var(--fast) var(--ease),
    transform var(--fast) var(--ease);
}
.round-button .icon {
  width: 20px;
  height: 20px;
}
.playback-icon {
  width: 12px;
  height: 14px;
  border-inline: 2px solid currentColor;
}
.autoplay-toggle[data-paused="true"] .playback-icon {
  width: 0;
  height: 0;
  border: 0;
  border-block: 7px solid transparent;
  border-left: 10px solid currentColor;
  margin-left: 3px;
}
.intro-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.15fr;
  align-items: center;
  gap: 32px;
  padding-block: 48px;
  position: relative;
}
.intro-strip::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: var(--line);
}
.intro-strip p {
  font-size: 12px;
  line-height: 22px;
  color: var(--muted);
}
.intro-strip strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.intro-strip p:first-child {
  font-size: 18px;
  line-height: 28px;
  color: var(--ink);
}
.intro-strip p:first-child strong {
  font-size: inherit;
  color: var(--accent);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 48px;
}
.section-heading .eyebrow {
  margin-bottom: 24px;
  color: var(--accent);
}
.section-heading-aside {
  max-width: 365px;
}
.section-heading-aside p {
  color: var(--muted);
  font-size: 14px;
  line-height: 24px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 44px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  transition: color var(--fast) var(--ease);
}
.text-link .icon {
  width: 18px;
  height: 18px;
}
.section-heading-aside .text-link {
  margin-top: 24px;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 32px 24px;
}
.product {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.product-featured {
  grid-row: span 2;
}
.product-image {
  position: relative;
  aspect-ratio: 1.45;
  overflow: hidden;
  background: var(--surface);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.product-featured .product-image {
  aspect-ratio: auto;
  flex: 1;
}
.product-featured .product-image img {
  position: absolute;
  inset: 0;
  object-position: 42% center;
}
.product:nth-child(2) .product-image img {
  object-position: center;
  transform: scale(1.24);
  transform-origin: center 20%;
}
.product:nth-child(4) .product-image img {
  object-position: center 60%;
}
.product-label {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  min-height: 64px;
}
.product-label h3 {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.035em;
}
.product-featured h3 {
  font-size: 24px;
  line-height: 32px;
}
.product-label p {
  margin-top: 4px;
  font-size: 12px;
  line-height: 20px;
  color: var(--muted);
}
.product-arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  height: 32px;
  width: 32px;
}
.product-arrow .icon {
  width: 20px;
  height: 20px;
  transition: transform var(--fast) var(--ease);
}
.mattress-section {
  background: var(--surface);
  padding-block: 96px;
}
.mattress-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.mattress-visual {
  position: relative;
  min-width: 0;
}
.mattress-image-wrap {
  aspect-ratio: 0.98;
  overflow: hidden;
  background: var(--paper);
}
.mattress-image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.24);
  transform-origin: center 20%;
}
.mattress-visual figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 16px;
  font-size: 12px;
}
.mattress-visual figcaption > :last-child {
  color: var(--muted);
}
.swatch-picker {
  position: absolute;
  bottom: 64px;
  left: 24px;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: var(--paper);
}
.swatch {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 2px solid transparent;
}
.swatch.is-selected {
  border-color: var(--ink);
}
.swatch img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.mattress-copy .eyebrow {
  margin-bottom: 24px;
}
.muted-heading {
  color: var(--muted);
}
.mattress-copy > p:not(.eyebrow) {
  max-width: 435px;
  color: var(--muted);
  font-size: 14px;
  line-height: 24px;
  margin-top: 32px;
}
.material-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-block: 24px;
  margin-block: 32px;
  border-block: 1px solid var(--line);
}
.material-facts > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.material-facts strong {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.material-facts small {
  font-size: 14px;
  letter-spacing: 0;
}
.material-facts span {
  font-size: 12px;
  color: var(--muted);
}
.mattress-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.mattress-actions .button {
  gap: 24px;
}
.production-section {
  background: var(--dark);
  color: var(--paper);
}
.production-heading {
  margin-bottom: 64px;
}
.production-heading .eyebrow {
  margin-bottom: 24px;
  color: var(--on-dark-muted);
}
.production-heading h2 {
  max-width: 920px;
}
.word-reveal .word {
  display: inline-block;
  opacity: 0.35;
  transition: opacity 700ms var(--ease);
}
.word-reveal .word.is-visible {
  opacity: 1;
}
.production-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.production-photo {
  min-width: 0;
}
.production-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: 45% center;
}
.production-photo figcaption {
  color: var(--on-dark-muted);
  font-size: 12px;
  line-height: 20px;
  margin-top: 16px;
}
.production-lead {
  font-size: 18px;
  line-height: 28px;
  max-width: 460px;
  margin-bottom: 32px;
}
.process-list {
  margin-bottom: 32px;
}
.process-list details {
  border-bottom: 1px solid var(--dark-line);
}
.process-list details:first-child {
  border-top: 1px solid var(--dark-line);
}
.process-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 24px;
  font-size: 14px;
}
.process-list .icon {
  width: 16px;
  height: 16px;
  margin-left: auto;
  transition: transform var(--fast) var(--ease);
}
.process-list details[open] .icon {
  transform: rotate(45deg);
}
.process-list details[data-expanded="false"] .icon {
  transform: rotate(0);
}
.process-list details p {
  color: var(--on-dark-muted);
  font-size: 14px;
  line-height: 24px;
  padding: 0 0 24px;
}
.text-link-light {
  color: var(--paper);
}
.quality-strip {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 32px;
  padding-top: 48px;
  margin-top: 64px;
  border-top: 1px solid var(--dark-line);
}
.quality-strip .eyebrow {
  color: var(--on-dark-muted);
  margin-bottom: 16px;
}
.quality-strip > div > p:last-child {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.035em;
}
.quality-strip > p {
  font-size: 14px;
  line-height: 24px;
  color: var(--on-dark-muted);
}
.quality-strip > .round-button {
  width: 64px;
  height: 64px;
}
.reviews-section {
  padding-top: 96px;
}
.reviews-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 64px;
  border-radius: var(--radius-section);
  background: var(--surface);
}
.reviews-copy .eyebrow {
  margin-bottom: 24px;
  color: var(--muted);
}
.reviews-copy > p:not(.eyebrow) {
  max-width: 340px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 26px;
  color: var(--muted);
}
.reviews-copy .text-link {
  margin-top: 32px;
}
.review-rating {
  text-align: center;
}
.rating-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  font-size: 144px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.07em;
}
.rating-scale {
  color: var(--muted);
  font-size: 32px;
  letter-spacing: -0.04em;
}
.rating-stars {
  display: inline-block;
  position: relative;
  margin-top: 24px;
  color: var(--line);
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 4px;
}
.rating-stars::after {
  content: "★★★★★";
  position: absolute;
  left: 0;
  top: 0;
  width: 98%;
  overflow: hidden;
  color: var(--accent);
  white-space: nowrap;
}
.rating-count {
  margin-top: 12px;
  font-size: 14px;
}
.rating-count strong {
  font-weight: 600;
}
.rating-source {
  color: var(--muted);
  font-size: 12px;
  line-height: 20px;
  margin-top: 24px;
}
.news-section {
  background: var(--surface);
}
.news-section .eyebrow {
  color: var(--muted);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.news-card {
  min-width: 0;
  display: flex;
}
.news-story {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-image);
}
.news-story h3 {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.04em;
  transition: color var(--fast) var(--ease);
}
.news-copy {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
  padding: 32px;
}
.news-copy > p {
  margin-block: 16px 32px;
  font-size: 14px;
  line-height: 24px;
  color: var(--muted);
}
.news-photo {
  overflow: hidden;
  border-radius: var(--radius-image) var(--radius-image) 0 0;
  aspect-ratio: 1.6;
}
.news-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.news-card:last-child .news-photo img {
  object-position: center 20%;
  transform: scale(1.24);
  transform-origin: center 20%;
}
.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 20px;
  color: var(--muted);
}
.news-meta > span {
  color: var(--accent);
  font-weight: 600;
}
.news-read {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
}
.news-read .icon {
  width: 20px;
  height: 20px;
  transition: transform var(--fast) var(--ease);
}
@media (hover: hover) {
  .news-story:hover h3 {
    color: var(--accent);
  }
  .news-story:hover .news-photo img {
    transform: scale(1.025);
  }
  .news-card:last-child .news-story:hover .news-photo img {
    transform: scale(1.27);
  }
  .news-story:hover .news-read .icon {
    transform: translate(2px, -2px);
  }
}
.contact-top > .eyebrow {
  color: var(--on-dark-muted);
  margin-bottom: 24px;
}
.contact-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: fit-content;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: -0.035em;
  border-bottom: 1px solid var(--dark-line);
  padding-block: 16px;
  margin-top: 24px;
  transition:
    color var(--fast) var(--ease),
    border-color var(--fast) var(--ease);
}
.contact-email .icon {
  width: 32px;
  height: 32px;
  margin-left: 32px;
}
.contact-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--dark-line);
}
.contact-location {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.location-mark {
  width: 12px;
  height: 12px;
  border: 1px solid var(--on-dark-muted);
  border-radius: 50%;
  position: relative;
  margin-top: 4px;
  flex-shrink: 0;
}
.location-mark::after {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--paper);
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 3px;
}
.contact-location strong {
  font-size: 14px;
  font-weight: 600;
}
.contact-location p {
  font-size: 14px;
  line-height: 24px;
  color: var(--on-dark-muted);
  margin-top: 8px;
}
.contact-location .text-link {
  font-size: 12px;
  margin-top: 8px;
  min-height: 40px;
}
.contact-phone {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-phone span {
  color: var(--on-dark-muted);
  font-size: 12px;
  margin-bottom: 4px;
}
.contact-phone a {
  width: fit-content;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.025em;
}
.contact-bottom > .button {
  min-width: 208px;
}
.site-footer {
  background: var(--dark);
}
.footer-surface {
  background: var(--surface);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1.15fr 1fr 1fr;
  gap: 48px;
  padding-block: 64px;
}
.footer-brand img {
  width: 180px;
  filter: brightness(0);
}
.footer-brand p {
  font-size: 12px;
  line-height: 22px;
  margin-top: 24px;
  color: var(--muted);
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-column h2 {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.footer-column a,
.footer-column button {
  font-size: 12px;
  line-height: 20px;
  padding: 0;
  color: var(--muted);
  text-align: left;
  transition: color var(--fast) var(--ease);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  position: relative;
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom::before {
  content: "";
  height: 1px;
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  background: var(--line);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
  min-width: 0;
}
.footer-credit {
  white-space: nowrap;
}
.footer-credit a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-bottom > a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.footer-bottom .icon {
  width: 16px;
  height: 16px;
}
.content-dialog,
.mobile-menu {
  border: 0;
  padding: 48px;
  color: var(--ink);
  background: var(--paper);
  width: min(680px, calc(100% - 32px));
  max-height: calc(100svh - 48px);
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: var(--modal-overlay);
  backdrop-filter: blur(4px);
}
dialog[open] {
  animation: dialog-enter 240ms var(--ease) both;
}
.dialog-close {
  position: absolute;
  right: 16px;
  top: 16px;
}
.content-dialog .eyebrow {
  margin-bottom: 24px;
  color: var(--accent);
}
.content-dialog h2 {
  font-size: 48px;
  line-height: 1.08;
}
.dialog-description {
  margin-block: 24px 32px;
  font-size: 14px;
  line-height: 24px;
  color: var(--muted);
}
.catalog-list {
  border-top: 1px solid var(--line);
}
.catalog-list a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
}
.catalog-list a > span:first-child {
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.catalog-list strong {
  font-size: 16px;
  font-weight: 500;
}
.catalog-list small,
.file-type {
  font-size: 12px;
  color: var(--muted);
}
.catalog-list .icon {
  width: 20px;
  height: 20px;
}
.search-dialog h2 {
  margin-bottom: 32px;
}
.search-dialog label {
  display: block;
  font-size: 12px;
  margin-bottom: 8px;
}
.search-field {
  position: relative;
}
.search-field input {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--muted);
  width: 100%;
  min-width: 0;
  height: 56px;
  border-radius: 0;
  padding: 12px 48px 12px 16px;
}
.search-field input:focus-visible {
  outline-offset: 2px;
}
.search-field > .icon {
  position: absolute;
  top: 16px;
  right: 16px;
  pointer-events: none;
}
.search-status {
  color: var(--muted);
  font-size: 12px;
  margin-block: 16px;
}
.search-results a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-block: 16px;
  font-size: 16px;
}
.search-empty {
  font-size: 14px;
  line-height: 24px;
  margin-top: 24px;
}
.search-empty a {
  display: inline;
  padding: 0;
  text-decoration: underline;
  border: 0;
  font-size: inherit;
}
.mobile-menu {
  width: 100%;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  padding: 24px;
}
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.mobile-menu-top img {
  width: 160px;
  filter: brightness(0);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}
.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 30px;
  line-height: 40px;
  letter-spacing: -0.04em;
}
.mobile-menu-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
  font-size: 14px;
}
.mobile-languages {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 12px;
}
.mobile-languages > * {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-languages > span {
  color: var(--accent);
}

/* Rounded material surfaces and the expanded textile story. */
.hero,
.mattress-section,
.production-section {
  border-radius: var(--radius-section);
}
.product-image,
.mattress-image-wrap,
.production-photo img {
  border-radius: var(--radius-image);
}
.button {
  border-radius: var(--radius-pill);
}
.language-options,
.swatch-picker {
  border-radius: var(--radius-control);
}
.swatch {
  border-radius: 8px;
  overflow: hidden;
}
.content-dialog {
  border-radius: var(--radius-image);
}
.search-field input {
  border-radius: var(--radius-control);
}
.applications-section .section-heading {
  align-items: flex-end;
}
.applications-section h2 {
  font-size: 48px;
}
.applications-section .section-heading-aside {
  max-width: 300px;
}
.application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.application-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-image);
  overflow: hidden;
}
.application-image {
  overflow: hidden;
  aspect-ratio: 1.3;
}
.application-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.application-card:nth-child(2) .application-image img {
  object-position: center 32%;
}
.application-copy {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.application-category {
  font-size: 12px;
  color: var(--muted);
  line-height: 20px;
}
.application-copy h3 {
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.04em;
  margin-top: 16px;
}
.application-copy p {
  font-size: 14px;
  line-height: 24px;
  color: var(--muted);
  margin-block: 16px 24px;
}
.application-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
}
.application-link .icon {
  width: 20px;
  height: 20px;
}
.collaboration-copy .eyebrow {
  margin-bottom: 24px;
  color: var(--accent);
}
.collaboration-copy > p:not(.eyebrow) {
  max-width: 440px;
  color: var(--muted);
  font-size: 14px;
  line-height: 24px;
  margin-block: 24px 32px;
}
.custom-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 64px;
}
.custom-options h3 {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.025em;
}
.custom-options p {
  font-size: 14px;
  line-height: 24px;
  margin-top: 12px;
  color: var(--muted);
}
.contact-section {
  background: var(--surface);
  color: var(--paper);
}
.contact-surface {
  padding-block: 64px;
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  background: var(--dark);
}
.reveal-ready {
  opacity: 0;
  transform: translateY(16px);
  transition:
    transform 700ms var(--ease),
    opacity 700ms var(--ease);
}
.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Material studio: photographic sample sheets, with a persistent selection. */
.material-studio {
  padding-block: 24px 96px;
}
.studio-heading {
  text-align: center;
}
.studio-heading .eyebrow {
  color: var(--accent);
  margin-bottom: 24px;
}
.studio-heading h2 {
  font-size: 72px;
  line-height: 1.04;
}
.studio-heading > p:last-child {
  font-size: 14px;
  line-height: 24px;
  color: var(--muted);
  margin: 24px auto 0;
  max-width: 560px;
}
.sample-deck {
  height: 480px;
  position: relative;
  max-width: 1140px;
  margin: 32px auto 0;
  isolation: isolate;
  pointer-events: none;
}
.sample-sheet {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 40%;
  max-width: 430px;
  height: 400px;
  padding: 12px;
  background: var(--white);
  border-radius: var(--radius-image);
  box-shadow: 0 16px 32px rgb(37 39 37 / 10%);
  transform-origin: center 80%;
  transition: transform 650ms var(--ease);
}
.sample-sheet[data-position="left"] {
  z-index: 1;
  transform: translate(-115%, 24px) rotate(-9deg) scale(0.88);
}
.sample-sheet[data-position="center"] {
  z-index: 3;
  transform: translate(-50%, 0) rotate(0);
}
.sample-sheet[data-position="right"] {
  z-index: 2;
  transform: translate(15%, 24px) rotate(9deg) scale(0.88);
}
.sample-deck[data-input="keyboard"] .sample-sheet {
  transition: none;
}
.sample-photo {
  position: relative;
  height: calc(100% - 48px);
  overflow: hidden;
  border-radius: var(--radius-control);
}
.sample-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sample-zoom {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: inherit;
  pointer-events: auto;
  cursor: zoom-in;
}
.zoom-icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 50%;
  transition:
    background-color var(--fast) var(--ease),
    transform var(--fast) var(--ease);
}
.zoom-icon .icon {
  width: 20px;
  height: 20px;
}
.sample-zoom:focus-visible {
  outline-offset: -6px;
}
.sample-zoom:focus-visible .zoom-icon {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.sample-zoom:active .zoom-icon {
  transform: scale(0.96);
}
.sample-sheet[data-sample="structure"] img {
  transform: scale(1.24);
  transform-origin: center 20%;
}
.sample-sheet figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding-inline: 4px;
  font-size: 12px;
}
.sample-sheet figcaption > :last-child {
  color: var(--muted);
}
.studio-controls {
  display: flex;
  justify-content: center;
  margin: 16px auto 0;
}
.material-selector {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}
.material-selector button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  transition:
    color var(--fast) var(--ease),
    background-color var(--fast) var(--ease);
}
.material-selector button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}
.selector-texture {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--white-line);
}
.texture-weave {
  background-image: url("assets/images/hero-weave.webp");
}
.texture-color {
  background-image: url("assets/images/colors.webp");
}
.texture-structure {
  background-image: url("assets/images/mattress-white.webp");
}
.studio-caption {
  max-width: 640px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
.studio-caption h3 {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.025em;
}
.studio-caption p {
  color: var(--muted);
  font-size: 14px;
  line-height: 24px;
  margin-top: 16px;
  min-height: 72px;
}
.material-dialog {
  width: min(1000px, calc(100% - 32px));
}
.material-dialog h2 {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 24px;
}
.material-detail-photo {
  overflow: hidden;
  border-radius: var(--radius-control);
  background: var(--surface);
}
.material-detail-photo img {
  width: 100%;
  height: min(58svh, 600px);
  object-fit: cover;
}
.material-detail-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
}
.material-detail-note {
  font-size: 12px;
  line-height: 20px;
  color: var(--muted);
  max-width: 440px;
}
.material-detail-footer .text-link {
  font-size: 12px;
  flex-shrink: 0;
}

/* Individual inquiry: a short, local brief for the customer's mail application. */
.collaboration-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 80px;
}
.collaboration-copy h2 {
  font-size: 72px;
  line-height: 1.04;
}
.accent-heading {
  color: var(--accent);
}
.project-inquiry {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-section);
  min-width: 0;
}
.project-inquiry > h3 {
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.04em;
}
.inquiry-intro {
  font-size: 14px;
  line-height: 24px;
  color: var(--muted);
  margin-block: 12px 24px;
}
.project-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0;
  margin: 0;
  border: 0;
}
.project-choices label {
  position: relative;
  cursor: pointer;
  min-width: 0;
}
.project-choices input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.project-choices label > span {
  display: grid;
  grid-template-columns: 40px 1fr 16px;
  align-items: center;
  gap: 8px;
  min-height: 80px;
  height: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--paper);
  font-size: 12px;
  line-height: 20px;
  transition:
    border-color var(--fast) var(--ease),
    background-color var(--fast) var(--ease);
}
.project-choices img {
  width: 40px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
}
.project-choices input:checked + span {
  border-color: var(--accent);
  background: var(--white);
}
.project-choices input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.choice-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--muted);
  display: grid;
  place-items: center;
}
.project-choices input:checked + span .choice-check {
  background: var(--accent);
  border-color: var(--accent);
}
.project-choices input:checked + span .choice-check::after {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 1.5px solid var(--white);
  border-bottom: 1.5px solid var(--white);
  transform: translateY(-1px) rotate(-45deg);
}
.project-guidance {
  font-size: 14px;
  line-height: 24px;
  min-height: 72px;
  margin-block: 24px;
  color: var(--muted);
}
.project-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 12px;
}
.project-label span {
  font-size: 12px;
  color: var(--muted);
}
.project-inquiry textarea {
  width: 100%;
  display: block;
  min-height: 120px;
  resize: vertical;
  padding: 16px;
  border: 1px solid var(--muted);
  border-radius: var(--radius-control);
  background: var(--paper);
  font-size: 14px;
  line-height: 24px;
  color: var(--ink);
}
.project-inquiry textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}
.inquiry-send {
  width: 100%;
  margin-top: 24px;
}
.inquiry-note {
  font-size: 12px;
  line-height: 20px;
  color: var(--muted);
  margin-top: 16px;
}
.custom-options {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
@media (hover: hover) and (pointer: fine) {
  .material-selector button[aria-pressed="false"]:hover {
    background: var(--surface);
  }
  .sample-zoom:hover .zoom-icon {
    background: var(--surface);
    transform: scale(1.06);
  }
  .project-choices label:hover > span {
    border-color: var(--muted);
  }
  .project-choices label:has(:checked):hover > span {
    border-color: var(--accent);
  }
}
@media (max-width: 1279px) {
  .collaboration-intro {
    gap: 48px;
  }
  .collaboration-copy h2 {
    font-size: 60px;
  }
  .project-inquiry {
    padding: 32px;
  }
  .sample-sheet {
    height: 360px;
  }
  .sample-deck {
    height: 440px;
  }
}
@media (max-width: 1023px) {
  .material-studio {
    padding-block: 24px 80px;
  }
  .studio-heading h2 {
    font-size: 60px;
  }
  .sample-deck {
    height: 400px;
  }
  .sample-sheet {
    height: 320px;
    width: 42%;
  }
  .sample-sheet figcaption > :last-child {
    display: none;
  }
  .collaboration-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .collaboration-copy h2 {
    font-size: 60px;
  }
  .collaboration-copy > p:not(.eyebrow) {
    max-width: 540px;
    margin-bottom: 0;
  }
  .project-inquiry {
    padding: 40px;
  }
  .project-guidance {
    min-height: 48px;
  }
}
@media (max-width: 639px) {
  .material-studio {
    padding: 16px 0 64px;
    overflow: hidden;
  }
  .studio-heading {
    padding-inline: var(--gutter);
  }
  .studio-heading h2 {
    font-size: 48px;
  }
  .studio-heading > p:last-child br {
    display: none;
  }
  .sample-deck {
    height: 360px;
    margin-top: 24px;
  }
  .sample-sheet {
    width: 68%;
    max-width: 300px;
    height: 296px;
    padding: 8px;
  }
  .sample-sheet[data-position="left"] {
    transform: translate(-95%, 16px) rotate(-10deg) scale(0.82);
  }
  .sample-sheet[data-position="right"] {
    transform: translate(-5%, 16px) rotate(10deg) scale(0.82);
  }
  .sample-sheet figcaption {
    padding-inline: 4px;
    font-size: 12px;
    height: 40px;
  }
  .sample-photo {
    height: calc(100% - 40px);
  }
  .studio-controls {
    padding-inline: var(--gutter);
  }
  .material-selector {
    width: 100%;
    max-width: 370px;
  }
  .material-selector button {
    flex: 1 1 auto;
    font-size: 12px;
    padding: 8px;
  }
  .selector-texture {
    width: 20px;
    height: 20px;
  }
  .studio-caption {
    margin-inline: var(--gutter);
    margin-top: 32px;
  }
  .studio-caption h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .material-detail-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .collaboration-copy h2 {
    font-size: 48px;
    line-height: 1.04;
  }
  .project-inquiry {
    padding: 24px;
    margin-inline: -8px;
    border-radius: var(--radius-image);
  }
  .project-inquiry > h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .project-choices {
    gap: 8px;
  }
  .project-choices label > span {
    grid-template-columns: 1fr 16px;
    padding: 12px;
    align-content: start;
    gap: 8px;
  }
  .project-choices img {
    width: 100%;
    height: 56px;
    grid-column: 1 / -1;
  }
  .project-choices label > span > span:not(.choice-check) {
    min-height: 40px;
  }
  .project-label {
    flex-direction: column;
    gap: 0;
  }
  .project-guidance {
    min-height: 96px;
    margin-block: 24px;
  }
  .material-dialog h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .material-detail-photo img {
    height: 48svh;
  }
}
.hero-content {
  animation: hero-enter 800ms var(--ease) both;
}
@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dialog-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover,
  .text-link:hover,
  .contact-email:hover,
  .footer-column a:hover,
  .footer-column button:hover,
  .contact-phone a:hover {
    color: var(--accent);
  }
  .text-link-light:hover {
    color: var(--on-dark-muted);
  }
  .icon-button:hover,
  .language-options a:hover {
    background: var(--surface);
  }
  .button-white:hover {
    background: var(--surface);
  }
  .button-dark:hover {
    background: var(--muted);
  }
  .button-accent:hover {
    background: var(--ink);
  }
  .news-section .section-heading .text-link:hover {
    color: var(--muted);
  }
  .contact-section a:not(.button):hover {
    color: var(--white);
  }
  .contact-section .contact-email:hover {
    border-color: var(--paper);
  }
  .contact-section .button-accent:hover {
    color: var(--ink);
    background: var(--paper);
  }
  .round-button:hover {
    color: var(--ink);
    background: var(--paper);
  }
  .product:hover .product-image img {
    transform: scale(1.035);
  }
  .product:nth-child(2):hover .product-image img {
    transform: scale(1.27);
  }
  .product:hover .product-arrow .icon {
    transform: translate(2px, -2px);
  }
  .catalog-list a:hover,
  .search-results > a:hover {
    color: var(--accent);
  }
  .application-card:hover .application-image img {
    transform: scale(1.035);
  }
}
.button:active,
.round-button:active {
  transform: scale(0.98);
}
@media (min-width: 1640px) {
  .hero-content {
    margin-left: max(16px, calc((100vw - 1640px) / 2));
  }
  .hero-bottom {
    left: max(80px, calc((100vw - 1512px) / 2));
    right: max(64px, calc((100vw - 1512px) / 2));
  }
}
@media (max-width: 1279px) {
  :root {
    --gutter: 48px;
  }
  .site-header {
    gap: 24px;
  }
  .brand img {
    width: 164px;
  }
  .desktop-nav {
    gap: 24px;
  }
  .desktop-nav a {
    font-size: 12px;
  }
  .hero-content {
    padding: 48px;
  }
  .hero h1 {
    font-size: 72px;
  }
  .hero-bottom {
    left: 48px;
    right: 32px;
  }
  .mattress-layout,
  .production-layout {
    gap: 48px;
  }
  .mattress-copy h2 {
    font-size: 48px;
  }
  .production-heading h2 {
    font-size: 48px;
  }
  .offer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .product-label h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .product-featured h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .contact-bottom {
    gap: 32px;
  }
  .news-copy {
    padding: 24px;
  }
  .footer-main {
    gap: 32px;
  }
  .application-copy h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 1023px) {
  :root {
    --gutter: 32px;
  }
  .site-header {
    height: 80px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-trigger {
    display: flex;
  }
  .header-tools {
    gap: 24px;
  }
  .hero {
    height: 660px;
    min-height: 560px;
  }
  .hero-content {
    padding: 48px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .hero-caption {
    display: none;
  }
  .intro-strip {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-block: 32px;
  }
  .section-space {
    padding-block: 80px;
  }
  .section-heading {
    gap: 40px;
  }
  h2 {
    font-size: 48px;
  }
  .section-heading-aside {
    max-width: 300px;
  }
  .offer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .product-featured {
    grid-column: span 2;
    grid-row: auto;
  }
  .product-featured .product-image {
    aspect-ratio: 2;
  }
  .product-featured .product-image img {
    object-position: center 40%;
  }
  .product-label h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .product-featured h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .mattress-section {
    padding-block: 80px;
  }
  .mattress-layout {
    gap: 32px;
  }
  .mattress-copy h2 {
    font-size: 36px;
    line-height: 40px;
  }
  .mattress-image-wrap {
    aspect-ratio: 0.7;
  }
  .mattress-visual figcaption > :last-child {
    display: none;
  }
  .material-facts {
    gap: 12px;
  }
  .material-facts strong {
    font-size: 20px;
    line-height: 28px;
  }
  .production-layout {
    gap: 32px;
  }
  .production-photo img {
    height: 480px;
  }
  .production-lead {
    font-size: 16px;
    line-height: 24px;
  }
  .process-list summary {
    gap: 12px;
    font-size: 12px;
  }
  .process-list details p {
    font-size: 12px;
    line-height: 22px;
  }
  .contact-bottom {
    grid-template-columns: 1fr 1fr;
  }
  .contact-bottom > .button {
    width: fit-content;
    grid-column: 2;
  }
  .footer-main {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-brand p {
    margin: 0;
  }
  .applications-section .section-heading {
    display: block;
  }
  .applications-section .section-heading-aside {
    max-width: 480px;
    margin-top: 24px;
  }
  .application-grid {
    gap: 16px;
  }
  .application-copy {
    padding: 16px;
  }
  .application-copy h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .application-copy p {
    font-size: 12px;
    line-height: 22px;
  }
  .custom-options {
    gap: 24px;
  }
  .reviews-section {
    padding-top: 80px;
  }
  .reviews-panel {
    padding: 48px 32px;
    gap: 32px;
  }
  .rating-value {
    font-size: 112px;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-story {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .news-photo {
    aspect-ratio: auto;
    border-radius: var(--radius-image) 0 0 var(--radius-image);
  }
  .news-copy {
    padding: 32px;
  }
}
@media (max-width: 639px) {
  :root {
    --gutter: 24px;
  }
  :root {
    --radius-section: 24px;
    --radius-image: 20px;
  }
  html {
    scroll-padding-top: 16px;
  }
  .site-header {
    height: 80px;
    gap: 16px;
  }
  .brand img {
    width: 148px;
  }
  .header-tools {
    gap: 16px;
  }
  .language-menu {
    display: none;
  }
  .search-trigger {
    width: 44px;
  }
  .search-trigger .icon {
    width: 20px;
    height: 20px;
  }
  .menu-trigger > span:first-child {
    display: none;
  }
  .menu-trigger {
    min-width: 44px;
    justify-content: flex-end;
  }
  .hero {
    margin-inline: 8px;
    height: calc(100svh - 96px);
    min-height: 560px;
    max-height: 740px;
    align-items: center;
  }
  .hero-content {
    padding: 32px 24px;
    margin-bottom: 48px;
    width: 100%;
  }
  .hero-intro {
    font-size: 12px;
    letter-spacing: 0.09em;
    gap: 8px;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: -0.06em;
  }
  .hero-description {
    margin-top: 24px;
    font-size: 14px;
    line-height: 24px;
    max-width: 310px;
  }
  .hero-bottom {
    left: 24px;
    right: 24px;
    bottom: 24px;
    gap: 16px;
  }
  .hero-scroll {
    display: none;
  }
  .hero-pagination {
    gap: 24px;
    width: 100%;
    justify-content: space-between;
  }
  .hero-arrows {
    gap: 8px;
  }
  .round-button {
    width: 44px;
    height: 44px;
  }
  .slide-count-line {
    width: 24px;
  }
  .intro-strip {
    gap: 24px 16px;
    padding-block: 32px;
  }
  .intro-strip p {
    font-size: 12px;
    line-height: 20px;
  }
  .intro-strip strong {
    font-size: 12px;
  }
  .intro-strip p:first-child {
    font-size: 16px;
    line-height: 24px;
  }
  h2 {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.045em;
  }
  .section-space {
    padding-block: 64px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading .eyebrow {
    margin-bottom: 16px;
  }
  .section-heading-aside {
    margin-top: 24px;
    max-width: none;
  }
  .section-heading-aside .text-link {
    margin-top: 16px;
  }
  .offer-grid {
    gap: 32px 16px;
  }
  .product-image {
    aspect-ratio: 0.95;
  }
  .product-featured .product-image {
    aspect-ratio: 1.15;
  }
  .product-label {
    gap: 4px;
    padding-top: 12px;
    min-height: 64px;
  }
  .product-label h3 {
    font-size: 16px;
    line-height: 22px;
  }
  .product-featured h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .product-label p {
    font-size: 12px;
    line-height: 18px;
  }
  .product-arrow {
    width: 20px;
    height: 24px;
  }
  .product-arrow .icon {
    width: 16px;
    height: 16px;
  }
  .product-featured .product-arrow {
    width: 32px;
    height: 32px;
  }
  .product-featured .product-arrow .icon {
    width: 24px;
    height: 24px;
  }
  .mattress-section {
    padding-block: 64px;
  }
  .mattress-layout {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 40px;
  }
  .mattress-copy h2 {
    font-size: 48px;
    line-height: 1.08;
  }
  .mattress-copy > p:not(.eyebrow) {
    margin-top: 24px;
  }
  .material-facts {
    margin-block: 24px;
    padding-block: 24px;
    gap: 16px;
  }
  .material-facts strong {
    font-size: 24px;
    line-height: 32px;
  }
  .material-facts small {
    font-size: 12px;
  }
  .mattress-actions {
    gap: 16px;
  }
  .mattress-actions .button {
    gap: 16px;
    padding-inline: 16px;
  }
  .mattress-actions .text-link {
    gap: 12px;
    font-size: 12px;
  }
  .mattress-image-wrap {
    aspect-ratio: 1;
  }
  .mattress-visual figcaption > :last-child {
    display: inline;
    font-size: 12px;
  }
  .mattress-visual figcaption {
    gap: 8px;
  }
  .swatch-picker {
    bottom: 56px;
    left: 16px;
  }
  .production-heading {
    margin-bottom: 32px;
  }
  .production-heading h2 {
    font-size: 36px;
    line-height: 40px;
  }
  .production-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .production-photo img {
    height: auto;
    aspect-ratio: 1.15;
  }
  .production-lead {
    font-size: 18px;
    line-height: 28px;
  }
  .process-list summary {
    font-size: 14px;
    gap: 16px;
  }
  .process-list details p {
    font-size: 14px;
    line-height: 24px;
  }
  .quality-strip {
    margin-top: 48px;
    padding-top: 32px;
    grid-template-columns: 1fr auto;
    gap: 24px;
  }
  .quality-strip > p {
    grid-column: 1;
    grid-row: 2;
  }
  .quality-strip > .round-button {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 56px;
    height: 56px;
  }
  .quality-strip > div > p:last-child {
    font-size: 20px;
    line-height: 28px;
  }
  .quality-strip .eyebrow {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
  .contact-email {
    font-size: 24px;
    line-height: 32px;
    gap: 8px;
    margin-top: 24px;
    width: 100%;
  }
  .contact-email .icon {
    width: 24px;
    height: 24px;
    margin-left: 0;
  }
  .contact-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
  }
  .contact-bottom > .button {
    grid-column: 1;
    width: 100%;
  }
  .contact-location {
    gap: 16px;
  }
  .contact-phone {
    padding-left: 28px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
    padding-block: 48px;
  }
  .footer-brand {
    display: block;
  }
  .footer-brand img {
    width: 168px;
  }
  .footer-brand p {
    margin-top: 16px;
  }
  .footer-column {
    gap: 16px;
  }
  .footer-column h2 {
    margin-bottom: 8px;
  }
  .footer-column a,
  .footer-column button {
    min-height: 28px;
  }
  .footer-bottom {
    align-items: flex-start;
    font-size: 12px;
    line-height: 20px;
  }
  .footer-legal {
    max-width: 200px;
  }
  .footer-bottom > a {
    font-size: 0;
    gap: 0;
    min-width: 44px;
    min-height: 44px;
    justify-content: flex-end;
  }
  .footer-bottom .icon {
    width: 24px;
    height: 24px;
  }
  .content-dialog {
    padding: 48px 24px 32px;
    width: calc(100% - 16px);
    max-height: calc(100svh - 24px);
  }
  .content-dialog h2 {
    font-size: 36px;
    line-height: 40px;
  }
  .catalog-list strong {
    font-size: 14px;
  }
  .file-type {
    display: none;
  }
  .catalog-list a {
    gap: 8px;
  }
  .applications-section h2 {
    font-size: 36px;
    line-height: 40px;
  }
  .application-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .application-image {
    aspect-ratio: 1.5;
  }
  .application-copy {
    padding: 24px;
  }
  .application-copy h3 {
    font-size: 30px;
    line-height: 36px;
  }
  .application-copy p {
    font-size: 14px;
    line-height: 24px;
  }
  .custom-options {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }
  .reviews-section {
    padding-top: 64px;
  }
  .reviews-panel {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px 24px;
  }
  .reviews-copy .eyebrow {
    margin-bottom: 16px;
  }
  .reviews-copy > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 24px;
  }
  .reviews-copy .text-link {
    margin-top: 24px;
    font-size: 12px;
    gap: 16px;
  }
  .review-rating {
    border-top: 1px solid var(--line);
    padding-top: 32px;
  }
  .rating-value {
    font-size: 96px;
  }
  .rating-scale {
    font-size: 24px;
  }
  .rating-stars {
    margin-top: 16px;
  }
  .news-story {
    display: flex;
  }
  .news-photo {
    aspect-ratio: 1.6;
    border-radius: var(--radius-image) var(--radius-image) 0 0;
  }
  .news-copy {
    padding: 24px;
  }
  .contact-surface {
    padding-block: 48px;
  }
}
@media (max-width: 374px) {
  .hero h1 {
    font-size: 36px;
    line-height: 40px;
  }
  .hero-intro {
    font-size: 12px;
    letter-spacing: 0.02em;
  }
  .hero {
    min-height: 540px;
  }
  .hero-pagination {
    gap: 16px;
  }
  .contact-email {
    font-size: 20px;
    line-height: 28px;
  }
  .mattress-copy h2 {
    font-size: 36px;
    line-height: 40px;
  }
  .material-facts strong {
    font-size: 20px;
    line-height: 28px;
  }
  .mattress-visual figcaption > :last-child {
    display: none;
  }
  .brand img {
    width: 136px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-ready,
  .word-reveal .word {
    opacity: 1;
    transform: none;
  }
}

/* Static calculator entry points, using the existing catalogue surfaces. */
.calculator-links { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.calculator-link { background: var(--white); border-radius: var(--radius-image); overflow: hidden; }
.calculator-link-image { height: 200px; position: relative; overflow: hidden; }
.calculator-link-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.calculator-link-image > span { position: absolute; left: 24px; bottom: 24px; padding: 8px 16px; border-radius: var(--radius-pill); background: var(--paper); font-size: 20px; }
.calculator-link-copy { padding: 32px; }
.calculator-link h3 { font-size: 30px; line-height: 36px; letter-spacing: -.035em; }
.calculator-link p { margin: 16px 0 24px; color: var(--muted); max-width: 480px; }
.calculator-link:hover .text-link { color: var(--accent); }
.calculator-link:hover img { transform: scale(1.025); }
@media (min-width: 1024px) and (max-width: 1439px) { .desktop-nav { gap: 16px; } }
@media (max-width: 767px) {
  .calculator-links { grid-template-columns: 1fr; }
  .calculator-link-copy { padding: 24px; }
  .calculator-link h3 { font-size: 24px; line-height: 32px; }
  .calculator-link-image { height: 176px; }
}
@media (prefers-reduced-motion: reduce) { .calculator-link-image img { transition: none; } .calculator-link:hover img { transform: none; } }
