@font-face {
  font-family: "Montserrat ExtraBold";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/Montserrat-ExtraBold.woff2") format("woff2");
}

:root {
  --ink: #17201a;
  --olive-950: #1f281f;
  --olive-900: #263125;
  --olive-800: #35402e;
  --olive-700: #4e5941;
  --sand: #b59068;
  --sand-light: #d6bea3;
  --paper: #f3f0e8;
  --paper-warm: #e9e2d6;
  --white: #fffdf8;
  --line: rgba(23, 32, 26, 0.16);
  --font-serif: "Montserrat ExtraBold", Montserrat, Arial, sans-serif;
  --font-sans: Calibri, "Segoe UI", Arial, sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 4.75rem);
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

[data-parallax] {
  will-change: transform;
}

.hero-slides[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.035);
}

.essence-image[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

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

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

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-200%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--sand-light);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 6rem;
  padding: 0 var(--page-pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: height 350ms var(--ease-out), color 350ms ease, background-color 350ms ease, border-color 350ms ease;
}

.site-header.is-scrolled {
  height: 4.7rem;
  color: var(--ink);
  background: rgba(243, 240, 232, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1;
}

.brand-logo {
  width: clamp(8rem, 11vw, 10.5rem);
  height: auto;
  max-height: 3.65rem;
  object-fit: contain;
  transition: width 350ms var(--ease-out), filter 350ms ease;
}

.site-header.is-scrolled .brand-logo {
  width: clamp(7.5rem, 10vw, 9.25rem);
  filter: saturate(0.92) brightness(0.86);
}

.brand-mark {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  color: var(--olive-900);
  background: var(--sand-light);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: normal;
  font-weight: 800;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-name small {
  align-self: flex-end;
  margin-top: 0.15rem;
  font-family: var(--font-sans);
  font-size: 0.43rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.8vw, 3rem);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
}

.main-nav a:not(.nav-cta)::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease-out);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.7rem 1rem;
  border: 1px solid currentColor;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100vw;
}

.site-header.is-scrolled .language-switcher {
  border-color: var(--line);
}

.language-switcher button {
  display: grid;
  width: 2.3rem;
  height: 1.95rem;
  padding: 0;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 100vw;
  transition: color 200ms ease, background 200ms ease;
}

.language-flag {
  display: block;
  width: 1.45rem;
  aspect-ratio: 7 / 5;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.15rem;
  box-shadow: 0 0.12rem 0.3rem rgba(0, 0, 0, 0.2);
}

.language-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.language-switcher button.is-active {
  color: var(--olive-950);
  background: var(--sand-light);
}

.language-switcher.language-menu {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.language-menu .language-menu-trigger {
  display: flex;
  width: auto;
  min-width: 3.45rem;
  height: 2.4rem;
  padding: 0 0.55rem;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100vw;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.site-header.is-scrolled .language-menu .language-menu-trigger {
  background: rgba(255, 253, 248, 0.7);
  border-color: var(--line);
}

.language-menu.is-open .language-menu-trigger {
  color: var(--olive-950);
  background: var(--sand-light);
  border-color: var(--sand-light);
}

.language-menu-flag {
  flex: 0 0 auto;
}

.language-menu-chevron {
  margin-top: -0.18rem;
  font-size: 0.9rem;
  transition: transform 180ms ease;
}

.language-menu.is-open .language-menu-chevron {
  transform: rotate(180deg);
}

.language-options {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.55rem);
  right: 0;
  width: 11rem;
  padding: 0.45rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 1.25rem 3.5rem rgba(23, 32, 26, 0.22);
}

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

.language-options button.language-option {
  display: grid;
  width: 100%;
  height: auto;
  min-height: 2.65rem;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.7rem;
  padding: 0.55rem 0.7rem;
  align-items: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}

.language-options button.language-option:hover,
.language-options button.language-option:focus-visible {
  background: var(--paper-warm);
}

.language-options button.language-option.is-active {
  color: var(--white);
  background: var(--olive-800);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.85rem 0.6rem;
  color: inherit;
  background: transparent;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.32rem 0;
  background: currentColor;
  transition: transform 250ms ease;
}

.section {
  padding: clamp(6rem, 10vw, 10rem) var(--page-pad);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

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

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 em,
h2 em,
.statement em {
  font-family: inherit;
  font-style: normal;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  background: var(--olive-900);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(26, 34, 27, 0.95) 0%, rgba(26, 34, 27, 0.8) 34%, rgba(26, 34, 27, 0.08) 68%);
}

.hero-wash {
  position: absolute;
  z-index: 0;
  top: -32vw;
  left: -25vw;
  width: 75vw;
  height: 75vw;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 44% 56% 62% 38%;
  transform: rotate(18deg);
}

.hero-wash::before,
.hero-wash::after {
  position: absolute;
  content: "";
  inset: 7%;
  border: inherit;
  border-radius: inherit;
}

.hero-wash::after {
  inset: 15%;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 54%;
  min-height: 100svh;
  padding: 9rem 3vw 7rem var(--page-pad);
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 2rem;
  font-size: clamp(3.1rem, 6.1vw, 6.8rem);
}

.hero h1 em {
  color: var(--sand-light);
}

.hero-intro {
  max-width: 38rem;
  margin-bottom: 2.4rem;
  padding-left: clamp(0rem, 7vw, 7rem);
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-left: clamp(0rem, 7vw, 7rem);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.85rem 1.15rem;
  border: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

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

.button-primary {
  color: var(--olive-950);
  background: var(--sand-light);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
}

.button-light {
  color: var(--olive-950);
  background: var(--white);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
  background: var(--olive-900);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.2rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
}

.hero-carousel {
  overflow: hidden;
  outline: none;
}

.hero-carousel:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72);
}

.hero-slides {
  position: absolute;
  inset: -2%;
  overflow: hidden;
  transition: transform 0.1s linear;
}

.hero-slide {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.045);
  transition: opacity 1s var(--ease-in-out), transform 7s var(--ease-out);
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel-ui {
  position: absolute;
  z-index: 4;
  right: var(--page-pad);
  bottom: 1.4rem;
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) auto;
  align-items: center;
  width: min(32rem, calc(100% - (var(--page-pad) * 2)));
  min-height: 4.25rem;
  padding: 0.65rem 0.7rem 0.65rem 1rem;
  color: var(--white);
  background: rgba(18, 25, 19, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-carousel-progress {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.hero-carousel-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--sand-light);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-carousel-progress span.is-animating {
  animation: hero-carousel-progress 6.5s linear forwards;
}

.hero-carousel.is-paused .hero-carousel-progress span {
  animation-play-state: paused;
}

.hero-carousel-caption {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.18rem;
  margin: 0;
  line-height: 1.25;
}

.hero-carousel-caption strong,
.hero-carousel-caption span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-carousel-caption strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-carousel-caption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-carousel-controls {
  display: flex;
  align-items: center;
  gap: 0.34rem;
  padding-left: 1rem;
}

.hero-carousel-button {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  place-items: center;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-carousel-button:hover,
.hero-carousel-button:focus-visible {
  color: var(--olive-950);
  background: var(--sand-light);
  border-color: var(--sand-light);
}

.hero-carousel-toggle {
  width: 1.8rem;
  height: 1.8rem;
  font-size: 0.64rem;
}

.hero-carousel-count {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  min-width: 3.7rem;
  margin: 0 0.25rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-carousel-count strong {
  color: var(--sand-light);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 800;
}

.hero-carousel-count span {
  color: rgba(255, 255, 255, 0.58);
}

@keyframes hero-carousel-progress {
  to {
    transform: scaleX(1);
  }
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: var(--page-pad);
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 4.5rem;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.scroll-line::after {
  display: block;
  width: 100%;
  height: 45%;
  content: "";
  background: var(--white);
  animation: scroll-pulse 2s var(--ease-in-out) infinite;
}

.hero-year {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1.2rem;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 0.78;
}

.line-marquee {
  padding: 1.1rem 0;
  color: var(--olive-950);
  background: var(--sand-light);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.3rem;
  animation: marquee 38s linear infinite;
}

.marquee-track span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 800;
}

.marquee-track i {
  width: 0.32rem;
  height: 0.32rem;
  background: currentColor;
  border-radius: 50%;
}

.section-number {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-style: normal;
  font-weight: 800;
}

.section-number::after {
  width: 4rem;
  height: 1px;
  content: "";
  background: var(--line);
}

.section-number span {
  order: 2;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.manifesto {
  background: var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(9rem, 0.75fr) 3.25fr;
  gap: 4vw;
}

.statement {
  max-width: 23ch;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  font-size: clamp(2.1rem, 3.8vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.statement em {
  color: var(--olive-700);
}

.manifesto-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 50rem;
  margin-left: auto;
  color: rgba(23, 32, 26, 0.7);
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(5rem, 9vw, 9rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto-stats > div {
  display: flex;
  min-height: 9rem;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.manifesto-stats > div:last-child {
  border-right: 0;
}

.manifesto-stats strong {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.manifesto-stats span {
  color: rgba(23, 32, 26, 0.62);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.motion-story {
  --motion-progress: 0;
  --motion-light-opacity: 0;
  --motion-drawer-opacity: 0;
  position: relative;
  height: auto;
  color: var(--white);
  background: #192119;
}

.motion-story.is-enhanced {
  height: 210svh;
}

.motion-sticky {
  position: relative;
  top: 0;
  height: 44rem;
  min-height: 40rem;
  background: #192119;
  overflow: hidden;
}

.motion-story.is-enhanced .motion-sticky {
  position: sticky;
  height: 100svh;
}

.motion-visual {
  position: absolute;
  inset: 0 0 0 42%;
  background: #202920;
  overflow: hidden;
  isolation: isolate;
}

.motion-visual::before {
  position: absolute;
  z-index: -1;
  inset: -3rem;
  content: "";
  background: linear-gradient(rgba(22, 29, 23, 0.66), rgba(22, 29, 23, 0.66)), url("images/video/cristaleira/editorial2/poster.webp") center / cover;
  filter: blur(24px) saturate(0.7);
  transform: scale(1.08);
}

.motion-visual::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, #192119 0%, rgba(25, 33, 25, 0.84) 8%, transparent 34%), linear-gradient(0deg, rgba(18, 24, 19, 0.36), transparent 35%);
}

.motion-poster,
.motion-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.motion-poster {
  object-fit: contain;
  opacity: 1;
  transition: opacity 450ms ease;
}

.motion-canvas {
  opacity: 0;
  transition: opacity 220ms linear;
}

.motion-visual.is-ready .motion-poster {
  opacity: 0;
}

.motion-visual.is-ready .motion-canvas-doors {
  opacity: 1;
}

.motion-visual.is-ready .motion-canvas-light {
  opacity: var(--motion-light-opacity);
}

.motion-visual.is-ready .motion-canvas-drawer {
  opacity: var(--motion-drawer-opacity);
}

.motion-copy {
  position: relative;
  z-index: 4;
  display: flex;
  width: 48%;
  height: 100%;
  flex-direction: column;
  padding: clamp(7.25rem, 12vh, 9rem) 2rem 2.2rem var(--page-pad);
  pointer-events: none;
}

.motion-heading {
  max-width: 40rem;
}

.motion-heading .eyebrow {
  color: var(--sand-light);
}

.motion-heading h2 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 3.8vw, 4.3rem);
}

.motion-heading h2 em {
  color: var(--sand-light);
}

.motion-heading > p:last-child {
  max-width: 31rem;
  color: rgba(255, 255, 255, 0.66);
}

.motion-chapters {
  position: relative;
  min-height: 8.5rem;
  max-width: 29rem;
  margin-top: auto;
  margin-bottom: 3rem;
}

.motion-chapter {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 500ms var(--ease-out), transform 600ms var(--ease-out);
}

.motion-chapter span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--sand-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.motion-chapter p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.55;
}

.motion-story:not(.is-light):not(.is-drawer) .motion-chapter-doors,
.motion-story.is-light .motion-chapter-light,
.motion-story.is-drawer .motion-chapter-drawer {
  opacity: 1;
  transform: translateY(0);
}

.motion-navigation {
  display: grid;
  grid-template-columns: auto minmax(4rem, 8rem) 2rem;
  gap: 1rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.motion-navigation > div {
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.motion-navigation i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--sand-light);
  transform: scaleX(var(--motion-progress));
  transform-origin: left;
}

.motion-navigation b {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: right;
}

/* Editorial product scroll */
.motion-story.is-enhanced {
  height: 210svh;
}

.motion-sticky {
  background: #151b16;
}

.motion-sticky::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 76% 45%, rgba(181, 144, 104, 0.13), transparent 27%), linear-gradient(110deg, rgba(255, 255, 255, 0.025), transparent 42%);
}

.motion-watermark {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 46%;
  color: rgba(255, 255, 255, 0.028);
  font-family: var(--font-serif);
  font-size: clamp(5rem, 10vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.8;
  white-space: nowrap;
  transform: translate(-8%, -50%) rotate(-90deg);
  transform-origin: center;
}

.motion-frame {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: clamp(3rem, 8vw, 10rem);
  width: min(31vw, 27rem, calc((100svh - 7rem) * 0.5625));
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 3rem 7rem rgba(0, 0, 0, 0.38);
  transform: translateY(-50%);
}

.motion-frame::before {
  position: absolute;
  z-index: -1;
  inset: -0.9rem 0.9rem 0.9rem -0.9rem;
  content: "";
  border: 1px solid rgba(214, 190, 163, 0.34);
}

.motion-visual {
  position: relative;
  inset: auto;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #1d241e;
  border: 0.35rem solid var(--paper);
  border-bottom: 0;
}

.motion-visual::before {
  content: none;
}

.motion-visual::after {
  z-index: 3;
  background: linear-gradient(180deg, rgba(14, 18, 15, 0.14), transparent 18%, transparent 76%, rgba(14, 18, 15, 0.2)), linear-gradient(90deg, rgba(14, 18, 15, 0.12), transparent 14%, transparent 86%, rgba(14, 18, 15, 0.12));
  box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.16);
}

.motion-frame-meta {
  display: flex;
  min-height: 3.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--line);
  line-height: 1.1;
}

.motion-frame-meta span {
  color: rgba(23, 32, 26, 0.55);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.motion-frame-meta strong {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.motion-callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.58rem;
  color: var(--white);
  background: rgba(18, 24, 19, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  backdrop-filter: blur(8px);
  transform: translateY(0.8rem);
  transition: opacity 500ms ease, transform 600ms var(--ease-out);
}

.motion-callout::before {
  width: 0.32rem;
  height: 0.32rem;
  content: "";
  background: var(--sand-light);
  border-radius: 50%;
  box-shadow: 0 0 0 0.22rem rgba(214, 190, 163, 0.18);
}

.motion-callout-led {
  top: 18%;
  left: 1rem;
}

.motion-callout-glass {
  top: 48%;
  right: 1rem;
}

.motion-callout-drawer {
  bottom: 17%;
  left: 1rem;
}

.motion-story:not(.is-light):not(.is-drawer) .motion-callout-glass,
.motion-story.is-light .motion-callout-led,
.motion-story.is-drawer .motion-callout-drawer {
  opacity: 1;
  transform: translateY(0);
}

.motion-copy {
  z-index: 4;
  width: 47%;
  padding: clamp(6.75rem, 10vh, 8rem) 2.5rem 2.2rem var(--page-pad);
}

.motion-heading {
  max-width: 35rem;
}

.motion-heading h2 {
  max-width: 10.5ch;
  font-size: clamp(2.35rem, 3.45vw, 4rem);
  line-height: 0.98;
}

.motion-heading > p:last-child {
  max-width: 27rem;
}

.motion-chapters {
  min-height: 7.5rem;
  max-width: 26rem;
  margin-bottom: 2.2rem;
  padding-left: 1.1rem;
  border-left: 1px solid rgba(214, 190, 163, 0.36);
}

.motion-chapter p {
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
}

.motion-navigation {
  max-width: 26rem;
}

.collections {
  color: var(--white);
  background: var(--olive-950);
}

.section-head,
.catalog-heading {
  display: grid;
  grid-template-columns: 2.4fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

.section-head h2,
.catalog-heading h2,
.essence-copy h2,
.contact-strip h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.3vw, 4.8rem);
}

.section-head > p,
.catalog-heading > p {
  max-width: 31rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.collection-stage {
  position: relative;
  min-height: min(45rem, 78vh);
  background: var(--olive-900);
  overflow: hidden;
}

.collection-media {
  position: absolute;
  inset: 0 39% 0 0;
  overflow: hidden;
}

.collection-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 55%, rgba(31, 40, 31, 0.35));
}

.collection-media img {
  height: 100%;
  object-fit: cover;
  animation: image-reveal 700ms var(--ease-out) both;
}

.collection-copy {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: 39%;
  height: calc(100% - 6rem);
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--olive-800);
}

.collection-index {
  margin-bottom: auto;
  color: var(--sand-light);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 800;
}

.collection-copy h3 {
  margin: 0 0 1.4rem;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.collection-copy p {
  color: rgba(255, 255, 255, 0.66);
}

.collection-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection-filter-link {
  align-self: flex-start;
  margin-top: 1.25rem;
  padding: 0 0 0.2rem;
  color: var(--white);
  background: transparent;
  border: 0;
}

.collection-tabs {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  height: 6rem;
  grid-template-columns: repeat(8, 1fr);
  background: rgba(18, 24, 19, 0.88);
  backdrop-filter: blur(8px);
}

.collection-tabs button {
  position: relative;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(0.55rem, 0.75vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-tabs button::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--sand-light);
  transform: scaleX(0);
  transition: transform 350ms var(--ease-out);
}

.collection-tabs button.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.collection-tabs button.is-active::before {
  transform: scaleX(1);
}

.catalog {
  background: var(--paper);
}

.catalog-heading > p {
  color: rgba(23, 32, 26, 0.62);
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.search-box > span {
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.search-box input {
  width: 100%;
  min-width: 0;
  padding: 0.5rem 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1rem;
}

.search-box kbd {
  padding: 0.12rem 0.35rem;
  color: rgba(23, 32, 26, 0.5);
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 0.2rem;
  font-size: 0.58rem;
}

.room-filters,
.line-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.room-filters button,
.line-filters button {
  padding: 0.55rem 0.85rem;
  color: rgba(23, 32, 26, 0.6);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 100vw;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.room-filters button.is-active,
.room-filters button:hover,
.line-filters button.is-active,
.line-filters button:hover {
  color: var(--white);
  background: var(--olive-800);
  border-color: var(--olive-800);
}

.line-filters {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.results-bar {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0 1.25rem;
  color: rgba(23, 32, 26, 0.56);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results-bar p {
  margin: 0;
}

.results-bar strong {
  color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.4vw, 2.5rem) clamp(1rem, 2vw, 2rem);
}

.product-card {
  min-width: 0;
  opacity: 0;
  transform: translateY(2rem);
  animation: card-in 650ms var(--ease-out) forwards;
}

.product-card.delay-1 { animation-delay: 45ms; }
.product-card.delay-2 { animation-delay: 90ms; }
.product-card.delay-3 { animation-delay: 135ms; }
.product-card.delay-4 { animation-delay: 180ms; }
.product-card.delay-5 { animation-delay: 225ms; }

.product-card.is-featured {
  grid-column: span 2;
}

.product-button {
  width: 100%;
  padding: 0;
  text-align: left;
  background: transparent;
  border: 0;
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1.06;
  background: #e7e1d5;
  overflow: hidden;
}

.product-card.is-featured .product-image {
  aspect-ratio: 2.04 / 1.06;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out), filter 500ms ease;
}

.product-button:hover .product-image img,
.product-button:focus-visible .product-image img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.02);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.38rem 0.58rem;
  color: var(--white);
  background: rgba(31, 40, 31, 0.84);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.product-open {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  font-size: 1.15rem;
  transform: scale(0.88);
  transition: transform 300ms var(--ease-out), background 250ms ease;
}

.product-button:hover .product-open,
.product-button:focus-visible .product-open {
  background: var(--sand-light);
  transform: scale(1);
}

.product-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding-top: 1rem;
}

.product-info h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-weight: 800;
  line-height: 1.12;
}

.product-info p,
.product-code {
  margin: 0;
  color: rgba(23, 32, 26, 0.55);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-code {
  white-space: nowrap;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding-top: 4rem;
}

.load-more-wrap[hidden] {
  display: none;
}

.empty-state {
  padding: 6rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.empty-state[hidden] {
  display: none;
}

.empty-state p {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
}

.empty-state button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
}

.essence {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  column-gap: clamp(3rem, 8vw, 9rem);
  row-gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  background: var(--paper-warm);
  overflow: hidden;
}

.essence-image {
  position: relative;
  min-height: 48rem;
  margin: 0;
  overflow: hidden;
}

.essence-image::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 8rem rgba(23, 32, 26, 0.08);
  pointer-events: none;
}

.essence-image img {
  height: 100%;
  min-height: 48rem;
  object-fit: cover;
}

.essence-image figcaption {
  position: absolute;
  z-index: 1;
  bottom: 1rem;
  left: 1rem;
  padding: 0.45rem 0.7rem;
  color: var(--white);
  background: rgba(31, 40, 31, 0.8);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.essence-video {
  position: relative;
  min-width: 0;
  padding: clamp(0.5rem, 1vw, 0.85rem);
  background: var(--paper);
  border: 1px solid rgba(23, 32, 26, 0.13);
  box-shadow: 0 2.5rem 6rem rgba(42, 45, 34, 0.16);
}

.essence-video::before {
  position: absolute;
  z-index: -1;
  inset: -0.8rem 0.8rem 0.8rem -0.8rem;
  content: "";
  border: 1px solid rgba(78, 89, 65, 0.3);
}

.essence-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--olive-950);
}

.essence-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.essence-video-meta {
  display: flex;
  min-height: 3.5rem;
  padding: 0.75rem 0.35rem 0 0.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: rgba(23, 32, 26, 0.58);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.essence-video-meta a {
  color: var(--olive-800);
  transition: color 180ms ease;
}

.essence-video-meta a:hover,
.essence-video-meta a:focus-visible {
  color: var(--sand);
}

.essence-copy h2 {
  margin-bottom: 2rem;
}

.essence-copy > p:not(.eyebrow) {
  max-width: 35rem;
  color: rgba(23, 32, 26, 0.66);
}

.feature-list {
  margin: 3rem 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 600;
}

.feature-list span {
  color: var(--olive-700);
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 800;
}

.feature-list b {
  font-weight: 600;
}

.gptw-seal {
  display: grid;
  max-width: 30rem;
  grid-template-columns: 5.25rem 1fr;
  gap: 1.2rem;
  align-items: center;
  margin: 0 0 2.5rem;
  padding: 1rem;
  background: rgba(255, 253, 248, 0.55);
  border: 1px solid var(--line);
}

.gptw-seal img {
  width: 5.25rem;
  height: 7.4rem;
  object-fit: contain;
}

.gptw-seal div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.gptw-seal span {
  color: var(--olive-700);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.essence-profile {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.05fr) minmax(30rem, 0.95fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: end;
  padding: clamp(2.25rem, 5vw, 5rem);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(20, 29, 22, 0.98), rgba(49, 63, 45, 0.92)),
    radial-gradient(circle at 82% 20%, rgba(191, 153, 101, 0.3), transparent 34%);
}

.essence-profile .eyebrow {
  color: var(--sand-light);
}

.essence-profile h3 {
  max-width: 46rem;
  margin: 0.8rem 0 1.35rem;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.essence-profile h3 em {
  color: var(--sand-light);
  font-family: var(--font-serif);
  font-weight: 400;
}

.essence-profile-copy > p:last-child {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.essence-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.essence-stats div {
  min-width: 0;
  padding: 1.5rem clamp(0.65rem, 1.5vw, 1.25rem);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.essence-stats div:last-child {
  border-right: 0;
}

.essence-stats dt {
  color: var(--sand-light);
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.essence-stats dd {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.essence-pillars {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.essence-pillar {
  min-height: 21rem;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border-right: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.48);
}

.essence-pillar:last-child {
  border-right: 0;
}

.essence-pillar-highlight {
  color: var(--white);
  background: var(--olive-800);
}

.essence-pillar > span {
  display: block;
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
  color: var(--sand);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.essence-pillar h3 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.essence-pillar p {
  margin: 0;
  color: rgba(23, 32, 26, 0.64);
  font-size: 0.84rem;
  line-height: 1.65;
}

.essence-pillar-highlight p {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.3;
}

.essence-values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.essence-values li {
  padding: 0.5rem 0.7rem;
  color: var(--olive-800);
  border: 1px solid var(--line);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gptw-seal strong {
  max-width: 16ch;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.08;
}

.catalog-download {
  position: relative;
  display: flex;
  min-height: 43rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  background: var(--olive-900);
  overflow: hidden;
}

.catalog-download h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.8rem, 5.6vw, 6rem);
}

.catalog-download h2 em {
  color: var(--sand-light);
}

.catalog-download > p:not(.eyebrow) {
  max-width: 37rem;
  color: rgba(255, 255, 255, 0.66);
}

.catalog-download .button {
  margin: 1.5rem 0 1rem;
}

.download-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.download-ring {
  position: absolute;
  width: min(66vw, 49rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 45% 55% 62% 38%;
  animation: ring-rotate 28s linear infinite;
}

.download-ring::before,
.download-ring::after {
  position: absolute;
  content: "";
  border: inherit;
  border-radius: inherit;
  inset: 7%;
}

.download-ring::after {
  inset: 14%;
}

.catalog-download > *:not(.download-ring) {
  position: relative;
  z-index: 1;
}

.contact-strip {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 3rem;
  align-items: end;
  padding: clamp(4rem, 7vw, 7rem) var(--page-pad);
  background: var(--sand-light);
}

.contact-strip h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
}

.contact-strip > p {
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.site-footer {
  padding: clamp(4rem, 8vw, 7rem) var(--page-pad) 2rem;
  color: rgba(255, 255, 255, 0.7);
  background: var(--olive-950);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 4rem;
  color: var(--white);
}

.footer-logo {
  width: clamp(15rem, 26vw, 23rem);
  height: auto;
  object-fit: contain;
}

.footer-brand .brand-name {
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.footer-brand .brand-mark {
  width: clamp(3.2rem, 6vw, 5.4rem);
  height: clamp(3.2rem, 6vw, 5.4rem);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 0.7fr auto;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-grid p,
.footer-links {
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-socials a {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-certification {
  align-self: start;
  justify-self: end;
}

.footer-certification img {
  width: 4.6rem;
  height: auto;
  object-fit: contain;
}

.footer-grid a:hover,
.footer-grid a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-dialog {
  width: min(92vw, 76rem);
  max-width: none;
  height: min(88vh, 50rem);
  max-height: none;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: 0 3rem 9rem rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(2rem) scale(0.98);
  transition: opacity 300ms ease, transform 400ms var(--ease-out), overlay 300ms allow-discrete, display 300ms allow-discrete;
}

.product-dialog[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@starting-style {
  .product-dialog[open] {
    opacity: 0;
    transform: translateY(2rem) scale(0.98);
  }
}

.product-dialog::backdrop {
  background: rgba(13, 18, 14, 0.74);
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity 300ms ease, overlay 300ms allow-discrete, display 300ms allow-discrete;
}

.product-dialog[open]::backdrop {
  opacity: 1;
}

@starting-style {
  .product-dialog[open]::backdrop {
    opacity: 0;
  }
}

.dialog-close {
  position: absolute;
  z-index: 5;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1;
}

.dialog-layout {
  display: grid;
  height: 100%;
  grid-template-columns: 1.1fr 0.9fr;
}

.dialog-gallery {
  display: grid;
  min-height: 0;
  grid-template-rows: 1fr auto;
  background: #e2d9ca;
}

.dialog-main-image {
  min-height: 0;
  overflow: hidden;
}

.dialog-main-image img {
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 180ms ease;
}

.dialog-main-image img.is-changing {
  opacity: 0.35;
}

.dialog-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  overflow-x: auto;
}

.dialog-thumbs button {
  width: 4rem;
  min-width: 4rem;
  aspect-ratio: 1;
  padding: 0;
  background: transparent;
  border: 2px solid transparent;
  overflow: hidden;
}

.dialog-thumbs button.is-active {
  border-color: var(--olive-900);
}

.dialog-thumbs img {
  height: 100%;
  object-fit: cover;
}

.dialog-content {
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow-y: auto;
}

.dialog-content h2 {
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  font-weight: 800;
  line-height: 0.98;
}

.dialog-description {
  color: rgba(23, 32, 26, 0.68);
}

.dialog-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dialog-specs div {
  padding: 1rem 0.65rem;
  border-right: 1px solid var(--line);
}

.dialog-specs div:last-child {
  border-right: 0;
}

.dialog-specs dt {
  color: rgba(23, 32, 26, 0.55);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-specs dd {
  margin: 0.3rem 0 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
}

.dialog-variants {
  margin-bottom: 2rem;
}

.dialog-variants h3 {
  margin-bottom: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.variant-options {
  display: grid;
  gap: 0.55rem;
}

.variant-option {
  display: grid;
  width: 100%;
  grid-template-columns: 2.4rem 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.65rem;
  text-align: left;
  background: transparent;
  border: 1px solid var(--line);
  transition: border-color 200ms ease, background 200ms ease;
}

.variant-option:hover,
.variant-option:focus-visible {
  border-color: var(--olive-700);
}

.variant-option.is-active {
  background: rgba(78, 89, 65, 0.08);
  border-color: var(--olive-800);
}

.finish-swatch {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background-color: #a87348;
  border: 1px solid rgba(23, 32, 26, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.finish-fn,
.finish-u {
  background: repeating-linear-gradient(105deg, #b8814e 0 4px, #c9955d 4px 8px, #aa7547 8px 10px);
}

.finish-wn {
  background: repeating-linear-gradient(105deg, #5b3525 0 4px, #754a34 4px 8px, #4b2a20 8px 10px);
}

.finish-bf {
  background: linear-gradient(135deg, #f4f0e7 0 48%, #b98250 49% 100%);
}

.finish-b {
  background: #f5f2e9;
}

.finish-ne {
  background: repeating-linear-gradient(105deg, #5f3727 0 3px, #7a4b32 3px 7px, #4c2c22 7px 10px);
}

.finish-nc {
  background: repeating-linear-gradient(105deg, #9b6743 0 3px, #b17b50 3px 7px, #855637 7px 10px);
}

.finish-c {
  background: repeating-linear-gradient(105deg, #7e4b2e 0 4px, #955f3a 4px 8px, #6d3e27 8px 11px);
}

.finish-applique,
.finish-plain {
  position: relative;
  background: repeating-linear-gradient(105deg, #7e4b2e 0 4px, #955f3a 4px 8px, #6d3e27 8px 11px);
}

.finish-applique::after {
  position: absolute;
  width: 0.85rem;
  height: 0.85rem;
  content: "";
  background: var(--sand-light);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.variant-label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.12rem;
}

.variant-label strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.variant-label small {
  color: rgba(23, 32, 26, 0.55);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.variant-check {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  color: transparent;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.68rem;
  transition: color 200ms ease, background 200ms ease;
}

.variant-option.is-active .variant-check {
  color: var(--white);
  background: var(--olive-800);
  border-color: var(--olive-800);
}

.page-transition {
  position: fixed;
  z-index: 10000;
  inset: 0;
  pointer-events: none;
  background: var(--olive-950);
  transform: scaleY(0);
  transform-origin: top;
}

.reveal.will-reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 850ms var(--ease-out), transform 850ms var(--ease-out);
}

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

.hero .reveal {
  animation: hero-in 900ms var(--ease-out) both;
}

.hero .reveal:nth-child(2) {
  animation-delay: 100ms;
}

.hero .reveal:nth-child(3) {
  animation-delay: 190ms;
}

.hero .reveal:nth-child(4) {
  animation-delay: 280ms;
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(2rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes card-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes image-reveal {
  from { opacity: 0.45; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}

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

@keyframes scroll-pulse {
  from { transform: translateY(-120%); }
  to { transform: translateY(240%); }
}

@keyframes ring-rotate {
  to { transform: rotate(360deg); }
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 0.85rem;
    font-size: 0.66rem;
  }

  .nav-cta {
    padding-inline: 0.7rem;
  }

  .hero-copy {
    width: 64%;
  }

  .hero-visual {
    width: 63%;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(26, 34, 27, 0.97) 0%, rgba(26, 34, 27, 0.78) 52%, rgba(26, 34, 27, 0.15) 85%);
  }

  .motion-frame {
    right: 3vw;
    width: min(35vw, 25rem, calc((100svh - 7rem) * 0.5625));
  }

  .motion-copy {
    width: 55%;
  }

  .section-head,
  .catalog-heading {
    grid-template-columns: 1.55fr 1fr;
    gap: 2.5rem;
  }

  .collection-media {
    right: 44%;
  }

  .collection-copy {
    width: 44%;
  }

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

  .product-card.is-featured {
    grid-column: auto;
  }

  .product-card.is-featured .product-image {
    aspect-ratio: 1 / 1.06;
  }

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

  .contact-actions {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 4.7rem;
  }

  .section {
    padding: clamp(4.25rem, 10vw, 6rem) var(--page-pad);
  }

  .site-header {
    height: 4.7rem;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .brand-logo,
  .site-header.is-scrolled .brand-logo {
    width: 7.75rem;
    max-height: 2.9rem;
  }

  .brand-mark {
    width: 2rem;
    height: 2rem;
    font-size: 1.65rem;
  }

  .menu-toggle {
    z-index: 2;
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 0.8rem;
    padding: 6.5rem var(--page-pad) 2.5rem;
    overflow-y: auto;
    color: var(--white);
    background: var(--olive-950);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1.5rem);
    transition: opacity 300ms ease, transform 400ms var(--ease-out);
  }

  .main-nav a {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 7vw, 3.1rem);
    font-style: normal;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .main-nav .nav-cta {
    margin-top: 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .main-nav .language-switcher {
    margin-top: 0.75rem;
    border-color: rgba(255, 255, 255, 0.3);
  }

  .main-nav .language-switcher button {
    width: 2.8rem;
    height: 2.35rem;
    font-size: 1.25rem;
  }

  .main-nav .language-menu .language-menu-trigger {
    width: auto;
    min-width: 3.6rem;
    height: 2.55rem;
    padding-inline: 0.6rem;
    font-size: 0.76rem;
  }

  .main-nav .language-options button.language-option {
    width: 100%;
    height: auto;
    min-height: 2.75rem;
    font-size: 0.9rem;
  }

  .site-header.is-menu-open {
    color: var(--white);
  }

  .site-header.is-menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.is-menu-open .menu-toggle > span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle > span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    min-height: max(44rem, 100svh);
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(25, 34, 26, 0.5) 0%, rgba(25, 34, 26, 0.2) 40%, rgba(25, 34, 26, 0.97) 78%);
  }

  .hero-copy {
    justify-content: flex-end;
    width: 100%;
    min-height: max(44rem, 100svh);
    padding: 6.25rem var(--page-pad) 5.75rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 9vw, 4.3rem);
  }

  .hero-intro,
  .hero-actions {
    padding-left: 0;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-visual {
    width: 100%;
    height: 64%;
  }

  .hero-carousel-ui {
    top: 5.15rem;
    right: var(--page-pad);
    bottom: auto;
    display: block;
    width: auto;
    min-height: 0;
    padding: 0.5rem;
  }

  .hero-carousel-caption,
  .hero-year {
    display: none;
  }

  .hero-carousel-controls {
    padding-left: 0;
  }

  .motion-story.is-enhanced {
    height: 200svh;
  }

  .motion-sticky {
    min-height: 36rem;
  }

  .motion-sticky::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, #151b16 0%, rgba(21, 27, 22, 0.92) 18%, transparent 39%, transparent 68%, rgba(21, 27, 22, 0.9) 90%, #151b16 100%);
  }

  .motion-watermark {
    top: 54%;
    left: 50%;
    font-size: clamp(5rem, 18vw, 9rem);
    transform: translate(-50%, -50%) rotate(-90deg);
  }

  .motion-frame {
    z-index: 2;
    top: 11.5rem;
    right: auto;
    left: 50%;
    width: min(58vw, 22rem, calc((100svh - 14rem) * 0.5625));
    transform: translateX(-50%);
  }

  .motion-copy {
    width: 100%;
    padding: 6.5rem var(--page-pad) 1.6rem;
  }

  .motion-heading {
    max-width: 31rem;
  }

  .motion-heading h2 {
    max-width: 11ch;
    margin-bottom: 1rem;
    font-size: clamp(2.15rem, 6vw, 3.1rem);
  }

  .motion-heading > p:last-child {
    display: none;
  }

  .motion-chapters {
    min-height: 7rem;
    max-width: 22rem;
    margin-bottom: 1.4rem;
  }

  .motion-navigation {
    max-width: 24rem;
  }

  .manifesto-grid,
  .section-head,
  .catalog-heading,
  .essence {
    grid-template-columns: 1fr;
  }

  .essence-profile {
    grid-template-columns: 1fr;
  }

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

  .essence-pillar:nth-child(2) {
    border-right: 0;
  }

  .essence-pillar:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .statement {
    font-size: clamp(1.95rem, 6vw, 3rem);
  }

  .section-head h2,
  .catalog-heading h2,
  .essence-copy h2,
  .contact-strip h2 {
    font-size: clamp(2.05rem, 7vw, 3.35rem);
  }

  .catalog-download h2 {
    font-size: clamp(2.35rem, 8.5vw, 4.1rem);
  }

  .section-number {
    margin-bottom: 3rem;
  }

  .manifesto-grid {
    gap: 1rem;
  }

  .manifesto-details {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

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

  .manifesto-stats > div:nth-child(2) {
    border-right: 0;
  }

  .manifesto-stats > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-head,
  .catalog-heading {
    gap: 1.5rem;
  }

  .collection-stage {
    min-height: 40rem;
  }

  .collection-media {
    inset: 0 0 44% 0;
  }

  .collection-copy {
    top: auto;
    bottom: 4.5rem;
    width: 100%;
    height: 41%;
    justify-content: flex-start;
    padding: 1.5rem;
  }

  .collection-index {
    margin-bottom: 0.2rem;
  }

  .collection-copy h3 {
    margin-bottom: 0.7rem;
    font-size: 2.5rem;
  }

  .collection-copy p {
    margin-bottom: 0.25rem;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .collection-tabs {
    height: 4.5rem;
    grid-template-columns: repeat(8, minmax(5.5rem, 1fr));
    overflow-x: auto;
  }

  .catalog-tools {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .room-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .line-filters {
    flex-wrap: nowrap;
    margin-right: calc(var(--page-pad) * -1);
    overflow-x: auto;
  }

  .line-filters button {
    white-space: nowrap;
  }

  .essence-image,
  .essence-image img {
    min-height: 28rem;
  }

  .essence-copy {
    padding-bottom: 1rem;
  }

  .catalog-download {
    min-height: 34rem;
  }

  .download-ring {
    width: 115vw;
  }

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

  .contact-strip {
    align-items: start;
    gap: 1.5rem;
  }

  .contact-actions {
    grid-column: auto;
    align-items: flex-start;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-certification {
    justify-self: start;
    margin-top: 0.5rem;
  }

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

  .product-dialog {
    width: calc(100vw - 1.25rem);
    height: 92dvh;
  }

  .dialog-layout {
    display: block;
    overflow-y: auto;
  }

  .dialog-gallery {
    height: min(52dvh, 30rem);
  }

  .dialog-content {
    padding: clamp(1.5rem, 6vw, 2.5rem);
    overflow: visible;
  }
}

@media (max-width: 540px) {
  .section {
    padding-block: 4rem;
  }

  .hero,
  .hero-copy {
    min-height: max(42rem, 100svh);
  }

  .hero-copy {
    padding: 6rem 1.25rem 5.5rem;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 10.5vw, 3.2rem);
  }

  .hero-intro {
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }

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

  .hero-actions .button {
    justify-content: center;
  }

  .motion-story.is-enhanced {
    height: 190svh;
  }

  .motion-sticky {
    min-height: 32rem;
  }

  .motion-copy {
    padding: 5.8rem 1.25rem 1.25rem;
  }

  .motion-frame {
    top: 11.5rem;
    width: min(78vw, 20rem, calc((100svh - 15rem) * 0.5625));
  }

  .motion-frame-meta {
    min-height: 3rem;
    padding: 0.65rem 0.75rem;
  }

  .motion-frame-meta span {
    font-size: 0.5rem;
  }

  .motion-frame-meta strong {
    font-size: 0.8rem;
  }

  .motion-callouts {
    display: none;
  }

  .motion-heading .eyebrow {
    margin-bottom: 1rem;
  }

  .motion-heading h2 {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
  }

  .motion-chapters {
    min-height: 7.8rem;
    margin-bottom: 1rem;
  }

  .motion-chapter p {
    max-width: 22rem;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .motion-navigation {
    grid-template-columns: minmax(3rem, 1fr) 1.8rem;
    gap: 0.7rem;
    font-size: 0.53rem;
    letter-spacing: 0.1em;
  }

  .motion-navigation > span {
    display: none;
  }

  .collection-stage {
    min-height: 38rem;
  }

  .collection-copy h3 {
    font-size: 2.2rem;
  }

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

  .results-bar span {
    display: none;
  }

  .product-image,
  .product-card.is-featured .product-image {
    aspect-ratio: 1 / 1.02;
  }

  .essence-image,
  .essence-image img {
    min-height: 24rem;
  }

  .essence-profile {
    padding: 2rem 1.25rem;
  }

  .essence-profile h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .essence-stats {
    grid-template-columns: 1fr;
  }

  .essence-stats div,
  .essence-stats div:last-child {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .essence-stats div:last-child {
    border-bottom: 0;
  }

  .essence-stats dd {
    max-width: 8rem;
    margin-top: 0;
    text-align: right;
  }

  .essence-pillars {
    grid-template-columns: 1fr;
  }

  .essence-pillar,
  .essence-pillar:nth-child(2),
  .essence-pillar:last-child {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .essence-pillar:last-child {
    border-bottom: 0;
  }

  .essence-pillar > span {
    margin-bottom: 2.75rem;
  }

  .contact-actions,
  .contact-actions .button {
    width: 100%;
  }

  .contact-actions .button {
    justify-content: center;
  }

  .footer-brand img {
    width: min(14rem, 72vw);
  }

  .dialog-gallery {
    height: 44dvh;
  }

  .dialog-content {
    padding: 1.25rem;
  }

  .dialog-content h2 {
    font-size: 2rem;
  }

  .dialog-thumbs button {
    width: 3.25rem;
    min-width: 3.25rem;
    height: 3.25rem;
  }

  .variant-option {
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    gap: 0.65rem;
    padding: 0.65rem;
  }

  .dialog-specs {
    grid-template-columns: 1fr;
  }

  .dialog-specs div,
  .dialog-specs div:last-child {
    display: flex;
    justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dialog-specs div:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-parallax] {
    transform: none !important;
  }

  .motion-story {
    height: auto;
  }

  .motion-sticky {
    position: relative;
    height: 44rem;
  }

  .motion-canvas {
    display: none;
  }

  .motion-poster,
  .motion-visual.is-ready .motion-poster {
    opacity: 1;
  }

  .motion-chapter-doors {
    opacity: 1;
    transform: none;
  }

  .motion-chapter-light,
  .motion-chapter-drawer,
  .motion-navigation {
    display: none;
  }

}

/* Catalog request */
.catalog-request-dialog {
  width: min(64rem, calc(100vw - 2rem));
  max-width: none;
  max-height: min(52rem, calc(100dvh - 2rem));
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: 0 2rem 6rem rgba(10, 18, 12, 0.42);
  overflow: hidden;
}

.catalog-request-dialog[open] {
  animation: catalog-dialog-in 260ms ease both;
}

.catalog-request-dialog::backdrop {
  background: rgba(12, 20, 14, 0.76);
  backdrop-filter: blur(0.45rem);
}

.catalog-request-layout {
  display: grid;
  grid-template-columns: minmax(20rem, 0.98fr) minmax(28rem, 1.35fr);
  min-height: 36rem;
}

.catalog-request-intro {
  position: relative;
  display: flex;
  padding: clamp(2.4rem, 5vw, 4.5rem) clamp(1.75rem, 4vw, 3.5rem);
  flex-direction: column;
  color: var(--white);
  background: var(--olive-950);
  overflow: hidden;
}

.catalog-request-intro::after {
  position: absolute;
  right: -7rem;
  bottom: -8rem;
  width: 19rem;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 2rem rgba(255, 255, 255, 0.025), 0 0 0 5rem rgba(255, 255, 255, 0.018);
}

.catalog-request-index {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
}

.catalog-request-intro .eyebrow,
.catalog-request-intro h2,
.catalog-request-intro > p,
.catalog-request-rule {
  position: relative;
  z-index: 1;
}

.catalog-request-intro h2 {
  width: 100%;
  max-width: none;
  margin: auto 0 1.35rem;
  color: var(--white);
  font-size: clamp(2.35rem, 4vw, 3.75rem);
  line-height: 0.98;
  overflow-wrap: break-word;
}

.catalog-request-intro > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.catalog-request-rule {
  width: 3rem;
  height: 1px;
  margin: 2rem 0;
  background: var(--sand);
}

.catalog-request-intro .catalog-request-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.catalog-request-close {
  position: absolute;
  z-index: 4;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  place-items: center;
  color: var(--olive-950);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 50%;
  backdrop-filter: blur(0.4rem);
}

.catalog-request-close::before {
  content: "×";
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.catalog-request-close:hover,
.catalog-request-close:focus-visible {
  color: var(--white);
  background: var(--olive-800);
  border-color: var(--olive-800);
}

.catalog-request-form {
  display: flex;
  padding: clamp(2.25rem, 4vw, 3.25rem) clamp(1.5rem, 4vw, 3.75rem) clamp(1.5rem, 3vw, 2rem);
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}

.catalog-request-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.25rem;
}

.catalog-request-fields label {
  display: grid;
  gap: 0.45rem;
  color: var(--olive-950);
  font-size: 0.78rem;
  font-weight: 700;
}

.catalog-request-fields [hidden] {
  display: none !important;
}

.catalog-request-fields .catalog-request-span {
  grid-column: 1 / -1;
}

.catalog-request-fields input,
.catalog-request-fields select,
.catalog-request-fields textarea {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
}

.catalog-request-fields textarea {
  min-height: 4.4rem;
  resize: vertical;
}

.catalog-request-fields input:focus,
.catalog-request-fields select:focus,
.catalog-request-fields textarea:focus {
  outline: 2px solid var(--sand);
  outline-offset: 1px;
  border-color: var(--olive-800);
}

.catalog-request-consent {
  display: grid;
  margin-top: 1rem;
  grid-template-columns: 1.15rem 1fr;
  gap: 0.75rem;
  align-items: start;
  color: rgba(23, 32, 26, 0.68);
  font-size: 0.78rem;
  line-height: 1.5;
}

.catalog-request-consent input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.1rem 0 0;
  accent-color: var(--olive-800);
}

.catalog-request-consent a {
  color: var(--olive-800);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.catalog-request-footer {
  display: grid;
  min-height: 3.5rem;
  margin-top: 1rem;
  gap: 0.65rem;
}

.catalog-request-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.catalog-request-actions .button {
  min-height: 2.9rem;
  padding-inline: 1.05rem;
  font-size: 0.75rem;
}

.catalog-request-actions .button-outline {
  color: var(--olive-950);
  background: transparent;
  border: 1px solid var(--olive-800);
}

.catalog-request-actions .button-outline:hover,
.catalog-request-actions .button-outline:focus-visible {
  color: var(--white);
  background: var(--olive-800);
}

.catalog-request-status {
  max-width: 17rem;
  margin: 0;
  color: var(--olive-800);
  font-size: 0.78rem;
  line-height: 1.4;
}

@keyframes catalog-dialog-in {
  from { opacity: 0; transform: translateY(1.25rem) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 800px) {
  .catalog-request-dialog {
    width: min(38rem, calc(100vw - 1rem));
    max-height: calc(100dvh - 1rem);
    overflow: auto;
  }

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

  .catalog-request-intro {
    min-height: 14rem;
    padding: 1.5rem;
  }

  .catalog-request-intro h2 {
    margin: 2rem 0 0.75rem;
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .catalog-request-rule,
  .catalog-request-intro .catalog-request-note {
    display: none;
  }

  .catalog-request-form {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-height: 660px) and (min-width: 801px) {
  .catalog-request-dialog {
    max-height: calc(100dvh - 1rem);
    overflow: auto;
  }
}

@media (max-width: 520px) {
  .catalog-request-fields {
    grid-template-columns: 1fr;
  }

  .catalog-request-fields .catalog-request-span {
    grid-column: auto;
  }

  .catalog-request-footer {
    align-items: stretch;
  }

  .catalog-request-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-request-actions .button {
    width: 100%;
    justify-content: center;
  }
}
