@font-face {
  font-family: "Archivo Narrow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/archivo-narrow-400.ttf") format("truetype");
}

@font-face {
  font-family: "Archivo Narrow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/archivo-narrow-500.ttf") format("truetype");
}

@font-face {
  font-family: "Archivo Narrow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/archivo-narrow-600.ttf") format("truetype");
}

@font-face {
  font-family: "Archivo Narrow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/archivo-narrow-700.ttf") format("truetype");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/ibm-plex-mono-400.ttf") format("truetype");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/ibm-plex-mono-500.ttf") format("truetype");
}

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/archivo-400.ttf") format("truetype");
}

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/archivo-500.ttf") format("truetype");
}

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/archivo-600.ttf") format("truetype");
}

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/archivo-700.ttf") format("truetype");
}

@font-face {
  font-family: "Courier Prime";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/courier-prime-400.ttf") format("truetype");
}

@font-face {
  font-family: "Courier Prime";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/courier-prime-700.ttf") format("truetype");
}

:root {
  --paper: #fffaf3;
  --soft: #f5efe6;
  --mist: #e8ece4;
  --ink: #20241f;
  --muted: #6c665e;
  --line: #ded6ca;
  --gold: #a77945;
  --rose: #b98a78;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(52, 44, 35, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
footer[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.panel-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(32, 36, 31, 0.1);
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(18px);
}

.announcement {
  min-height: 34px;
  border-bottom: 1px solid rgba(32, 36, 31, 0.08);
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-size: 12px;
  letter-spacing: 0;
}

.nav-shell {
  width: min(100%, 1440px);
  min-height: 70px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand-mark {
  display: inline-grid;
  justify-items: center;
  line-height: 1.05;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.brand-mark span {
  font-size: 25px;
  white-space: nowrap;
}

.brand-mark small {
  margin-top: 5px;
  color: var(--muted);
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}

.nav-links a,
.text-link,
.consult-link {
  position: relative;
  white-space: nowrap;
}

.nav-links a::after,
.consult-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.consult-link:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  justify-content: flex-end;
}

.text-link,
.menu-toggle,
.icon-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.text-link {
  padding: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 94px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #ddd5c9;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.88), rgba(255, 250, 243, 0.52) 38%, rgba(255, 250, 243, 0.08) 78%),
    linear-gradient(0deg, rgba(32, 36, 31, 0.22), transparent 44%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 40px));
  margin: 0 0 clamp(42px, 8vw, 96px) clamp(20px, 7vw, 108px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  margin-bottom: 18px;
  font-size: 76px;
}

h2 {
  margin-bottom: 18px;
  font-size: 46px;
}

h3 {
  font-size: 22px;
}

.hero-copy p:not(.eyebrow) {
  width: min(440px, 100%);
  color: #3d4039;
  font-size: 18px;
}

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

.primary-button,
.secondary-button,
.submit-button,
.product-card button,
.floating-selection button {
  min-height: 46px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.primary-button,
.submit-button,
.floating-selection button {
  padding: 0 24px;
  background: var(--ink);
  color: var(--paper);
}

.secondary-button {
  padding: 0 24px;
  background: rgba(255, 250, 243, 0.68);
  color: var(--ink);
}

.primary-button:hover,
.submit-button:hover,
.product-card button:hover,
.floating-selection button:hover {
  background: #384033;
  border-color: #384033;
  transform: translateY(-1px);
}

.secondary-button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-links a {
  min-height: 118px;
  padding: 26px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
  display: grid;
  align-content: center;
  gap: 6px;
  transition: background 180ms ease;
}

.quick-links a:last-child {
  border-right: 0;
}

.quick-links a:hover {
  background: var(--mist);
}

.quick-links span {
  color: var(--muted);
  font-size: 13px;
}

.quick-links strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

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

.section-heading {
  width: min(720px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

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

.product-section {
  background: var(--paper);
}

.filter-row {
  width: min(920px, 100%);
  margin: 0 auto 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.filter-pill {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

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

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

.product-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  overflow: hidden;
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--soft);
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.92);
  color: var(--ink);
  font-size: 12px;
}

.product-info {
  padding: 18px;
}

.product-info h3 {
  margin-bottom: 6px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.3;
}

.product-info p {
  min-height: 46px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.product-meta {
  min-height: 42px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.product-meta strong {
  color: var(--ink);
  font-weight: 650;
  white-space: nowrap;
}

.product-card button {
  width: 100%;
  padding: 0 14px;
  background: var(--ink);
  color: var(--paper);
}

.product-card button.is-selected {
  background: var(--mist);
  border-color: var(--mist);
  color: var(--ink);
}

.editorial-band {
  padding: clamp(46px, 7vw, 78px) clamp(20px, 7vw, 100px);
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(24px, 6vw, 88px);
}

.editorial-band .eyebrow {
  color: #d1b28d;
}

.editorial-band h2 {
  margin-bottom: 0;
}

.editorial-band p:last-child {
  margin-bottom: 0;
  color: #e6ded2;
  font-size: 18px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 680px;
  background: var(--soft);
}

.feature-image {
  min-height: 520px;
}

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

.feature-copy {
  padding: clamp(48px, 7vw, 96px);
  display: grid;
  align-content: center;
}

.feature-copy p:not(.eyebrow) {
  color: var(--muted);
}

.process-list {
  margin: 22px 0 30px;
  display: grid;
  gap: 10px;
}

.process-list span {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: #494842;
}

.showroom-section {
  padding: clamp(54px, 8vw, 104px) clamp(20px, 6vw, 86px);
  background: #f9f6ef;
}

.showroom-copy {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.showroom-copy p:not(.eyebrow) {
  color: var(--muted);
}

.showroom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
  grid-auto-rows: minmax(210px, 28vw);
  gap: 14px;
}

.showroom-photo {
  min-width: 0;
  margin: 0;
  border-radius: 6px;
  background: var(--ink);
  overflow: hidden;
}

.showroom-photo.is-large {
  grid-row: span 2;
}

.showroom-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 180ms ease,
    transform 240ms ease;
}

.showroom-photo.is-large img {
  object-position: center 38%;
}

.showroom-photo:nth-child(2) img {
  object-position: center 42%;
}

.showroom-photo:nth-child(3) img {
  object-position: center 45%;
}

.showroom-photo:nth-child(4) img {
  object-position: center 44%;
}

.showroom-photo:hover img {
  filter: brightness(1.06);
  transform: scale(1.025);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 7vw, 94px);
  align-items: start;
  background: var(--paper);
}

.story-copy {
  max-width: 760px;
}

.story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.story-notes {
  border-top: 1px solid var(--line);
}

.story-notes div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 5px;
}

.story-notes strong {
  font-size: 15px;
}

.story-notes span {
  color: var(--muted);
}

.contact-band {
  padding: clamp(44px, 7vw, 84px) clamp(20px, 7vw, 100px);
  background: var(--mist);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.contact-band h2 {
  margin-bottom: 14px;
}

.contact-band p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(32, 36, 31, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.panel-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.selection-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  width: min(480px, 100%);
  padding: 26px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.selection-panel.is-open {
  transform: translateX(0);
}

.panel-head {
  margin-bottom: 22px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.panel-head h2 {
  margin-bottom: 0;
  font-size: 32px;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}

.selected-list {
  display: grid;
  gap: 12px;
}

.selected-item {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  overflow: hidden;
}

.selected-item img {
  width: 82px;
  height: 92px;
  object-fit: cover;
}

.selected-item strong,
.selected-item span {
  display: block;
}

.selected-item strong {
  font-size: 14px;
}

.selected-item span {
  color: var(--muted);
  font-size: 12px;
}

.remove-button {
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 20px;
}

.empty-state {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  color: var(--muted);
  text-align: center;
}

.request-form {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.request-form input {
  min-height: 46px;
  padding: 0 13px;
}

.request-form textarea {
  resize: vertical;
  padding: 12px 13px;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--gold);
}

.submit-button {
  width: 100%;
  margin-top: 4px;
}

.success-box {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #c9d4c3;
  border-radius: 6px;
  background: #f4f8f0;
}

.success-box h3 {
  margin-bottom: 10px;
  font-family: inherit;
  font-weight: 650;
}

.success-box p:not(.eyebrow) {
  color: var(--muted);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 60;
  width: min(380px, calc(100% - 32px));
  padding: 13px 18px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 14px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.floating-selection {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: none;
}

.floating-selection button {
  min-width: 126px;
  box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-feature,
  .story-section {
    grid-template-columns: 1fr;
  }

  .split-feature {
    min-height: 0;
  }

  .feature-image {
    min-height: 440px;
  }

  .showroom-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(220px, 42vw);
  }

  .showroom-photo.is-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    min-height: 64px;
    padding: 0 18px;
    grid-template-columns: 44px 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .brand-mark {
    justify-self: center;
  }

  .nav-links {
    position: absolute;
    top: 99px;
    left: 0;
    right: 0;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .nav-actions .consult-link {
    display: none;
  }

  .nav-actions .text-link {
    font-size: 13px;
  }

  .hero {
    min-height: 72svh;
    align-items: end;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(255, 250, 243, 0.92), rgba(255, 250, 243, 0.56) 52%, rgba(255, 250, 243, 0.06)),
      linear-gradient(90deg, rgba(255, 250, 243, 0.72), transparent 66%);
  }

  .hero img {
    object-position: 64% center;
  }

  .hero-copy {
    width: calc(100% - 36px);
    margin: 0 18px 34px;
  }

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

  .quick-links a:nth-child(2) {
    border-right: 0;
  }

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

  .editorial-band,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    width: 100%;
  }

  .contact-actions .primary-button,
  .contact-actions .secondary-button {
    flex: 1 1 190px;
  }

  .floating-selection {
    display: block;
  }

  .showroom-grid {
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .announcement {
    min-height: 30px;
    font-size: 11px;
  }

  .brand-mark span {
    font-size: 17px;
  }

  .brand-mark small {
    font-size: 10px;
  }

  .nav-actions .text-link {
    max-width: 72px;
    white-space: normal;
    line-height: 1.2;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    flex: 1 1 150px;
  }

  .section-block {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .product-info p {
    min-height: auto;
  }

  .feature-image {
    min-height: 340px;
  }

  .showroom-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .showroom-photo.is-large {
    grid-column: auto;
  }

  .feature-copy,
  .selection-panel {
    padding: 22px 18px;
  }

  .selected-item {
    grid-template-columns: 70px minmax(0, 1fr) 36px;
  }

  .selected-item img {
    width: 70px;
  }
}

/* Reference direction: flatter navigation, tighter type, image-led hero. */
body {
  background: #f8f4ee;
  font-family:
    Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.site-header {
  border-bottom: 1px solid #252525;
  background: #050505;
  color: #f6f1ea;
  backdrop-filter: none;
}

.announcement {
  min-height: 28px;
  border-bottom: 1px solid #202020;
  background: #050505;
  color: #c9c3ba;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 11px;
}

.nav-shell {
  width: 100%;
  min-height: 66px;
  padding: 0 31px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
}

.brand-mark {
  justify-items: start;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1;
}

.brand-mark span {
  font-size: 27px;
}

.brand-mark small {
  display: none;
}

.nav-links,
.nav-actions {
  font-size: 13px;
}

.nav-links {
  justify-content: center;
  gap: 28px;
  color: #d8d3cb;
}

.nav-actions {
  gap: 16px;
  color: #f6f1ea;
}

.nav-links a::after,
.consult-link::after {
  bottom: -5px;
}

.text-link,
.menu-toggle,
.icon-button {
  color: inherit;
}

.menu-toggle span {
  background: #f6f1ea;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c9c3ba;
  white-space: nowrap;
}

.language-switch span {
  font-size: 12px;
}

.language-switch select {
  height: 30px;
  min-width: 70px;
  border: 1px solid #444;
  border-radius: 0;
  background: #050505;
  color: #f6f1ea;
  padding: 0 8px;
  outline: none;
}

.hero {
  min-height: 600px;
  height: calc(100svh - 94px);
  max-height: 720px;
  display: grid;
  place-items: center;
  background: #111;
  color: #f7f2ea;
}

.hero-media {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
}

.hero-media-left {
  left: 0;
}

.hero-media-right {
  right: 0;
}

.hero-media img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58);
}

.hero-media-left img {
  object-position: center;
}

.hero-media-right img {
  object-position: 58% center;
}

.hero::after {
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.22), rgba(5, 5, 5, 0.22)),
    radial-gradient(circle at center, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.48));
}

.hero-copy {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  color: #f7f2ea;
}

.eyebrow {
  color: #a88963;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 11px;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family:
    Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-weight: 500;
  line-height: 1.12;
}

h1 {
  margin-bottom: 14px;
  font-size: 48px;
}

h2 {
  margin-bottom: 14px;
  font-size: 34px;
}

h3 {
  font-size: 18px;
}

.hero-copy p:not(.eyebrow) {
  width: min(560px, 100%);
  margin: 0 auto 22px;
  color: #eee7dc;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 15px;
  line-height: 1.55;
}

.hero-actions {
  justify-content: center;
  gap: 30px;
}

.hero-actions a {
  min-height: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: #f7f2ea;
  padding: 0 0 3px;
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
}

.primary-button,
.secondary-button,
.submit-button,
.product-card button,
.floating-selection button {
  min-height: 42px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 650;
}

.primary-button,
.submit-button,
.floating-selection button {
  background: #050505;
  color: #f7f2ea;
}

.secondary-button {
  background: transparent;
}

.quick-links {
  background: #f8f4ee;
}

.quick-links a {
  min-height: 96px;
  padding: 20px 30px;
}

.quick-links span {
  font-size: 12px;
}

.quick-links strong {
  font-family: inherit;
  font-size: 20px;
  font-weight: 500;
}

.section-block {
  padding: 76px 32px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  font-size: 14px;
}

.filter-row {
  margin-bottom: 28px;
  gap: 18px;
}

.filter-pill {
  min-height: 32px;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  padding: 0 0 4px;
  color: #5f5a52;
  font-size: 13px;
}

.filter-pill.is-active {
  border-color: #050505;
  background: transparent;
  color: #050505;
}

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

.product-card {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.product-media {
  border-radius: 0;
  background: #eee7dc;
}

.product-badge {
  top: 10px;
  left: 10px;
  border-radius: 0;
  background: rgba(248, 244, 238, 0.9);
  font-size: 11px;
}

.product-info {
  padding: 14px 0 0;
}

.product-info h3 {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 650;
}

.product-info p {
  min-height: 44px;
  margin-bottom: 12px;
  font-size: 13px;
}

.product-meta {
  min-height: 24px;
  margin-bottom: 12px;
  font-size: 12px;
}

.product-card button {
  width: auto;
  min-height: 32px;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 2px;
  background: transparent;
  color: #050505;
}

.product-card button:hover,
.product-card button.is-selected {
  background: transparent;
  border-color: currentColor;
  color: #8f6f45;
  transform: none;
}

.editorial-band {
  padding: 54px 70px;
}

.editorial-band p:last-child {
  font-size: 16px;
}

.split-feature {
  min-height: 620px;
}

.feature-copy {
  padding: 70px;
}

.process-list span {
  font-size: 13px;
}

.showroom-section {
  padding: 76px 32px;
}

.showroom-copy {
  margin-bottom: 28px;
}

.story-copy p:not(.eyebrow) {
  font-size: 16px;
}

.contact-band {
  padding: 58px 70px;
}

.panel-head h2 {
  font-size: 28px;
}

@media (max-width: 1100px) {
  .nav-shell {
    gap: 18px;
  }

  .nav-links {
    gap: 18px;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    min-height: 64px;
    padding: 0 18px;
    grid-template-columns: 44px 1fr auto;
  }

  .brand-mark {
    justify-items: center;
  }

  .brand-mark span {
    font-size: 20px;
  }

  .nav-links {
    top: 92px;
    border-bottom: 1px solid #252525;
    background: #050505;
    color: #f6f1ea;
  }

  .language-switch span {
    display: none;
  }

  .language-switch select {
    min-width: 58px;
    height: 28px;
    padding: 0 4px;
    font-size: 12px;
  }

  .hero {
    min-height: 620px;
    height: calc(100svh - 92px);
    max-height: none;
    place-items: end start;
  }

  .hero-media-left {
    display: none;
  }

  .hero-media-right {
    left: 0;
    width: 100%;
  }

  .hero-media-right img {
    object-position: 58% center;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.64), rgba(5, 5, 5, 0.06) 58%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.28), transparent 58%);
  }

  .hero-copy {
    width: min(340px, calc(100% - 36px));
    margin: 0 18px 46px;
    text-align: left;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-copy p:not(.eyebrow) {
    margin-left: 0;
    font-size: 13px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .section-block,
  .showroom-section {
    padding: 58px 18px;
  }

  .editorial-band,
  .feature-copy,
  .contact-band {
    padding: 46px 22px;
  }
}

@media (max-width: 560px) {
  .announcement {
    min-height: 28px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .text-link {
    max-width: 76px;
    font-size: 12px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  .quick-links a {
    min-height: 88px;
    padding: 18px;
  }

  .quick-links strong {
    font-size: 18px;
  }

  .product-grid {
    gap: 30px;
  }
}

.floating-selection {
  display: none !important;
}

.hero-media-main {
  left: 0;
  right: 0;
  width: 100%;
}

.hero-media-main img {
  object-position: 64% center;
}

.home-page .quick-links,
.home-page .product-section,
.home-page .selection-panel,
.home-page .panel-backdrop,
.home-page .floating-selection {
  display: none !important;
}

.home-page .hero {
  min-height: 640px;
  height: calc(100svh - 94px);
  max-height: 780px;
  place-items: end start;
  background: #0d0d0c;
}

.home-page .hero-media-main img {
  filter: brightness(0.82) contrast(1.03) saturate(0.95);
}

.home-page .hero::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.58), rgba(5, 5, 5, 0.22) 42%, rgba(5, 5, 5, 0.08) 75%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.48), rgba(5, 5, 5, 0.02) 55%);
}

.home-page .hero-copy {
  width: min(540px, calc(100% - 64px));
  margin: 0 0 72px 64px;
  text-align: left;
}

.home-page .hero-copy h1 {
  margin-bottom: 14px;
  font-size: 54px;
}

.home-page .hero-copy p:not(.eyebrow) {
  width: min(520px, 100%);
  margin-left: 0;
  color: #f3eee6;
}

.home-page .hero-actions {
  justify-content: flex-start;
}

.campaign-statement {
  padding: 92px clamp(28px, 7vw, 96px);
  background: #f8f4ee;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.campaign-statement .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.campaign-statement h2 {
  max-width: 760px;
  margin: 0;
  font-size: 52px;
  line-height: 1.08;
}

.statement-columns {
  display: grid;
  gap: 20px;
  color: #494640;
  font-size: 16px;
}

.statement-columns p {
  margin-bottom: 0;
}

.home-page .editorial-band {
  background: #10100f;
}

.home-page .contact-band {
  background: #e8ece4;
}

.selection-page .hero,
.selection-page .quick-links {
  display: none;
}

.selection-page .product-section {
  min-height: calc(100svh - 94px);
  padding-top: 86px;
}

.selection-page .section-heading {
  text-align: left;
  width: min(1180px, 100%);
  margin-left: 0;
}

.selection-page .filter-row {
  width: 100%;
  justify-content: flex-start;
}

@media (max-width: 820px) {
  .hero-media-main {
    width: 100%;
  }

  .home-page .hero {
    min-height: 650px;
    height: calc(100svh - 92px);
  }

  .home-page .hero-media-main img {
    object-position: 64% center;
  }

  .home-page .hero::after {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.08) 62%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.38), transparent 70%);
  }

  .home-page .hero-copy {
    width: min(340px, calc(100% - 36px));
    margin: 0 18px 46px;
  }

  .home-page .hero-copy h1 {
    font-size: 34px;
  }

  .campaign-statement {
    padding: 58px 20px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .campaign-statement h2 {
    font-size: 32px;
  }
}

/* Final home structure: campaign, editorial blocks, selection strip, services footer. */
.home-page .nav-shell,
.selection-page .nav-shell {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.nav-icon {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-block;
  color: #f6f1ea;
}

.nav-icon-search::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 11px;
  height: 11px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-icon-search::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 17px;
  width: 8px;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.nav-icon-store::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 14px;
  height: 14px;
  border: 1px solid currentColor;
}

.nav-icon-store::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 4px;
  width: 8px;
  height: 5px;
  border: 1px solid currentColor;
  border-bottom: 0;
}

.nav-icon-list::before,
.nav-icon-list::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  height: 1px;
  background: currentColor;
}

.nav-icon-list::before {
  top: 9px;
  box-shadow: 0 5px 0 currentColor;
}

.nav-icon-list::after {
  top: 19px;
}

.nav-count {
  position: absolute;
  right: -5px;
  top: -4px;
  min-width: 16px;
  height: 16px;
  border: 1px solid #050505;
  border-radius: 999px;
  background: #f6f1ea;
  color: #050505;
  display: grid;
  place-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.campaign-hero {
  position: relative;
  min-height: 710px;
  height: calc(100svh - 94px);
  max-height: 820px;
  background: #0a0a09;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #f7f2ea;
}

.campaign-visual {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
}

.campaign-visual-left {
  left: 0;
}

.campaign-visual-right {
  right: 0;
}

.campaign-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.66) saturate(0.95);
}

.campaign-visual-left img {
  object-position: center;
}

.campaign-visual-right img {
  object-position: 58% center;
}

.campaign-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.18)),
    radial-gradient(circle at center, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.44));
}

.campaign-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  text-align: center;
}

.campaign-copy h1 {
  margin: 0 0 12px;
  color: #f7f2ea;
  font-size: 56px;
  letter-spacing: 0;
}

.campaign-copy p:not(.eyebrow) {
  width: min(660px, 100%);
  margin: 0 auto 22px;
  color: #efe8df;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 15px;
}

.campaign-copy a,
.lookbook-row a,
.feature-duo a,
.strip-links a {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.lookbook-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: #f8f4ee;
}

.lookbook-row article {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.lookbook-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.lookbook-row article:hover img {
  transform: scale(1.025);
}

.lookbook-row a {
  position: absolute;
  left: 32px;
  bottom: 30px;
  color: #f7f2ea;
  z-index: 1;
}

.lookbook-row article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.44), transparent 58%);
}

.brand-manifesto {
  padding: clamp(78px, 10vw, 128px) clamp(26px, 8vw, 112px);
  background: #f8f4ee;
  text-align: center;
}

.brand-manifesto h2 {
  width: min(920px, 100%);
  margin: 0 auto 22px;
  font-size: 52px;
  line-height: 1.1;
}

.brand-manifesto p:not(.eyebrow) {
  width: min(820px, 100%);
  margin: 0 auto;
  color: #504b43;
  font-size: 17px;
}

.feature-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #f8f4ee;
}

.feature-duo article {
  display: grid;
  grid-template-rows: minmax(420px, 46vw) auto;
  border-top: 1px solid #d9d2c8;
}

.feature-duo article + article {
  border-left: 1px solid #d9d2c8;
}

.feature-duo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-duo article > div {
  padding: 34px clamp(24px, 5vw, 64px) 46px;
}

.feature-duo h2 {
  font-size: 32px;
}

.feature-duo p:not(.eyebrow) {
  color: #5d574e;
}

.case-showcase {
  padding: clamp(62px, 8vw, 104px) 32px;
  border-top: 1px solid #d9d2c8;
  background: #eee9e1;
  color: #11110f;
}

.case-intro {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.case-intro h2 {
  margin-bottom: 14px;
  font-size: 34px;
}

.case-intro p:not(.eyebrow) {
  margin-bottom: 0;
  color: #504b43;
  font-size: 14px;
  line-height: 20px;
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-rows: repeat(2, minmax(255px, auto));
  gap: 18px;
}

.case-card {
  min-width: 0;
  border-top: 1px solid #11110f;
  display: grid;
  grid-template-columns: minmax(170px, 0.82fr) minmax(0, 1fr);
  gap: 18px;
  padding-top: 16px;
}

.case-card-large {
  grid-row: span 2;
  grid-template-columns: 1fr;
}

.case-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #ded6ca;
}

.case-card-large img {
  aspect-ratio: 16 / 12;
}

.case-card span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--ref-mono);
  font-size: 11px;
  line-height: 15px;
  color: #6d655c;
}

.case-card h3 {
  margin-bottom: 10px;
  font-family: var(--ref-grotesk);
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
}

.case-card p {
  margin-bottom: 0;
  color: #4d463f;
  font-family: var(--ref-mono);
  font-size: 12px;
  line-height: 17px;
}

.case-link {
  display: inline-block;
  margin-top: 28px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-family: var(--ref-grotesk);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}

.selection-strip {
  padding: 34px clamp(24px, 7vw, 84px);
  border-top: 1px solid #d9d2c8;
  border-bottom: 1px solid #d9d2c8;
  background: #11110f;
  color: #f7f2ea;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.home-product-rail {
  padding: 54px 0 62px;
  border-top: 1px solid #d9d2c8;
  background: #f8f4ee;
  color: #11110f;
}

.rail-head {
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
}

.rail-head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.rail-head > a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-product-rail > p {
  width: min(620px, calc(100% - 64px));
  margin: 12px 32px 24px;
  color: #5d574e;
  font-size: 13px;
}

.home-rail-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 244px;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 32px 14px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.home-rail-track::-webkit-scrollbar {
  display: none;
}

.rail-product-card {
  min-width: 0;
  scroll-snap-align: start;
}

.rail-product-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ede6db;
}

.rail-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.rail-product-card:hover .rail-product-media img {
  transform: scale(1.02);
}

.rail-product-media span {
  position: absolute;
  left: 10px;
  top: 10px;
  background: rgba(248, 244, 238, 0.92);
  padding: 4px 7px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.rail-product-info {
  padding-top: 12px;
}

.rail-product-info strong {
  display: block;
  min-height: 36px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.rail-product-info p {
  min-height: 34px;
  margin: 5px 0 10px;
  color: #5d574e;
  font-size: 12px;
  line-height: 1.4;
}

.rail-product-info > div {
  display: grid;
  gap: 10px;
}

.rail-product-info span {
  font-size: 12px;
}

.rail-product-info button {
  min-height: 34px;
  border: 1px solid #11110f;
  background: transparent;
  color: #11110f;
  cursor: pointer;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.rail-product-info button:hover,
.rail-product-info button.is-selected {
  background: #11110f;
  color: #f8f4ee;
}

.rail-controls {
  padding: 8px 32px 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.rail-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid #11110f;
  background: transparent;
  color: #11110f;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.rail-arrow:hover:not(:disabled) {
  background: #11110f;
  color: #f8f4ee;
}

.rail-arrow:disabled {
  border-color: #c8c0b6;
  color: #a79f95;
  cursor: default;
}

.rail-page-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rail-page-dots button {
  width: 34px;
  height: 2px;
  border: 0;
  background: #c8c0b6;
  padding: 0;
  cursor: pointer;
}

.rail-page-dots button.is-active {
  background: #11110f;
}

.rail-status {
  min-width: 38px;
  color: #5d574e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 11px;
}

.selection-strip h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.selection-strip p {
  margin-bottom: 0;
  color: #d9d2c8;
}

.strip-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.showroom-showcase {
  padding: clamp(68px, 8vw, 102px) clamp(24px, 6vw, 82px);
  background: #f8f4ee;
}

.showroom-intro {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.showroom-intro p:not(.eyebrow) {
  color: #5d574e;
}

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

.showroom-cards article {
  border-top: 1px solid #d9d2c8;
  padding-top: 18px;
}

.showroom-cards img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-bottom: 18px;
}

.showroom-cards h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 650;
}

.showroom-cards p {
  color: #5d574e;
}

.support-footer {
  padding: 42px clamp(24px, 7vw, 92px);
  border-top: 1px solid #d9d2c8;
  background: #f8f4ee;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.support-footer h3 {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
}

.support-footer a {
  display: block;
  margin: 8px 0;
  color: #5d574e;
  font-size: 13px;
}

.selection-workbench {
  min-height: calc(100svh - 94px);
  padding: 72px 32px 86px;
  background: #f8f4ee;
}

.workbench-head {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.workbench-head h1 {
  margin-bottom: 12px;
  color: #20241f;
  font-size: 44px;
}

.workbench-head p:not(.eyebrow) {
  margin-bottom: 0;
  color: #5d574e;
}

.selection-page .product-grid {
  gap: 28px;
}

.selection-contact {
  padding: 44px 32px;
  border-top: 1px solid #d9d2c8;
  background: #e8ece4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.selection-contact p:last-child {
  margin-bottom: 0;
  color: #5d574e;
}

@media (max-width: 900px) {
  .nav-icon-search,
  .nav-icon-store {
    display: none;
  }

  .campaign-hero {
    min-height: 680px;
    place-items: end start;
  }

  .campaign-visual-left {
    display: none;
  }

  .campaign-visual-right {
    left: 0;
    width: 100%;
  }

  .campaign-hero::after {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.08) 62%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.28), transparent 70%);
  }

  .campaign-copy {
    width: min(350px, calc(100% - 36px));
    margin: 0 18px 42px;
    text-align: left;
  }

  .lookbook-row,
  .feature-duo,
  .case-grid,
  .showroom-cards,
  .support-footer,
  .selection-strip,
  .workbench-head,
  .selection-contact {
    grid-template-columns: 1fr;
  }

  .lookbook-row article {
    min-height: 410px;
  }

  .feature-duo article + article {
    border-left: 0;
  }

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

  .case-card img,
  .case-card-large img {
    aspect-ratio: 4 / 3;
  }

  .strip-links {
    gap: 16px;
  }

  .rail-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-rail-track {
    grid-auto-columns: 220px;
  }
}

@media (max-width: 560px) {
  .campaign-hero {
    min-height: 660px;
  }

  .campaign-copy h1 {
    font-size: 34px;
  }

  .brand-manifesto,
  .case-showcase,
  .showroom-showcase,
  .selection-workbench {
    padding-left: 18px;
    padding-right: 18px;
  }

  .feature-duo article {
    grid-template-rows: 330px auto;
  }

  .feature-duo article > div,
  .selection-strip,
  .support-footer,
  .selection-contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .case-showcase {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .case-intro {
    margin-bottom: 26px;
  }

  .case-intro h2 {
    font-size: 24px;
  }

  .case-grid {
    gap: 24px;
  }

  .case-card {
    gap: 12px;
    padding-top: 14px;
  }

  .home-product-rail {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .rail-head {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-product-rail > p {
    width: calc(100% - 36px);
    margin-left: 18px;
    margin-right: 18px;
  }

  .home-rail-track {
    grid-auto-columns: 204px;
    gap: 16px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .rail-controls {
    padding-left: 18px;
    padding-right: 18px;
    gap: 10px;
  }

  .rail-arrow {
    width: 32px;
    height: 32px;
  }

  .rail-page-dots button {
    width: 24px;
  }

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

  .selection-page .product-info h3 {
    font-size: 13px;
  }

  .selection-page .product-info p {
    display: none;
  }
}

/* Expanded reference-style footer and refined language control. */
.language-switch {
  min-height: 32px;
  border: 1px solid rgba(246, 241, 234, 0.28);
  padding: 2px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #f6f1ea;
}

.language-switch span {
  padding: 0 8px;
  color: #aaa39a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.language-switch select,
.footer-language select {
  height: 28px;
  min-width: 116px;
  border: 0;
  border-left: 1px solid rgba(246, 241, 234, 0.24);
  border-radius: 0;
  background: #050505;
  color: #f6f1ea;
  padding: 0 28px 0 10px;
  cursor: pointer;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0;
  outline: none;
}

.language-switch select:focus-visible,
.footer-language select:focus-visible {
  box-shadow: inset 0 0 0 1px #f6f1ea;
}

.brand-footer {
  background: #f7f4ef;
  color: #070707;
}

.footer-progress {
  border-top: 1px solid #070707;
  border-bottom: 1px solid rgba(7, 7, 7, 0.16);
  background: #b9b4af;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
}

.footer-progress h2 {
  margin: 0 0 9px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.footer-progress a {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.footer-progress p {
  max-width: 620px;
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.45;
}

.footer-main {
  padding: 48px 32px 52px;
}

.footer-link-area {
  width: min(100%, 930px);
}

.footer-columns {
  min-height: 255px;
  display: grid;
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  gap: 64px;
  align-items: start;
}

.footer-columns h3,
.footer-certifications h3,
.footer-consult h3 {
  margin: 0 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
}

.footer-columns a,
.footer-columns button {
  display: block;
  width: fit-content;
  max-width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 13px;
  color: #151515;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.35;
  text-align: left;
}

.footer-columns a:hover,
.footer-columns button:hover,
.footer-policy a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-certifications {
  margin-top: 4px;
}

.cert-grid {
  width: min(270px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cert-grid span {
  min-height: 72px;
  border: 1px solid #1f1f1f;
  display: grid;
  place-items: center;
  padding: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 10px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.footer-consult {
  margin-top: 42px;
  border-top: 1px solid #070707;
  padding-top: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: start;
}

.footer-consult strong {
  display: inline-block;
  margin-right: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 850;
}

.footer-consult h3 {
  display: inline-block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.footer-consult p {
  max-width: 660px;
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.45;
}

.footer-consult-actions {
  display: flex;
  gap: 12px;
}

.footer-consult-actions a,
.footer-consult-actions button {
  min-width: 168px;
  min-height: 48px;
  border: 1px solid #070707;
  background: transparent;
  color: #070707;
  padding: 0 22px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-consult-actions a:hover,
.footer-consult-actions button:hover {
  background: #070707;
  color: #f7f4ef;
}

.footer-legal {
  min-height: 56px;
  background: #030303;
  color: #f7f4ef;
  padding: 12px 32px;
  display: grid;
  grid-template-columns: minmax(230px, auto) minmax(100px, auto) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 11px;
}

.footer-language {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.footer-language span {
  color: #d5cec4;
}

.footer-language select {
  height: 28px;
  min-width: 178px;
  border: 1px solid rgba(247, 244, 239, 0.28);
  background: #030303;
  color: #f7f4ef;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.footer-policy {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  align-items: center;
  text-align: right;
}

@media (max-width: 900px) {
  .language-switch span {
    display: none;
  }

  .footer-progress,
  .footer-consult,
  .footer-legal {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 42px;
  }

  .footer-policy {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .language-switch {
    min-height: 30px;
  }

  .language-switch select {
    min-width: 88px;
    padding: 0 7px;
    font-size: 10px;
  }

  .footer-progress,
  .footer-main,
  .footer-legal {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-progress h2 {
    font-size: 21px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .footer-consult-actions,
  .footer-language,
  .footer-policy {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-consult-actions a,
  .footer-consult-actions button {
    width: 100%;
  }
}

/* Reference typography layer for English and other latin-first locales. */
:root {
  --ref-grotesk: "Archivo", SyndicatGrotesk, "Helvetica Neue", Arial, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --ref-mono: "IBM Plex Mono", SimonMono, "Courier Prime", "Courier New", Courier, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", monospace;
}

html:not([data-lang="zh"]) body {
  font-family: var(--ref-mono);
  font-size: 16px;
  line-height: 1.5;
}

html:not([data-lang="zh"]) .brand-mark,
html:not([data-lang="zh"]) .nav-links,
html:not([data-lang="zh"]) .nav-actions,
html:not([data-lang="zh"]) h1,
html:not([data-lang="zh"]) h2,
html:not([data-lang="zh"]) h3,
html:not([data-lang="zh"]) .eyebrow,
html:not([data-lang="zh"]) button,
html:not([data-lang="zh"]) .primary-button,
html:not([data-lang="zh"]) .secondary-button,
html:not([data-lang="zh"]) .submit-button,
html:not([data-lang="zh"]) .campaign-copy a,
html:not([data-lang="zh"]) .lookbook-row a,
html:not([data-lang="zh"]) .feature-duo a,
html:not([data-lang="zh"]) .strip-links a,
html:not([data-lang="zh"]) .rail-head > a,
html:not([data-lang="zh"]) .footer-progress h2,
html:not([data-lang="zh"]) .footer-progress a,
html:not([data-lang="zh"]) .footer-columns a,
html:not([data-lang="zh"]) .footer-columns button,
html:not([data-lang="zh"]) .footer-columns h3,
html:not([data-lang="zh"]) .footer-certifications h3,
html:not([data-lang="zh"]) .footer-consult h3,
html:not([data-lang="zh"]) .footer-consult strong,
html:not([data-lang="zh"]) .footer-consult-actions a,
html:not([data-lang="zh"]) .footer-consult-actions button,
html:not([data-lang="zh"]) .footer-social a {
  font-family: var(--ref-grotesk);
}

html:not([data-lang="zh"]) .announcement,
html:not([data-lang="zh"]) .campaign-copy p:not(.eyebrow),
html:not([data-lang="zh"]) .brand-manifesto p:not(.eyebrow),
html:not([data-lang="zh"]) .feature-duo p:not(.eyebrow),
html:not([data-lang="zh"]) .home-product-rail > p,
html:not([data-lang="zh"]) .rail-product-info p,
html:not([data-lang="zh"]) .rail-product-info span,
html:not([data-lang="zh"]) .product-info p,
html:not([data-lang="zh"]) .product-meta,
html:not([data-lang="zh"]) .showroom-intro p:not(.eyebrow),
html:not([data-lang="zh"]) .showroom-cards p,
html:not([data-lang="zh"]) .footer-progress p,
html:not([data-lang="zh"]) .footer-consult p,
html:not([data-lang="zh"]) .footer-legal,
html:not([data-lang="zh"]) .success-box p,
html:not([data-lang="zh"]) input,
html:not([data-lang="zh"]) textarea,
html:not([data-lang="zh"]) select {
  font-family: var(--ref-mono);
}

html:not([data-lang="zh"]) .brand-mark span {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

html:not([data-lang="zh"]) .nav-links,
html:not([data-lang="zh"]) .nav-actions {
  font-size: 14px;
  line-height: 18.62px;
}

html:not([data-lang="zh"]) .nav-links a,
html:not([data-lang="zh"]) .nav-actions a,
html:not([data-lang="zh"]) .nav-actions button,
html:not([data-lang="zh"]) .text-link {
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

html:not([data-lang="zh"]) .campaign-copy h1 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

html:not([data-lang="zh"]) .brand-manifesto h2,
html:not([data-lang="zh"]) .feature-duo h2,
html:not([data-lang="zh"]) .rail-head h2,
html:not([data-lang="zh"]) .selection-strip h2,
html:not([data-lang="zh"]) .showroom-intro h2,
html:not([data-lang="zh"]) .workbench-head h1,
html:not([data-lang="zh"]) .selection-contact h2,
html:not([data-lang="zh"]) .panel-head h2 {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

html:not([data-lang="zh"]) .brand-manifesto h2 {
  font-size: 48px;
}

html:not([data-lang="zh"]) .feature-duo h2,
html:not([data-lang="zh"]) .workbench-head h1 {
  font-size: 34px;
}

html:not([data-lang="zh"]) .rail-head h2,
html:not([data-lang="zh"]) .selection-strip h2,
html:not([data-lang="zh"]) .showroom-intro h2,
html:not([data-lang="zh"]) .selection-contact h2 {
  font-size: 28px;
}

html:not([data-lang="zh"]) .eyebrow,
html:not([data-lang="zh"]) .campaign-copy a,
html:not([data-lang="zh"]) .lookbook-row a,
html:not([data-lang="zh"]) .feature-duo a,
html:not([data-lang="zh"]) .strip-links a,
html:not([data-lang="zh"]) .rail-head > a,
html:not([data-lang="zh"]) .rail-product-info button,
html:not([data-lang="zh"]) .product-info button,
html:not([data-lang="zh"]) .footer-progress a,
html:not([data-lang="zh"]) .footer-consult-actions a,
html:not([data-lang="zh"]) .footer-consult-actions button {
  font-size: 14px;
  font-weight: 500;
  line-height: 18.62px;
  letter-spacing: 0;
  text-transform: uppercase;
}

html:not([data-lang="zh"]) .eyebrow {
  font-size: 12px;
  line-height: 15.96px;
  letter-spacing: 0.02em;
}

html:not([data-lang="zh"]) p,
html:not([data-lang="zh"]) .campaign-copy p:not(.eyebrow),
html:not([data-lang="zh"]) .home-product-rail > p,
html:not([data-lang="zh"]) .footer-progress p,
html:not([data-lang="zh"]) .footer-consult p {
  font-size: 14px;
  font-weight: 400;
  line-height: 18.62px;
  letter-spacing: 0;
}

html:not([data-lang="zh"]) .rail-product-info strong,
html:not([data-lang="zh"]) .product-info h3,
html:not([data-lang="zh"]) .selected-item strong {
  font-family: var(--ref-mono);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: none;
}

html:not([data-lang="zh"]) .rail-product-info p,
html:not([data-lang="zh"]) .rail-product-info span,
html:not([data-lang="zh"]) .product-info p,
html:not([data-lang="zh"]) .product-meta,
html:not([data-lang="zh"]) .footer-columns a,
html:not([data-lang="zh"]) .footer-columns button,
html:not([data-lang="zh"]) .footer-policy,
html:not([data-lang="zh"]) .footer-language {
  font-size: 12px;
  font-weight: 500;
  line-height: 15.96px;
  letter-spacing: 0;
}

html:not([data-lang="zh"]) .footer-columns h3,
html:not([data-lang="zh"]) .footer-certifications h3,
html:not([data-lang="zh"]) .footer-consult h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 18.62px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

@media (max-width: 560px) {
  html:not([data-lang="zh"]) .campaign-copy h1 {
    font-size: 38px;
  }

  html:not([data-lang="zh"]) .brand-manifesto h2 {
    font-size: 32px;
  }

  html:not([data-lang="zh"]) .feature-duo h2,
  html:not([data-lang="zh"]) .workbench-head h1 {
    font-size: 28px;
  }
}

/* Final typography calibration: reference-style grotesk + mono pairing. */
:root {
  --ref-grotesk: "Archivo", SyndicatGrotesk, "Helvetica Neue", Arial, Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --ref-mono: "IBM Plex Mono", SimonMono, "Courier Prime", "Courier New", Courier, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", monospace;
}

body {
  font-family: var(--ref-mono);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.brand-mark,
.brand-mark span,
.brand-mark small,
.nav-links,
.nav-actions,
.nav-links a,
.nav-actions a,
.nav-actions button,
.text-link,
.menu-toggle,
h1,
h2,
h3,
.eyebrow,
button,
.primary-button,
.secondary-button,
.submit-button,
.campaign-copy a,
.lookbook-row a,
.feature-duo a,
.strip-links a,
.rail-head > a,
.rail-product-info button,
.product-info button,
.filter-pill,
.footer-progress h2,
.footer-progress a,
.footer-columns h3,
.footer-columns a,
.footer-columns button,
.footer-certifications h3,
.footer-consult h3,
.footer-consult strong,
.footer-consult-actions a,
.footer-consult-actions button,
.footer-social a {
  font-family: var(--ref-grotesk);
}

.announcement,
p,
.campaign-copy p:not(.eyebrow),
.brand-manifesto p:not(.eyebrow),
.feature-duo p:not(.eyebrow),
.home-product-rail > p,
.rail-product-info strong,
.rail-product-info p,
.rail-product-info span,
.product-info h3,
.product-info p,
.product-meta,
.product-badge,
.rail-product-media span,
.selected-item strong,
.showroom-intro p:not(.eyebrow),
.showroom-cards p,
.footer-progress p,
.footer-consult p,
.footer-legal,
.footer-policy,
.footer-language,
.cert-grid span,
.rail-status,
.toast,
input,
textarea,
select {
  font-family: var(--ref-mono);
}

.brand-mark span {
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark small {
  font-size: 11px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0;
}

.nav-links,
.nav-actions {
  font-size: 14px;
  font-weight: 500;
  line-height: 18.62px;
}

.nav-links a,
.nav-actions a,
.nav-actions button,
.text-link {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.language-switch span {
  font-family: var(--ref-grotesk);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.language-switch select,
.footer-language select {
  font-family: var(--ref-mono);
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
}

.campaign-copy h1 {
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.brand-manifesto h2,
.feature-duo h2,
.rail-head h2,
.selection-strip h2,
.showroom-intro h2,
.workbench-head h1,
.selection-contact h2,
.panel-head h2 {
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

html:not([data-lang="zh"]) .brand-manifesto h2,
html:not([data-lang="zh"]) .feature-duo h2,
html:not([data-lang="zh"]) .rail-head h2,
html:not([data-lang="zh"]) .selection-strip h2,
html:not([data-lang="zh"]) .showroom-intro h2,
html:not([data-lang="zh"]) .workbench-head h1,
html:not([data-lang="zh"]) .selection-contact h2,
html:not([data-lang="zh"]) .panel-head h2 {
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.brand-manifesto h2 {
  font-size: 48px;
}

.feature-duo h2,
.workbench-head h1 {
  font-size: 34px;
}

.rail-head h2,
.selection-strip h2,
.showroom-intro h2,
.selection-contact h2,
.panel-head h2 {
  font-size: 28px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  line-height: 15.96px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.campaign-copy a,
.lookbook-row a,
.feature-duo a,
.strip-links a,
.rail-head > a,
.rail-product-info button,
.product-info button,
.footer-progress a,
.footer-consult-actions a,
.footer-consult-actions button,
.primary-button,
.secondary-button,
.submit-button,
.filter-pill {
  font-size: 14px;
  font-weight: 500;
  line-height: 18.62px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.campaign-copy p:not(.eyebrow),
.brand-manifesto p:not(.eyebrow),
.feature-duo p:not(.eyebrow),
.home-product-rail > p,
.showroom-intro p:not(.eyebrow),
.showroom-cards p,
.footer-progress p,
.footer-consult p,
.success-box p {
  font-size: 14px;
  font-weight: 400;
  line-height: 18.62px;
  letter-spacing: 0;
}

.rail-product-info strong,
.product-info h3,
.selected-item strong {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: none;
}

.rail-product-info p,
.rail-product-info span,
.product-info p,
.product-meta,
.footer-columns a,
.footer-columns button,
.footer-policy,
.footer-language,
.footer-legal {
  font-size: 12px;
  font-weight: 400;
  line-height: 15.96px;
  letter-spacing: 0;
}

.footer-columns h3,
.footer-certifications h3,
.footer-consult h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 18.62px;
  letter-spacing: 0;
  text-transform: capitalize;
}

.footer-progress h2 {
  font-size: 25px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-consult strong {
  font-size: 14px;
  font-weight: 500;
  line-height: 18.62px;
  letter-spacing: 0;
}

html[data-lang="zh"] .brand-manifesto h2,
html[data-lang="zh"] .feature-duo h2,
html[data-lang="zh"] .selection-strip h2,
html[data-lang="zh"] .showroom-intro h2,
html[data-lang="zh"] .workbench-head h1,
html[data-lang="zh"] .selection-contact h2,
html[data-lang="zh"] .panel-head h2 {
  line-height: 1.18;
}

@media (max-width: 760px) {
  .campaign-copy h1 {
    font-size: 38px;
    line-height: 38px;
  }

  .brand-manifesto h2 {
    font-size: 32px;
  }

  .feature-duo h2,
  .workbench-head h1,
  .selection-strip h2,
  .showroom-intro h2,
  .selection-contact h2,
  .panel-head h2 {
    font-size: 28px;
  }
}

html:not([data-lang="zh"]) .brand-mark span {
  font-weight: 700;
  letter-spacing: 0;
}

html:not([data-lang="zh"]) .rail-product-info p,
html:not([data-lang="zh"]) .rail-product-info span,
html:not([data-lang="zh"]) .product-info p,
html:not([data-lang="zh"]) .product-meta {
  font-weight: 400;
}

html:not([data-lang="zh"]) .footer-progress p,
html:not([data-lang="zh"]) .footer-consult p,
html:not([data-lang="zh"]) .footer-legal {
  font-size: 12px;
  line-height: 15.96px;
  font-weight: 400;
}

/* Typography roles adjusted after visual audit. */
.announcement {
  font-family: var(--ref-grotesk);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0;
}

.nav-links a {
  font-family: var(--ref-grotesk);
  font-size: 14px;
  font-weight: 400;
  line-height: 18.62px;
  letter-spacing: 0.28px;
  text-transform: none;
}

.nav-actions a,
.nav-actions button,
.text-link {
  font-family: var(--ref-grotesk);
  font-size: 14px;
  font-weight: 500;
  line-height: 18.62px;
  letter-spacing: 0.28px;
}

.rail-product-media span,
.product-badge,
.rail-product-info strong,
.product-info h3,
.selected-item strong {
  font-family: var(--ref-grotesk);
  font-size: 12px;
  font-weight: 500;
  line-height: 15.96px;
  letter-spacing: 0.12px;
  text-transform: uppercase;
}

.rail-product-info p,
.rail-product-info span,
.product-info p,
.product-meta,
.product-meta strong,
.selected-item span {
  font-family: var(--ref-mono);
  font-size: 11.5px;
  font-weight: 400;
  line-height: 15.5px;
  letter-spacing: 0;
  text-transform: none;
}

.rail-product-info button,
.product-info button {
  font-family: var(--ref-grotesk);
  font-size: 12px;
  font-weight: 400;
  line-height: 15.96px;
  letter-spacing: 0.12px;
  text-transform: uppercase;
}

.footer-columns h3,
.footer-certifications h3,
.footer-consult h3 {
  font-family: var(--ref-grotesk);
  font-size: 14px;
  font-weight: 500;
  line-height: 18.62px;
  letter-spacing: 0.28px;
  text-transform: capitalize;
}

.footer-columns a,
.footer-columns button,
.footer-policy a,
.footer-language span,
.footer-social a {
  font-family: var(--ref-grotesk);
  font-size: 12px;
  font-weight: 400;
  line-height: 15.96px;
  letter-spacing: 0.24px;
  text-transform: capitalize;
}

.footer-progress p,
.footer-consult p,
.footer-legal {
  font-family: var(--ref-mono);
  font-size: 12px;
  font-weight: 400;
  line-height: 15.96px;
  letter-spacing: 0;
}

html:not([data-lang="zh"]) .nav-links a {
  font-size: 14px;
  font-weight: 400;
  line-height: 18.62px;
  letter-spacing: 0.28px;
  text-transform: none;
}

html:not([data-lang="zh"]) .rail-product-info button,
html:not([data-lang="zh"]) .product-info button {
  font-size: 12px;
  font-weight: 400;
  line-height: 15.96px;
  letter-spacing: 0.12px;
  text-transform: uppercase;
}

html:not([data-lang="zh"]) .rail-product-info strong,
html:not([data-lang="zh"]) .product-info h3,
html:not([data-lang="zh"]) .selected-item strong {
  font-family: var(--ref-grotesk);
  font-size: 12px;
  font-weight: 500;
  line-height: 15.96px;
  letter-spacing: 0.12px;
  text-transform: uppercase;
}

html:not([data-lang="zh"]) .footer-columns a,
html:not([data-lang="zh"]) .footer-columns button,
html:not([data-lang="zh"]) .footer-policy a,
html:not([data-lang="zh"]) .footer-language span,
html:not([data-lang="zh"]) .footer-social a {
  font-size: 12px;
  font-weight: 400;
  line-height: 15.96px;
  letter-spacing: 0.24px;
  text-transform: capitalize;
}

html:not([data-lang="zh"]) .rail-product-info p,
html:not([data-lang="zh"]) .rail-product-info span,
html:not([data-lang="zh"]) .product-info p,
html:not([data-lang="zh"]) .product-meta,
html:not([data-lang="zh"]) .product-meta strong,
html:not([data-lang="zh"]) .selected-item span {
  font-family: var(--ref-mono);
  font-size: 11.5px;
  font-weight: 400;
  line-height: 15.5px;
  letter-spacing: 0;
  text-transform: none;
}

/* Product card text rhythm: closer to the reference rail, without copying licensed fonts. */
.rail-product-info {
  padding-top: 10px;
}

.rail-product-info strong {
  min-height: 32px;
  color: #11110f;
  letter-spacing: 0;
}

html:not([data-lang="zh"]) .rail-product-info strong,
html:not([data-lang="zh"]) .product-info h3,
html:not([data-lang="zh"]) .selected-item strong {
  letter-spacing: 0;
}

.rail-product-info p {
  min-height: 28px;
  margin: 4px 0 8px;
  color: #39342e;
}

.rail-product-info > div {
  gap: 8px;
}

.rail-product-info span {
  color: #11110f;
}

.rail-product-info button {
  min-height: 32px;
  padding: 0 10px;
  border-color: #171512;
  color: #11110f;
  font-weight: 400;
  letter-spacing: 0;
}

html:not([data-lang="zh"]) .rail-product-info button,
html:not([data-lang="zh"]) .product-info button {
  letter-spacing: 0;
}

.product-info h3 {
  letter-spacing: 0;
}

.product-info p {
  color: #403a33;
}

.product-meta {
  color: #403a33;
}

/* H5 and mini-program-ready interaction layer. */
html {
  scroll-padding-top: 104px;
}

body {
  overflow-x: hidden;
}

.home-rail-track,
.filter-row {
  -webkit-overflow-scrolling: touch;
}

.primary-button,
.secondary-button,
.submit-button,
.product-card button,
.rail-product-info button,
.filter-pill,
.text-link,
.nav-icon,
.menu-toggle,
.icon-button {
  touch-action: manipulation;
}

@media (min-width: 901px) {
  .campaign-hero {
    height: min(760px, calc(100svh - 132px));
    min-height: 600px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 88px;
  }

  .announcement {
    min-height: 26px;
    padding: 0 12px;
    font-size: 10px;
    line-height: 13px;
    text-align: center;
  }

  .nav-shell,
  .home-page .nav-shell,
  .selection-page .nav-shell {
    min-height: 58px;
    padding: 0 14px;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 10px;
  }

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

  .menu-toggle span {
    width: 21px;
    margin: 6px auto;
  }

  .brand-mark {
    justify-self: center;
    max-width: 46vw;
    overflow: hidden;
  }

  .brand-mark span {
    max-width: 100%;
    overflow: hidden;
    font-size: 18px;
    line-height: 18px;
    text-overflow: ellipsis;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .nav-icon-store,
  .nav-actions .nav-icon-search {
    display: none;
  }

  .nav-icon {
    width: 34px;
    height: 34px;
  }

  .nav-count {
    right: -2px;
    top: 0;
  }

  .language-switch {
    min-height: 32px;
  }

  .language-switch select {
    width: 86px;
    min-width: 0;
    height: 28px;
    padding: 0 8px;
    font-size: 10px;
  }

  .nav-links {
    top: 84px;
    padding: 18px 16px 20px;
    gap: 14px;
  }

  .nav-links a {
    width: 100%;
    min-height: 34px;
    display: flex;
    align-items: center;
  }

  .campaign-hero {
    height: calc(100svh - 118px);
    min-height: 520px;
    max-height: 640px;
    place-items: end start;
  }

  .campaign-visual-right img {
    object-position: 58% center;
  }

  .campaign-copy {
    width: min(360px, calc(100% - 32px));
    margin: 0 16px 34px;
  }

  .campaign-copy h1 {
    font-size: 32px;
    line-height: 32px;
  }

  .campaign-copy p:not(.eyebrow) {
    width: 100%;
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 17px;
  }

  .lookbook-row article {
    min-height: 360px;
  }

  .lookbook-row a {
    left: 18px;
    bottom: 20px;
  }

  .brand-manifesto {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .brand-manifesto h2 {
    font-size: 28px;
    line-height: 1.15;
  }

  .brand-manifesto p:not(.eyebrow),
  .showroom-intro p:not(.eyebrow),
  .selection-strip p {
    font-size: 13px;
    line-height: 19px;
  }

  .feature-duo article {
    grid-template-rows: 300px auto;
  }

  .feature-duo article > div {
    padding-top: 26px;
    padding-bottom: 34px;
  }

  .home-product-rail {
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .rail-head {
    gap: 12px;
  }

  .rail-head h2,
  .selection-strip h2,
  .showroom-intro h2,
  .selection-contact h2 {
    font-size: 24px;
  }

  .home-rail-track {
    grid-auto-columns: minmax(166px, 48vw);
    gap: 14px;
    scroll-snap-type: x mandatory;
  }

  .rail-product-media {
    aspect-ratio: 1 / 1.18;
  }

  .rail-product-info strong {
    min-height: 30px;
  }

  .rail-product-info p {
    min-height: 26px;
  }

  .rail-product-info button {
    min-height: 36px;
  }

  .rail-controls {
    padding-top: 4px;
  }

  .selection-workbench {
    min-height: 0;
    padding: 34px 14px 56px;
  }

  .workbench-head {
    margin-bottom: 18px;
    gap: 16px;
  }

  .workbench-head .primary-button {
    width: 100%;
  }

  .filter-row {
    width: calc(100% + 28px);
    margin: 0 -14px 22px;
    padding: 0 14px 8px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

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

  .filter-pill {
    flex: 0 0 auto;
    min-height: 36px;
    border-radius: 0;
    padding: 0 14px;
    scroll-snap-align: start;
  }

  .selection-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
  }

  .product-card {
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .product-media {
    aspect-ratio: 1 / 1.12;
  }

  .product-badge {
    top: 8px;
    left: 8px;
    min-height: 22px;
    padding: 3px 7px;
    border-radius: 0;
    font-size: 10px;
  }

  .product-info {
    padding: 10px 0 0;
  }

  .product-info h3 {
    min-height: 32px;
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 16px;
  }

  .product-info p {
    display: none;
  }

  .product-meta {
    min-height: 34px;
    margin-bottom: 10px;
    display: grid;
    align-content: start;
    gap: 3px;
    font-size: 11px;
    line-height: 15px;
  }

  .product-card button {
    min-height: 36px;
    padding: 0 8px;
    border-radius: 0;
    font-size: 11px;
    line-height: 14px;
  }

  .selection-contact {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .selection-contact .secondary-button {
    width: 100%;
  }

  .selection-panel {
    top: auto;
    width: 100%;
    max-height: min(92svh, 720px);
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
    border-radius: 14px 14px 0 0;
    transform: translateY(100%);
  }

  .selection-panel.is-open {
    transform: translateY(0);
  }

  .panel-head {
    margin-bottom: 16px;
  }

  .panel-head h2 {
    font-size: 24px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
    border-radius: 0;
  }

  .selected-list {
    gap: 10px;
    max-height: 176px;
    overflow-y: auto;
    padding-right: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .selected-list::-webkit-scrollbar {
    display: none;
  }

  .selected-item {
    min-height: 74px;
    grid-template-columns: 62px minmax(0, 1fr) 34px;
    gap: 10px;
    border-radius: 0;
  }

  .selected-item img {
    width: 62px;
    height: 74px;
  }

  .remove-button {
    width: 34px;
    height: 34px;
    margin-right: 4px;
  }

  .request-form input,
  .request-form textarea {
    border-radius: 0;
    font-size: 16px;
  }

  .request-form input {
    min-height: 44px;
  }

  .request-form textarea {
    min-height: 84px;
    resize: vertical;
  }

  .request-form .submit-button {
    position: sticky;
    bottom: 0;
    z-index: 2;
    box-shadow: 0 -10px 14px rgba(248, 244, 238, 0.92);
  }

  .toast {
    bottom: calc(18px + env(safe-area-inset-bottom));
    width: calc(100% - 28px);
    border-radius: 0;
  }
}

@media (max-width: 380px) {
  .brand-mark span {
    font-size: 16px;
  }

  .language-switch select {
    width: 76px;
  }

  .home-rail-track {
    grid-auto-columns: 156px;
  }

  .selection-page .product-grid {
    gap: 22px 10px;
  }

  .product-card button,
  .rail-product-info button {
    font-size: 10.5px;
  }
}

@media (max-height: 680px) and (max-width: 760px) {
  .campaign-hero {
    height: calc(100svh - 96px);
    min-height: 480px;
  }

  .campaign-copy {
    margin-bottom: 24px;
  }
}

/* Footer layout refinement: link directory above, service actions below. */
.footer-main {
  padding: 46px 32px 48px;
}

.footer-link-area {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.8fr);
  grid-template-areas:
    "links links"
    "cert consult";
  column-gap: clamp(36px, 7vw, 96px);
  row-gap: 36px;
}

.footer-columns {
  grid-area: links;
  min-height: 0;
  grid-template-columns: repeat(4, minmax(132px, 1fr));
  gap: clamp(36px, 7vw, 86px);
}

.footer-certifications {
  grid-area: cert;
  margin-top: 0;
  border-top: 1px solid #070707;
  padding-top: 24px;
}

.footer-certifications h3 {
  margin-bottom: 18px;
}

.cert-grid {
  width: 100%;
  max-width: 360px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cert-grid span {
  min-height: 58px;
  padding: 8px 10px;
}

.footer-consult {
  grid-area: consult;
  margin-top: 0;
  border-top: 1px solid #070707;
  padding-top: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
}

.footer-consult p {
  max-width: 760px;
}

.footer-consult-actions {
  align-self: start;
}

.footer-consult-actions a,
.footer-consult-actions button {
  min-width: 168px;
}

@media (max-width: 980px) {
  .footer-link-area {
    grid-template-columns: 1fr;
    grid-template-areas:
      "links"
      "cert"
      "consult";
    row-gap: 34px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 42px;
  }

  .footer-certifications,
  .footer-consult {
    padding-top: 22px;
  }

  .cert-grid {
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .footer-main {
    padding-top: 38px;
    padding-bottom: 40px;
  }

  .footer-link-area {
    row-gap: 30px;
  }

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

  .footer-columns h3,
  .footer-certifications h3,
  .footer-consult h3 {
    margin-bottom: 11px;
  }

  .footer-columns a,
  .footer-columns button {
    margin-bottom: 10px;
  }

  .footer-consult {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .footer-consult-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-consult-actions a,
  .footer-consult-actions button {
    width: 100%;
    min-height: 44px;
  }
}

@media (max-width: 430px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

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

/* Cross-brand entry for Lustro Lab. */
.brand-lab-link {
  min-height: 420px;
  border-top: 1px solid #d9d2c8;
  border-bottom: 1px solid #d9d2c8;
  background: #e7ecea;
  color: #11110f;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.brand-lab-link-media {
  min-height: 420px;
  overflow: hidden;
  background: #151817;
}

.brand-lab-link-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.85);
}

.brand-lab-link-copy {
  padding: clamp(38px, 6vw, 82px);
  display: grid;
  align-content: center;
}

.brand-lab-link-copy h2 {
  width: min(720px, 100%);
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 46px);
}

.brand-lab-link-copy p:not(.eyebrow) {
  width: min(680px, 100%);
  color: #4a514d;
  font-size: 15px;
  line-height: 1.7;
}

.brand-lab-link-copy a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lustro-page .campaign-hero {
  background: #090b0c;
}

.lustro-page .campaign-visual img {
  filter: brightness(0.62) saturate(0.82);
}

.lustro-page .brand-manifesto {
  background: #eef1ef;
}

.lustro-page .case-showcase {
  background: #e4e8e6;
}

.lustro-page .selection-strip {
  background: #0d1111;
}

@media (max-width: 900px) {
  .brand-lab-link {
    grid-template-columns: 1fr;
  }

  .brand-lab-link-media {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .brand-lab-link-media {
    min-height: 270px;
  }

  .brand-lab-link-copy {
    padding: 34px 18px 40px;
  }
}

/* Case work final polish. */
.case-intro h2,
.case-card h3,
.case-link {
  font-family: var(--ref-grotesk);
  letter-spacing: 0;
}

.case-intro p:not(.eyebrow),
.case-card span,
.case-card p {
  font-family: var(--ref-mono);
  letter-spacing: 0;
}

html[data-lang="zh"] .case-intro h2 {
  line-height: 1.18;
}

html:not([data-lang="zh"]) .case-intro h2 {
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .case-showcase {
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .case-intro h2 {
    font-size: 24px;
  }

  .case-card h3 {
    font-size: 16px;
    line-height: 21px;
  }
}
