:root {
  --ink: #161616;
  --soft-ink: #3f3f3f;
  --muted: #77736e;
  --line: #dfddd9;
  --paper: #f5f4f1;
  --mist: #eceae6;
  --white: #ffffff;
  --accent: #9f1d24;
  --font-sans: "Neue Haas Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
  font-family: var(--font-sans) !important;
}

*::before,
*::after {
  font-family: var(--font-sans) !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  line-height: 1.45;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.floating-contact-button {
  position: fixed;
  right: clamp(18px, 2.2vw, 34px);
  bottom: clamp(18px, 2.2vw, 34px);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 12px 20px 12px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(22, 22, 22, 0.14);
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.floating-contact-button:hover,
.floating-contact-button:focus-visible {
  background: var(--white);
  border-color: rgba(22, 22, 22, 0.2);
  box-shadow: 0 18px 42px rgba(22, 22, 22, 0.2);
  transform: translateY(-2px);
}

.floating-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
}

.floating-contact-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.floating-contact-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-contact-dot {
  fill: currentColor;
}

.floating-contact-label {
  flex: 0 0 auto;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@media (min-width: 641px) {
  .floating-contact-button {
    width: 58px;
    min-height: 58px;
    justify-content: center;
    gap: 0;
    padding: 0;
    overflow: hidden;
    transition: width 320ms ease, transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .floating-contact-button:hover,
  .floating-contact-button:focus-visible {
    width: 214px;
    padding-inline: 0;
  }

  .floating-contact-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .floating-contact-label {
    max-width: 0;
    margin-left: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateX(10px);
    transition: max-width 320ms ease, margin-left 320ms ease, opacity 180ms ease 60ms, transform 320ms ease;
  }

  .floating-contact-button:hover .floating-contact-label,
  .floating-contact-button:focus-visible .floating-contact-label {
    max-width: 150px;
    margin-left: 11px;
    opacity: 1;
    transform: translateX(0);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  min-height: 74px;
  padding: 18px clamp(22px, 4.6vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(22, 22, 22, 0.09);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 174px;
  max-width: 44vw;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.nav-item:hover > a::after,
.nav-item:focus-within > a::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.nav-item > a {
  position: relative;
  display: inline-flex;
  text-decoration: none;
}

.nav-dropdown {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  width: 100vw;
  padding: 46px clamp(22px, 5vw, 82px) 54px;
  display: grid;
  grid-template-columns: minmax(170px, 0.22fr) minmax(620px, 1fr);
  gap: clamp(34px, 5vw, 76px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(22, 22, 22, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu-list {
  display: grid;
  align-content: start;
  gap: 22px;
}

.mega-menu-list a {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.06;
  text-decoration: none;
  text-transform: none;
}

.mega-menu-list a:first-child {
  display: none;
}

.mega-menu-list a:hover,
.mega-menu-list a:focus-visible {
  color: var(--accent);
}

.mega-menu-feature {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 28px);
}

.mega-card {
  display: grid;
  align-content: start;
  color: var(--ink);
  text-decoration: none;
  text-transform: none;
}

.mega-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  object-position: center;
  margin-bottom: 18px;
  filter: saturate(0.9);
}

.mega-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.mega-card strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.55vw, 28px);
  font-weight: 400;
  line-height: 1.08;
}

.mega-card:hover strong,
.mega-card:focus-visible strong {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1fr);
  align-items: end;
  gap: clamp(34px, 5vw, 78px);
  overflow: hidden;
  padding: 96px clamp(22px, 5vw, 82px) 28px;
  color: var(--ink);
  background: var(--paper);
}

.home-picture-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  min-height: 420px;
  max-height: calc(100svh - 78px);
  overflow: hidden;
  background: #111;
  isolation: isolate;
  touch-action: pan-y;
}

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

.home-picture-slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), visibility 900ms;
}

.home-picture-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.home-picture-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.home-picture-slide-link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -7px;
}

.home-picture-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-picture-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(18px, 2.2vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.8vw, 11px);
  transform: translateX(-50%);
}

.home-picture-dot {
  width: clamp(9px, 0.9vw, 13px);
  height: clamp(9px, 0.9vw, 13px);
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(226, 226, 226, 0.96);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.home-picture-dot.is-active {
  background: #fff;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.24);
  transform: scale(1.04);
}

.home-picture-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.48)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.05) 72%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  padding-bottom: 18px;
}

.design-hero .hero-content {
  align-self: center;
  transform: translateY(-4vh);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--muted);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-family: var(--font-serif);
  font-size: clamp(45px, 6.8vw, 104px);
  font-weight: 400;
  line-height: 0.98;
}

.design-hero h1 {
  max-width: 520px;
  font-family: var(--font-sans);
  font-size: clamp(48px, 5.55vw, 88px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.02em;
}

.hero-copy {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  background: transparent;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}

.button.primary,
.button.secondary {
  color: inherit;
  background: transparent;
}

.button.primary:hover,
.button.secondary:hover {
  color: var(--accent);
  background: transparent;
}

.hero .button:hover {
  color: var(--accent);
  opacity: 0.72;
}

.design-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 1.18fr) minmax(170px, 0.82fr);
  grid-template-rows: repeat(3, minmax(142px, 1fr));
  gap: 14px;
  height: min(68vh, 650px);
  min-height: 540px;
}

.design-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #d7d4cf;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.design-card-large {
  grid-row: 1 / span 3;
  cursor: pointer;
}

.design-card-large img {
  opacity: 1;
}

.design-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: opacity 240ms ease, transform 420ms ease;
}

.design-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.design-thumb img {
  object-position: center top;
}

.design-thumb span {
  display: none;
}

.design-card:hover img {
  transform: scale(1.035);
}

.design-card span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.design-card-large.is-fading img {
  opacity: 0;
}

.design-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.design-progress::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  transform: scaleX(0);
  transform-origin: left;
}

.design-progress.is-running::after {
  animation: designProgress 3600ms linear forwards;
}

@keyframes designProgress {
  to {
    transform: scaleX(1);
  }
}

.design-thumb::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transform: scaleX(0.26);
  transform-origin: left;
  transition: transform 220ms ease;
}

.design-thumb:hover::after,
.design-thumb:focus-visible::after {
  transform: scaleX(1);
}

.design-thumb:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.design-showcase.is-changing img {
  opacity: 0.88;
}

.design-showcase.is-changing .design-card-large img {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .design-card img,
  .phone-social-card,
  .social-compact-card {
    transition: none;
    animation: none;
  }

  .design-progress.is-running::after {
    animation: none;
    transform: scaleX(0);
  }
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(170px, 260px) minmax(280px, 760px);
  gap: clamp(28px, 8vw, 120px);
  justify-content: start;
  padding: 72px clamp(22px, 5vw, 82px);
  color: var(--ink);
  background: #f7f5f1;
  border-bottom: 1px solid var(--line);
}

.intro-band span,
.intro-band strong {
  display: block;
}

.intro-band span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.intro-band strong {
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.intro-band p {
  max-width: 820px;
  margin: 0;
  color: var(--soft-ink);
  font-family: var(--font-sans);
  font-size: clamp(24px, 3.15vw, 44px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.home-editorial-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 18px);
  width: min(calc(100% - 64px), 1120px);
  margin: clamp(24px, 4vw, 64px) auto;
  padding: clamp(12px, 1.4vw, 20px);
  background: #f0f1f2;
  border-top: 1px solid rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.92);
}

.home-editorial-gallery figure {
  position: relative;
  aspect-ratio: 1.45 / 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #242424;
}

.home-editorial-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.home-editorial-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.02);
  transition: transform 520ms ease, filter 520ms ease;
}

.home-editorial-gallery figure:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.025);
}

.home-editorial-main {
  grid-column: 1 / -1;
  aspect-ratio: 2.7 / 1;
  order: 1;
}

.home-editorial-gallery figure:nth-child(2) {
  grid-column: 1 / -1;
  aspect-ratio: 2.7 / 1;
  order: 4;
}

.home-editorial-gallery figure:nth-child(3) {
  order: 2;
}

.home-editorial-gallery figure:nth-child(4) {
  order: 3;
}

@media (min-width: 981px) {
  .home-editorial-gallery {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
    width: min(calc(100% - 72px), 1500px);
    aspect-ratio: 2.2 / 1;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .home-editorial-gallery figure {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: auto;
    order: 0;
  }

  .home-editorial-gallery figure:nth-child(1) {
    grid-column: 3 / 8;
    grid-row: 1 / 3;
  }

  .home-editorial-gallery figure:nth-child(2) {
    grid-column: 8 / 11;
    grid-row: 1 / 3;
    aspect-ratio: auto;
  }

  .home-editorial-gallery figure:nth-child(3) {
    grid-column: 11 / 13;
    grid-row: 1 / 2;
  }

  .home-editorial-gallery figure:nth-child(4) {
    grid-column: 11 / 13;
    grid-row: 2 / 3;
  }

  .home-editorial-gallery figure:nth-child(5) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .home-editorial-gallery figure:nth-child(6) {
    grid-column: 1 / 5;
    grid-row: 3 / 5;
  }

  .home-editorial-gallery figure:nth-child(7) {
    grid-column: 5 / 7;
    grid-row: 3 / 5;
  }

  .home-editorial-gallery figure:nth-child(8) {
    grid-column: 7 / 13;
    grid-row: 3 / 5;
  }

  .home-editorial-gallery figure:nth-child(5) img {
    object-position: 72% center;
  }

  .home-editorial-gallery figure:nth-child(6) img {
    object-position: center 64%;
  }

  .home-editorial-gallery figure:nth-child(7) img {
    object-position: center 72%;
  }

  .home-editorial-gallery figure:nth-child(8) img {
    object-position: center 36%;
  }
}

.home-gallery-shell {
  position: relative;
}

.gallery-edit-toggle {
  position: absolute;
  z-index: 5;
  top: clamp(24px, 4vw, 64px);
  right: max(32px, calc((100vw - 1500px) / 2));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(20, 20, 20, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #171717;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transform: translateY(-55%);
  backdrop-filter: blur(12px);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.gallery-edit-toggle:hover,
.gallery-edit-toggle[aria-pressed="true"] {
  background: #171717;
  color: #fff;
  transform: translateY(-55%) scale(1.02);
}

.home-gallery-shell.is-editing .home-editorial-gallery figure {
  cursor: pointer;
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: -4px;
}

.home-gallery-shell.is-editing .home-editorial-gallery figure::before {
  content: "Edit";
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #171717;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.home-gallery-shell.is-editing .home-editorial-gallery figure:hover img {
  filter: saturate(1) contrast(1.04);
}

.gallery-editor {
  width: min(92vw, 760px);
  max-width: 760px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #f7f7f5;
  color: #171717;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.gallery-editor::backdrop {
  background: rgba(13, 13, 13, 0.62);
  backdrop-filter: blur(5px);
}

.gallery-editor-panel {
  padding: clamp(18px, 3vw, 30px);
  max-height: min(90vh, 920px);
  overflow-y: auto;
}

.series-picture-picker {
  padding: 18px 0;
  border-bottom: 1px solid #dedcd8;
}

.series-picture-picker[hidden] {
  display: none;
}

.series-picture-picker-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.series-picture-picker-heading span,
.series-picture-picker-heading strong {
  display: block;
}

.series-picture-picker-heading div > span {
  margin-bottom: 3px;
  color: #77736d;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.series-picture-picker-heading strong {
  font-size: 15px;
  font-weight: 500;
}

.series-picture-picker-heading > span {
  color: #77736d;
  font-size: 11px;
  text-align: right;
}

.series-picture-picker-slider {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 9px;
}

.series-picture-picker-viewport {
  min-width: 0;
  overflow: hidden;
}

.series-picture-picker-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 3px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.series-picture-picker-option {
  flex: 0 0 118px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #dedcd8;
  cursor: pointer;
  scroll-snap-align: center;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.series-picture-picker-option:hover,
.series-picture-picker-option:focus-visible {
  transform: translateY(-2px);
}

.series-picture-picker-option.is-selected {
  border-color: #171717;
  box-shadow: 0 0 0 2px #f7f7f5, 0 0 0 4px #171717;
}

.series-picture-picker-option img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.series-picture-picker-arrow {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid #d8d6d2;
  border-radius: 50%;
  background: #fff;
  color: #171717;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.series-picture-picker-arrow:disabled {
  cursor: default;
  opacity: 0.35;
}

.gallery-editor-heading,
.gallery-editor-actions,
.gallery-editor-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.gallery-editor-heading {
  margin-bottom: 20px;
}

.gallery-editor-heading span {
  display: block;
  margin-bottom: 4px;
  color: #77736d;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-editor-heading h2 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.gallery-editor-close {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #d8d6d2;
  border-radius: 50%;
  background: #fff;
  color: #171717;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.gallery-crop-stage {
  --gallery-frame-ratio: 1.45;
  position: relative;
  width: 100%;
  aspect-ratio: var(--gallery-frame-ratio);
  overflow: hidden;
  background: #242424;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.gallery-crop-stage:active {
  cursor: grabbing;
}

.gallery-crop-stage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1);
  transform-origin: center;
  pointer-events: none;
  will-change: transform, object-position;
}

.gallery-drag-hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.7);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  transform: translateX(-50%);
  pointer-events: none;
}

.gallery-editor-controls {
  padding: 18px 0;
  border-bottom: 1px solid #dedcd8;
}

.gallery-replace-button,
.gallery-editor-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid #d2d0cc;
  border-radius: 999px;
  background: #fff;
  color: #171717;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.gallery-replace-button[hidden] {
  display: none;
}

.gallery-replace-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.gallery-zoom-control {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: min(52%, 300px);
  color: #585550;
  font-size: 12px;
}

.gallery-zoom-control input {
  width: 100%;
  accent-color: #171717;
}

.gallery-editor-actions {
  position: sticky;
  z-index: 3;
  bottom: -1px;
  margin-top: 14px;
  padding: 14px 0 2px;
  border-top: 1px solid #dedcd8;
  background: #f7f7f5;
  box-shadow: 0 -12px 22px rgba(247, 247, 245, 0.92);
}

.gallery-editor-actions > div {
  display: flex;
  gap: 8px;
}

.gallery-editor-actions .gallery-restore-button {
  border-color: transparent;
  background: transparent;
  color: #6e6a64;
  padding-inline: 0;
}

.gallery-editor-actions .gallery-save-button {
  border-color: #171717;
  background: #171717;
  color: #fff;
}

.gallery-editor-actions .gallery-delete-content-button {
  border-color: #b33a32;
  background: #fff;
  color: #a72f28;
}

.gallery-editor-actions .gallery-delete-content-button:hover,
.gallery-editor-actions .gallery-delete-content-button:focus-visible {
  background: #a72f28;
  color: #fff;
}

.gallery-editor-note {
  margin: 12px 0 0;
  color: #8a8680;
  font-size: 11px;
  text-align: right;
}

.gallery-text-editor {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #dedcd8;
  border-radius: 14px;
  background: #fff;
}

.gallery-text-editor[hidden] {
  display: none;
}

.gallery-text-editor-heading,
.gallery-text-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gallery-text-editor-heading span {
  color: #77736d;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-text-editor-heading h3 {
  margin-top: 3px;
  font-size: 20px;
  font-weight: 500;
}

.gallery-text-editor-heading small,
.gallery-text-status {
  color: #77736d;
  font-size: 11px;
}

.gallery-text-editor-heading small {
  max-width: 210px;
  text-align: right;
}

.gallery-text-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.gallery-text-field {
  display: grid;
  gap: 6px;
  color: #585550;
  font-size: 11px;
}

.gallery-text-field:has(textarea) {
  grid-column: 1 / -1;
}

.gallery-text-field input,
.gallery-text-field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #d8d6d2;
  border-radius: 9px;
  background: #fdfdfc;
  color: #171717;
  font: inherit;
  font-size: 13px;
  resize: vertical;
}

.gallery-text-field input:focus,
.gallery-text-field textarea:focus {
  border-color: #171717;
  outline: 2px solid rgba(23, 23, 23, 0.1);
}

.gallery-text-status {
  min-height: 16px;
  margin: 10px 0 0;
}

.gallery-text-actions button {
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid #d2d0cc;
  border-radius: 999px;
  background: #fff;
  color: #171717;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.gallery-text-actions .gallery-text-restore {
  border-color: transparent;
  color: #6e6a64;
}

.gallery-text-actions .gallery-text-save {
  border-color: #171717;
  background: #171717;
  color: #fff;
}

.gallery-text-actions button:disabled {
  cursor: wait;
  opacity: 0.55;
}

@media (max-width: 640px) {
  .gallery-edit-toggle {
    right: 22px;
    font-size: 12px;
    transform: translateY(-45%);
  }

  .gallery-edit-toggle:hover,
  .gallery-edit-toggle[aria-pressed="true"] {
    transform: translateY(-45%);
  }

  .gallery-editor {
    width: calc(100vw - 24px);
    border-radius: 16px;
  }

  .gallery-editor-controls,
  .gallery-editor-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-zoom-control {
    width: 100%;
    min-width: 0;
  }

  .gallery-editor-actions > div,
  .gallery-editor-actions > div button {
    flex: 1;
  }

  .gallery-editor-actions .gallery-restore-button {
    align-self: flex-start;
  }

  .gallery-text-editor-heading,
  .gallery-text-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-text-editor-heading small {
    max-width: none;
    text-align: left;
  }

  .gallery-text-fields {
    grid-template-columns: 1fr;
  }

  .gallery-text-actions button {
    width: 100%;
  }
}


.stellar-material-palette .series-material-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 42px);
}

.stellar-material-palette .series-swatch {
  aspect-ratio: 344 / 195;
  background-image: url("assets/whole-series-selected/stellar/material-palette-png.webp");
  background-repeat: no-repeat;
  background-size: 595.35% 204.62%;
}

.stellar-material-palette .stellar-phantom-grey {
  background-position: 1.06% 19.12%;
}

.stellar-material-palette .stellar-nova-white {
  background-position: 25.23% 19.12%;
}

.stellar-material-palette .stellar-meteor-brown {
  background-position: 49.30% 19.12%;
}

.stellar-material-palette .stellar-starfield {
  background-position: 73.47% 19.12%;
}

.stellar-material-palette .stellar-sand-veil {
  background-position: 97.59% 19.12%;
}

@media (max-width: 900px) {
  .stellar-material-palette .series-material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.image-edit-overlay-layer {
  display: none;
  position: absolute;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.is-admin-editor .image-edit-overlay-layer {
  display: block;
}

.image-frame-menu {
  position: absolute;
  width: 34px;
  height: 30px;
  padding: 0 0 6px;
  border: 1px solid rgba(24, 24, 24, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #171717;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.14);
  font-size: 22px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.image-frame-menu:hover,
.image-frame-menu:focus-visible {
  background: #171717;
  color: #fff;
  transform: scale(1.06);
}

.image-frame-menu.is-series-card-edit {
  width: auto;
  min-width: 62px;
  height: 32px;
  padding: 0 14px;
  font-size: 10px;
  line-height: 30px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.is-content-card-hidden {
  display: none !important;
}

.site-nav > .is-menu-category-hidden {
  display: none !important;
}

.is-admin-editor .is-content-card-hidden {
  display: var(--content-card-display, block) !important;
  position: relative;
  filter: grayscale(1);
  opacity: 0.52;
}

.hidden-card-badge {
  display: none;
}

.is-admin-editor .is-content-card-hidden > .hidden-card-badge {
  position: absolute;
  z-index: 12;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.86);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.hidden-card-placeholder {
  display: none;
}

.is-admin-editor .hidden-card-placeholder {
  display: flex;
  min-height: 110px;
  padding: 18px;
  border: 1px dashed rgba(23, 23, 23, 0.28);
  background: rgba(247, 247, 245, 0.9);
  color: #171717;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hidden-card-placeholder span {
  display: grid;
  gap: 5px;
}

.hidden-card-placeholder b {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.hidden-card-placeholder small {
  color: #77736d;
  font-size: 11px;
}

.hidden-card-placeholder button,
.gallery-hide-card-button {
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid #d2d0cc;
  border-radius: 999px;
  background: #fff;
  color: #171717;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}

.gallery-hide-card-button {
  color: #8c3434;
}

.gallery-hide-card-button[hidden] {
  display: none;
}

.gallery-editor[data-global-image-editor] {
  z-index: 1300;
}

.gallery-editor-status {
  min-height: 16px;
  margin: 10px 0 -2px;
  color: #6e6a64;
  font-size: 11px;
  text-align: right;
}

.admin-login-dialog {
  width: min(92vw, 460px);
  max-width: 460px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #f7f7f5;
  color: #171717;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.admin-login-dialog::backdrop {
  background: rgba(13, 13, 13, 0.64);
  backdrop-filter: blur(5px);
}

.admin-login-panel {
  padding: clamp(22px, 4vw, 34px);
}

.admin-login-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.admin-login-heading span {
  display: block;
  margin-bottom: 6px;
  color: #77736d;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-login-heading h2 {
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.admin-login-close {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid #d8d6d2;
  border-radius: 50%;
  background: #fff;
  color: #171717;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.admin-login-intro {
  margin: 16px 0 24px;
  color: #6e6a64;
  font-size: 14px;
  line-height: 1.55;
}

.admin-login-field {
  display: grid;
  gap: 8px;
  margin-top: 15px;
}

.admin-login-field[hidden],
.admin-forgot-password[hidden],
[data-insight-fields][hidden],
[data-project-fields][hidden],
[data-showroom-fields][hidden],
[data-product-fields][hidden] {
  display: none;
}

.admin-login-field span {
  color: #5f5b55;
  font-size: 12px;
}

.admin-login-field input,
.admin-login-field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d3d0cb;
  border-radius: 10px;
  background: #fff;
  color: #171717;
  font: inherit;
}

.admin-login-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d3d0cb;
  border-radius: 10px;
  background: #fff;
  color: #171717;
  font: inherit;
  line-height: 1.5;
  resize: vertical;
}

.content-gallery-help {
  margin: 10px 0 8px;
  color: #77716a;
  font-size: 12px;
  line-height: 1.45;
}

.content-gallery-preview {
  display: flex;
  gap: 10px;
  min-height: 0;
  padding: 2px 0 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
}

.content-gallery-preview:empty {
  display: none;
}

.content-gallery-preview-item {
  flex: 0 0 132px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d3d0cb;
  border-radius: 10px;
  background: #fff;
  cursor: grab;
  scroll-snap-align: start;
  transition: border-color 160ms ease, opacity 160ms ease, translate 160ms ease;
}

.content-gallery-preview-item:active {
  cursor: grabbing;
}

.content-gallery-preview-item.is-dragging {
  opacity: 0.45;
  translate: 0 3px;
}

.content-gallery-preview-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  background: #eceae6;
}

.content-gallery-preview-item figcaption {
  display: grid;
  gap: 4px;
  padding: 8px;
}

.content-gallery-preview-item figcaption > strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.content-gallery-preview-item figcaption > span {
  overflow: hidden;
  color: #77716a;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-gallery-preview-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-top: 2px;
}

.content-gallery-preview-actions button {
  min-height: 28px;
  padding: 0;
  border: 1px solid #d3d0cb;
  border-radius: 6px;
  background: #f7f7f5;
  color: #171717;
  cursor: pointer;
}

.content-gallery-preview-actions button:disabled {
  cursor: default;
  opacity: 0.3;
}

.content-editor-dialog {
  width: min(94vw, 720px);
  max-width: 720px;
  max-height: 90vh;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #f7f7f5;
  color: #171717;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.content-editor-dialog::backdrop {
  background: rgba(13, 13, 13, 0.64);
  backdrop-filter: blur(5px);
}

.content-editor-panel {
  max-height: 90vh;
  padding: clamp(22px, 4vw, 34px);
  overflow-y: auto;
}

.admin-login-field input[readonly] {
  color: #67635e;
  background: #efeeeb;
}

.admin-login-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 22px;
  border: 1px solid #171717;
  border-radius: 999px;
  background: #171717;
  color: #fff;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.admin-login-submit:disabled,
.admin-forgot-password:disabled {
  cursor: wait;
  opacity: 0.6;
}

.admin-forgot-password {
  display: block;
  margin: 14px auto 0;
  padding: 2px;
  border: 0;
  background: transparent;
  color: #67635e;
  font: inherit;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

.admin-login-status {
  min-height: 18px;
  margin: 14px 0 0;
  color: #4f6e56;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.admin-login-status.is-error {
  color: #9b3535;
}

.admin-editor-toolbar {
  position: fixed;
  z-index: 1400;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.admin-editor-toolbar[hidden] {
  display: none;
}

.admin-editor-toolbar > span {
  display: grid;
  gap: 2px;
  padding: 0 8px 0 4px;
}

.admin-editor-toolbar b {
  font-size: 12px;
  font-weight: 600;
}

.admin-editor-toolbar small {
  color: #77736d;
  font-size: 10px;
}

.admin-editor-toolbar button {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid #d8d6d2;
  border-radius: 999px;
  background: #fff;
  color: #171717;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}

.admin-editor-toolbar [data-admin-editor-toggle][aria-pressed="true"] {
  border-color: #171717;
  background: #171717;
  color: #fff;
}

@media (max-width: 640px) {
  .image-frame-menu {
    width: 32px;
    height: 28px;
    padding-bottom: 5px;
    font-size: 20px;
  }

  .image-frame-menu.is-series-card-edit {
    width: auto;
    min-width: 56px;
    height: 30px;
    padding: 0 11px;
    font-size: 9px;
    line-height: 28px;
  }

  .series-picture-picker-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .series-picture-picker-heading > span {
    text-align: left;
  }

  .series-picture-picker-slider {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 6px;
  }

  .series-picture-picker-arrow {
    width: 34px;
    height: 34px;
  }

  .series-picture-picker-option {
    flex-basis: 94px;
  }

  .admin-editor-toolbar {
    right: 12px;
    bottom: 12px;
    left: 12px;
    flex-wrap: wrap;
  }

  .admin-editor-toolbar > span {
    flex: 1 1 100%;
  }
}

.section {
  padding: clamp(88px, 11vw, 152px) clamp(22px, 5vw, 82px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) minmax(280px, 1fr);
  gap: clamp(28px, 8vw, 120px);
  align-items: start;
  margin-bottom: clamp(44px, 7vw, 88px);
}

h2 {
  margin: 0;
  max-width: 940px;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.8vw, 72px);
  font-weight: 400;
  line-height: 1.06;
}

.products-section .products-heading,
.project-section .project-heading,
.showroom-section .showroom-heading,
.about-section .about-home-heading,
.insights-section .insights-intro h2,
.home-social .home-social-heading,
.contact-copy .contact-heading {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.products-section,
.about-section {
  background: #fbfaf8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-card {
  min-height: 510px;
  padding: clamp(18px, 1.8vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background 220ms ease;
}

.product-card:last-child {
  border-right: 0;
}

.product-card::before {
  content: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  display: block;
  margin: 0 0 auto;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9);
  transition: filter 260ms ease, transform 360ms ease;
}

.product-card p {
  margin: 28px 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.product-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-size: clamp(22px, 1.85vw, 30px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.product-card span {
  max-width: 280px;
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 1181px) {
  .products-section .product-card h3 {
    min-height: 2.08em;
    display: flex;
    align-items: flex-end;
  }

  .products-section .product-card span {
    min-height: 4.35em;
  }
}

.product-card:hover h3 {
  color: var(--accent);
}

.product-card:hover {
  background: #f3f1ed;
}

.product-card:hover img {
  filter: saturate(1);
  transform: scale(1.025);
}

.product-page {
  background: var(--white);
}

.product-page main {
  padding-top: 104px;
}

.product-page .series-section:first-child {
  padding-top: clamp(54px, 7vw, 92px);
}

.video-product-hero {
  position: relative;
  min-height: calc(100vh - 104px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(52px, 6vw, 86px) clamp(22px, 5vw, 82px);
  background: #1b1b1a;
}

.video-hero-bg {
  position: absolute;
  inset: -26px;
  width: calc(100% + 52px);
  height: calc(100% + 52px);
  object-fit: cover;
  filter: grayscale(1) blur(10px);
  transform: scale(1.025);
  opacity: 0.66;
}

.video-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.04) 48%, rgba(0, 0, 0, 0.3)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.22));
}

.video-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(420px, 1fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  width: min(100%, 1440px);
}

.video-hero-copy {
  color: var(--white);
}

.video-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.video-hero-copy h1 {
  max-width: 500px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.video-hero-frame {
  position: relative;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}

.video-hero-main {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #050505;
}

.video-hero-controls {
  position: absolute;
  left: 22px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.video-fullscreen-button {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 2;
}

.video-control-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.96);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0.96;
  transition: background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.video-control-button[hidden] {
  display: none !important;
}

.video-control-button:hover,
.video-control-button:focus-visible {
  opacity: 1;
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.pause-icon,
.play-icon,
.fullscreen-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
}

.pause-icon::before,
.pause-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 3px;
  height: 16px;
  background: currentColor;
}

.pause-icon::before {
  left: 5px;
}

.pause-icon::after {
  right: 5px;
}

.play-icon::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.fullscreen-icon::before,
.fullscreen-icon::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  inset: 2px;
  background:
    linear-gradient(currentColor, currentColor) left top / 7px 2px no-repeat,
    linear-gradient(currentColor, currentColor) left top / 2px 7px no-repeat,
    linear-gradient(currentColor, currentColor) right top / 7px 2px no-repeat,
    linear-gradient(currentColor, currentColor) right top / 2px 7px no-repeat,
    linear-gradient(currentColor, currentColor) left bottom / 7px 2px no-repeat,
    linear-gradient(currentColor, currentColor) left bottom / 2px 7px no-repeat,
    linear-gradient(currentColor, currentColor) right bottom / 7px 2px no-repeat,
    linear-gradient(currentColor, currentColor) right bottom / 2px 7px no-repeat;
}

.product-hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  align-items: end;
  gap: clamp(34px, 6vw, 96px);
  padding: 128px clamp(22px, 5vw, 82px) 72px;
  background: var(--paper);
}

.product-hero-copy {
  max-width: 680px;
}

.product-hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 400;
  line-height: 0.98;
}

.product-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 300;
}

.product-hero-image {
  min-height: 620px;
  background: var(--mist);
  background-image: var(--product-hero-image);
  background-position: var(--product-hero-position, center);
  background-size: cover;
}

.product-detail-band {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(280px, 1fr);
  gap: clamp(28px, 8vw, 120px);
  padding: clamp(72px, 10vw, 130px) clamp(22px, 5vw, 82px);
  border-bottom: 1px solid var(--line);
}

.product-detail-band h2 {
  max-width: 780px;
}


.product-coming-soon {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: clamp(78px, 9vw, 126px) clamp(22px, 5vw, 82px);
  text-align: center;
  background: #f7f5f1;
  border-bottom: 1px solid var(--line);
}

.product-coming-soon .section-heading {
  display: block;
  max-width: 860px;
  margin: 0;
}

.product-coming-soon h1 {
  margin: 12px auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.8vw, 76px);
  font-weight: 400;
  line-height: 1.04;
}

.coming-soon-progress {
  position: relative;
  width: min(320px, 58vw);
  height: 2px;
  margin: 34px auto 0;
  overflow: hidden;
  background: rgba(22, 22, 22, 0.14);
}

.coming-soon-progress span {
  position: absolute;
  top: 0;
  left: -42%;
  width: 42%;
  height: 100%;
  background: var(--ink);
  animation: comingSoonProgress 1.85s ease-in-out infinite;
}

.coming-soon-status {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

@keyframes comingSoonProgress {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(340%);
  }
}

.product-coming-soon p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 300;
  line-height: 1.6;
}

.series-section {
  padding: clamp(78px, 9vw, 126px) clamp(22px, 5vw, 82px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.series-heading {
  display: block;
  max-width: 760px;
  margin: 0 auto clamp(46px, 6vw, 82px);
  text-align: center;
}

.series-heading h2 {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.08;
}

@media (min-width: 981px) {
  body.product-page .series-section .series-heading {
    max-width: 1080px;
  }

  body.product-page .series-section .series-heading h2 {
    max-width: 980px;
    text-wrap: balance;
  }
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(58px, 7vw, 96px) clamp(24px, 4vw, 64px);
}

.series-card {
  display: grid;
  gap: clamp(22px, 2.8vw, 34px);
  min-width: 0;
  text-align: center;
}

.series-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.78;
  background: transparent;
}

.series-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.96);
  transition: transform 360ms ease, filter 360ms ease;
}

.series-card:hover img {
  filter: saturate(1);
  transform: translateY(-3px);
}

.series-card > div:not(.series-media) {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding-inline: clamp(10px, 4vw, 80px);
}

.series-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.series-card p {
  max-width: 560px;
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(13px, 1.02vw, 15.3px);
  font-weight: 300;
  line-height: 1.55;
}

.customisation-catalogue {
  color: #f4f1eb;
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.07), transparent 34%),
    linear-gradient(135deg, #242424 0%, #151515 100%);
}

.customisation-catalogue .series-heading {
  margin-bottom: clamp(42px, 5vw, 70px);
}

.customisation-catalogue .series-heading .eyebrow,
.customisation-catalogue .series-heading h2 {
  color: #f7f5f0;
}

.customisation-catalogue-intro {
  max-width: 620px;
  margin: 18px auto 0;
  color: rgba(247, 245, 240, 0.65);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.6;
}

.customisation-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}

.customisation-category {
  position: relative;
  min-height: 270px;
  padding: clamp(28px, 3vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
}

.customisation-category::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.customisation-category-wide {
  grid-column: 1 / -1;
  min-height: 240px;
}

.customisation-category-heading {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.customisation-category-number {
  padding-top: 4px;
  color: rgba(247, 245, 240, 0.38);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.customisation-category-heading p {
  margin: 0 0 5px;
  color: rgba(247, 245, 240, 0.5);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.customisation-category-heading h3 {
  margin: 0;
  color: #fff;
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.customisation-series-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.customisation-series-list li {
  color: rgba(247, 245, 240, 0.78);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  white-space: nowrap;
}

.customisation-series-list li:not(:last-child)::after {
  content: "/";
  margin: 0 12px;
  color: rgba(247, 245, 240, 0.22);
}

@media (max-width: 760px) {
  .customisation-category-grid {
    grid-template-columns: 1fr;
  }

  .customisation-category,
  .customisation-category-wide {
    grid-column: auto;
    min-height: 0;
  }

  .customisation-series-list li {
    white-space: normal;
  }
}

.customisation-catalogue {
  color: var(--ink);
  background: var(--white);
}

.customisation-catalogue .series-heading .eyebrow,
.customisation-catalogue .series-heading h2 {
  color: var(--ink);
}

.customisation-catalogue .customisation-catalogue-intro {
  color: var(--muted);
}

.series-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto;
}

.series-filter-button {
  min-height: 36px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-ink);
  background: transparent;
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.series-filter-button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.series-filter-count {
  margin: 16px 0 clamp(38px, 5vw, 64px);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.series-card[hidden] {
  display: none;
}

.furniture-video-hero {
  min-height: 0;
  aspect-ratio: 16 / 9;
  padding: clamp(112px, 13vw, 178px) clamp(22px, 5vw, 82px) clamp(88px, 10vw, 138px);
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: #171717;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.furniture-video-hero__media,
.furniture-video-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.furniture-video-hero__media {
  z-index: -2;
  display: block;
  opacity: 0;
  object-fit: contain;
  object-position: center;
  transition: opacity 1200ms ease;
}

.furniture-video-hero__media.is-video-visible {
  opacity: 1;
}

.whole-home-video-hero .furniture-video-hero__media,
.kitchen-video-hero .furniture-video-hero__media,
.furniture-collection-hero .furniture-video-hero__media,
.doors-video-hero .furniture-video-hero__media {
  object-fit: cover;
}

.whole-home-video-hero .furniture-video-hero__media.is-loop-hold {
  transform: scale(1.045);
  transition: transform 2500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.whole-home-video-hero .furniture-video-hero__media.is-loop-resetting {
  transform: scale(1);
  transition: none;
}

.furniture-video-hero__shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.3), rgba(9, 9, 9, 0.48)),
    radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24) 78%);
}

.furniture-video-hero__content {
  width: min(100%, 1120px);
  text-align: center;
}

.furniture-video-hero .series-heading {
  margin-bottom: 0;
}

.furniture-video-hero .series-heading .eyebrow,
.furniture-video-hero .series-heading h1,
.furniture-video-hero .series-heading h2 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
}

.furniture-video-hero .series-heading h1 {
  max-width: 900px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.furniture-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 3vw, 42px);
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
  transform: translateX(-50%);
}

.furniture-scroll-cue i {
  width: 16px;
  height: 16px;
  display: block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: furnitureScrollCue 1.8s ease-in-out infinite;
}

.furniture-scroll-cue:hover {
  color: var(--white);
}

.furniture-scroll-cue:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 8px;
}

@keyframes furnitureScrollCue {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(-3px) rotate(45deg);
  }

  50% {
    opacity: 1;
    transform: translateY(5px) rotate(45deg);
  }
}

.furniture-catalogue-section {
  padding-top: clamp(68px, 8vw, 108px);
}

.furniture-catalogue-controls {
  margin: 0 auto clamp(48px, 6vw, 82px);
}

.furniture-catalogue-heading {
  width: 100%;
  margin-bottom: clamp(30px, 4vw, 48px);
  display: grid;
  justify-items: center;
  text-align: center;
}

.furniture-catalogue-heading .eyebrow {
  margin-bottom: 12px;
}

.furniture-catalogue-heading h2 {
  width: 100%;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.furniture-catalogue-controls .series-filter-count {
  margin-bottom: 0;
}

.sofa-subfilters {
  max-width: 820px;
  margin: clamp(24px, 3vw, 36px) auto 0;
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 68px);
}

.sofa-subfilters[hidden] {
  display: none;
}

.sofa-subfilter-group {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.sofa-subfilter-group > span {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sofa-subfilter-group > div {
  display: flex;
  gap: 6px;
  padding: 4px;
  background: #f2f0ec;
  border-radius: 999px;
}

.sofa-subfilter-button {
  min-height: 34px;
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  color: var(--soft-ink);
  background: transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.sofa-subfilter-button:disabled {
  color: #aaa49c;
  background: transparent;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.55;
}

.dining-subfilters {
  max-width: 1080px;
}

.dining-subfilters .sofa-subfilter-group {
  width: 100%;
}

.dining-subfilters .sofa-subfilter-group > div {
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 24px;
}

.sofa-subfilter-button:hover,
.sofa-subfilter-button.is-active {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.sofa-subfilter-button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .sofa-subfilters {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .sofa-subfilter-group > div {
    justify-content: center;
  }
}

.furniture-series-grid .series-card h3 {
  font-size: clamp(20px, 1.65vw, 28px);
}

.furniture-series-grid .series-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
}

.furniture-series-grid .series-media img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.furniture-series-grid .series-card[data-series-categories="sofa"] {
  gap: 10px;
}

.furniture-series-grid .series-card[data-series-categories="sofa"] .series-media {
  aspect-ratio: 1.12;
  align-items: end;
}

.furniture-series-grid .series-card[data-series-categories="sofa"] .series-media img {
  height: auto;
  max-height: 70%;
  align-self: end;
}

.furniture-series-grid .series-card[data-series-categories="bed"] {
  gap: 10px;
}

.furniture-series-grid .series-card[data-series-categories="bed"] .series-media {
  aspect-ratio: 1.12;
  align-items: end;
}

.furniture-series-grid .series-card[data-series-categories="dining-table"] {
  gap: 10px;
}

.furniture-series-grid .series-card[data-series-categories="dining-table"] .series-media {
  aspect-ratio: 1.12;
  align-items: end;
}

.furniture-series-grid .series-card[data-series-categories="chair"] {
  gap: 10px;
}

.furniture-series-grid .series-card[data-series-categories="chair"] .series-media {
  aspect-ratio: 1.12;
  align-items: end;
}

.furniture-series-grid .series-card[data-chair-category="stool"] {
  gap: 10px;
}

.furniture-series-grid .series-card[data-chair-category="stool"] .series-media {
  align-items: end;
  aspect-ratio: 1.35;
}

.furniture-series-grid .series-card[data-chair-category="stool"] .series-media img {
  width: 70%;
  height: 90%;
}

@media (min-width: 641px) {
  .furniture-series-grid {
    row-gap: clamp(18px, 2vw, 32px);
  }

  .furniture-series-grid .series-card[data-series-categories] .series-media {
    aspect-ratio: 1.5;
  }
}

.furniture-series-grid .series-card p {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.furniture-empty-state {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 24px;
  text-align: center;
  border-block: 1px solid var(--line);
}

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

.furniture-empty-state h3 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 400;
}

.furniture-empty-state > p:last-child {
  max-width: 520px;
  margin: 20px auto 0;
  color: var(--soft-ink);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .furniture-video-hero {
    aspect-ratio: auto;
    min-height: 600px;
    padding: 112px 22px 82px;
  }

  .furniture-video-hero__media {
    object-fit: cover;
  }

  .furniture-video-hero .series-filter-bar {
    margin-inline: -22px;
    padding-inline: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  video.furniture-video-hero__media {
    display: none;
    transition: none;
  }

  .furniture-scroll-cue i {
    animation: none;
  }
}

.series-card-image-pending .series-media {
  background: #171717;
}

.series-card-image-pending .series-media img {
  opacity: 0.28;
  filter: grayscale(1) brightness(0.72);
}

.series-image-status {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.62);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .series-filter-bar {
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-inline: calc(clamp(22px, 5vw, 82px) * -1);
    padding: 2px clamp(22px, 5vw, 82px) 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .series-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .series-filter-button {
    flex: 0 0 auto;
  }

  .customisation-catalogue .series-filter-bar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px 6px;
    width: 100%;
    margin-inline: 0;
    padding: 2px 0 8px;
    overflow: visible;
  }

  .customisation-catalogue .series-filter-button {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 6px 3px;
    font-size: 10px;
    line-height: 1.1;
    white-space: normal;
  }

  .furniture-catalogue-section .series-filter-bar {
    width: 100%;
    margin-inline: 0;
    padding: 2px 0 8px;
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
  }
}

@media (min-width: 981px) {
  .series-grid {
    align-items: start;
  }

  .series-card,
  .series-card > div:not(.series-media) {
    align-content: start;
  }
}

.product-social {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 0.7fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
  justify-content: center;
  padding: clamp(68px, 7vw, 104px) clamp(22px, 5vw, 82px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-social {
  max-width: none;
  grid-template-columns: minmax(340px, 520px) minmax(320px, 430px);
  gap: clamp(18px, 2.4vw, 34px);
  justify-content: center;
  background: #f7f5f1;
}

.home-social > .product-social-copy,
.home-social > .social-phone {
  width: 100%;
}

.home-social > .product-social-copy {
  max-width: 520px;
}

.home-social > .social-phone {
  max-width: 430px;
}

.product-social-copy span {
  display: block;
  margin-bottom: clamp(26px, 4vw, 52px);
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.product-social-copy h2 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(38px, 4.25vw, 68px);
  line-height: 1.06;
}

.home-social .social-phone {
  transform: none;
  justify-self: center;
  align-self: center;
}

.social-compact {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(48px, 6vw, 78px) clamp(22px, 5vw, 82px);
  background: #f7f5f1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.social-compact-copy span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.social-compact-copy h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.08;
}

.social-compact-copy p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--soft-ink);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 300;
  line-height: 1.65;
}

.social-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.social-compact-card {
  min-height: 158px;
  padding: 22px 18px;
  display: grid;
  gap: 16px;
  align-content: center;
  justify-items: center;
  text-align: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 7px;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(36, 33, 28, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.social-compact-card:hover,
.social-compact-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(36, 33, 28, 0.12);
}

.social-compact-card strong,
.social-compact-card small {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
}

.social-compact-card strong {
  color: #111;
  font-size: 15px;
  line-height: 1.2;
}

.social-compact-card small {
  margin-top: 7px;
  color: #555;
  font-size: 12px;
  line-height: 1.25;
}

.showroom-location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.6vw, 64px);
  max-width: 1480px;
  margin: 0 auto;
}

.showroom-location-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(35, 32, 28, 0.07);
}

.showroom-location-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--mist);
}

.showroom-location-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.showroom-coming-soon-media {
  position: relative;
  display: grid;
  place-content: center;
  gap: 12px;
  color: #f6f3ee;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 55%),
    #171717;
}

.showroom-coming-soon-media strong {
  position: relative;
  z-index: 1;
  font-size: clamp(17px, 2vw, 29px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.showroom-coming-soon-media .showroom-coming-soon-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  filter: saturate(0.72) brightness(0.48);
  box-shadow: none;
}

.showroom-coming-soon-label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.coming-soon-card .showroom-location-copy {
  background: #f7f5f1;
}

.showroom-location-copy {
  min-height: 210px;
  padding: clamp(24px, 3vw, 36px);
}

.showroom-location-copy span {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.showroom-location-copy h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.12;
}

.showroom-location-copy p {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--soft-ink);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
}

.showroom-location-copy .button {
  margin-top: 26px;
}

.social-phone {
  display: grid;
  justify-items: center;
}

.phone-frame {
  width: min(100%, 278px);
  min-height: 524px;
  padding: 8px;
  position: relative;
  color: var(--ink);
  background: linear-gradient(145deg, #070707, #3d3d3d 44%, #080808);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 38px;
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.2), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.phone-frame::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -48px;
  width: 118%;
  height: 64px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.06) 38%, rgba(0, 0, 0, 0) 74%);
  filter: blur(8px);
  transform: translateX(-50%);
  pointer-events: none;
}

.phone-notch {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 2;
  width: 96px;
  height: 25px;
  background: #050505;
  border-radius: 0 0 19px 19px;
  transform: translateX(-50%);
}

.phone-notch::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 31px;
  width: 34px;
  height: 4px;
  background: #1c1c1c;
  border-radius: 99px;
}

.phone-notch::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 19px;
  width: 7px;
  height: 7px;
  background: #101827;
  border-radius: 50%;
}

.phone-screen {
  min-height: 508px;
  padding: 15px 14px 10px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 11px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, #f6f5f3 0%, #e8e6e1 100%);
  border-radius: 31px;
  overflow: hidden;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6px;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.phone-hero {
  padding: 33px 4px 20px;
  display: grid;
  justify-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.phone-logo {
  width: 76%;
  max-width: 174px;
  height: auto;
  display: block;
}

.phone-social-stack {
  display: grid;
  align-content: center;
  gap: 12px;
  padding-block: 6px 4px;
}

.phone-social-card {
  min-height: 76px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 16px;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 7px;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(36, 33, 28, 0.1);
  backdrop-filter: blur(14px);
  transform-origin: center;
  animation: socialCardFocus 6s ease-in-out infinite;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.phone-social-card:hover,
.phone-social-card:focus-visible {
  transform: scale(1.04);
  box-shadow: 0 20px 52px rgba(36, 33, 28, 0.12);
}

.instagram-card {
  animation-delay: 2s;
}

.rednote-card {
  animation-delay: 4s;
}

.social-icon-box {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
}

.social-logo-img {
  width: 27px;
  height: 27px;
  display: block;
  object-fit: contain;
}

.social-compact-card .social-icon-box {
  width: 54px;
  height: 54px;
}

.social-compact-card .social-logo-img {
  width: 42px;
  height: 42px;
}

.home-social .social-icon-box {
  width: 44px;
  height: 44px;
}

.home-social .social-logo-img {
  width: 34px;
  height: 34px;
}

.phone-social-text {
  display: block;
  min-width: 0;
  padding-left: 10px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.phone-social-text strong {
  display: block;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  line-height: 1.15;
}

.phone-social-text small {
  display: block;
  margin-top: 6px;
  color: #4f4f4f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
}

.phone-card-arrow {
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 23px;
  font-weight: 300;
  line-height: 1;
}

.phone-bottom-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 12px 5px 3px;
  color: #5f5f5f;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  text-align: center;
}

@keyframes socialCardFocus {
  0%,
  24%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }

  8%,
  16% {
    transform: scale(1.075);
    opacity: 1;
    box-shadow: 0 24px 56px rgba(36, 33, 28, 0.14);
  }
}

.home-social .phone-social-stack {
  transform: translateY(-16px);
  gap: 10px;
}

.home-social .phone-social-card {
  animation: none;
}

.home-social .facebook-card {
  animation: socialSequencePop 8s ease-in-out infinite;
}

.home-social .instagram-card {
  animation: socialSequencePop 8s ease-in-out infinite;
  animation-delay: 2s;
}

.home-social .rednote-card {
  animation: socialSequencePop 8s ease-in-out infinite;
  animation-delay: 4s;
}

.home-social .whatsapp-card {
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.86);
  animation: whatsappAttentionShake 8s ease-in-out infinite;
  animation-delay: 6s;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

@keyframes socialSequencePop {
  0%, 18%, 100% { transform: scale(1); opacity: 0.78; }
  6%, 12% { transform: scale(1.065); opacity: 1; }
}

@keyframes whatsappAttentionShake {
  0%, 18%, 100% { transform: translateX(0) rotate(0deg); opacity: 0.82; }
  5% { transform: translateX(-3px) rotate(-1deg); opacity: 1; }
  8% { transform: translateX(3px) rotate(1deg); opacity: 1; }
  11% { transform: translateX(-2px) rotate(-0.7deg); opacity: 1; }
  14% { transform: translateX(2px) rotate(0.7deg); opacity: 1; }
}

.home-social .phone-frame {
  position: relative;
  box-shadow:
    0 44px 110px rgba(22, 22, 22, 0.1),
    0 18px 48px rgba(22, 22, 22, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.home-social .phone-notch {
  top: 6px;
  height: 24px;
}

.home-social .phone-screen {
  padding-top: 10px;
  gap: 8px;
}

.home-social .phone-hero {
  padding-top: 26px;
}

.product-next {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(22px, 5vw, 82px);
  color: var(--muted);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.product-next a {
  color: var(--ink);
  text-decoration: none;
}

.product-next a:hover {
  color: var(--accent);
}

.about-landing,
.about-editorial,
.about-storyline,
.about-timeline-section {
  padding: clamp(78px, 9vw, 126px) clamp(22px, 5vw, 82px);
  background: #f7f5f1;
  border-bottom: 1px solid var(--line);
}


.about-landing .series-heading {
  max-width: 1180px;
}

.about-landing .series-heading h2 {
  max-width: 1180px;
  font-size: clamp(34px, 3.4vw, 50px);
}

.about-storyline {
  display: grid;
  gap: clamp(48px, 6vw, 84px);
  padding-top: clamp(30px, 4vw, 58px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.about-story-title {
  text-align: center;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  justify-self: center;
}

.about-story-title h2 {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.6vw, 44px);
  font-weight: 400;
  letter-spacing: 0;
}

.about-feature-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 4.6vw, 70px);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.about-feature-row.reverse {
  grid-template-columns: minmax(320px, 0.72fr) minmax(280px, 0.8fr);
}

.about-feature-row.reverse .about-feature-copy {
  order: 2;
  text-align: center;
}

.about-feature-row.reverse .about-feature-media {
  order: 1;
}

.about-feature-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-feature-copy span {
  display: block;
  width: min(100%, 420px);
  height: 2px;
  margin: clamp(20px, 2.4vw, 30px) 0;
  background: linear-gradient(90deg, var(--ink) 0 16%, var(--line) 16% 100%);
}

.about-feature-row.reverse .about-feature-copy span {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, var(--line) 0 84%, var(--ink) 84% 100%);
}

.about-feature-copy h4 {
  margin: 0 0 20px;
  font-size: clamp(20px, 1.65vw, 28px);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: 0;
}

.about-feature-copy p {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--soft-ink);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.72;
}

.about-feature-row.reverse .about-feature-copy p {
  margin-left: auto;
  margin-right: auto;
}

.about-feature-media {
  margin: 0;
  overflow: hidden;
  background: transparent;
  justify-self: center;
  width: min(100%, 420px);
  aspect-ratio: 2 / 1;
}

.about-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
  max-width: 1480px;
  margin: 0 auto;
}

.about-story-main,
.about-story-note,
.about-editorial-list article,
.about-timeline article {
  background: var(--white);
  border: 1px solid var(--line);
}

.about-story-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(280px, 0.9fr);
  min-height: 520px;
}

.about-story-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-story-main div,
.about-story-note {
  display: grid;
  align-content: center;
  padding: clamp(30px, 4.5vw, 64px);
}

.about-story-main span,
.about-story-note span,
.about-editorial-list span,
.about-timeline span {
  display: block;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.about-story-main h3,
.about-story-note h3,
.about-editorial-copy h2,
.about-editorial-list h3,
.about-timeline h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
}

.about-story-main h3,
.about-story-note h3 {
  font-size: clamp(32px, 3.4vw, 54px);
}

.about-story-main p,
.about-story-note p,
.about-editorial-copy p,
.about-editorial-list p,
.about-timeline p {
  margin: 20px 0 0;
  color: var(--soft-ink);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 300;
  line-height: 1.65;
}

.about-editorial {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 96px);
  background: var(--paper);
}

.about-editorial-copy h2 {
  max-width: 620px;
  font-size: clamp(38px, 4.3vw, 68px);
}

.about-editorial-copy p:not(.eyebrow) {
  max-width: 560px;
}

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

.about-editorial-list article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
}

.about-editorial-list span {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.about-editorial-list h3 {
  font-size: clamp(24px, 2.2vw, 34px);
}

.about-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1480px;
  margin: 0 auto;
  border-left: 1px solid var(--line);
}

.about-timeline article {
  min-height: 260px;
  padding: clamp(22px, 2.6vw, 34px);
  border-left: 0;
}

.about-timeline span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.about-timeline h3 {
  font-size: 22px;
}

.feature-card {
  grid-column: span 1;
  color: var(--ink);
  background: var(--white);
}

.feature-card p,
.feature-card span {
  color: var(--muted);
}

.project-list-section {
  padding: clamp(78px, 9vw, 126px) clamp(22px, 5vw, 82px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.project-list-heading {
  display: block;
  max-width: 760px;
  margin: 0 auto clamp(46px, 6vw, 82px);
  text-align: center;
}

.project-list-heading h2 {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.08;
}


.insights-landing-heading {
  max-width: 1120px;
}

.insights-landing-heading h2 {
  max-width: 1120px;
  font-size: clamp(34px, 3.4vw, 50px);
  white-space: nowrap;
}

.project-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(58px, 7vw, 96px) clamp(24px, 4vw, 64px);
}

.project-list-card {
  display: grid;
  gap: clamp(22px, 2.8vw, 34px);
  min-width: 0;
  text-align: center;
  cursor: zoom-in;
}

.project-list-card:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 8px;
}

.showroom-location-card[data-showroom-gallery] {
  cursor: zoom-in;
}

.showroom-location-card[data-showroom-gallery]:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 8px;
}

.project-list-media {
  position: relative;
  overflow: hidden;
  background: var(--mist);
}

.project-list-card img {
  width: 100%;
  aspect-ratio: 1.78;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96);
  transition: transform 360ms ease, filter 360ms ease;
}

.project-list-card img.project-image-bottom {
  object-position: center 78%;
}

.project-list-card:hover img {
  filter: saturate(1);
  transform: translateY(-3px);
}

.project-list-card > div:not(.project-list-media) {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding-inline: clamp(10px, 4vw, 80px);
}

.project-list-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
  text-transform: none;
}

.project-list-card p {
  max-width: 560px;
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.55;
}

.project-list-card .project-type {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.showroom-gallery-dialog {
  width: min(82vw, 1380px);
  max-width: none;
  max-height: 84dvh;
  padding: 0;
  color: #f7f5f1;
  background: transparent;
  border: 0;
  overflow: visible;
}

.showroom-gallery-dialog::backdrop {
  background: rgba(7, 7, 7, 0.42);
  backdrop-filter: blur(8px) brightness(0.82);
}

.showroom-gallery-panel {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  animation: showroom-gallery-pop 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes showroom-gallery-pop {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(18px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.showroom-gallery-heading {
  display: none;
}

.showroom-gallery-heading span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.showroom-gallery-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(15px, 1.5vw, 23px);
  font-weight: 500;
  line-height: 1.1;
}

.showroom-gallery-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 46px;
  height: 46px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 30px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
}

.showroom-gallery-stage {
  position: relative;
  width: 100%;
  margin: 0;
  background: transparent;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.45));
}

.showroom-gallery-stage img {
  width: 100%;
  height: auto;
  max-height: 82dvh;
  display: block;
  object-fit: contain;
  background: transparent;
}

.showroom-gallery-stage figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.62);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.showroom-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  appearance: none;
  font-size: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

.showroom-gallery-arrow::before {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.65));
}

.showroom-gallery-arrow.is-previous {
  left: 18px;
}

.showroom-gallery-arrow.is-next {
  right: 18px;
}

.showroom-gallery-arrow.is-previous::before {
  transform: rotate(135deg);
}

.showroom-gallery-arrow.is-next::before {
  transform: rotate(-45deg);
}

.showroom-gallery-arrow:focus-visible,
.showroom-gallery-close:focus-visible {
  outline: 2px solid #efad00;
  outline-offset: 3px;
}

.showroom-gallery-arrow[hidden] {
  display: none;
}

@media (min-width: 1100px) {
  .showroom-gallery-close {
    top: -58px;
    right: 0;
  }

  .showroom-gallery-arrow.is-previous {
    left: -76px;
  }

  .showroom-gallery-arrow.is-next {
    right: -76px;
  }
}

body.is-showroom-gallery-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .showroom-gallery-dialog {
    width: calc(100vw - 24px);
  }

  .showroom-gallery-close {
    top: -54px;
    right: 0;
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .showroom-gallery-panel {
    padding: 0;
  }

  .showroom-gallery-stage img {
    max-height: 82dvh;
  }

  .showroom-gallery-arrow {
    width: 46px;
    height: 46px;
    font-size: 38px;
  }

  .showroom-gallery-arrow.is-previous {
    left: 8px;
  }

  .showroom-gallery-arrow.is-next {
    right: 8px;
  }

  .showroom-gallery-heading {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

.project-section {
  padding-top: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.28fr) minmax(280px, 0.72fr);
  min-height: 720px;
  background: #161616;
  box-shadow: none;
}

.project-visual {
  min-height: 520px;
  background-image: url("assets/project-bernier-matte-jpg.webp");
  background-position: center;
  background-size: cover;
}

.copy-panel {
  padding: clamp(42px, 6vw, 86px);
  align-self: end;
  color: var(--white);
}

.copy-panel p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-weight: 300;
}

.copy-panel .eyebrow,
.copy-panel .stat-row span {
  color: rgba(255, 255, 255, 0.58);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.stat-row div {
  padding-top: 24px;
  border-top: 0;
}

.stat-row strong,
.stat-row span {
  display: block;
}

.stat-row strong {
  font-family: var(--font-sans);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-row span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.showroom-section {
  background: #f7f5f1;
}

.showroom-image-band {
  margin: calc(clamp(44px, 7vw, 88px) * -0.45) 0 clamp(32px, 4vw, 56px);
  overflow: hidden;
  background: transparent;
}

.showroom-image-band img {
  width: 100%;
  aspect-ratio: 16 / 6.4;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.02);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 100%);
}


.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location-card {
  min-height: 340px;
  padding: clamp(30px, 4.2vw, 58px);
  background: var(--white);
  border: 0;
  border-right: 1px solid var(--line);
}

.location-card:last-child {
  border-right: 0;
}

.location-card h3,
.tab-panel h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.location-card p,
.tab-panel p {
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
}

.location-card a {
  display: inline-flex;
  margin-top: 28px;
  padding-bottom: 5px;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

.dark-card {
  color: var(--white);
  background: var(--ink);
}

.dark-card p {
  color: rgba(255, 255, 255, 0.72);
}

.dark-card a {
  color: var(--white);
}

.about-section {
  background: var(--paper);
}

.about-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1320px;
  margin-inline: auto;
  margin-bottom: 0;
  border-top: 1px solid var(--line);
}

.tab-panels {
  max-width: 1320px;
  margin-inline: auto;
  border: 0;
  background: transparent;
}

.tab-button {
  min-height: 54px;
  padding: 16px 28px 15px 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.tab-button.active {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.tab-panel {
  display: none;
  max-width: 1320px;
  margin-inline: auto;
  padding: clamp(44px, 6vw, 88px) 0 0;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(420px, 0.72fr);
  gap: clamp(40px, 6.5vw, 110px);
  align-items: center;
}

.tab-panel p {
  max-width: 820px;
  color: #75716b;
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.tab-panel-copy {
  min-width: 0;
}

.tab-panel-media {
  margin: 0;
  overflow: hidden;
  align-self: center;
  background: var(--mist);
}

.tab-panel-media img {
  width: 100%;
  aspect-ratio: 1.55;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.02);
}

.insights-section {
  background: #fbfaf8;
  border-top: 1px solid var(--line);
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.insights-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(280px, 1fr);
  gap: clamp(28px, 8vw, 120px);
  margin-bottom: clamp(32px, 4vw, 56px);
}

.insights-intro h2 {
  grid-column: 2;
  max-width: 680px;
  font-size: clamp(38px, 4.2vw, 68px);
}

.insights-intro .eyebrow {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.insights-intro p:last-child {
  grid-column: 2;
  max-width: 520px;
  margin-top: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.insight-card {
  min-height: 440px;
  padding: clamp(16px, 1.8vw, 28px);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(20px, 2.2vw, 30px);
  color: inherit;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background 240ms ease;
}

.insight-card:last-child {
  border-right: 0;
}

.insight-card:hover {
  background: var(--mist);
}

.insight-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.insight-card > div {
  display: grid;
  align-content: start;
}

.insight-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: clamp(20px, 2.5vw, 34px) 0 14px;
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.1vw, 36px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.insight-card p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: clamp(22px, 2.8vw, 34px);
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.insight-meta span,
.insight-meta time {
  color: inherit;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.insights-landing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.insights-landing-card {
  min-height: 620px;
  padding: clamp(18px, 2vw, 38px);
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: clamp(28px, 3vw, 42px);
  color: inherit;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.insights-card-category {
  display: block;
  margin: 0;
  text-align: center;
}

.insights-landing-card:last-child {
  border-right: 0;
}

.insights-landing-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.insights-landing-card h3 {
  max-width: 620px;
  margin: clamp(34px, 3.5vw, 52px) 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.15vw, 54px);
  font-weight: 400;
  line-height: 1.04;
}

.insights-landing-card p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.58;
}

@media (min-width: 981px) {
  .insights-landing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(26px, 2.4vw, 42px);
    background: transparent;
    border-top: 0;
    border-bottom: 0;
  }

  .insights-landing-card {
    min-height: 0;
    padding: 0;
    grid-column: auto;
    grid-template-rows: auto auto auto;
    align-content: start;
    gap: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    text-align: left;
    transition:
      transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 320ms ease,
      border-color 320ms ease;
  }

  .insights-landing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(23, 23, 23, 0.2);
    box-shadow: 0 18px 42px rgba(20, 18, 15, 0.07);
  }

  .insights-landing-card > .insights-card-category {
    padding: 17px 22px 15px;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }

  .insights-landing-card > div {
    display: grid;
    justify-items: start;
    align-content: start;
    gap: 13px;
    padding: clamp(22px, 2vw, 32px);
  }

  .insights-landing-card h3 {
    max-width: 520px;
    margin: 0 0 4px;
    font-family: var(--font-sans);
    font-size: clamp(22px, 1.65vw, 28px);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: -0.02em;
    text-wrap: balance;
  }

  .insights-landing-card p {
    max-width: 420px;
    font-size: 15px;
    line-height: 1.6;
  }

  .insights-landing-card .insight-meta {
    width: 100%;
    justify-content: flex-start;
    margin-top: 12px;
  }

  .insights-landing-card .insight-meta-separator {
    color: rgba(23, 23, 23, 0.36);
  }
}


.insight-detail {
  background: var(--white);
}

.insight-detail-header {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(64px, 7vw, 96px) clamp(22px, 5vw, 82px) clamp(28px, 4vw, 52px);
  text-align: center;
}

.insight-back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.insight-back-link:hover {
  color: var(--accent);
}

.insight-detail-header h1 {
  max-width: 820px;
  margin: 10px auto 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 400;
  line-height: 1.02;
}

.insight-detail-header > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 300;
  line-height: 1.55;
}

.insight-detail-meta {
  justify-content: center;
  margin: clamp(18px, 2.2vw, 30px) auto 0;
  border-top: 0;
  padding-top: 0;
}

.insight-detail-image {
  width: min(100% - clamp(44px, 10vw, 164px), 1180px);
  aspect-ratio: 16 / 8.5;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.insight-detail-body {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(46px, 6vw, 86px) clamp(22px, 5vw, 82px) clamp(64px, 8vw, 112px);
}

.insight-detail-body p {
  margin: 0 0 24px;
  color: var(--soft-ink);
  font-size: clamp(18px, 1.3vw, 21px);
  font-weight: 300;
  line-height: 1.78;
}

.insight-detail-body p:last-child {
  margin-bottom: 0;
}

.insight-detail-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(22px, 5vw, 82px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.insight-detail-nav a {
  color: var(--ink);
  text-decoration: none;
}

.insight-detail-nav a:hover {
  color: var(--accent);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(300px, 1fr);
  gap: clamp(34px, 8vw, 122px);
  padding: clamp(88px, 11vw, 152px) clamp(22px, 5vw, 82px);
  color: var(--white);
  background: #161616;
}

.contact-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-weight: 300;
}

.contact-form {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-form label {
  display: grid;
  gap: 12px;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font: inherit;
  font-size: 16px;
  outline: none;
}

.contact-form textarea {
  padding-top: 4px;
  resize: vertical;
}

.contact-form select option {
  color: #171717;
  background: #ffffff;
}


.form-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-status[data-status="success"] {
  color: #2f6d46;
}

.form-status[data-status="error"] {
  color: #9b2f2f;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.58;
}
.contact-form button {
  justify-self: start;
  margin-top: 26px;
  color: var(--white);
}

.site-footer {
  padding: clamp(64px, 8vw, 116px) clamp(24px, 5vw, 72px) 38px;
  background: #f4f2ee;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
  color: #171717;
  font-family: "Neue Haas Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.site-footer__inner {
  max-width: 1680px;
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(280px, 520px);
  gap: clamp(40px, 8vw, 140px);
  align-items: center;
}

.site-footer__logo {
  width: 170px;
  opacity: 0.88;
}

.site-footer__tagline {
  max-width: 520px;
  margin: 0;
  color: rgba(23, 23, 23, 0.62);
  font-size: clamp(16px, 1.12vw, 22px);
  line-height: 1.55;
}

.site-footer__rule {
  height: 1px;
  margin: clamp(52px, 6vw, 86px) 0;
  background: rgba(23, 23, 23, 0.14);
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 92px);
}

.site-footer__label {
  margin: 0 0 28px;
  color: rgba(23, 23, 23, 0.46);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  gap: 14px;
}

.site-footer a,
.footer-admin-link {
  color: rgba(23, 23, 23, 0.86);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
  text-transform: none;
  transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-admin-link:hover,
.footer-admin-link:focus-visible {
  color: #000000;
}

.footer-admin-link {
  width: max-content;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0.48;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(52px, 6vw, 84px);
  padding-top: 28px;
  border-top: 1px solid rgba(23, 23, 23, 0.14);
  color: rgba(23, 23, 23, 0.46);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 190px 1fr;
  }

  .site-nav {
    gap: 15px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
  }

  .product-card {
    border-bottom: 1px solid var(--line);
  }

  .product-card:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 24px;
    padding: 20px clamp(22px, 5vw, 82px) 30px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 28px -14px rgba(18, 18, 18, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transform-origin: top center;
    clip-path: inset(0 0 100% 0);
    transition:
      opacity 240ms ease,
      transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
      clip-path 420ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 320ms ease,
      visibility 0s linear 420ms;
  }

  .site-nav.open {
    color: var(--ink);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    box-shadow: 0 18px 28px -14px rgba(18, 18, 18, 0.28);
    transition-delay: 0s;
  }

  .site-nav > * {
    opacity: 0;
    transform: translateY(-7px);
    transition:
      opacity 180ms ease,
      transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav.open > * {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.open > :nth-child(1) { transition-delay: 80ms; }
  .site-nav.open > :nth-child(2) { transition-delay: 110ms; }
  .site-nav.open > :nth-child(3) { transition-delay: 140ms; }
  .site-nav.open > :nth-child(4) { transition-delay: 170ms; }
  .site-nav.open > :nth-child(5) { transition-delay: 200ms; }
  .site-nav.open > :nth-child(6) { transition-delay: 230ms; }
  .site-nav.open > :nth-child(7) { transition-delay: 260ms; }

  @media (prefers-reduced-motion: reduce) {
    .site-nav,
    .site-nav > * {
      transition-duration: 0.01ms;
      transition-delay: 0s;
    }
  }

  .nav-item {
    display: grid;
    gap: 16px;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 0 14px;
    gap: 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mega-menu-list {
    gap: 16px;
  }

  .mega-menu-list a {
    width: max-content;
    max-width: 100%;
    color: var(--muted);
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.35;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mega-menu-feature {
    display: none;
  }

  .nav-dropdown::before {
    content: none;
  }

  .intro-band,
  .home-editorial-gallery,
  .tab-panel.active,
  .section-heading,
  .split-layout,
  .hero,
  .video-hero-inner,
  .product-hero,
  .product-detail-band,
  .insights-intro,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .insights-intro h2,
  .insights-intro .eyebrow,
  .insights-intro p:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .hero {
    align-items: start;
    padding-top: 104px;
  }

  .design-hero .hero-content {
    align-self: start;
    transform: none;
  }

  .home-editorial-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 10px;
    width: calc(100% - 36px);
    margin: 20px auto;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .home-editorial-gallery .desktop-gallery-extra {
    display: none;
  }

  .home-editorial-gallery .home-editorial-main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .home-editorial-gallery figure:nth-child(2) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .home-editorial-gallery figure {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .home-editorial-gallery img {
    aspect-ratio: 4 / 3;
  }

  .showroom-image-band img {
    aspect-ratio: 4 / 3;
  }

  .design-showcase {
    height: auto;
    min-height: 0;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    grid-template-rows: 360px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .design-card,
  .design-card-large {
    grid-row: auto;
    scroll-snap-align: start;
  }

  .copy-panel {
    align-self: start;
  }

  .product-hero-image {
    min-height: 460px;
  }

  .video-product-hero {
    min-height: auto;
    padding-top: 78px;
    padding-bottom: 58px;
  }

  .video-hero-copy h1 {
    max-width: 720px;
  }

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

  .about-story-grid,
  .about-story-main,
  .about-feature-row,
  .about-feature-row.reverse,
  .about-editorial {
    grid-template-columns: 1fr;
  }

  .about-feature-row.reverse .about-feature-copy,
  .about-feature-row.reverse .about-feature-media {
    order: initial;
  }

  .about-feature-row.reverse .about-feature-copy {
    text-align: left;
  }

  .about-feature-row.reverse .about-feature-copy span,
  .about-feature-row.reverse .about-feature-copy p {
    margin-left: 0;
    margin-right: 0;
  }

  .about-feature-row.reverse .about-feature-copy span {
    background: linear-gradient(90deg, var(--ink) 0 16%, var(--line) 16% 100%);
  }

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

  .series-grid,
  .project-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insights-grid {
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--line);
  }

  .phone-frame {
    width: min(100%, 278px);
    min-height: 524px;
  }

  .phone-screen {
    min-height: 508px;
  }

  .phone-social-card {
    min-height: 76px;
    grid-template-columns: 42px minmax(0, 1fr) 16px;
    gap: 10px;
    padding: 13px 14px;
  }

  .social-icon-box {
    width: 38px;
    height: 38px;
  }

  .social-logo-img {
    width: 27px;
    height: 27px;
  }

  .phone-social-text {
    padding-left: 10px;
  }

  .insight-card {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .insight-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .about-tabs {
    --active-tab-index: 0;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-tabs::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% / 3);
    height: 1px;
    background: var(--ink);
    transform: translateX(calc(var(--active-tab-index) * 100%));
    transition: transform 320ms ease;
    pointer-events: none;
  }

  .tab-button {
    width: 100%;
    padding: 16px 6px 15px;
    font-size: 11px;
    white-space: nowrap;
  }

  .tab-button.active {
    border-color: transparent;
  }

  .social-compact-grid {
    grid-template-columns: 1fr;
  }

  .social-compact-card {
    min-height: 112px;
    grid-template-columns: 58px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .site-header {
    min-height: 66px;
    padding: 13px 18px;
  }

  .brand img {
    width: 144px;
  }

  .site-nav {
    top: 66px;
  }

  .hero {
    min-height: auto;
    padding: 106px 18px 42px;
  }

  .product-hero {
    min-height: auto;
    padding: 104px 18px 48px;
  }

  .video-product-hero {
    padding: 54px 18px 42px;
  }

  .video-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
  }

  .video-hero-frame {
    order: 2;
    width: 100%;
  }

  .video-hero-copy {
    display: contents;
  }

  .video-hero-copy .eyebrow {
    order: 1;
    width: 100%;
    text-align: left;
  }

  .video-hero-copy h1 {
    order: 3;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: clamp(20px, 5.2vw, 26px);
    line-height: 1.15;
  }

  .product-hero-image {
    min-height: 360px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.68));
  }

  .design-showcase {
    grid-template-columns: repeat(4, minmax(245px, 1fr));
    grid-template-rows: 350px;
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .showroom-location-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    gap: 18px;
  }

  .intro-band,
  .section,
  .product-detail-band,
  .series-section,
  .project-list-section,
  .insights-section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .series-grid,
  .project-list-grid,
  .about-timeline {
    grid-template-columns: 1fr;
  }

  .about-editorial-list article {
    grid-template-columns: 1fr;
  }

  .series-card h3,
  .project-list-card h3 {
    font-size: 30px;
  }

  .product-grid,
  .location-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 390px;
    padding: 20px 0;
    border-right: 0;
  }

  .product-card img {
    height: 210px;
  }

  .product-next {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 18px;
    padding-right: 18px;
  }

  .location-card {
    min-height: 280px;
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .location-card:last-child {
    border-bottom: 0;
  }

  .project-visual {
    min-height: 380px;
  }

  .site-footer {
    padding: 58px 24px 32px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__logo {
    width: 150px;
  }

  .site-footer__tagline {
    max-width: 340px;
    font-size: 16px;
  }

  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 28px;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 20px;
  }

  .site-footer a {
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .insights-landing-grid {
    grid-template-columns: 1fr;
  }

  .insights-landing-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  body.product-page:not(.whole-home-page) .series-heading,
  body.product-page:not(.whole-home-page) .project-list-heading,
  body.product-page:not(.whole-home-page) .about-story-title {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  body.product-page:not(.whole-home-page) .series-heading h2,
  body.product-page:not(.whole-home-page) .project-list-heading h2,
  body.product-page:not(.whole-home-page) .about-story-title h2 {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  body.product-page .furniture-video-hero .series-heading,
  body.product-page .furniture-video-hero .series-heading h2 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  body.product-page:not(.whole-home-page) .series-card,
  body.product-page:not(.whole-home-page) .project-list-card {
    text-align: left;
  }

  body.product-page:not(.whole-home-page) .series-title {
    justify-content: flex-start;
  }

  .insights-landing-heading h2 {
    width: 100%;
    max-width: 360px;
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.08;
    white-space: normal;
  }

  .design-card-large.is-sliding-out img {
    opacity: 1;
    transform: translateX(-104%);
  }

  .design-card-large.is-sliding-in img {
    opacity: 1;
    transform: translateX(104%);
    transition: none;
  }

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

  .products-section .product-card {
    min-height: 0;
    padding: 14px 12px 18px;
    justify-content: flex-start;
    border-right: 1px solid var(--line);
  }

  .products-section .product-card:nth-child(2n) {
    border-right: 0;
  }

  .products-section .product-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-bottom: 0;
    object-fit: cover;
  }

  .products-section .product-card p {
    margin-top: 18px;
  }

  .products-section .product-card h3 {
    min-height: 2.16em;
    font-size: clamp(17px, 5vw, 20px);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
  }

  .project-section .split-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .project-section .project-visual {
    min-height: 320px;
  }

  .project-section .copy-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(118px, 0.95fr);
    gap: 18px 22px;
    padding: 26px 18px;
  }

  .project-section .copy-panel .eyebrow,
  .project-section .copy-panel h2,
  .project-section .copy-panel p:not(.eyebrow) {
    grid-column: 1;
  }

  .project-section .copy-panel h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .project-section .stat-row {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: start;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 0;
  }

  .project-section .stat-row div {
    padding-top: 14px;
  }

  .project-section .stat-row strong {
    font-size: 38px;
  }

  .showroom-section .section-heading {
    grid-template-columns: minmax(88px, 0.35fr) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
  }

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

  .showroom-section .location-card {
    min-height: 300px;
    padding: 22px 14px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .showroom-section .location-card:last-child {
    border-right: 0;
  }

  .showroom-section .location-card h3 {
    font-size: clamp(24px, 7vw, 34px);
  }

  .showroom-section .location-card p {
    font-size: 14px;
  }

  .insights-section .insights-intro {
    grid-template-columns: minmax(88px, 0.32fr) minmax(0, 1fr);
    gap: 18px;
  }

  .insights-section .insights-intro .eyebrow {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .insights-section .insights-intro h2,
  .insights-section .insights-intro p:last-child {
    grid-column: 2;
  }

  .insights-section .insights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 0;
  }

  .insights-section .insight-card {
    min-height: 0;
    padding: 14px 12px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .insights-section .insight-card:last-child {
    border-right: 0;
  }

  .insights-section .insight-card h3 {
    font-size: clamp(22px, 6.4vw, 30px);
  }

  .insights-section .insight-card p,
  .insights-section .insight-meta {
    font-size: 12px;
  }
}

.mobile-break,
.mobile-heading-text {
  display: none;
}

@media (max-width: 640px) {
  .mobile-break,
  .mobile-heading-text {
    display: initial;
  }

  .desktop-heading-text {
    display: none;
  }

  .design-hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 9vw, 44px);
    line-height: 1.04;
  }

  .intro-band {
    gap: 24px;
    justify-content: start;
    text-align: left;
  }

  .intro-band > div,
  .intro-band p {
    justify-self: start;
  }

  .intro-band p {
    max-width: 100%;
    font-size: clamp(25px, 8vw, 34px);
    line-height: 1.18;
  }

  .products-section .products-heading {
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 1.06;
  }

  .project-section .project-heading {
    font-size: clamp(30px, 8.5vw, 40px);
    line-height: 1.08;
  }

  .showroom-section .showroom-heading {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(27px, 7.2vw, 36px);
    line-height: 1.04;
  }

  .about-section .about-home-heading {
    font-size: clamp(30px, 8.4vw, 42px);
    line-height: 1.08;
  }

  .home-social .home-social-heading {
    max-width: 420px;
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.08;
  }

  .home-social .phone-social-text strong {
    font-size: 12px;
  }

  .home-social .phone-social-text small {
    font-size: 10px;
  }

  .contact-copy .contact-heading {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.02;
  }
}

/* Homepage premium typography scale */
.intro-band p {
  max-width: 760px;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.16;
}

.products-section .products-heading,
.showroom-section .showroom-heading,
.about-section .about-home-heading {
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1.08;
}

.project-section .project-heading {
  max-width: 340px;
  font-size: clamp(34px, 3.7vw, 56px);
  line-height: 1.08;
}

.home-social .home-social-heading {
  max-width: 560px;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.08;
}

.contact-copy .contact-heading {
  max-width: 620px;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.04;
}

@media (max-width: 640px) {
  .intro-band strong {
    font-size: clamp(32px, 9vw, 44px);
  }

  .intro-band p {
    font-size: 15.625px;
    line-height: 1.55;
  }

  .home-intro-copy .mobile-break {
    display: none;
  }

  .products-section .products-heading {
    font-size: clamp(30px, 9vw, 40px);
  }

  .project-section .project-heading {
    font-size: clamp(26px, 7.5vw, 34px);
  }

  .showroom-section .showroom-heading {
    font-size: clamp(22px, 5.8vw, 29px);
  }

  .about-section .about-home-heading {
    font-size: clamp(26px, 7.2vw, 34px);
  }

  .home-social .home-social-heading {
    font-size: clamp(27px, 7.6vw, 36px);
  }

  .contact-copy .contact-heading {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.08;
  }
}

/* Final mobile readability corrections */
@media (max-width: 640px) {
  .project-section .copy-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-section .copy-panel .eyebrow,
  .project-section .copy-panel h2,
  .project-section .copy-panel p:not(.eyebrow),
  .project-section .stat-row {
    grid-column: 1;
  }

  .project-section .stat-row {
    grid-row: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 220px);
    margin-top: 8px;
  }

  .project-section .stat-row div {
    padding-top: 14px;
  }

  .project-section .stat-row strong {
    font-size: 34px;
  }

  .project-section .stat-row span {
    max-width: 120px;
    font-size: 10px;
    line-height: 1.25;
  }

  .project-section .project-heading {
    max-width: 310px;
    font-size: clamp(26px, 7.2vw, 32px);
    line-height: 1.08;
  }

  .project-section .copy-panel p:not(.eyebrow) {
    max-width: 300px;
    font-size: 14px;
    line-height: 1.55;
  }

  .showroom-section .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .showroom-section .showroom-heading {
    max-width: 100%;
    white-space: normal;
    font-size: clamp(24px, 6.7vw, 30px);
    line-height: 1.08;
  }

  .showroom-section .location-grid {
    grid-template-columns: 1fr;
  }

  .showroom-section .location-card {
    min-height: 0;
    padding: 26px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .showroom-section .location-card:last-child {
    border-bottom: 0;
  }

  .showroom-section .location-card h3 {
    max-width: 260px;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.08;
  }

  .showroom-section .location-card p {
    max-width: 300px;
    font-size: 14px;
    line-height: 1.55;
  }

  .insights-section .insights-intro {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .insights-section .insights-intro .eyebrow,
  .insights-section .insights-intro h2,
  .insights-section .insights-intro p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .insights-section .insights-intro h2 {
    max-width: 320px;
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1.08;
  }

  .insights-section .insights-intro p:last-child {
    max-width: 320px;
    font-size: 14px;
  }

  .insights-section .insights-grid {
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--line);
  }

  .insights-section .insight-card {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .insights-section .insight-card:last-child {
    border-bottom: 0;
  }

  .insights-section .insight-card img {
    aspect-ratio: 1 / 0.78;
    margin-top: 44px;
  }

  .insights-section .insight-card h3 {
    margin: 12px 0 10px;
    max-width: 210px;
    font-size: clamp(17px, 4.9vw, 23px);
    line-height: 1.08;
  }

  .insights-section .insight-card p {
    max-width: 220px;
    font-size: 13px;
    line-height: 1.5;
  }

  .insights-section .insight-meta {
    margin-top: 14px;
    gap: 6px 12px;
    font-size: 10px;
  }
}

.desktop-break {
  display: initial;
}

.desktop-only-break {
  display: none;
}

@media (min-width: 981px) {
  .desktop-only-break {
    display: initial;
  }

  .about-feature-row.reverse .about-feature-copy h3 {
    text-align: right;
  }
}

.design-hero h1 {
  max-width: 620px;
}

.products-section .products-heading {
  max-width: 760px;
}

.project-section .project-heading {
  max-width: 520px;
}

@media (max-width: 640px) {
  .desktop-break {
    display: none;
  }

  .desktop-break.mobile-break {
    display: initial;
  }
}


/* Desktop homepage smaller heading scale */
@media (min-width: 641px) {
  .design-hero h1 {
    max-width: 780px;
    font-size: clamp(38px, 3vw, 52px);
    line-height: 1.05;
  }

  .project-section .project-heading {
    max-width: 520px;
    font-size: clamp(22px, 1.8vw, 28px);
    line-height: 1.12;
  }

  .showroom-section .showroom-heading {
    max-width: 760px;
    justify-self: center;
    align-self: center;
    text-align: center;
    font-size: clamp(28px, 2.4vw, 36px);
    line-height: 1.12;
  }

  .home-social .home-social-heading {
    max-width: 360px;
    font-size: clamp(22px, 1.9vw, 28px);
    line-height: 1.14;
  }

  .contact-copy .contact-heading {
    max-width: 360px;
    font-size: clamp(28px, 2.4vw, 34px);
    line-height: 1.1;
  }
}

/* Mobile hero coverflow carousel */
@media (max-width: 640px) {
  .design-showcase {
    position: relative;
    display: block;
    height: 330px;
    min-height: 0;
    margin: 24px -18px 0;
    padding: 0;
    overflow: hidden;
    perspective: 900px;
    touch-action: pan-y;
  }

  .design-card,
  .design-card-large {
    position: absolute;
    top: 18px;
    left: 50%;
    width: min(68vw, 280px);
    height: 270px;
    min-height: 0;
    grid-row: auto;
    border-radius: 0;
    box-shadow: 0 22px 42px rgba(20, 20, 20, 0.18);
    transform: translateX(-50%) scale(0.72);
    transition: transform 360ms ease, opacity 360ms ease, filter 360ms ease;
    opacity: 0.36;
    pointer-events: auto;
  }

  .design-card img {
    transition: none;
  }

  .design-card:hover img {
    transform: none;
  }

  .design-card.is-active {
    z-index: 4;
    opacity: 1;
    filter: none;
    transform: translateX(-50%) translateZ(80px) scale(1);
  }

  .design-card.is-prev {
    z-index: 3;
    opacity: 0.74;
    filter: brightness(0.84);
    transform: translateX(calc(-50% - 118px)) rotateY(36deg) scale(0.8);
  }

  .design-card.is-next {
    z-index: 3;
    opacity: 0.74;
    filter: brightness(0.84);
    transform: translateX(calc(-50% + 118px)) rotateY(-36deg) scale(0.8);
  }

  .design-card.is-far {
    z-index: 1;
    opacity: 0.32;
    filter: brightness(0.62);
    transform: translateX(-50%) scale(0.66);
  }

  .design-card span {
    left: 14px;
    right: 14px;
    bottom: 12px;
    color: rgba(255, 255, 255, 0.92);
  }

  .design-thumb span {
    display: block;
  }

  .design-progress {
    left: 50%;
    right: auto;
    bottom: 22px;
    z-index: 5;
    width: min(68vw, 280px);
    transform: translateX(-50%);
  }
}

.series-title { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.series-title-cn { color: var(--muted); font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif; font-size: 0.5em; font-weight: 400; letter-spacing: 0; text-transform: none; }

@media (max-width: 640px) {
  .about-section .tab-panel p {
    font-size: clamp(13px, 4vw, 17px);
    line-height: 1.45;
  }
}
@media (max-width: 640px) {
  .project-section .stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    max-width: 340px;
  }

  .project-section .stat-row span {
    max-width: 120px;
  }

}

.series-card {
  color: inherit;
  text-decoration: none;
}

.series-card:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 6px;
}

.series-detail-hero {
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  padding: clamp(82px, 8vw, 132px) clamp(22px, 5vw, 82px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.series-detail-copy {
  max-width: 580px;
}

.series-detail-copy h1 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(58px, 7vw, 118px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.series-detail-copy h1 span,
.series-detail-copy h1 small {
  display: block;
}

.series-detail-copy h1 small {
  margin-top: 18px;
  color: var(--muted);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.project-list-card h3 span {
  display: block;
}

.project-list-card h3 .project-collection-number {
  font-size: 60%;
  font-weight: 400;
  line-height: 1.3;
}

.series-detail-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 30px 0 0;
  color: var(--soft-ink);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 300;
  line-height: 1.65;
}

.series-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 30px;
  margin-top: 42px;
}

.series-detail-visual {
  overflow: hidden;
  background: #161616;
}

.contact-section,
.contact-section .eyebrow,
.contact-section .contact-copy p:not(.eyebrow),
.contact-section .contact-form label,
.contact-section .contact-form input,
.contact-section .contact-form select,
.contact-section .contact-form textarea,
.contact-section .contact-form button {
  color: var(--white);
}

.contact-section .contact-copy p:not(.eyebrow),
.contact-section .contact-form label {
  color: rgba(255, 255, 255, 0.68);
}

.contact-form {
  border-top-color: rgba(255, 255, 255, 0.28);
}

.contact-form label {
  border-bottom-color: rgba(255, 255, 255, 0.28);
}

.series-detail-visual img {
  width: 100%;
  min-height: min(70vh, 720px);
  display: block;
  object-fit: cover;
}

.series-detail-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.series-detail-panel {
  min-height: 360px;
  padding: clamp(34px, 5vw, 82px);
  border-right: 1px solid var(--line);
}

.series-detail-panel span {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.series-detail-panel h2 {
  max-width: 720px;
  font-size: clamp(34px, 4.4vw, 72px);
  line-height: 1;
}

.series-detail-panel h2 small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 0.36em;
  font-weight: 400;
}

.series-detail-panel p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--soft-ink);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 300;
  line-height: 1.65;
}

.series-detail-panel.panel-image {
  padding: 0;
  background: var(--white);
}

.series-detail-panel.panel-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: block;
  object-fit: cover;
}

.series-detail-panel.panel-note {
  grid-column: 1 / -1;
  min-height: 0;
  border-top: 1px solid var(--line);
  border-right: 0;
  background: var(--white);
}

.series-detail-panel.panel-note p {
  max-width: 760px;
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 400;
  line-height: 1.1;
}

.series-detail-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.series-detail-nav a {
  min-height: 140px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: var(--white);
  text-decoration: none;
  border-right: 1px solid var(--line);
}

.series-detail-nav a:last-child {
  border-right: 0;
}

.series-detail-nav span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.series-detail-nav strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1.05;
}

@media (max-width: 980px) {
  .series-detail-hero,
  .series-detail-showcase,
  .series-detail-nav {
    grid-template-columns: 1fr;
  }

  .series-detail-nav a,
  .series-detail-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .series-detail-nav a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .series-detail-hero {
    min-height: auto;
    padding: 92px 18px 46px;
  }

  .series-detail-copy h1 {
    font-size: clamp(42px, 14vw, 66px);
  }

  .series-detail-visual img {
    min-height: 320px;
  }

  .series-detail-panel {
    min-height: 0;
    padding: 34px 18px;
  }

  .series-detail-panel.panel-image img {
    min-height: 280px;
  }

  .series-detail-nav a {
    min-height: 110px;
  }
}


/* Official-style focused design series pages */
.series-focus-page .site-header {
  background: rgba(255, 255, 255, 0.94);
}

.series-focus-hero {
  position: relative;
  min-height: calc(100vh - 104px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.series-focus-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.95);
}

.series-focus-slider-viewport {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.series-focus-slider-viewport.is-dragging {
  cursor: grabbing;
}

.series-focus-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform 720ms cubic-bezier(0.22, 0.74, 0.22, 1);
}

.series-focus-slider-track.is-dragging {
  transition: none;
}

.series-focus-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: none;
  transform: scale(1.015);
  transition: filter 700ms ease, transform 1.1s ease;
}

.series-focus-slide:first-child {
  filter: brightness(0.62) saturate(0.95);
}

.series-focus-slide.is-active {
  transform: scale(1);
}

.series-focus-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.14) 54%, rgba(0, 0, 0, 0.1));
  pointer-events: none;
  transition: opacity 620ms ease;
}

.series-focus-hero.is-beyond-cover::after {
  opacity: 0;
}

.yinruo-series-page .series-focus-slide:not(:first-child) {
  filter: none;
}

.yinruo-series-page .series-focus-hero.is-beyond-cover::after {
  opacity: 0;
}

.chopin-series-page .series-focus-slide:not(:first-child) {
  filter: none;
}

.chopin-series-page .series-focus-hero.is-beyond-cover::after {
  opacity: 0;
}

.series-focus-overlay {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: clamp(78px, 9vw, 138px) clamp(22px, 6vw, 104px);
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 480ms ease,
    transform 640ms cubic-bezier(0.22, 0.74, 0.22, 1);
}

.series-focus-hero.is-beyond-cover .series-focus-overlay {
  opacity: 0;
  transform: translate3d(-24px, 16px, 0);
  pointer-events: none;
}

.series-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 72px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  font: inherit;
  cursor: pointer;
  transform: translateY(-50%);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: color 180ms ease, transform 180ms ease;
}

.series-slider-arrow span {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 62px;
  font-weight: 200;
  line-height: 1;
}

.series-slider-prev {
  left: clamp(8px, 2vw, 30px);
}

.series-slider-next {
  right: clamp(8px, 2vw, 30px);
}

.series-slider-arrow:hover {
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.series-slider-arrow:focus-visible {
  outline: 1px solid #fff;
  outline-offset: 2px;
}

.series-slider-counter {
  position: absolute;
  right: clamp(22px, 4vw, 66px);
  bottom: clamp(20px, 3vw, 42px);
  z-index: 3;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.34);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.series-focus-hero:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}

.series-focus-overlay .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.series-focus-overlay h1 {
  margin: 18px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(64px, 7.2vw, 118px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.series-focus-overlay h1.series-focus-title-long {
  width: min(1150px, calc(100vw - 220px));
  max-width: none;
  font-size: clamp(52px, 5.6vw, 92px);
  line-height: 0.92;
  letter-spacing: 0;
  white-space: normal;
}

.series-focus-overlay span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 400;
}

.series-focus-overlay p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 300;
  line-height: 1.65;
}

.series-focus-overlay .button {
  margin-top: 42px;
  color: var(--white);
}

.series-focus-overlay .button::after {
  background: rgba(255, 255, 255, 0.72);
}

.series-design-template {
  padding: clamp(92px, 10vw, 154px) clamp(20px, 5vw, 80px) clamp(100px, 11vw, 170px);
  color: var(--ink);
  background: #fff;
}

.series-template-heading {
  max-width: 760px;
  margin: 0 auto clamp(50px, 6vw, 86px);
  text-align: center;
}

.series-template-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 1;
}

.series-template-cn-heading {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: clamp(16px, 1.4vw, 22px);
  letter-spacing: 0.12em;
}

.series-highlight-lead {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(480px, 1.42fr);
  max-width: 1360px;
  height: clamp(420px, 42vw, 610px);
  margin: 0 auto;
  overflow: hidden;
  background: #f2f6f8;
}

.series-highlight-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(34px, 5vw, 74px);
}

.series-highlight-copy h3 {
  margin: 14px 0 6px;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 400;
  line-height: 0.98;
}

.series-highlight-copy > strong {
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: clamp(17px, 1.45vw, 23px);
  font-weight: 500;
}

.series-highlight-copy > p:last-child {
  max-width: 280px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.series-highlight-lead figure,
.series-feature-statement figure,
.series-detail-pair figure,
.series-template-gallery figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.series-highlight-lead figure img,
.series-feature-statement figure img,
.series-detail-pair figure img,
.series-template-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.series-room-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(118px, 1fr));
  gap: 10px;
  max-width: 900px;
  margin: clamp(42px, 5vw, 72px) auto 0;
}

.series-room-card {
  min-height: 162px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px 15px;
  color: var(--ink);
  background: #f4f4f4;
  text-align: center;
}

.series-room-card strong {
  font-size: 13px;
  font-weight: 500;
}

.series-room-card > span {
  margin-top: 4px;
  color: var(--muted);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 11px;
}

.series-room-card svg {
  width: 52px;
  height: 52px;
  margin-top: auto;
}

.series-room-card img {
  width: 60px;
  height: 60px;
  margin-top: auto;
  object-fit: contain;
}

.series-room-card svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.series-room-note {
  margin: 22px auto 0;
  color: #aaa;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-align: center;
}

.series-inspiration-panel {
  position: relative;
  max-width: 1220px;
  min-height: clamp(380px, 44vw, 610px);
  margin: clamp(100px, 11vw, 168px) auto 0;
  overflow: hidden;
  color: #fff;
  background: #222;
}

.series-inspiration-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.58) saturate(0.8);
  transform: scale(1.01);
}

.series-inspiration-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.06) 68%);
}

.series-inspiration-panel > div {
  position: relative;
  z-index: 1;
  max-width: 540px;
  padding: clamp(54px, 8vw, 104px);
}

.series-inspiration-panel .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.series-inspiration-panel h3 {
  margin: 12px 0 18px;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.05;
}

.series-inspiration-panel p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 300;
  line-height: 1.7;
}

.series-feature-statement {
  max-width: 1280px;
  margin: clamp(100px, 11vw, 170px) auto 0;
}

.series-feature-statement figure {
  aspect-ratio: 16 / 8.4;
}

.series-feature-statement > div {
  max-width: 760px;
  margin: clamp(38px, 5vw, 66px) auto 0;
  text-align: center;
}

.series-feature-statement h3 {
  margin: 12px 0 18px;
  font-size: clamp(27px, 3vw, 44px);
  line-height: 1.15;
}

.series-feature-statement p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 300;
  line-height: 1.7;
}

.series-detail-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.25vw, 36px);
  max-width: 915px;
  margin: clamp(100px, 11vw, 168px) auto 0;
}

.series-detail-pair figure {
  aspect-ratio: 1.58;
}

.series-detail-pair h3 {
  margin: 21px 0 8px;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.18;
}

.series-detail-pair p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

.series-material-palette {
  max-width: 940px;
  margin: clamp(92px, 10vw, 154px) auto 0;
}

.series-material-palette .series-palette-heading {
  display: block;
  margin-bottom: 34px;
  text-align: center;
}

.series-material-palette .series-palette-heading h3 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3vw, 42px);
}

.series-reference-board {
  width: min(100%, 1360px);
  margin: clamp(92px, 10vw, 154px) auto 0;
}

.series-reference-board img {
  display: block;
  width: 100%;
  height: auto;
}

.series-reference-inspiration {
  margin-top: clamp(100px, 11vw, 168px);
}

.ronghua-detail-pair {
  margin-top: clamp(92px, 10vw, 154px);
}

.ronghua-design-template .series-inspiration-panel {
  aspect-ratio: 16 / 8.4;
  max-width: 1152px;
  min-height: 0;
}

.ronghua-design-template .series-inspiration-panel > img {
  filter: brightness(0.82) saturate(0.9);
}

.ronghua-design-template .series-inspiration-panel::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.03) 70%);
}

.ronghua-design-template .series-inspiration-panel h3 {
  font-size: clamp(27px, 2.8vw, 42px);
}

.ronghua-design-template .series-inspiration-panel p:last-child {
  font-size: clamp(13px, 1vw, 15px);
}

.ronghua-concept-summary {
  max-width: 979px;
  margin: clamp(70px, 7.65vw, 112px) auto 0;
}

.ronghua-concept-summary > h2 {
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: clamp(26px, 2.9vw, 41px);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.ronghua-concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(29px, 5.1vw, 77px);
  margin-top: clamp(49px, 5.95vw, 78px);
}

.ronghua-concept-grid article {
  position: relative;
  padding-left: 18px;
}

.ronghua-concept-grid article::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.ronghua-concept-grid h3 {
  margin: 0;
  font-size: clamp(15px, 1.45vw, 20px);
  font-weight: 500;
  line-height: 1.3;
}

.ronghua-concept-grid p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.55;
}

.ronghua-design-template .series-feature-statement {
  max-width: 1152px;
}

.ronghua-concept-summary + .series-feature-statement {
  margin-top: clamp(70px, 7.65vw, 112px);
}

.series-material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 42px;
}

.morandi-material-palette .series-material-grid,
.bofei-material-palette .series-material-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yinruo-material-palette .series-material-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chopin-material-palette .series-material-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 820px) {
  .morandi-material-palette .series-material-grid,
  .bofei-material-palette .series-material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yinruo-material-palette .series-material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chopin-material-palette .series-material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.series-material-grid > div {
  text-align: center;
}

.series-swatch {
  width: 100%;
  aspect-ratio: 2.45;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  background: #ddd;
}

.series-material-grid p {
  margin: 12px 0 0;
  color: var(--soft-ink);
  font-size: 12px;
}

.swatch-soft-white { background: #e8e7e7; }
.swatch-natural-oak { background: linear-gradient(100deg, #aa9478, #c5b299 42%, #a58f72); }
.swatch-smoked-oak { background: linear-gradient(100deg, #95735d, #b28f77 46%, #8e6f5a); }
.swatch-forest { background: #294c20; }
.swatch-signature {
  background-image: var(--series-swatch-image);
  background-position: center;
  background-size: cover;
}
.swatch-art {
  background-color: #eee8dd;
  background-image:
    radial-gradient(circle at 3px 3px, #70665c 1px, transparent 1.5px),
    linear-gradient(45deg, transparent 46%, rgba(112, 102, 92, 0.22) 47%, rgba(112, 102, 92, 0.22) 53%, transparent 54%);
  background-size: 10px 10px, 18px 18px;
}

.ronghua-material-palette {
  max-width: 748px;
}

.ronghua-material-palette .series-material-grid {
  gap: 25px 30px;
}

.ronghua-material-palette .series-palette-heading h3 {
  font-size: clamp(25px, 2.7vw, 38px);
}

.ronghua-swatch-honey-oak {
  background:
    repeating-linear-gradient(88deg, rgba(83, 58, 35, 0.09) 0 1px, transparent 1px 16px),
    linear-gradient(100deg, #b39a79, #c8b293 45%, #ae9371);
}

.ronghua-swatch-autumn-oak {
  background:
    repeating-linear-gradient(92deg, rgba(84, 50, 30, 0.11) 0 1px, transparent 1px 13px),
    linear-gradient(100deg, #aa8267, #c09a7c 48%, #a77d62);
}

.ronghua-swatch-art {
  background-color: #f1eee8;
  background-image:
    radial-gradient(ellipse at center, #756b63 0 12%, transparent 13%),
    radial-gradient(ellipse at center, #2d2926 0 7%, transparent 8%);
  background-position: 0 0, 14px 14px;
  background-size: 28px 28px;
}

.blossom-swatch-sand-white {
  background:
    repeating-linear-gradient(84deg, transparent 0 11px, rgba(139, 128, 111, 0.08) 12px 13px),
    linear-gradient(105deg, #e6e2dc, #f3f0eb 52%, #dcd7d0);
}

.blossom-swatch-tea {
  background: linear-gradient(110deg, #8a776e, #9a887f 52%, #806f67);
}

.blossom-swatch-porcelain {
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.8), transparent 34%),
    linear-gradient(110deg, #d7d3cc, #eeeae3 54%, #d0cbc3);
}

.blossom-swatch-moon-oak {
  background:
    repeating-linear-gradient(90deg, rgba(45, 39, 34, 0.12) 0 1px, transparent 1px 13px),
    linear-gradient(105deg, #6a6159, #7b7168 48%, #5d554e);
}

.blossom-swatch-black-oak {
  background:
    repeating-linear-gradient(91deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 13px),
    linear-gradient(105deg, #0f0e0e, #201f1e 50%, #090909);
}

.ingreece-swatch-sand {
  background:
    repeating-linear-gradient(88deg, rgba(122, 115, 106, 0.08) 0 1px, transparent 1px 10px),
    linear-gradient(105deg, #dedbd4, #ebe7df 52%, #d2cec5);
}

.ingreece-swatch-rock {
  background:
    radial-gradient(circle at 20% 32%, rgba(255, 255, 255, 0.12), transparent 25%),
    linear-gradient(110deg, #77736f, #918d88 50%, #696560);
}

.ingreece-swatch-violin {
  background:
    repeating-linear-gradient(92deg, rgba(83, 37, 28, 0.1) 0 1px, transparent 1px 12px),
    linear-gradient(110deg, #873d31, #a35444 52%, #79352b);
}

.ingreece-swatch-dragon {
  background:
    repeating-linear-gradient(89deg, rgba(12, 37, 29, 0.14) 0 1px, transparent 1px 13px),
    linear-gradient(110deg, #174a3b, #2d6653 52%, #113b30);
}

.ingreece-swatch-cabinet-sand {
  background:
    repeating-linear-gradient(88deg, rgba(134, 126, 115, 0.09) 0 1px, transparent 1px 8px),
    linear-gradient(105deg, #e7e3dc, #f2efe9 52%, #dcd7cf);
}

.ingreece-swatch-cabinet-rock {
  background:
    repeating-linear-gradient(89deg, rgba(76, 72, 67, 0.09) 0 1px, transparent 1px 9px),
    linear-gradient(105deg, #aaa49c, #beb8af 52%, #99938c);
}

.fireworks-swatch-porcelain {
  background: #ebe9dd;
}

.fireworks-swatch-illusion {
  background: #95918e;
}

.fireworks-swatch-flame {
  background: #b2a295;
}

.yark-swatch-green {
  background: #444945;
}

.yark-swatch-clay {
  background:
    radial-gradient(circle at 22% 30%, rgba(80, 76, 73, 0.13) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 66%, rgba(255, 255, 255, 0.2) 0 1px, transparent 1.5px),
    #b3aba7;
  background-size: 8px 8px, 10px 10px, auto;
}

.yark-swatch-white {
  background: #eeeae7;
}

.yark-swatch-black {
  background: #1a1a1a;
}

.yark-swatch-coffee {
  background: #393534;
}

.yark-design-template .series-material-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.covert-swatch-red {
  background: #5b402e;
}

.covert-swatch-grey {
  background: #646158;
}

.covert-design-template .series-material-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jenny-design-template .series-material-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.carat-series-page .series-focus-hero.is-beyond-cover::after {
  opacity: 0;
}

.carat-design-template .series-inspiration-panel {
  color: var(--ink);
  background: #eeeae6;
}

.carat-design-template .series-inspiration-panel > img {
  filter: none;
  object-position: center;
}

.carat-design-template .series-inspiration-panel::after {
  background: linear-gradient(90deg, rgba(242, 238, 234, 0.98) 0%, rgba(242, 238, 234, 0.9) 34%, rgba(242, 238, 234, 0.12) 68%, rgba(242, 238, 234, 0) 100%);
}

.carat-design-template .series-inspiration-panel .eyebrow,
.carat-design-template .series-inspiration-panel p:last-child {
  color: var(--muted);
}

.carat-design-template .series-material-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.carat-swatch-silk {
  background: linear-gradient(110deg, #e7e1dd, #f0ece9 50%, #d9d3cf);
}

.carat-swatch-pearl {
  background: linear-gradient(110deg, #d4d4d0, #e2e2de 50%, #c7c7c3);
}

.carat-swatch-graphite {
  background: linear-gradient(110deg, #504b47, #625d59 50%, #45413e);
}

.carat-swatch-ivory {
  background: linear-gradient(110deg, #dcddd5, #e8e8e1 50%, #d2d3ca);
}

.pano-series-page .series-focus-hero.is-beyond-cover::after {
  opacity: 0;
}

.pano-inspiration-panel::after {
  background: linear-gradient(270deg, rgba(18, 17, 16, 0.78) 0%, rgba(18, 17, 16, 0.58) 38%, rgba(18, 17, 16, 0.02) 70%);
}

.pano-inspiration-panel > div {
  margin-left: auto;
}

.pano-inspiration-panel > img {
  filter: brightness(0.78) saturate(0.88);
}

.pano-swatch-bern {
  background: #282522;
}

.pano-swatch-velvet {
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.38), transparent 36%),
    #d8d6d2;
}

.pano-swatch-cigar {
  background: #aaa198;
}

.pano-swatch-cabinet-white {
  background: #d5d1ce;
}

.pano-swatch-taupe {
  background: #aaa39b;
}

.pano-swatch-turbo {
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 5px),
    #242321;
}

.future-pro-series-page .series-focus-hero.is-beyond-cover::after {
  opacity: 0;
}

.future-pro-inspiration-panel {
  color: var(--ink);
  background: #f3f2f0;
}

.future-pro-inspiration-panel > img {
  filter: none;
  object-position: center;
}

.future-pro-inspiration-panel::after {
  background: linear-gradient(90deg, rgba(244, 243, 241, 0.98) 0%, rgba(244, 243, 241, 0.92) 35%, rgba(244, 243, 241, 0.06) 68%);
}

.future-pro-inspiration-panel .eyebrow,
.future-pro-inspiration-panel p:last-child {
  color: var(--muted);
}

.future-pro-design-template .series-material-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.future-pro-swatch-white {
  background: linear-gradient(110deg, #f2eee3, #fbf8ef 52%, #e9e4d7);
}

.future-pro-swatch-grey {
  background: #c4c0bb;
}

.future-pro-swatch-coffee {
  background: #7c7771;
}

.future-pro-swatch-blue {
  background: #34323a;
}

.future-pro-swatch-emerald {
  background:
    linear-gradient(116deg, transparent 42%, rgba(255, 255, 255, 0.5) 43%, transparent 45%),
    linear-gradient(82deg, transparent 52%, rgba(26, 27, 25, 0.42) 53%, transparent 55%),
    #676b67;
  background-size: 48px 42px, 62px 54px, auto;
}

.future-pro-swatch-silver {
  background:
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, 0.7), transparent 28%),
    linear-gradient(115deg, transparent 43%, rgba(129, 128, 125, 0.38) 44%, transparent 46%),
    #e6e5e1;
}

.future-pro-swatch-calacatta {
  background-color: #f3f0e9;
  background-image:
    linear-gradient(115deg, transparent 38%, rgba(69, 66, 73, 0.45) 39%, rgba(69, 66, 73, 0.16) 42%, transparent 45%),
    linear-gradient(72deg, transparent 54%, rgba(89, 85, 93, 0.24) 55%, transparent 58%);
  background-size: 72px 64px, 94px 82px;
}

.stockholm-pro-series-page .series-focus-hero.is-beyond-cover::after {
  opacity: 0;
}

.stockholm-pro-series-page .series-focus-slide:not(:first-child) {
  min-width: 100%;
  max-width: 100%;
  filter: none;
  transform: none;
}

.stockholm-pro-series-page .series-focus-overlay h1 {
  margin-top: 0;
  white-space: normal;
}

.stockholm-pro-series-page .series-focus-overlay .series-focus-cn {
  color: rgba(255, 255, 255, 0.92);
}

.stockholm-pro-series-page .series-focus-overlay .series-focus-tagline {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.25vw, 21px);
}

.stockholm-pro-inspiration-panel > img {
  object-position: center 44%;
  filter: brightness(0.62) saturate(0.86);
}

.stockholm-pro-inspiration-panel::after {
  background: linear-gradient(90deg, rgba(24, 18, 13, 0.84) 0%, rgba(24, 18, 13, 0.64) 38%, rgba(24, 18, 13, 0.03) 72%);
}

.stockholm-pro-design-template .series-material-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stockholm-pro-design-template .series-material-grid small {
  display: inline-block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78em;
  font-weight: 500;
}

.stockholm-swatch-orlando-light,
.stockholm-swatch-sand-chestnut,
.stockholm-swatch-hazelnut-oak,
.stockholm-swatch-windsor-walnut,
.stockholm-swatch-sunset-chestnut,
.stockholm-swatch-orlando-dark {
  background-image:
    repeating-linear-gradient(88deg, rgba(39, 26, 16, 0.12) 0 1px, transparent 1px 6px),
    linear-gradient(104deg, rgba(255, 255, 255, 0.15), transparent 48%, rgba(25, 15, 9, 0.12));
}

.stockholm-swatch-orlando-light { background-color: #c9aa78; }
.stockholm-swatch-sand-chestnut { background-color: #9a8065; }
.stockholm-swatch-hazelnut-oak { background-color: #88704e; }
.stockholm-swatch-windsor-walnut { background-color: #725539; }
.stockholm-swatch-sunset-chestnut { background-color: #62462f; }
.stockholm-swatch-orlando-dark { background-color: #40372e; }

.beverly-series-page .series-focus-hero.is-beyond-cover::after {
  opacity: 0;
}

.beverly-series-page .series-focus-slide:not(:first-child) {
  min-width: 100%;
  max-width: 100%;
  filter: none;
  transform: none;
}

.beverly-series-page .series-focus-overlay h1 {
  margin-top: 0;
}

.beverly-series-page .series-focus-overlay .series-focus-cn {
  color: rgba(255, 255, 255, 0.92);
}

.beverly-series-page .series-focus-overlay .series-focus-tagline {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.25vw, 21px);
}

.beverly-inspiration-panel > img {
  object-position: center;
  filter: brightness(0.68) saturate(0.88);
}

.beverly-inspiration-panel::after {
  background: linear-gradient(90deg, rgba(28, 25, 22, 0.82) 0%, rgba(28, 25, 22, 0.58) 38%, rgba(28, 25, 22, 0.02) 72%);
}

.beverly-design-template .series-material-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.beverly-design-template .series-material-grid small {
  display: inline-block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78em;
  font-weight: 500;
}

.beverly-swatch-mocha,
.beverly-swatch-dark-oak,
.beverly-swatch-hazelnut,
.beverly-swatch-maple-teak,
.beverly-swatch-sunset,
.beverly-swatch-light-oak,
.beverly-swatch-ebony,
.beverly-swatch-windsor {
  background-image:
    repeating-linear-gradient(88deg, rgba(39, 26, 16, 0.12) 0 1px, transparent 1px 6px),
    linear-gradient(104deg, rgba(255, 255, 255, 0.15), transparent 48%, rgba(25, 15, 9, 0.12));
}

.beverly-swatch-antique-white { background: linear-gradient(110deg, #ece9de, #f3f0e5 52%, #dfdbcf); }
.beverly-swatch-ink-black { background: #2b2a29; }
.beverly-swatch-taupe { background: #a7a29f; }
.beverly-swatch-mocha { background-color: #756a60; }
.beverly-swatch-dark-oak { background-color: #4d443d; }
.beverly-swatch-hazelnut { background-color: #8a705e; }
.beverly-swatch-maple-teak { background-color: #9b6640; }
.beverly-swatch-sunset { background-color: #87705b; }
.beverly-swatch-light-oak { background-color: #ad9674; }
.beverly-swatch-ebony { background-color: #716b62; }
.beverly-swatch-windsor { background-color: #a17a62; }

.jenny-swatch-oak {
  background: linear-gradient(90deg, #cdb99f, #bda88e);
}

.jenny-swatch-silver {
  background: linear-gradient(90deg, #d3d0cb, #bdbab6);
}

.jenny-swatch-walnut {
  background: #51463d;
}

.jenny-swatch-warm-walnut {
  background: #765036;
}

.jenny-swatch-black {
  background: #171717;
}

.jenny-swatch-clay {
  background: #c8c1b7;
}

.jenny-swatch-coffee {
  background: #49372f;
}

.jenny-swatch-white {
  background: #ece9e1;
}

.covert-series-page .series-focus-slide:not(:first-child) {
  object-fit: cover;
  object-position: right center;
  filter: none;
  transform: none;
}

.covert-series-page .series-focus-hero.is-beyond-cover::after {
  opacity: 0;
}

.jenny-series-page .series-focus-slide:not(:first-child) {
  object-position: right bottom;
  filter: none;
}

.jenny-series-page .series-focus-hero.is-beyond-cover::after {
  opacity: 0;
}

.fireworks-design-template .series-material-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.series-artist-profile {
  width: min(1400px, calc(100% - 48px));
  margin: 108px auto;
  background: #fff;
}

.series-artist-profile figure {
  margin: 0;
  aspect-ratio: 2.2;
  overflow: hidden;
}

.series-artist-profile figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carat-design-template .series-artist-profile figure {
  aspect-ratio: 2104 / 747;
  background: #090909;
}

.carat-design-template .series-artist-profile figure img {
  object-fit: contain;
}

.series-artist-profile > div {
  max-width: 850px;
  margin: 0 auto;
  padding: 44px 24px 12px;
  text-align: center;
}

.series-artist-profile h3 {
  margin: 8px 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
}

.series-artist-profile p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 720px) {
  .fireworks-design-template .series-material-grid {
    grid-template-columns: 1fr;
  }

  .yark-design-template .series-material-grid {
    grid-template-columns: 1fr;
  }

  .covert-design-template .series-material-grid {
    grid-template-columns: 1fr;
  }

  .jenny-design-template .series-material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carat-design-template .series-material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .future-pro-design-template .series-material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .series-artist-profile {
    width: calc(100% - 32px);
    margin: 72px auto;
  }

  .series-artist-profile figure {
    aspect-ratio: 1.35;
  }

  .series-artist-profile > div {
    padding: 32px 18px 8px;
  }
}

.chong-su-swatch-ash {
  background:
    repeating-linear-gradient(88deg, rgba(67, 55, 45, 0.08) 0 1px, transparent 1px 15px),
    linear-gradient(100deg, #b3aaa0, #cbc4bb 48%, #aaa095);
}

.chong-su-swatch-walnut {
  background:
    repeating-linear-gradient(91deg, rgba(33, 22, 16, 0.16) 0 1px, transparent 1px 13px),
    linear-gradient(100deg, #5c493c, #7a6655 48%, #4d3b31);
}

.chong-su-swatch-ink {
  background: linear-gradient(110deg, #241d19, #46382f 52%, #1d1815);
}

.chong-su-swatch-stone {
  background-color: #e7e3dc;
  background-image:
    linear-gradient(118deg, transparent 42%, rgba(112, 104, 96, 0.28) 43%, transparent 45%),
    linear-gradient(72deg, transparent 52%, rgba(131, 123, 114, 0.2) 53%, transparent 55%);
  background-size: 42px 36px, 54px 48px;
}

.chong-su-material-palette {
  max-width: 940px;
}

.chong-su-material-palette .series-material-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chong-su-swatch-ivory {
  background: #faf7ed;
}

.chong-su-swatch-mocha-walnut {
  background:
    repeating-linear-gradient(91deg, rgba(22, 17, 14, 0.15) 0 1px, transparent 1px 13px),
    linear-gradient(100deg, #514940, #665d53 48%, #484139);
}

.chong-su-swatch-golden-oak {
  background:
    repeating-linear-gradient(88deg, rgba(66, 54, 40, 0.1) 0 1px, transparent 1px 12px),
    linear-gradient(100deg, #a89a84, #b8aa93 48%, #9e907b);
}

.chong-su-swatch-xiuyun {
  background-color: #8f8d86;
  background-image:
    repeating-radial-gradient(ellipse at 20% 50%, transparent 0 4px, rgba(48, 47, 44, 0.35) 5px 6px, transparent 7px 11px),
    repeating-radial-gradient(ellipse at 80% 35%, transparent 0 5px, rgba(54, 53, 49, 0.28) 6px 7px, transparent 8px 13px);
  background-size: 36px 22px, 42px 26px;
}

.rossi-swatch-ivory { background: #f4f0e5; }
.rossi-swatch-grey { background: #aaa9a5; }
.rossi-swatch-taupe { background: #77746d; }
.rossi-swatch-charcoal { background: #2b2b2a; }
.rossi-swatch-metal { background: linear-gradient(100deg, #0f0f0f, #2f2e2c 48%, #151514); }
.rossi-swatch-smoked-oak {
  background:
    repeating-linear-gradient(91deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 13px),
    linear-gradient(100deg, #161412, #27231f 48%, #11100f);
}
.rossi-swatch-timber {
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.08), transparent 30%, rgba(0, 0, 0, 0.12) 64%, transparent),
    #3c3732;
}

.rossi-board-swatch {
  background-image: url("assets/whole-series-selected/rossi/rossi-material-board-png.webp");
  background-repeat: no-repeat;
  background-size: 365% 389%;
}

.rossi-board-ivory { background-position: 2.4% 6.2%; }
.rossi-board-crescent { background-position: 50.5% 6.2%; }
.rossi-board-elephant { background-position: 97.6% 6.2%; }
.rossi-board-deep { background-position: 2.4% 73.5%; }
.rossi-board-smoked { background-position: 50.5% 73.5%; }
.rossi-board-coffee { background-position: 97.6% 73.5%; }

.rossi22-board-swatch {
  background-image: url("assets/whole-series-selected/rossi-22mm/material-board-png.webp");
  background-repeat: no-repeat;
  background-size: 489% 366%;
}

.rossi22-board-ivory { background-position: 1.2% 5.4%; }
.rossi22-board-crescent { background-position: 34% 5.4%; }
.rossi22-board-elephant { background-position: 66% 5.4%; }
.rossi22-board-deep { background-position: 1.2% 79%; }
.rossi22-board-smoked { background-position: 34% 79%; }
.rossi22-board-coffee { background-position: 66% 79%; }

.wembley-material-palette {
  max-width: 940px;
}

.wembley-detail-pair {
  align-items: end;
}

.wembley-material-palette .series-material-grid {
  grid-template-columns: minmax(120px, 0.65fr) repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.wembley-material-palette .series-material-grid > div:first-child {
  grid-row: 1 / span 2;
  display: grid;
  grid-template-rows: 1fr auto;
}

.wembley-material-palette .series-material-grid > div:first-child .series-swatch {
  height: 100%;
  aspect-ratio: auto;
}

.wembley-board-swatch {
  background-image: url("assets/whole-series-selected/wembley/material-board-png.webp");
  background-repeat: no-repeat;
  background-size: 466% 462%;
}

.wembley-board-matte {
  background-position: 0 12%;
  background-size: 690% 188%;
}
.wembley-board-eagle { background-position: 27% 7%; }
.wembley-board-grey { background-position: 64% 7%; }
.wembley-board-white { background-position: 100% 7%; }
.wembley-board-woven-white { background-position: 27% 72%; }
.wembley-board-woven-coffee { background-position: 64% 72%; }
.wembley-board-woven-green { background-position: 100% 72%; }

.rosa-romantic-swatch {
  background-color: #d6cec8;
}

.rosa-romantic-condensed-white,
.rosa-romantic-cabinet-white {
  background: #d8d0c9;
}

.rosa-romantic-black-tea,
.rosa-romantic-cabinet-tea {
  background: #9c8781;
}

.rosa-romantic-leather-white {
  background:
    linear-gradient(45deg, rgba(126, 111, 105, 0.12) 25%, transparent 25%) 0 0 / 9px 9px,
    linear-gradient(-45deg, rgba(126, 111, 105, 0.12) 25%, transparent 25%) 0 0 / 9px 9px,
    #ded7d1;
}

.rosa-romantic-leather-tea {
  background:
    linear-gradient(45deg, rgba(91, 72, 68, 0.13) 25%, transparent 25%) 0 0 / 9px 9px,
    linear-gradient(-45deg, rgba(91, 72, 68, 0.13) 25%, transparent 25%) 0 0 / 9px 9px,
    #a28c86;
}

@media (max-width: 760px) {
  .wembley-material-palette .series-material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wembley-material-palette .series-material-grid > div:first-child {
    grid-row: auto;
    display: block;
  }

  .wembley-material-palette .series-material-grid > div:first-child .series-swatch {
    height: auto;
    aspect-ratio: 2.45;
  }
}

.ronghua-design-template .series-highlight-lead,
.rossi-design-template .series-highlight-lead {
  height: auto;
  align-items: center;
}

.ronghua-design-template .series-highlight-lead figure,
.rossi-design-template .series-highlight-lead figure,
.ronghua-design-template .series-feature-statement figure,
.rossi-design-template .series-feature-statement figure,
.ronghua-design-template .series-detail-pair figure,
.rossi-design-template .series-detail-pair figure {
  aspect-ratio: auto;
}

.ronghua-design-template .series-highlight-lead figure img,
.rossi-design-template .series-highlight-lead figure img,
.ronghua-design-template .series-feature-statement figure img,
.rossi-design-template .series-feature-statement figure img,
.ronghua-design-template .series-detail-pair figure img,
.rossi-design-template .series-detail-pair figure img {
  height: auto;
  object-fit: contain;
}

.beverly-design-template .series-detail-pair figure {
  aspect-ratio: 2.18 / 1;
  background: #e9e9e9;
}

.beverly-design-template .series-detail-pair figure img {
  height: 100%;
  object-fit: cover;
}

.beverly-design-template .series-detail-pair article:nth-child(2) figure img {
  object-fit: contain;
}

.blossom-design-template .series-detail-pair figure {
  aspect-ratio: 1.58;
}

.blossom-design-template .series-detail-pair figure img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.series-template-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 18px;
  max-width: 1180px;
  min-height: clamp(520px, 58vw, 760px);
  margin: clamp(110px, 12vw, 180px) auto 0;
}

.series-template-gallery-main {
  grid-row: 1 / 3;
}

.series-design-template > .series-image-showcase {
  margin-top: clamp(110px, 12vw, 180px);
}

@media (max-width: 900px) {
  .series-highlight-lead {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .series-room-grid {
    grid-template-columns: repeat(5, minmax(100px, 1fr));
    overflow-x: auto;
  }

  .series-template-gallery {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (max-width: 640px) {
  .series-design-template {
    padding: 72px 18px 96px;
  }

  .series-highlight-lead {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .series-highlight-copy {
    min-height: 260px;
  }

  .series-highlight-lead figure {
    aspect-ratio: 4 / 3;
  }

  .series-room-grid {
    grid-template-columns: repeat(5, 112px);
    justify-content: start;
    margin-inline: -18px;
    padding: 0 18px 8px;
    scrollbar-width: none;
  }

  .series-room-grid::-webkit-scrollbar {
    display: none;
  }

  .series-room-card {
    min-height: 146px;
  }

  .series-inspiration-panel {
    min-height: 480px;
  }

  .series-inspiration-panel > div {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 34px 24px;
  }

  .ronghua-concept-summary {
    margin-top: 72px;
  }

  .ronghua-concept-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 48px;
  }

  .series-feature-statement figure {
    aspect-ratio: 4 / 3;
  }

  .series-detail-pair {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .series-material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }

  .chong-su-material-palette .series-material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .series-template-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(360px, 1.35fr) minmax(170px, 0.65fr);
    min-height: 0;
  }

  .series-template-gallery-main {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

.series-focus-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 116px);
  padding: clamp(74px, 9vw, 128px) clamp(22px, 5vw, 82px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.series-focus-intro h2 {
  max-width: 780px;
  font-size: clamp(38px, 5vw, 82px);
  line-height: 0.98;
}

.series-focus-intro h2 small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 0.34em;
  font-weight: 400;
}

.series-focus-intro > p:not(.eyebrow) {
  grid-column: 2;
  max-width: 760px;
  margin: -40px 0 0;
  color: var(--soft-ink);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 300;
  line-height: 1.7;
}

.series-editorial-cards {
  display: grid;
  gap: clamp(72px, 10vw, 146px);
  padding: clamp(76px, 10vw, 148px) clamp(22px, 5vw, 82px) clamp(90px, 11vw, 168px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.series-editorial-card {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(44px, 8vw, 122px);
}

.series-editorial-card-reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.92fr);
}

.series-editorial-copy {
  max-width: 580px;
}

.series-editorial-copy::after {
  content: "";
  display: block;
  width: min(220px, 62%);
  height: 1px;
  margin: clamp(22px, 2.6vw, 34px) 0 0;
  background: var(--line);
}

.series-editorial-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.1vw, 54px);
  font-weight: 400;
  line-height: 1.02;
  color: var(--white);
}

.series-editorial-copy p {
  margin: clamp(22px, 2.8vw, 36px) 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 21px);
  font-weight: 300;
  line-height: 1.65;
}

.series-editorial-copy.compact h2 {
  max-width: 430px;
  font-size: clamp(28px, 2.35vw, 40px);
  line-height: 1.08;
}

.series-editorial-card-one .series-editorial-copy h2 {
  max-width: 520px;
  font-size: clamp(28px, 2.35vw, 40px);
  line-height: 1.08;
}

.series-editorial-copy.compact p {
  max-width: 720px;
  font-size: clamp(15px, 1.1vw, 20px);
  line-height: 1.72;
}

.series-editorial-media {
  margin: 0;
  overflow: hidden;
  background: var(--mist);
  aspect-ratio: 16 / 10;
}

.series-editorial-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.series-image-showcase {
  width: min(1320px, 100%);
  margin: clamp(18px, 4vw, 48px) auto 0;
  display: grid;
  gap: clamp(20px, 2.8vw, 38px);
  align-items: stretch;
}

.series-showcase-image {
  margin: 0;
  overflow: hidden;
  background: var(--mist);
  aspect-ratio: 16 / 7;
}

.series-showcase-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.series-image-showcase.is-split {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.series-image-showcase.is-split .series-showcase-image {
  aspect-ratio: 16 / 9;
}

.series-image-showcase.is-feature-left,
.series-image-showcase.is-feature-right {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  min-height: clamp(430px, 34vw, 610px);
}

.series-image-showcase.is-feature-right {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}

.series-image-showcase.is-feature-left .series-showcase-image:first-child,
.series-image-showcase.is-feature-right .series-showcase-image:nth-child(2) {
  min-height: 100%;
  aspect-ratio: auto;
}

.series-image-showcase.is-feature-left .series-showcase-image:nth-child(2),
.series-image-showcase.is-feature-right .series-showcase-image:first-child {
  min-height: 100%;
  aspect-ratio: auto;
}

.series-image-showcase.is-offset {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}

.series-image-showcase.is-offset .series-showcase-image:first-child,
.series-image-showcase.is-offset .series-showcase-image:nth-child(2) {
  margin-top: 0;
  aspect-ratio: 16 / 9;
}

.series-image-showcase.is-wide-detail {
  grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
}

.series-image-showcase.is-wide-detail .series-showcase-image:first-child {
  aspect-ratio: 16 / 9;
}

.series-image-showcase.is-wide-detail .series-showcase-image:nth-child(2) {
  width: 100%;
  justify-self: auto;
  aspect-ratio: 16 / 9;
}

.series-image-showcase.is-mosaic-four {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(210px, 1fr));
}

.series-image-showcase.is-mosaic-four .series-showcase-image {
  aspect-ratio: auto;
}

.series-image-showcase.is-mosaic-four .series-showcase-image:first-child {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
}

.series-image-showcase.is-mosaic-four .series-showcase-image:nth-child(2) {
  grid-column: 7 / 13;
  grid-row: 1 / 2;
}

.series-image-showcase.is-mosaic-four .series-showcase-image:nth-child(3) {
  grid-column: 7 / 10;
  grid-row: 2 / 3;
}

.series-image-showcase.is-mosaic-four .series-showcase-image:nth-child(4) {
  grid-column: 10 / 13;
  grid-row: 2 / 3;
}

.series-image-showcase.is-editorial-four {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(210px, 1fr));
}

.series-image-showcase.is-editorial-four .series-showcase-image {
  aspect-ratio: auto;
}

.series-image-showcase.is-editorial-four .series-showcase-image:first-child {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.series-image-showcase.is-editorial-four .series-showcase-image:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
  align-self: stretch;
  aspect-ratio: auto;
}

.series-image-showcase.is-editorial-four .series-showcase-image:nth-child(3) {
  grid-column: 8 / 10;
  grid-row: 2 / 3;
  align-self: stretch;
  aspect-ratio: auto;
}

.series-image-showcase.is-editorial-four .series-showcase-image:nth-child(4) {
  grid-column: 10 / 13;
  grid-row: 2 / 3;
  aspect-ratio: auto;
}

.series-image-showcase.is-gallery-three {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  grid-template-rows: repeat(2, minmax(210px, 1fr));
}

.series-image-showcase.is-gallery-three .series-showcase-image:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.series-image-showcase.is-gallery-three .series-showcase-image:nth-child(2),
.series-image-showcase.is-gallery-three .series-showcase-image:nth-child(3) {
  aspect-ratio: auto;
}

.series-design-template > .series-image-showcase {
  width: min(1600px, 100%);
}

.series-design-template > .series-image-showcase.is-mosaic-four,
.series-design-template > .series-image-showcase.is-editorial-four,
.series-design-template > .series-image-showcase.is-gallery-three {
  grid-template-rows: repeat(2, minmax(280px, 1fr));
}

.series-palette-section {
  margin-top: clamp(76px, 9vw, 132px);
}

.series-palette-heading {
  width: min(1220px, 100%);
  margin: 0 auto clamp(34px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 116px);
  align-items: end;
}

.series-palette-heading h2 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}

.series-palette-grid {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 62px) clamp(24px, 3vw, 42px);
}

.series-palette-card {
  min-width: 0;
}

.series-palette-swatch {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--mist);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.series-palette-card h3 {
  margin: clamp(18px, 2vw, 28px) 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 1.55vw, 28px);
  font-weight: 700;
  line-height: 1.12;
}

.swatch-burne-gloss-coffee {
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(135deg, #2f312f, #585b57 48%, #373a37);
}

.swatch-burne-gloss-silver {
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.36), transparent 34%),
    linear-gradient(135deg, #bdbdbd, #eeeeec 54%, #c5c4c1);
}

.swatch-morris-gloss-grey {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.3), transparent 32%),
    linear-gradient(135deg, #6f746f, #c5c7c2 58%, #858984);
}

.swatch-morris-gloss-dark {
  background:
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #191817, #4e4b47 52%, #282624);
}

.swatch-calais-gloss-grace-white {
  background:
    radial-gradient(circle at 42% 30%, rgba(255, 255, 255, 0.42), transparent 36%),
    linear-gradient(135deg, #e7e3d6, #fbfaf4 48%, #ddd7c8);
}

.swatch-morris-gloss-white {
  background:
    radial-gradient(circle at 52% 34%, rgba(255, 255, 255, 0.48), transparent 32%),
    linear-gradient(135deg, #d8d1bc, #f4f1e5 52%, #d3c9ae);
}

.swatch-gloss-white {
  background:
    radial-gradient(circle at 72% 22%, rgba(240, 240, 240, 0.55), transparent 34%),
    linear-gradient(135deg, #f7f7f5, #ffffff 56%, #efefed);
}

.swatch-burne-silver {
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.26), transparent 34%),
    linear-gradient(135deg, #9b9b9c, #c3c3c4 52%, #a5a5a7);
}

.series-focus-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.series-focus-image {
  margin: 0;
  overflow: hidden;
  background: var(--mist);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.series-focus-image.wide {
  grid-column: 1 / -1;
}

.series-focus-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.series-focus-image.wide img {
  min-height: min(84vh, 860px);
}

.series-focus-image.top-crop img { object-position: center top; }
.series-focus-image.left-crop img { object-position: left center; }
.series-focus-image.right-crop img { object-position: right center; }

.series-focus-note {
  min-height: 520px;
  display: grid;
  align-content: center;
  padding: clamp(34px, 5vw, 82px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.series-focus-note span {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.series-focus-note p {
  max-width: 620px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.4vw, 54px);
  font-weight: 400;
  line-height: 1.08;
}

@media (max-width: 980px) {
  .series-focus-intro,
  .series-focus-images {
    grid-template-columns: 1fr;
  }

  .series-focus-intro > p:not(.eyebrow) {
    grid-column: 1;
    margin-top: 0;
  }

  .series-editorial-card,
  .series-editorial-card-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .series-editorial-card-reverse .series-editorial-media {
    order: 2;
  }

  .series-editorial-card-reverse .series-editorial-copy {
    order: 1;
  }

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

  .series-focus-image {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .series-focus-hero {
    min-height: 78vh;
  }

  .series-focus-overlay {
    padding: 94px 18px 42px;
  }

  .series-slider-arrow {
    top: 54%;
    width: 38px;
    height: 56px;
  }

  .series-slider-arrow span {
    font-size: 48px;
  }

  .series-slider-prev {
    left: 2px;
  }

  .series-slider-next {
    right: 2px;
  }

  .series-slider-counter {
    right: 16px;
    bottom: 14px;
  }

  .series-focus-overlay h1 {
    font-size: clamp(46px, 15vw, 76px);
    white-space: normal;
  }

  .series-focus-overlay h1.series-focus-title-long {
    width: calc(100vw - 74px);
    font-size: clamp(34px, 10.5vw, 56px);
    line-height: 0.96;
  }

  .series-focus-intro {
    padding: 46px 18px;
  }

  .series-editorial-cards {
    padding: 62px 18px 76px;
    gap: 66px;
  }

  .series-editorial-card {
    gap: 24px;
  }

  .series-editorial-copy h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .series-editorial-copy p {
    font-size: clamp(16px, 4.8vw, 20px);
  }

  .series-editorial-copy.compact h2 {
    font-size: clamp(24px, 6.8vw, 32px);
  }

  .series-editorial-card-one .series-editorial-copy h2 {
    font-size: clamp(24px, 6.8vw, 32px);
  }

  .series-editorial-copy.compact p {
    font-size: clamp(15px, 4.5vw, 19px);
  }

  .series-editorial-media {
    aspect-ratio: 4 / 3;
  }

  .series-image-showcase {
    gap: 28px;
  }

  .series-image-showcase.is-split,
  .series-image-showcase.is-feature-left,
  .series-image-showcase.is-feature-right,
  .series-image-showcase.is-offset,
  .series-image-showcase.is-mosaic-four,
  .series-image-showcase.is-editorial-four,
  .series-image-showcase.is-gallery-three {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .series-design-template > .series-image-showcase.is-mosaic-four,
  .series-design-template > .series-image-showcase.is-editorial-four,
  .series-design-template > .series-image-showcase.is-gallery-three {
    grid-template-rows: auto;
  }

  .series-showcase-image {
    aspect-ratio: 4 / 3;
  }

  .series-image-showcase.is-feature-left .series-showcase-image:first-child,
  .series-image-showcase.is-feature-left .series-showcase-image:nth-child(2),
  .series-image-showcase.is-feature-right .series-showcase-image:first-child,
  .series-image-showcase.is-feature-right .series-showcase-image:nth-child(2),
  .series-image-showcase.is-offset .series-showcase-image:first-child,
  .series-image-showcase.is-offset .series-showcase-image:nth-child(2),
  .series-image-showcase.is-wide-detail .series-showcase-image:first-child,
  .series-image-showcase.is-wide-detail .series-showcase-image:nth-child(2),
  .series-image-showcase.is-mosaic-four .series-showcase-image:first-child,
  .series-image-showcase.is-mosaic-four .series-showcase-image,
  .series-image-showcase.is-editorial-four .series-showcase-image,
  .series-image-showcase.is-editorial-four .series-showcase-image:nth-child(2),
  .series-image-showcase.is-editorial-four .series-showcase-image:nth-child(3),
  .series-image-showcase.is-editorial-four .series-showcase-image:nth-child(4),
  .series-image-showcase.is-gallery-three .series-showcase-image:first-child,
  .series-image-showcase.is-gallery-three .series-showcase-image:nth-child(2),
  .series-image-showcase.is-gallery-three .series-showcase-image:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    margin-top: 0;
    aspect-ratio: 4 / 3;
  }

  .series-palette-section {
    margin-top: 62px;
  }

  .series-palette-heading,
  .series-palette-grid {
    grid-template-columns: 1fr;
  }

  .series-palette-heading {
    gap: 16px;
    margin-bottom: 34px;
  }

  .series-palette-heading h2 {
    font-size: clamp(25px, 7.2vw, 34px);
  }

  .series-palette-card h3 {
    font-size: 20px;
  }

  .series-focus-image img,
  .series-focus-image.wide img,
  .series-focus-note {
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .floating-contact-button {
    right: 16px;
    bottom: 16px;
    width: 52px;
    min-width: 52px;
    min-height: 52px;
    padding: 0;
    overflow: hidden;
  }

  .floating-contact-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .floating-contact-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }
}

/* Restrained, one-time entrance motion for desktop screens. */
@media (min-width: 981px) and (prefers-reduced-motion: no-preference) {
  html.desktop-motion-ready .design-hero .hero-content > .eyebrow,
  html.desktop-motion-ready .design-hero .hero-content > h1,
  html.desktop-motion-ready .design-hero .hero-content > .hero-copy,
  html.desktop-motion-ready .design-hero .hero-content > .hero-actions {
    opacity: 0;
    translate: 0 22px;
  }

  html.desktop-motion-ready .design-hero > .design-showcase {
    opacity: 0;
    translate: 28px 0;
  }

  .desktop-hero-enter {
    opacity: 0;
    translate: var(--desktop-hero-x, 0) var(--desktop-hero-y, 22px);
    transition:
      opacity 980ms cubic-bezier(0.22, 1, 0.36, 1),
      translate 1100ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--desktop-hero-delay, 0ms);
    will-change: opacity, translate;
  }

  .desktop-hero-enter.is-entered {
    opacity: 1;
    translate: 0 0;
  }

  html.desktop-motion-ready .design-hero .desktop-hero-enter.is-entered {
    opacity: 1;
    translate: 0 0;
  }

  .desktop-gallery-pop {
    opacity: 0;
    scale: 0.955;
    transition:
      opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
      scale 920ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--desktop-gallery-delay, 0ms);
    will-change: opacity, scale;
  }

  .desktop-gallery-pop.is-entered {
    opacity: 1;
    scale: 1;
  }

  .desktop-enter {
    opacity: 0;
    translate: var(--desktop-enter-x, 0) var(--desktop-enter-y, 18px);
    transition:
      opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
      translate 820ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--desktop-enter-delay, 0ms);
    will-change: opacity, translate;
  }

  .desktop-enter.is-entered {
    opacity: 1;
    translate: 0 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .catalogue-card-enter {
    opacity: 0;
    translate: 0 24px;
    transition:
      opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
      translate 760ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--catalogue-card-delay, 0ms);
    will-change: opacity, translate;
  }

  .catalogue-card-enter.is-visible {
    opacity: 1;
    translate: 0 0;
  }

  .about-section .tab-panel.active {
    transition:
      opacity 240ms cubic-bezier(0.4, 0, 1, 1),
      translate 280ms cubic-bezier(0.4, 0, 1, 1);
  }

  .about-section .tab-panel.active.is-exiting {
    opacity: 0;
    translate: var(--tab-exit-x, -18px) 0;
  }

  .about-section .tab-panel.active.is-entering {
    opacity: 0;
    translate: var(--tab-enter-x, 18px) 0;
    transition-duration: 500ms, 560ms;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }

  .about-section .tab-panel.active.is-entering.is-transition-visible {
    opacity: 1;
    translate: 0 0;
  }
}
/* Legal pages */
.legal-page {
  background: #f4f2ee;
  color: #111;
}

.legal-main {
  padding: clamp(120px, 12vw, 180px) 5vw 96px;
}

.legal-hero {
  align-items: end;
  display: grid;
  gap: clamp(32px, 6vw, 92px);
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  margin: 0 auto clamp(48px, 6vw, 88px);
  max-width: 1180px;
}

.legal-kicker {
  color: #777;
  font-size: 12px;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.legal-title {
  font-family: "Neue Haas Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 0;
}

.legal-intro {
  color: #666;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.35;
  margin: 0;
  max-width: 760px;
}

.legal-meta {
  color: #777;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 22px;
}

.legal-content {
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  margin: 0 auto;
  max-width: 1180px;
}

.legal-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  display: grid;
  gap: clamp(28px, 5vw, 80px);
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 0.72fr);
  padding: clamp(30px, 4vw, 56px) 0;
}

.legal-section h2 {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.legal-section p,
.legal-section li {
  color: #696661;
  font-size: 16px;
  line-height: 1.75;
}

.legal-section p {
  margin: 0 0 16px;
}

.legal-section ul {
  margin: 0 0 16px;
  padding-left: 1.1rem;
}

@media (max-width: 768px) {
  .legal-main {
    padding: 110px 24px 72px;
  }

  .legal-hero,
  .legal-section {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .legal-title {
    font-size: 42px;
    line-height: 1;
  }

  .legal-intro {
    font-size: 18px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* Compact three-card Insights landing layout on mobile */
@media (max-width: 640px) {
  .insights-landing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border-top: 0;
    border-bottom: 0;
  }

  .insights-landing-card {
    min-width: 0;
    min-height: 0;
    padding: 0;
    grid-template-rows: auto auto 1fr;
    gap: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
  }

  .insights-landing-card:last-child {
    border-right: 1px solid var(--line);
  }

  .insights-landing-card > .insights-card-category {
    padding: 8px 6px;
    font-size: 8px;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }

  .insights-landing-card img {
    aspect-ratio: 16 / 9;
  }

  .insights-landing-card > div {
    min-width: 0;
    padding: 10px 8px;
  }

  .insights-landing-card h3 {
    margin: 0 0 8px;
    font-family: var(--font-sans);
    font-size: clamp(10px, 2.8vw, 13px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.015em;
  }

  .insights-landing-card p {
    font-size: clamp(8px, 2.15vw, 10px);
    line-height: 1.4;
  }

  .insights-landing-card .insight-meta {
    display: grid;
    gap: 3px;
    margin-top: 10px;
    padding-top: 8px;
  }

  .insights-landing-card .insight-meta span,
  .insights-landing-card .insight-meta time {
    font-size: 7px;
    line-height: 1.3;
  }

  .insights-landing-card .insight-meta-separator {
    display: none;
  }
}
/* XINGMAN whole-home customisation page */
.xingman-old-template {
  display: none !important;
}

.xingman-material-palette {
  max-width: 1120px;
}

.xingman-palette-group + .xingman-palette-group {
  margin-top: 52px;
}

.xingman-palette-group h4 {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.xingman-material-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 34px;
}

.xingman-material-palette .series-swatch {
  aspect-ratio: 2.6 / 1;
  background-image: none !important;
}

.xingman-material-palette .xingman-deep-orange {
  background: #8c3e26 !important;
}

.xingman-material-palette .xingman-phantom-grey {
  background: #cbc8c6 !important;
}

.xingman-material-palette .xingman-nova-white {
  background: #f1efe6 !important;
}

.xingman-material-palette .xingman-smoke-brown {
  background: #8b786f !important;
}

.xingman-material-palette .xingman-storm-green {
  background: #484e48 !important;
}

.xingman-material-palette .xingman-obsidian-black {
  background: #191919 !important;
}

.xingman-material-palette .xingman-deep-coffee-grey {
  background: #3d3838 !important;
}

.xingman-material-palette .xingman-skin-light-grey {
  background: #cac5c3 !important;
}

.xingman-material-palette .xingman-sand-taupe {
  background: #e6dfdb !important;
}

.xingman-detail-pair {
  align-items: end;
}

.xingman-detail-pair article,
.xingman-detail-pair figure {
  align-self: end;
}

@media (max-width: 720px) {
  .xingman-material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Doors and partitions design-series catalogue */
.doors-catalogue-page {
  min-height: 100vh;
  background: var(--white);
}

.doors-series-catalogue {
  min-height: calc(100vh - 104px);
  padding: clamp(38px, 5.5vw, 82px) clamp(22px, 5vw, 82px) clamp(76px, 8vw, 124px);
}

.doors-series-catalogue .series-heading {
  margin-bottom: clamp(66px, 8vw, 112px);
  text-align: center;
}

.doors-series-catalogue .series-heading .eyebrow {
  margin-bottom: clamp(24px, 2.8vw, 38px);
  color: var(--ink);
  font-size: 13px;
}

.doors-series-catalogue .series-heading h1 {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.doors-series-catalogue .customisation-catalogue-intro {
  margin: clamp(30px, 3.5vw, 44px) 0 0;
  color: #817a72;
  font-size: clamp(18px, 1.8vw, 26px);
}

.doors-series-catalogue .series-filter-bar {
  max-width: 1260px;
  gap: 10px;
}

/* Keep the eleven Doors & Partitions filters in balanced 6 + 5 rows. */
.doors-catalogue-page .customisation-catalogue .series-filter-bar {
  max-width: 720px;
}

.doors-series-catalogue .series-filter-button {
  min-height: 54px;
  padding: 12px 22px;
  font-size: 16px;
  letter-spacing: 0;
}

.doors-series-catalogue .series-filter-count {
  margin: 22px 0 clamp(58px, 7vw, 96px);
  font-size: 15px;
}

.doors-series-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1280px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.doors-series-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(24px, 3vw, 42px);
  background: #f7f6f3;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, background-color 180ms ease;
}

.doors-series-card:hover {
  color: var(--white);
  background: var(--ink);
}

.doors-series-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.doors-series-card:hover span {
  color: rgba(255, 255, 255, 0.62);
}

.doors-series-card h2 {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", var(--font-sans);
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 400;
  line-height: 1.35;
}

.doors-series-card[hidden] {
  display: none;
}

@media (max-width: 900px) {
  .doors-series-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .doors-series-catalogue {
    padding: 42px 18px 72px;
  }

  .doors-series-catalogue .series-heading {
    margin-bottom: 46px;
  }

  .doors-series-catalogue .series-heading h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .doors-series-catalogue .customisation-catalogue-intro {
    font-size: 17px;
  }

  .doors-series-catalogue .series-filter-bar {
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-inline: -18px;
    padding: 0 18px 8px;
    overflow-x: auto;
  }

  .doors-series-catalogue .series-filter-button {
    min-height: 44px;
    flex: 0 0 auto;
    padding: 9px 17px;
    font-size: 14px;
  }

  .doors-series-grid {
    grid-template-columns: 1fr;
  }

  .doors-series-card {
    min-height: 164px;
  }
}

/* Centre all Doors & Partitions catalogue text consistently. */
.doors-catalogue-page .series-card > div:not(.series-media) {
  width: 100%;
  justify-items: center;
  text-align: center;
}

.doors-catalogue-page .series-card .series-title,
.doors-catalogue-page .series-card .series-title-en,
.doors-catalogue-page .series-card .series-title-cn,
.doors-catalogue-page .series-card p {
  width: 100%;
  text-align: center;
}

.doors-catalogue-page .series-card .series-title-en,
.doors-catalogue-page .series-card .series-title-cn {
  display: block;
}

/* Doors & Partitions colour-only catalogues */
.series-card--linked {
  cursor: pointer;
}

.series-card--linked:focus-visible {
  outline: 2px solid #171717;
  outline-offset: 5px;
}

.doors-catalogue-page .series-grid {
  gap: clamp(28px, 3.5vw, 48px);
}

.doors-catalogue-page .series-card--linked {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid #e5e1dc;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(33, 29, 25, .07);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.doors-catalogue-page .series-card--linked[hidden] {
  display: none;
}

.doors-catalogue-page .series-card--linked:hover {
  border-color: #d3cdc6;
  box-shadow: 0 18px 42px rgba(33, 29, 25, .12);
  transform: translateY(-5px);
}

.doors-catalogue-page .series-card--linked .series-media {
  aspect-ratio: 4 / 1;
  background: #efedea;
}

.series-palette {
  display: grid;
  grid-template-columns: repeat(var(--palette-columns), minmax(0, 1fr));
  grid-template-rows: repeat(var(--palette-rows), minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .72);
}

.series-palette--1 { --palette-columns: 1; --palette-rows: 1; }
.series-palette--2 { --palette-columns: 2; --palette-rows: 1; }
.series-palette--3 { --palette-columns: 3; --palette-rows: 1; }
.series-palette--4 { --palette-columns: 4; --palette-rows: 1; }

.doors-catalogue-page .series-card--linked .series-palette img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: none;
}

.doors-catalogue-page .series-card--linked > div:not(.series-media) {
  align-content: center;
  gap: 10px;
  min-height: 174px;
  padding: 28px clamp(22px, 3vw, 46px) 30px;
}

.doors-catalogue-page .series-card--linked h3 {
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.08;
}

.doors-catalogue-page .series-card--linked .series-title-cn {
  margin-top: 10px;
  font-size: .57em;
}

.doors-catalogue-page .series-card--linked p {
  font-size: clamp(12px, .92vw, 14px);
}

@media (max-width: 720px) {
  .doors-catalogue-page .series-card--linked {
    border-radius: 12px;
  }

  .doors-catalogue-page .series-card--linked .series-media {
    aspect-ratio: 4 / 1;
  }

  .doors-catalogue-page .series-card--linked > div:not(.series-media) {
    min-height: 150px;
    padding: 24px 18px 26px;
  }
}

.colour-catalogue-page {
  padding: 180px clamp(24px, 5vw, 104px) 120px;
  background: #fff;
}

.colour-catalogue-intro {
  max-width: 1120px;
  margin: 0 auto 96px;
  text-align: center;
}

.colour-catalogue-back {
  display: inline-block;
  margin-bottom: 46px;
  color: #6b625a;
  font-size: .82rem;
  text-decoration: none;
}

.colour-catalogue-intro > p:first-of-type {
  margin: 0 0 20px;
  color: #73695f;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.colour-catalogue-intro h1 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(1.9rem, 3.7vw, 3.65rem);
  font-weight: 400;
  line-height: 1.04;
}

.colour-catalogue-intro__cn {
  margin: 24px 0 0;
  color: #77716b;
  font-size: clamp(.88rem, 1.15vw, 1.08rem);
}

.colour-catalogue {
  max-width: 1120px;
  margin: 0 auto;
}

.colour-group {
  margin-top: 112px;
}

.colour-group:first-child {
  margin-top: 0;
}

.colour-group__heading {
  min-height: 38px;
  margin: 0 0 48px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
}

.colour-group__heading img {
  display: block;
  width: auto;
  max-width: min(100%, 700px);
  height: clamp(20px, 2.2vw, 31px);
  margin: 0 auto;
  object-fit: contain;
}

.colour-swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px 28px;
}

.colour-swatch-card {
  min-width: 0;
  text-align: center;
}

.colour-swatch-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f1f0ee;
}

.colour-swatch-card__name {
  display: block;
  margin: 18px 0 0;
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .colour-catalogue-page { padding-top: 132px; }
  .colour-swatch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .colour-catalogue-page { padding-inline: 18px; }
  .colour-catalogue-intro { margin-bottom: 70px; }
  .colour-group { margin-top: 80px; }
  .colour-group__heading { margin-bottom: 32px; }
  .colour-swatch-grid { gap: 40px 16px; }
  .colour-swatch-card__name { margin-top: 15px; }
}

.doors-catalogue-page .series-card .series-title-cn {
  margin-top: 12px;
}

/* Dedicated contact landing page */
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.contact-page-hero {
  min-height: min(820px, calc(100vh - 74px));
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  background: #f4f2ee;
}

.contact-page-hero__copy {
  align-self: center;
  padding: clamp(90px, 11vw, 176px) clamp(28px, 6vw, 96px);
}

.contact-page-hero__copy h1 {
  max-width: 680px;
  margin: 18px 0 28px;
  font-size: clamp(3.2rem, 6.3vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.contact-page-hero__copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 300;
  line-height: 1.65;
}

.contact-page-hero__media {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
}

.contact-page-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-page-options {
  padding: clamp(88px, 10vw, 148px) clamp(24px, 5vw, 82px);
  background: var(--paper);
}

.contact-page-options__heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(360px, 1fr);
  gap: clamp(34px, 8vw, 130px);
  align-items: start;
  margin-bottom: clamp(54px, 7vw, 94px);
}

.contact-page-options__heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.contact-page-options__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-page-options__grid article {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.2vw, 52px);
  border-right: 1px solid var(--line);
}

.contact-page-options__grid article:last-child {
  border-right: 0;
}

.contact-page-options__grid article > span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.contact-page-options__grid h3 {
  margin: 54px 0 18px;
  font-size: clamp(1.5rem, 2.3vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.contact-page-options__grid p {
  max-width: 390px;
  margin: 0 0 34px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

.contact-page-options__grid a {
  width: max-content;
  margin-top: auto;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

.contact-page-enquiry {
  scroll-margin-top: 74px;
}

.contact-page-enquiry .contact-copy {
  align-self: start;
  position: sticky;
  top: 118px;
}

.contact-page-enquiry .contact-copy h2 {
  max-width: 620px;
  margin: 18px 0 24px;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.contact-page-address {
  margin-top: clamp(48px, 7vw, 82px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-page-address span {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-page-address p {
  margin: 0;
  font-size: 14px !important;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .contact-page-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .contact-page-hero__copy {
    padding-top: 116px;
  }

  .contact-page-hero__media {
    min-height: 54vw;
    max-height: 640px;
  }

  .contact-page-options__heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .contact-page-options__grid article {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-page-options__grid article:last-child {
    border-bottom: 0;
  }

  .contact-page-enquiry .contact-copy {
    position: static;
  }
}

@media (max-width: 600px) {
  .contact-page-hero__copy {
    padding: 104px 22px 70px;
  }

  .contact-page-hero__copy h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .contact-page-hero__media {
    min-height: 72vw;
  }

  .contact-page-options {
    padding-inline: 22px;
  }

  .contact-page-options__grid article {
    padding: 30px 6px;
  }

  .contact-page-options__grid h3 {
    margin-top: 38px;
  }

  .contact-page-enquiry {
    scroll-margin-top: 66px;
  }
}

/* Furniture product details */
.furniture-series-grid .series-card {
  cursor: pointer;
}

@media (max-width: 640px) {
  .furniture-series-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .furniture-series-grid .series-card,
  .furniture-series-grid .series-card[data-series-categories] {
    gap: 8px;
    text-align: center;
  }

  .furniture-series-grid .series-card > div:not(.series-media) {
    gap: 6px;
    padding-inline: 2px;
    text-align: center;
  }

  .furniture-series-grid .series-card[data-series-categories] .series-media {
    aspect-ratio: 1.45;
  }

  .furniture-series-grid .series-card[data-series-categories="sofa"]:not(.series-card--square) .series-media img {
    width: 92%;
    max-height: 86%;
  }

  .furniture-series-grid .series-card[data-series-categories="bed"] .series-media img {
    width: 100%;
    height: 100%;
  }

  .furniture-series-grid .series-card[data-series-categories="bed"] .series-media {
    aspect-ratio: 1.15;
  }

  .furniture-series-grid .series-card[data-series-categories="dining-table"] .series-media img {
    width: 100%;
    height: 100%;
  }

  .furniture-series-grid .series-card[data-series-categories="dining-table"] .series-media {
    aspect-ratio: 1.15;
  }

  .furniture-series-grid .series-title {
    justify-content: center;
  }

  .furniture-series-grid .series-card h3 {
    font-size: 16px;
    line-height: 1.12;
  }

  .furniture-series-grid .series-card p {
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }
}

.furniture-detail {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: clamp(110px, 10vw, 154px) clamp(24px, 5vw, 80px) clamp(80px, 10vw, 150px);
}

.furniture-detail__breadcrumb {
  margin-bottom: clamp(26px, 4vw, 52px);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.furniture-detail__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.furniture-detail__breadcrumb a:hover {
  color: var(--ink);
}

.furniture-detail__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}

.furniture-detail__gallery {
  min-width: 0;
}

.furniture-detail__media {
  min-width: 0;
  margin: 0;
  display: grid;
  place-items: center;
  position: relative;
  aspect-ratio: 1 / 1;
  background: #fafafa;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}

.furniture-detail__media img {
  width: 86%;
  height: 86%;
  display: block;
  object-fit: contain;
}

.furniture-detail__media:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.furniture-detail__gallery-arrow {
  width: 46px;
  height: 46px;
  padding: 0 0 4px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  z-index: 2;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.furniture-detail__gallery-arrow:hover,
.furniture-detail__gallery-arrow:focus-visible {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.furniture-detail__gallery-arrow:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.furniture-detail__gallery-arrow--previous {
  left: 18px;
}

.furniture-detail__gallery-arrow--next {
  right: 18px;
}

.furniture-detail__gallery-count {
  padding: 7px 10px;
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.furniture-detail__thumbnails {
  margin-top: 12px;
  padding-bottom: 4px;
  display: grid;
  grid-auto-columns: minmax(84px, 1fr);
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.furniture-detail__thumbnails button {
  padding: 0;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.76;
  background: #fafafa;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 180ms ease, opacity 180ms ease;
}

.furniture-detail__thumbnails button:not(.is-active) {
  opacity: 0.62;
}

.furniture-detail__thumbnails button:hover,
.furniture-detail__thumbnails button.is-active {
  opacity: 1;
  border-color: var(--ink);
}

.furniture-detail__thumbnails button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.furniture-detail__thumbnails img {
  width: 90%;
  height: 90%;
  display: block;
  object-fit: contain;
}

.furniture-detail__gallery.is-single-image .furniture-detail__gallery-arrow,
.furniture-detail__gallery.is-single-image .furniture-detail__gallery-count,
.furniture-detail__gallery.is-single-image .furniture-detail__thumbnails {
  display: none;
}

.furniture-detail__summary {
  max-width: 570px;
}

.furniture-detail__summary .eyebrow {
  margin-bottom: 18px;
}

.furniture-detail__summary h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.furniture-detail__facts {
  margin: clamp(42px, 6vw, 72px) 0 0;
  border-top: 1px solid var(--line);
}

.furniture-detail__facts > div {
  padding: 22px 0;
  display: grid;
  grid-template-columns: minmax(90px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.furniture-detail__facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.furniture-detail__facts dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.35;
}

.furniture-detail__size-note {
  max-width: 460px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.furniture-detail__description {
  max-width: 1080px;
  margin: clamp(90px, 12vw, 170px) auto 0;
  padding-top: clamp(52px, 7vw, 88px);
  border-top: 1px solid var(--line);
}

.furniture-detail__description h2 {
  max-width: 760px;
  margin: 14px 0 28px;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.furniture-detail__description > p:last-child {
  max-width: 780px;
  margin: 0;
  color: #444;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.7;
}

.furniture-detail__back {
  max-width: 1080px;
  margin: clamp(58px, 8vw, 96px) auto 0;
}

.furniture-detail__back a,
.furniture-detail__missing a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.furniture-detail__missing {
  max-width: 760px;
  margin: 12vh auto;
  text-align: center;
}

.furniture-detail__missing h1 {
  margin: 16px 0 24px;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
}

.furniture-detail__missing > p:not(.eyebrow) {
  margin: 0 auto 34px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .furniture-detail__hero {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .furniture-detail__summary {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .furniture-detail {
    padding: 92px 18px 76px;
  }

  .furniture-detail__breadcrumb {
    margin-bottom: 24px;
    font-size: 10px;
  }

  .furniture-detail__hero {
    gap: 34px;
  }

  .furniture-detail__media img {
    width: 92%;
    height: 92%;
  }

  .furniture-detail__gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .furniture-detail__gallery-arrow--previous {
    left: 10px;
  }

  .furniture-detail__gallery-arrow--next {
    right: 10px;
  }

  .furniture-detail__thumbnails {
    grid-auto-columns: minmax(72px, 25%);
    gap: 8px;
  }

  .furniture-detail__facts {
    margin-top: 34px;
  }

  .furniture-detail__facts > div {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 0;
  }

  .furniture-detail__description {
    margin-top: 78px;
    padding-top: 46px;
  }
}
