@import url("assets/fonts/typefaces.css");

:root {
  --ink: #1d1918;
  --muted: #746c66;
  --line: #e7ded2;
  --paper: #fffdf9;
  --warm: #f6f0e6;
  --gold: #b8945d;
  --gold-dark: #7b5b2e;
  --soft: #faf7f1;
  --shadow: 0 18px 60px rgba(38, 30, 23, 0.12);
  --font-sans-zh: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --font-serif-zh: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  --font-sans-en: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-serif-en: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: var(--font-sans-zh);
  --font-display: var(--font-serif-zh);
}

html[lang="zh-Hant"] {
  --font-body: var(--font-sans-zh);
  --font-display: var(--font-serif-zh);
}

html[lang="en"] {
  --font-body: var(--font-sans-en);
  --font-display: var(--font-serif-en);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-synthesis: none;
  line-height: 1.5;
  overflow-x: hidden;
}

body.needs-region .site-header,
body.needs-region main {
  pointer-events: none;
  user-select: none;
  filter: blur(10px);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(231, 222, 210, 0.85);
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-wordmark {
  display: block;
  width: clamp(116px, 10vw, 142px);
  height: auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-lockup small {
  max-width: min(28vw, 260px);
}

.desktop-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav .nav-disabled {
  color: color-mix(in srgb, var(--muted) 62%, transparent);
  cursor: default;
}

@media (min-width: 1121px) {
  .home-page .site-header .desktop-nav {
    display: none;
  }
}

.home-header-contact {
  display: none;
}

@media (min-width: 1121px) {
  .home-page .home-header-contact {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 28px);
    min-width: 0;
    color: var(--muted);
    font-size: 12px;
  }

  .home-header-contact a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    white-space: nowrap;
  }

  .home-contact-icon {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    stroke: var(--gold-dark);
    stroke-width: 1.9;
    fill: none;
  }

  .home-contact-icon-pair {
    display: inline-flex;
    align-items: center;
    gap: 3px;
  }

  .home-contact-icon-whatsapp {
    width: 16px;
    height: 16px;
  }

  .home-contact-icon-chat {
    width: 17px;
    height: 17px;
  }

  .home-contact-icon-chat circle {
    fill: var(--gold-dark);
    stroke: none;
  }

  .home-header-contact strong {
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
  }
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

button {
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  font: inherit;
  cursor: pointer;
}

.region-button {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  padding: 8px 13px;
  font-size: 13px;
  white-space: nowrap;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 3px;
}

.lang-button {
  min-width: 46px;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 7px 11px;
  font-size: 13px;
}

.lang-button.active {
  background: var(--ink);
  color: #fff;
}

.region-gate {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px;
  background:
    radial-gradient(circle at 15% 15%, rgba(184, 148, 93, 0.22), transparent 34%),
    rgba(29, 25, 24, 0.68);
  backdrop-filter: blur(18px);
}

.region-gate.active {
  display: grid;
}

.region-panel {
  width: min(760px, 100%);
  border: 1px solid rgba(231, 222, 210, 0.82);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 28px 90px rgba(29, 25, 24, 0.28);
  padding: clamp(24px, 4vw, 42px);
}

.region-panel h2 {
  max-width: 620px;
}

.gate-language {
  display: inline-flex;
  gap: 3px;
  margin: 10px 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 3px;
}

.region-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.region-options button {
  display: grid;
  min-height: 104px;
  align-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  padding: 14px 10px;
  text-align: left;
}

.region-options button:hover {
  border-color: var(--gold);
  background: #fff;
}

.region-options button.active {
  border-color: var(--gold);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--gold);
}

.region-options strong {
  font-size: 16px;
}

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

.region-note,
.region-status {
  color: var(--muted);
  font-size: 13px;
}

.region-status {
  margin: -4px 0 22px;
}

.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  border-top: 1px solid rgba(231, 222, 210, 0.86);
  padding: 24px 0 28px;
  color: var(--muted);
  text-align: center;
}

.site-footer-copyright {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.inline-link,
.product-price a {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.section.compact {
  padding-top: 36px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 72px);
}

.eyebrow,
.tag {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(32px, 3.9vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.16;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
}

.custom-hero-description {
  max-width: 560px;
  margin-top: 14px;
  color: color-mix(in srgb, var(--muted) 88%, var(--ink));
  font-size: 16px;
  font-weight: 400;
  line-height: 1.78;
}

html[lang="en"] .custom-hero-description {
  max-width: 600px;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 700;
}

.primary-button {
  background: var(--ink);
  color: #fff;
}

.secondary-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 22%, rgba(184, 148, 93, 0.24), transparent 30%),
    linear-gradient(135deg, #2b2421, #151210);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-img {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 45px rgba(0,0,0,0.26);
}

.hero-alpha {
  right: 8%;
  top: 10%;
  width: 54%;
  height: 76%;
  border-radius: 8px;
}

.hero-bam {
  left: 9%;
  bottom: 12%;
  width: 42%;
  height: 38%;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255,255,255,0.06);
  padding: 18px;
}

.hero-string {
  left: 12%;
  top: 12%;
  width: 29%;
  height: 25%;
  border-radius: 8px;
  transform: rotate(-5deg);
}

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

.section-heading.row {
  max-width: none;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: end;
}

.section-title-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  color: var(--gold-dark);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: none;
}

.section-title-label::before {
  content: "";
  flex: 0 0 28px;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

html[lang="en"] .section-title-label {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

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

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

.entry-card,
.category-panel,
.custom-card,
.product-card,
.flow-grid div,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(38, 30, 23, 0.05);
}

.entry-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  min-height: 470px;
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease;
}

.entry-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.entry-card.is-coming {
  position: relative;
  cursor: default;
}

.entry-card.is-coming:hover {
  transform: none;
  border-color: var(--line);
}

.entry-card.is-coming img {
  filter: saturate(0.62);
  opacity: 0.82;
}

.entry-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 42%, rgba(184, 148, 93, 0.18), transparent 52%),
    linear-gradient(135deg, #faf7f1, #fffdf9);
  padding: 18px;
}

.entry-card.featured img {
  background:
    radial-gradient(circle at 50% 42%, rgba(184, 148, 93, 0.2), transparent 52%),
    linear-gradient(135deg, #241f1d, #14110f);
}

.entry-card > div {
  padding: 24px;
}

.entry-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--warm);
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 13px;
}

.entry-card strong {
  display: block;
  color: var(--gold-dark);
  font-size: 13px;
}

.entry-card p {
  color: var(--muted);
}

.entry-card.featured {
  background: var(--ink);
  color: #fff;
}

.entry-card.featured p {
  color: rgba(255,255,255,0.7);
}

.entry-card.featured strong {
  color: #f3d8aa;
}

.brand-strip {
  padding-top: 18px;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.brand-logo-card {
  display: grid;
  min-height: 142px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px 12px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 26px rgba(38, 30, 23, 0.05);
  transition: transform 160ms ease, border-color 160ms ease;
}

.brand-logo-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.brand-logo-card.display-only {
  cursor: default;
}

.brand-logo-card.display-only:hover {
  transform: none;
  border-color: var(--line);
}

.brand-logo-card img {
  max-width: 132px;
  max-height: 54px;
  object-fit: contain;
}

.brand-logo-card .hercules-brand-mark {
  max-height: 66px;
}

.backun-brand-mark {
  filter: brightness(0);
}

.eastman-brand-mark {
  object-fit: contain;
}

.brand-logo-card .eastman-brand-mark {
  width: auto;
  max-width: 72px;
  max-height: 66px;
}

.brand-detail-logo .eastman-brand-mark {
  width: auto;
  max-width: 160px;
  max-height: 190px;
}

.brand-detail-logo .hercules-brand-mark {
  max-height: 190px;
}

.brand-logo-card.wordmark strong {
  color: var(--ink);
  font-size: 18px;
  letter-spacing: 0.04em;
}

.brand-logo-card small {
  color: var(--muted);
  font-size: 12px;
}

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

.category-panel {
  min-height: 240px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(246,240,230,0.95), rgba(255,255,255,0.98));
}

.category-panel span,
.badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--warm);
  color: var(--gold-dark);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

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

.custom-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  padding: 28px;
}

.check-list {
  margin: 18px 0;
  padding-left: 20px;
  color: var(--muted);
}

.text-link {
  color: var(--gold-dark);
  font-weight: 800;
}

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

.product-card {
  overflow: hidden;
}

.product-image {
  height: 170px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(184,148,93,0.12), transparent 55%),
    var(--soft);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.product-card:nth-child(2) .product-image img {
  object-fit: cover;
  padding: 0;
}

.accessory-placeholder {
  color: var(--gold-dark);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.product-body {
  padding: 18px;
}

.product-body p {
  color: var(--muted);
  font-size: 14px;
}

.brand-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: center;
  min-height: 520px;
}

.brand-detail-logo {
  display: grid;
  min-height: 300px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(184,148,93,0.16), transparent 52%),
    #fff;
  box-shadow: var(--shadow);
}

.brand-detail-logo img {
  max-width: 72%;
  max-height: 150px;
  object-fit: contain;
}

.brand-detail-logo.banner-card {
  min-height: 320px;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.brand-detail-logo.banner-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.brand-detail-logo.light-banner img {
  object-fit: contain;
  padding: 18px;
  background: #f7f5f0;
}

.brand-detail-logo.banner-card.light-banner {
  min-height: 0;
  aspect-ratio: 4 / 1;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-detail-logo.banner-card.light-banner img {
  padding: 0;
  border-radius: 8px;
  background: transparent;
  object-fit: contain;
}

.brand-detail-logo.banner-card.light-banner.full-image-banner {
  aspect-ratio: 16 / 9;
}

@media (min-width: 981px) {
  .mb-brand-hero.compact-visual {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  }

  .mb-brand-hero.compact-visual .mb-showroom-hero {
    width: min(100%, 580px);
    justify-self: end;
  }
}

/* Keep the MB detail-customization page compact and visually balanced. */
.mb-reference-page.mb-diy-page .section.compact {
  padding-block: 18px;
}

.mb-reference-page.mb-diy-page .section-heading {
  max-width: 920px;
}

.mb-reference-page.mb-diy-page .option-image-grid:not(.interior-color-grid) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mb-reference-page.mb-diy-page .option-image-grid:not(.interior-color-grid) article {
  display: grid;
  grid-template-columns: minmax(170px, 0.9fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 16px;
  align-items: center;
}

.mb-reference-page.mb-diy-page .option-image-grid:not(.interior-color-grid) img {
  grid-row: 1 / 3;
  height: 180px;
}

.mb-reference-page.mb-diy-page .option-image-grid:not(.interior-color-grid) strong {
  align-self: end;
  margin-top: 0;
}

.mb-reference-page.mb-diy-page .option-image-grid:not(.interior-color-grid) p {
  align-self: start;
  margin: 6px 0 0;
}

.mb-reference-page.mb-diy-page .interior-color-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mb-reference-page.mb-diy-page .option-split,
.mb-reference-page.mb-diy-page .option-split.reverse {
  grid-template-columns: minmax(280px, 380px) minmax(0, 620px);
  justify-content: center;
  gap: 20px;
}

.mb-reference-page.mb-diy-page .option-split.reverse {
  grid-template-columns: minmax(0, 620px) minmax(280px, 380px);
}

@media (max-width: 640px) {
  .mb-reference-page.mb-diy-page .option-image-grid:not(.interior-color-grid),
  .mb-reference-page.mb-diy-page .interior-color-grid,
  .mb-reference-page.mb-diy-page .option-split,
  .mb-reference-page.mb-diy-page .option-split.reverse {
    grid-template-columns: 1fr;
  }

  .mb-reference-page.mb-diy-page .option-image-grid:not(.interior-color-grid) article {
    display: block;
  }

  .mb-reference-page.mb-diy-page .option-image-grid:not(.interior-color-grid) img {
    height: 170px;
  }

  .mb-reference-page.mb-diy-page .option-image-grid:not(.interior-color-grid) strong {
    margin-top: 10px;
  }
}

.brand-detail-logo.alpha-banner {
  position: relative;
}

.brand-detail-logo.alpha-banner .alpha-banner-image {
  object-position: center;
}

.alpha-custom-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.55fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.alpha-custom-hero .alpha-story-lead {
  width: min(100%, 520px);
  justify-self: end;
}

.alpha-custom-hero .alpha-story-hero {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.alpha-custom-hero .alpha-story-lead-copy {
  padding: clamp(20px, 2.1vw, 28px);
}

.alpha-hero-price-panel {
  display: grid;
  gap: 13px;
  max-width: 760px;
  border: 1px solid rgba(124, 88, 45, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(247, 240, 229, 0.48)),
    radial-gradient(circle at 0% 0%, rgba(197, 160, 103, 0.14), transparent 48%);
  padding: clamp(17px, 1.9vw, 24px);
  box-shadow: 0 14px 34px rgba(48, 38, 26, 0.06);
}

.alpha-price-head {
  display: block;
}

.alpha-price-title {
  margin: 0;
  color: var(--gold-dark);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.35;
  text-wrap: balance;
}

.alpha-region-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.alpha-region-price {
  display: grid;
  justify-items: end;
  gap: 5px;
  border: 1px solid rgba(124, 88, 45, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
  padding: 12px 14px;
}

.alpha-price-free-note strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.035em;
}

.alpha-region-price strong {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.05;
  text-align: right;
}

html[data-region="mainland"] .alpha-hero-price-panel .is-hkd-region,
html[data-region="hongkong"] .alpha-hero-price-panel .is-mainland,
html[data-region="macao"] .alpha-hero-price-panel .is-mainland,
html[data-region="taiwan"] .alpha-hero-price-panel .is-mainland,
html[data-region="international"] .alpha-hero-price-panel .is-mainland {
  display: none;
}

html[data-region="mainland"] .alpha-hero-price-panel .alpha-region-prices,
html[data-region="hongkong"] .alpha-hero-price-panel .alpha-region-prices,
html[data-region="macao"] .alpha-hero-price-panel .alpha-region-prices,
html[data-region="taiwan"] .alpha-hero-price-panel .alpha-region-prices,
html[data-region="international"] .alpha-hero-price-panel .alpha-region-prices {
  grid-template-columns: 1fr;
}

.alpha-price-free-note {
  margin: 0;
  border-radius: 14px;
  background: rgba(124, 88, 45, 0.08);
  padding: 11px 13px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.alpha-price-free-note strong {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.alpha-hero-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 760px);
  margin-top: clamp(24px, 3vw, 38px);
  padding-top: clamp(16px, 1.8vw, 22px);
  border-top: 1px solid rgba(124, 88, 45, 0.13);
}

.alpha-hero-specs span {
  position: relative;
  display: flex;
  min-height: 74px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 18px 16px 14px;
  border: 1px solid rgba(124, 88, 45, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(247, 240, 229, 0.36)),
    radial-gradient(circle at 0% 0%, rgba(197, 160, 103, 0.12), transparent 42%);
  box-shadow: 0 12px 26px rgba(48, 38, 26, 0.045);
  overflow: hidden;
}

.alpha-hero-specs span::before {
  content: "";
  position: absolute;
  inset: 12px auto auto 16px;
  width: 22px;
  height: 1px;
  border-radius: 999px;
  background: rgba(124, 88, 45, 0.28);
}

.alpha-hero-specs span:nth-child(3),
.alpha-hero-specs span:nth-child(5) {
  grid-column: span 2;
}

.alpha-hero-specs span:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(31, 25, 22, 0.9), rgba(69, 53, 39, 0.84)),
    radial-gradient(circle at 85% 20%, rgba(210, 173, 109, 0.2), transparent 42%);
}

.alpha-hero-specs span:nth-child(3) strong,
.alpha-hero-specs span:nth-child(3) b {
  color: #fff;
}

.alpha-hero-specs span:nth-child(5) {
  background:
    linear-gradient(135deg, rgba(253, 250, 245, 0.86), rgba(240, 226, 205, 0.52)),
    radial-gradient(circle at 90% 0%, rgba(197, 160, 103, 0.18), transparent 48%);
}

.alpha-hero-specs strong {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 760;
}

.alpha-hero-specs b {
  color: var(--muted);
  max-width: 18em;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 560;
  letter-spacing: 0.035em;
}

.brand-detail-logo.dark-card {
  background:
    radial-gradient(circle at 50% 42%, rgba(184,148,93,0.18), transparent 52%),
    linear-gradient(135deg, #2b2421, #151210);
}

.brand-detail-logo strong {
  font-size: clamp(32px, 5vw, 58px);
  letter-spacing: 0.04em;
}

.option-grid {
  display: grid;
  gap: 12px;
}

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

.option-grid article,
.option-image-grid article,
.note-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(38, 30, 23, 0.045);
}

.option-grid p,
.option-image-grid p,
.note-card p {
  color: var(--muted);
}

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

.option-image-grid img,
.option-visual img {
  width: 100%;
  border-radius: 8px;
  background: var(--soft);
  object-fit: contain;
}

.option-image-grid img {
  height: 170px;
  padding: 7px;
}

.option-image-grid strong {
  display: block;
  margin-top: 8px;
}

.option-split {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.option-split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
}

.option-split > article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(38, 30, 23, 0.045);
}

.option-visual {
  display: grid;
  place-items: center;
}

.option-visual img {
  max-height: 280px;
  padding: 8px;
}

.color-card-pair {
  display: grid;
  gap: 12px;
}

.color-card-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(38, 30, 23, 0.045);
}

.color-card-panel img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--soft);
}

.color-card-panel h3 {
  margin: 0 0 6px;
}

.color-list {
  columns: 2;
  column-gap: 28px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--ink);
}

.color-list li {
  break-inside: avoid;
  margin-bottom: 4px;
  font-size: 14px;
}

.compact-images img {
  height: 150px;
}

.note-card {
  display: grid;
  gap: 8px;
  align-items: start;
  background:
    radial-gradient(circle at 94% 0%, rgba(184,148,93,0.16), transparent 34%),
    #fff;
}

.note-card .primary-button {
  width: fit-content;
}

.brand-scope-grid,
.subpage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.brand-scope-grid article,
.subpage-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 8px 26px rgba(38, 30, 23, 0.05);
}

.subpage-card p {
  color: var(--muted);
}

.subpage-card strong {
  display: block;
  margin-bottom: 8px;
}

.clickable-grid .subpage-card {
  transition: transform 160ms ease, border-color 160ms ease;
}

.clickable-grid .subpage-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.process-grid,
.gallery-grid,
.model-grid,
.detail-grid,
.mini-card-grid {
  display: grid;
  gap: 14px;
}

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

.mb-process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.mb-process-column {
  display: grid;
  gap: 14px;
}

.process-grid article,
.gallery-grid article,
.model-card,
.detail-grid article,
.mini-card-grid article,
.ral-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 8px 26px rgba(38, 30, 23, 0.05);
}

.mb-process-grid article {
  display: flex;
  flex-direction: column;
}

.mb-process-grid .process-wide {
  border-color: rgba(123, 91, 46, 0.22);
  background: linear-gradient(180deg, #fff 0%, #fbf7ef 100%);
}

.mb-process-grid .process-wide .process-cta {
  margin-top: auto;
}

.process-grid article > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.process-grid p,
.gallery-grid p,
.model-card p,
.detail-grid p,
.mini-card-grid p,
.ral-card p {
  color: var(--muted);
}

.process-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 40px;
  margin-top: 12px;
  border: 1px solid rgba(123, 91, 46, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, #241f1d, #151210);
  color: #fff;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(38, 30, 23, 0.13);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.process-cta::after {
  content: "→";
  color: #f3d8aa;
  font-weight: 900;
}

.process-cta:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 14px 28px rgba(38, 30, 23, 0.18);
}

.process-cta.subtle {
  border-color: rgba(123, 91, 46, 0.28);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.process-cta.subtle::after {
  color: var(--brown);
}

.mb-swatch-strip,
.mb-detail-strip {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

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

.mb-detail-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mb-detail-strip.image-only {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.mb-swatch-strip figure,
.mb-detail-strip figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.mb-swatch-strip img,
.mb-detail-strip img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: contain;
  background: var(--soft);
}

.mb-detail-strip img {
  height: 118px;
  padding: 6px;
}

.mb-detail-strip.image-only img {
  height: 82px;
  padding: 4px;
  object-fit: cover;
}

.mb-detail-strip.image-only figcaption {
  display: none;
}

.mb-swatch-strip figcaption,
.mb-detail-strip figcaption {
  padding: 8px 10px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.mb-diy-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 2px;
}

.mb-diy-chip-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-height: 30px;
  margin: 0;
  border: 1px solid rgba(123, 91, 46, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brown);
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.process-grid .mb-diy-chip-grid span {
  width: auto;
  height: auto;
  min-height: 30px;
  margin: 0;
  padding: 7px 11px;
  border-radius: 999px;
}

.patch-color-chips {
  margin: 8px 0 14px;
}

.patch-color-chips span {
  min-width: 64px;
}

.patch-color-chips span:first-child {
  background: #1d1918;
  border-color: #1d1918;
  color: #fff;
}

.patch-color-chips span:last-child {
  background: #6f4a32;
  border-color: #6f4a32;
  color: #fff;
}

.material-example-grid img {
  display: block;
  width: 100%;
  height: 180px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: var(--soft);
  object-fit: cover;
  object-position: center;
}

.mb-reference-page .section.compact {
  padding: 24px 0;
}

.mb-reference-page .option-hero {
  min-height: 420px;
}

.mb-reference-page .section-heading {
  margin-bottom: 16px;
}

.mb-reference-page .option-grid article,
.mb-reference-page .option-image-grid article,
.mb-reference-page .option-split > article,
.mb-reference-page .color-card-panel,
.mb-reference-page .note-card {
  padding: 14px;
}

.mb-reference-page .option-image-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 260px));
  justify-content: start;
  align-items: start;
  gap: 10px;
}

.mb-reference-page .option-image-grid img {
  height: 132px;
  padding: 4px;
}

.mb-reference-page .interior-color-grid {
  grid-template-columns: repeat(3, minmax(190px, 230px));
}

.mb-reference-page .interior-color-grid article {
  padding: 12px;
}

.mb-reference-page .interior-color-grid img {
  height: 132px;
  background: #f8f5ef;
}

.mb-reference-page .option-split {
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.mb-reference-page .option-split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
}

.mb-reference-page .option-visual img {
  max-height: 240px;
}

.mb-reference-page .color-card-panel {
  grid-template-columns: minmax(200px, 0.65fr) minmax(0, 1fr);
}

.mb-reference-page .color-card-panel img {
  max-height: 310px;
}

.detail-patch-split .option-visual img {
  max-height: 220px;
  object-fit: contain;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-row a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--gold-dark);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 800;
}

.model-section {
  margin-top: 30px;
}

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

.model-card {
  display: grid;
  gap: 12px;
  min-height: 270px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.model-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.model-card img {
  width: 100%;
  height: 132px;
  object-fit: contain;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(184,148,93,0.12), transparent 55%),
    var(--soft);
  padding: 10px;
}

.model-card strong {
  font-size: 16px;
  line-height: 1.32;
  letter-spacing: 0;
}

.model-card p {
  margin-bottom: 0;
  line-height: 1.55;
}

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

.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}

.gallery-section {
  padding-top: 18px;
}

.alpha-gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 240px);
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.alpha-gallery-item {
  margin: 0;
  height: 170px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  scroll-snap-align: start;
  box-shadow: 0 5px 16px rgba(38, 30, 23, 0.04);
  padding: 0;
  cursor: zoom-in;
}

.alpha-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.alpha-gallery-item:hover img {
  transform: scale(1.035);
}

.alpha-colour-gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 2px 2px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.alpha-gallery-figure {
  margin: 0;
}

.alpha-colour-card {
  flex: 0 0 clamp(240px, 26vw, 330px);
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(133, 94, 47, 0.18);
  border-radius: 12px;
  overflow: hidden;
  background: #f5f1e9;
  box-shadow: 0 10px 24px rgba(38, 30, 23, 0.08);
  scroll-snap-align: start;
}

.alpha-colour-trigger {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.alpha-colour-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.alpha-colour-card figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 17, 15, 0.68);
  color: #fff7e6;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.alpha-colour-gallery-note {
  max-width: 820px;
  margin: 14px 0 0;
  font-size: 0.95rem;
}

.alpha-colour-gallery-note span {
  display: block;
  margin-top: 4px;
  color: rgba(91, 83, 76, 0.78);
}

.alpha-guide-grid .subpage-card {
  min-height: 178px;
}

.step-badge {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.alpha-guide-grid .action-card {
  background:
    radial-gradient(circle at 94% 0%, rgba(184,148,93,0.16), transparent 34%),
    #fff;
}

.alpha-guide-grid .alpha-guide-action-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-color: rgba(184, 148, 93, 0.72);
  background:
    linear-gradient(135deg, rgba(20,17,15,0.68), rgba(20,17,15,0.28)),
    url("assets/alpha-custom-step4-background.jpg") center 42% / cover no-repeat;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.92), 0 6px 18px rgba(0,0,0,0.58);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.alpha-guide-grid .alpha-guide-action-image strong,
.alpha-guide-grid .alpha-guide-action-image p {
  color: #fff;
}

.alpha-guide-grid .alpha-guide-action-image:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(38, 30, 23, 0.16);
  transform: translateY(-2px);
}

.alpha-guide-grid .alpha-guide-action-image p {
  max-width: 30em;
  margin: 0 0 16px;
  line-height: 1.58;
}

.alpha-guide-grid .alpha-guide-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(20, 17, 15, 0.38);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-shadow: none;
  backdrop-filter: blur(8px);
  transition: background 160ms ease, border-color 160ms ease;
}

.alpha-guide-grid .alpha-guide-cta-link::after {
  content: "→";
  font-size: 20px;
  font-weight: 500;
}

.alpha-guide-grid .alpha-guide-action-image:hover .alpha-guide-cta-link {
  border-color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.14);
}

.alpha-intro-section {
  padding-top: 10px;
}

.alpha-story-deck {
  text-wrap: pretty;
}

/* Alpha brand story: one expressive lead and one continuous product narrative. */
.alpha-story-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.alpha-story-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(38, 30, 23, 0.05);
}

.alpha-story-lead {
  background: #181411;
  color: #fff;
}

.alpha-story-lead-figure,
.alpha-story-figure {
  margin: 0;
}

.alpha-story-hero {
  aspect-ratio: 4 / 5;
  border-radius: 0;
  background: #0f0d0c;
}

.alpha-story-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.alpha-story-lead-figure > figcaption {
  display: none;
}

.alpha-story-lead-copy {
  padding: 22px 22px 24px;
}

.alpha-story-kicker {
  margin: 0 0 9px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.alpha-story-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.alpha-story-credentials span {
  border: 1px solid rgba(184,148,93,0.42);
  border-radius: 999px;
  background: rgba(184,148,93,0.08);
  padding: 6px 10px;
  color: #765529;
  letter-spacing: 0.06em;
}

.alpha-story-credentials-text {
  display: block;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}

.alpha-story-lead .alpha-story-kicker {
  color: #e6c893;
}

.alpha-story-title {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.16;
  text-wrap: balance;
}

.alpha-story-lead .alpha-story-title {
  color: #fff;
}

.alpha-story-lead-copy > p:not(.alpha-story-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.alpha-story-lead-copy small {
  display: block;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 13px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.alpha-story-detail {
  padding: 22px;
}

.alpha-story-header {
  max-width: 760px;
}

.alpha-story-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 16px 0 18px;
}

.alpha-story-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.alpha-story-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.alpha-story-highlights span {
  min-width: 0;
  padding: 13px 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.alpha-story-highlights span + span {
  border-left: 1px solid var(--line);
}

.alpha-story-highlights strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 15px;
}

.alpha-story-highlights b {
  display: block;
}

.alpha-story-highlights b {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
}


.alpha-story-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}

.alpha-story-specs li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.alpha-story-specs li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.alpha-story-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 8px;
}

.alpha-story-figure {
  display: grid;
  grid-template-rows: 150px auto;
  grid-column: span 4;
  overflow: hidden;
  border-radius: 6px;
  background: var(--soft);
}

.alpha-story-figure.interior-composite-figure {
  grid-template-rows: 220px auto;
  grid-column: span 8;
}

.alpha-story-figure > img,
.alpha-story-figure .alpha-zoom-trigger,
.alpha-story-figure .alpha-zoom-trigger img {
  width: 100%;
  height: 100%;
}

.alpha-story-figure > img,
.alpha-story-figure .alpha-zoom-trigger img {
  display: block;
  object-fit: cover;
}

.alpha-story-figure.colour-figure .alpha-zoom-trigger img,
.alpha-story-figure.model-figure .alpha-zoom-trigger img {
  object-fit: contain;
  background: #f6f4ef;
}

.alpha-story-figure.interior-composite-figure .alpha-zoom-trigger img {
  object-position: center 48%;
}

.alpha-story-figure figcaption {
  min-height: 34px;
  padding: 8px 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.alpha-story-interior-note {
  display: flex;
  grid-column: span 4;
  min-height: 254px;
  flex-direction: column;
  justify-content: center;
  border-radius: 6px;
  background: #1a1614;
  padding: 20px;
  color: #fff;
}

.alpha-story-interior-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
  text-wrap: balance;
}

.alpha-story-interior-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.alpha-story-interior-note small {
  margin-top: 16px;
  color: #e6c893;
  font-size: 11px;
}

@media (max-width: 980px) {
  .alpha-story-layout {
    grid-template-columns: 1fr;
  }

  .alpha-story-copy,
  .alpha-story-specs {
    grid-template-columns: 1fr;
  }

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

  .alpha-story-highlights span:nth-child(3) {
    border-left: 0;
  }

  .alpha-story-highlights span:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .alpha-story-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .alpha-story-figure {
    grid-column: span 2;
  }

  .alpha-story-figure.interior-composite-figure {
    grid-column: span 4;
  }

  .alpha-story-interior-note {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .alpha-story-layout {
    grid-template-columns: 1fr;
  }

  .alpha-story-lead {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .alpha-story-hero {
    height: 100%;
    min-height: 310px;
    aspect-ratio: auto;
  }
}

@media (max-width: 520px) {
  .alpha-story-lead {
    grid-template-columns: 1fr;
  }

  .alpha-story-hero {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .alpha-story-lead-copy,
  .alpha-story-detail {
    padding: 17px;
  }

  .alpha-story-highlights {
    grid-template-columns: 1fr;
  }

  .alpha-story-highlights span + span,
  .alpha-story-highlights span:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .alpha-story-figure {
    grid-template-rows: 118px auto;
  }

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

  .alpha-story-figure {
    grid-column: span 1;
  }

  .alpha-story-figure.model-figure,
  .alpha-story-figure.interior-composite-figure,
  .alpha-story-interior-note {
    grid-column: 1 / -1;
  }

  .alpha-story-figure.interior-composite-figure {
    grid-template-rows: 170px auto;
  }

  .alpha-story-interior-note {
    min-height: 0;
    padding: 17px;
  }
}

.alpha-intro-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.7fr);
  gap: 12px;
  align-items: start;
}

.alpha-intro-details {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 12px;
  align-items: start;
}

.alpha-detail-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.alpha-intro-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 8px 26px rgba(38, 30, 23, 0.04);
}

.alpha-intro-card.lead {
  display: grid;
  grid-template-rows: minmax(250px, 1fr) auto;
  gap: 14px;
  padding: 12px;
  background: #15110f;
  color: #fff;
}

.alpha-intro-card[data-alpha-detail] {
  grid-area: auto;
}

.alpha-feature-image {
  overflow: hidden;
  border-radius: 7px;
  background: #0f0d0c;
}

.alpha-zoom-trigger {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 7px;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: zoom-in;
}

.alpha-zoom-trigger img {
  transition: transform 180ms ease;
}

.alpha-zoom-trigger:hover img {
  transform: scale(1.025);
}

.alpha-feature-image img,
.alpha-intro-card.visual-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.alpha-feature-copy {
  padding: 4px 6px 8px;
}

.alpha-feature-copy strong,
.alpha-intro-card.lead .text-highlight {
  color: #fff;
}

.feature-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(184, 148, 93, 0.14);
  color: var(--gold);
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.alpha-intro-card.lead .feature-kicker {
  background: rgba(255,255,255,0.12);
  color: #e6c893;
}

.alpha-intro-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: 0;
}

.alpha-intro-card .alpha-detail-title {
  font-size: clamp(13px, 1.2vw, 17px);
  white-space: nowrap;
  margin-bottom: 12px;
  border: 1px solid rgba(184, 148, 93, 0.34);
  border-radius: 6px;
  background: rgba(184, 148, 93, 0.07);
  padding: 9px 11px;
  color: var(--ink);
}

html[lang="en"] .alpha-intro-card .alpha-detail-title {
  white-space: normal;
}

.alpha-intro-card.lead .alpha-detail-title {
  border-color: rgba(230, 200, 147, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.alpha-intro-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.alpha-intro-card.lead p {
  color: rgba(255,255,255,0.76);
}

.text-highlight {
  color: var(--gold);
  font-weight: 900;
}

.visual-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.visual-card img,
.maker-card img {
  min-height: 150px;
  border-radius: 7px;
}

.maker-card {
  display: grid;
  grid-template-rows: 150px auto;
  gap: 12px;
}

.maker-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 88% 8%, rgba(184,148,93,0.2), transparent 36%),
    #fff;
}

.feature-number {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.keyword-card p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.keyword-card p span,
.model-tags span {
  display: inline-flex;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 900;
}

.keyword-card small {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.model-tags span {
  background: rgba(184,148,93,0.12);
  color: #7b5b29;
}

.colour-card {
  display: grid;
  grid-template-rows: 168px auto;
  gap: 12px;
}

.alpha-colour-showcase {
  display: block;
  width: 100%;
  height: 168px;
  border-radius: 7px;
  object-fit: cover;
}

.alpha-colour-zoom {
  height: 168px;
}

.alpha-colour-zoom .alpha-colour-showcase {
  height: 100%;
}

.alpha-feature-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.alpha-feature-list li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.alpha-feature-list b {
  color: var(--ink);
}

.alpha-model-summary {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.alpha-model-comparison {
  display: block;
  width: 100%;
  height: 172px;
  margin-bottom: 12px;
  border-radius: 7px;
  object-fit: cover;
}

.alpha-model-zoom {
  height: 172px;
  margin-bottom: 12px;
}

.alpha-model-zoom .alpha-model-comparison {
  height: 100%;
  margin-bottom: 0;
}

.alpha-model-summary p {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.alpha-model-summary p strong {
  margin: 0;
  color: var(--gold-dark);
  font-size: 13px;
}

.alpha-model-summary span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.interior-card {
  display: grid;
  grid-template-rows: auto auto;
  gap: 12px;
  align-items: stretch;
}

.alpha-interior-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 6px;
  height: 250px;
}

.alpha-interior-details {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.alpha-interior-main-trigger,
.alpha-interior-details .alpha-zoom-trigger {
  height: 100%;
}

.alpha-interior-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  object-fit: cover;
}

.alpha-interior-main-trigger img {
  object-fit: contain;
  background: #f4f1ec;
}

.alpha-guide-stack {
  display: grid;
  gap: 10px;
}

.alpha-guide-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 5px 16px rgba(38, 30, 23, 0.04);
}

.alpha-guide-item > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.alpha-guide-item h3 {
  margin-bottom: 6px;
}

.alpha-guide-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.alpha-guide-item .hero-actions {
  margin-top: 14px;
}

.alpha-guide-item.action-item {
  background:
    radial-gradient(circle at 94% 0%, rgba(184,148,93,0.16), transparent 34%),
    #fff;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.gallery-thumb {
  position: relative;
  display: block;
  width: 100%;
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(184,148,93,0.12), transparent 52%),
    #fff;
  box-shadow: 0 8px 26px rgba(38, 30, 23, 0.05);
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: contain;
  padding: 10px;
}

.gallery-thumb span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(29, 25, 24, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(15, 12, 10, 0.88);
}

.image-lightbox.active {
  display: grid;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox figure {
  margin: 0;
  width: min(980px, 100%);
  display: grid;
  gap: 12px;
  justify-items: center;
}

.image-lightbox img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,0.36);
}

.image-lightbox figcaption {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(12px);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  padding: 0;
  font-size: 28px;
}

.lightbox-nav {
  top: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
  font-size: 36px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.price-table {
  margin: 12px 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.price-table dl {
  margin: 0;
}

.price-block + .price-block {
  border-top: 1px solid var(--line);
}

.configuration-price-grid + .price-block {
  border-top: 1px solid var(--line);
}

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

.configuration-price-grid .price-block + .price-block {
  border-top: 0;
  border-left: 1px solid var(--line);
}

.configuration-price-block.is-selected h4 {
  box-shadow: inset 4px 0 0 var(--accent);
}

.configuration-price-select {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.price-block h4 {
  margin: 0;
  padding: 12px 14px;
  background: var(--soft);
  font-size: 14px;
}

.price-table div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.price-table div:last-child {
  border-bottom: 0;
}

.price-table dt,
.price-table dd {
  margin: 0;
}

.price-table dt {
  color: var(--muted);
}

.price-table dd {
  font-weight: 900;
}

.product-info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
}

.product-info-card,
.order-builder {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(38, 30, 23, 0.05);
}

.rich-detail p {
  margin: 0 0 12px;
}

.detail-group {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 12px;
}

.detail-group strong {
  display: block;
  margin-bottom: 8px;
}

.detail-group ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.detail-variants {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.detail-variant {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
}

.detail-variant h4 {
  margin: 0 0 0.75rem;
}

.detail-group li + li {
  margin-top: 6px;
}

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

.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--soft);
}

.form-panel h4 {
  margin: 0 0 12px;
}

.form-panel-heading {
  display: flex;
  gap: 10px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.form-panel-heading h4 {
  margin: 0;
}

.form-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.form-links a {
  border: 1px solid rgba(184, 148, 93, 0.38);
  border-radius: 999px;
  background: #fff;
  color: var(--gold-dark);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.form-panel label {
  display: grid;
  gap: 6px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.order-color-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.order-color-cards a {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.order-color-cards img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  padding: 6px;
  background: #fff;
}

.order-color-cards span {
  padding: 0 8px 7px;
}

.choice-fieldset {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
}

.choice-fieldset legend {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.choice-fieldset label {
  margin-bottom: 0;
}

.choice-fieldset input[type="text"] {
  margin-top: 2px;
}

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

.two-col-choice legend {
  grid-column: 1 / -1;
}

.compact-choice {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-choice legend {
  grid-column: 1 / -1;
}

.form-panel label:has(input[type="radio"]),
.form-panel label:has(input[type="checkbox"]) {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.form-panel input[type="radio"],
.form-panel input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-dark);
  flex: 0 0 auto;
}

.form-panel label:has(input[type="radio"]:checked),
.form-panel label:has(input[type="checkbox"]:checked) {
  border-color: rgba(184, 148, 93, 0.72);
  background: #fffaf0;
  box-shadow: 0 0 0 3px rgba(184, 148, 93, 0.12);
}

.form-panel .choice-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.choice-row strong {
  color: var(--gold-dark);
  font-size: 13px;
  white-space: nowrap;
}

.form-panel .custom-option {
  display: grid;
  grid-template-columns: auto max-content;
  align-items: center;
  justify-content: start;
}

.custom-option span {
  white-space: nowrap;
}

.custom-option input[type="text"] {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.custom-option input[type="text"]:disabled,
.addon-note:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.form-panel .addon-option {
  display: grid;
  grid-template-columns: auto minmax(2.75em, 1fr) auto;
  align-items: center;
  column-gap: 12px;
}

.addon-option > span {
  min-width: 2.75em;
  line-height: 1.35;
  word-break: keep-all;
}

.carbon-option-copy {
  display: grid;
  gap: 0.35rem;
  flex: 1;
}

.carbon-option-copy small {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.55;
}

.custom-flow-intro {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.material-pricing-copy {
  display: grid;
  gap: 0.45rem;
}

.upgrade-summary {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.upgrade-summary section {
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}

.upgrade-summary h4 {
  margin: 0 0 0.3rem;
  color: var(--ink);
}

.upgrade-summary p { margin: 0; }

.order-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.order-title-row h3 { margin: 0; }

.field-note {
  display: block;
  margin-top: 0.45rem;
  color: var(--gold-dark);
  line-height: 1.5;
}

.addon-option strong {
  justify-self: end;
  color: var(--gold-dark);
  font-size: 12px;
  white-space: nowrap;
}

.addon-option .addon-note {
  grid-column: 2 / -1;
  min-height: 70px;
  margin-top: 6px;
}

.form-panel input[type="text"],
.form-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}

.form-panel textarea {
  min-height: 92px;
  resize: vertical;
}

.total-panel {
  background: #211b18;
  color: #fff;
}

.total-panel dl {
  margin: 0 0 14px;
}

.total-panel dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.total-panel dt,
.total-panel dd {
  margin: 0;
}

.total-panel dd {
  font-weight: 900;
}

.total-panel .muted {
  color: rgba(255,255,255,0.72);
}

.customer-fields {
  display: grid;
  gap: 10px;
  margin: 14px 0 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.customer-fields label {
  color: rgba(255,255,255,0.78);
}

.customer-fields input,
.customer-fields select {
  border-color: rgba(255,255,255,0.28);
  background: #fff;
  color: var(--ink);
}

.customer-fields input::placeholder {
  color: color-mix(in srgb, var(--muted) 68%, transparent);
}

.customer-fields select option {
  color: var(--ink);
}

.consent-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 0;
  min-height: auto;
  border: 0;
  background: transparent;
  padding: 0;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.45;
}

.consent-line input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex: 0 0 auto;
}

.total-panel .hero-actions {
  display: grid;
  margin-top: 12px;
  gap: 10px;
}

.total-panel .primary-button {
  min-height: 52px;
  border: 1px solid rgba(230, 200, 147, 0.64);
  border-radius: 8px;
  background: #e6c893;
  color: #211b18;
  padding: 0 18px;
  text-align: center;
  line-height: 1.25;
  box-shadow: 0 10px 22px rgba(0,0,0,0.22);
}

.total-panel .secondary-button {
  border-color: rgba(255,255,255,0.24);
  background: transparent;
  color: #fff;
  min-height: 42px;
  border-radius: 8px;
}

.stacked-actions {
  align-items: stretch;
}

.model-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 36px;
  align-items: center;
}

.detail-image {
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(184,148,93,0.18), transparent 52%),
    var(--soft);
  box-shadow: var(--shadow);
}

.detail-image img {
  max-width: 82%;
  max-height: 260px;
  object-fit: contain;
}

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

.option-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.anchor-section {
  scroll-margin-top: 90px;
}

.measurement-diagram,
.ral-card {
  min-height: 330px;
}

.measurement-diagram {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(231,222,210,0.36) 1px, transparent 1px),
    linear-gradient(rgba(231,222,210,0.36) 1px, transparent 1px),
    #fff;
  background-size: 42px 42px;
  overflow: hidden;
}

.diagram-line {
  position: absolute;
  border: 3px solid rgba(116,108,102,0.42);
  border-radius: 999px;
}

.diagram-line.long {
  left: 11%;
  right: 10%;
  top: 42%;
  height: 3px;
  border-width: 2px 0 0;
}

.diagram-line.body {
  right: 13%;
  top: 24%;
  width: 38%;
  height: 40%;
}

.diagram-line.neck {
  left: 20%;
  top: 38%;
  width: 39%;
  height: 8%;
}

.measurement-diagram span {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 15px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.mini-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.mini-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.swatches i,
.swatch-row i {
  display: block;
  border: 1px solid rgba(29,25,24,0.14);
  border-radius: 8px;
}

.swatches i {
  aspect-ratio: 1 / 0.62;
}

.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.swatch-row i {
  width: 58px;
  height: 58px;
}

.alpha-inline-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
  margin: 8px 0 12px;
}

.alpha-custom-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.alpha-custom-kicker .eyebrow,
.alpha-custom-kicker .alpha-inline-logo {
  margin: 0;
}

.zoomable-image {
  display: grid;
  width: 100%;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  color: var(--gold-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  cursor: zoom-in;
  box-shadow: 0 8px 24px rgba(38, 30, 23, 0.05);
}

.zoomable-image img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  border-radius: 7px;
  background: #fff;
}

.measurement-card {
  min-height: 0;
}

#measurement .option-layout {
  grid-template-columns: minmax(220px, 0.62fr) minmax(420px, 1fr);
}

#measurement .measurement-card {
  align-self: start;
}

#measurement .measurement-card img {
  max-height: 240px;
  object-fit: contain;
}

#exterior .option-layout {
  grid-template-columns: minmax(240px, 0.7fr) minmax(420px, 1fr);
}

.ral-card .zoomable-image {
  margin-bottom: 12px;
  box-shadow: none;
}

.ral-card .zoomable-image img {
  max-height: 190px;
  object-fit: contain;
}

.text-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 900;
}

.option-stack {
  display: grid;
  gap: 12px;
}

.option-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(38, 30, 23, 0.05);
}

.option-card strong {
  display: block;
  margin-bottom: 6px;
}

.option-card p {
  margin: 0;
  color: var(--muted);
}

.handle-chart {
  margin-top: 12px;
  width: min(100%, 260px);
  justify-self: start;
}

.handle-chart img {
  max-height: 310px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.alpha-step-page .option-image-grid {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.alpha-step-page .interior-gallery {
  grid-template-columns: repeat(auto-fill, 150px);
  max-width: 490px;
  justify-content: start;
}

.alpha-step-page .option-image-grid figure,
.alpha-step-page .option-image-grid button {
  display: grid;
  width: 100%;
  gap: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(184,148,93,0.22);
  border-radius: 8px;
  background: #fff;
  padding: 0;
  color: var(--gold-dark);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  cursor: zoom-in;
  box-shadow: 0 8px 22px rgba(38,30,23,0.05);
}

.alpha-step-page .option-image-grid img {
  width: 100%;
  height: 104px;
  display: block;
  object-fit: cover;
}

.alpha-step-page .option-image-grid figcaption,
.alpha-step-page .option-image-grid span {
  padding: 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.alpha-model-grid,
.alpha-swatch-gallery {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.alpha-model-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.vision-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.alpha-model-grid button,
.alpha-swatch-gallery button {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(184,148,93,0.22);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: zoom-in;
  box-shadow: 0 6px 16px rgba(38,30,23,0.045);
}

.alpha-model-grid img,
.alpha-swatch-gallery img {
  width: 100%;
  height: 136px;
  border-radius: 6px;
  object-fit: cover;
  background: #f7f2ea;
}

.alpha-model-grid img {
  object-fit: contain;
  background: linear-gradient(180deg, #fffaf0, #f4ede3);
}

.alpha-model-grid strong {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 950;
}

.alpha-model-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.alpha-swatch-gallery span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.alpha-detail-gallery,
.alpha-addon-gallery {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

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

.interior-feature-card {
  margin-top: 14px;
}

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

.alpha-detail-gallery button,
.alpha-addon-gallery button {
  display: grid;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(184,148,93,0.22);
  border-radius: 8px;
  background: #fff;
  padding: 0;
  color: var(--gold-dark);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: zoom-in;
  box-shadow: 0 6px 16px rgba(38,30,23,0.045);
}

.alpha-detail-gallery img,
.alpha-addon-gallery img {
  width: 100%;
  height: 116px;
  display: block;
  object-fit: cover;
}

.interior-feature-gallery img {
  height: 138px;
}

.interior-feature-gallery .interior-feature-overview img {
  height: auto;
  aspect-ratio: 4 / 5;
  background: #242321;
  object-fit: contain;
  object-position: center;
}

.alpha-detail-gallery span {
  padding: 7px;
}

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

.alpha-addon-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  border-bottom: 1px solid rgba(184,148,93,0.3);
  padding: 0 2px 9px;
}

.alpha-addon-heading strong {
  color: var(--ink);
  font-size: 20px;
}

.alpha-addon-heading span {
  border-radius: 999px;
  background: #211b18;
  padding: 6px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.alpha-addon-gallery article {
  display: grid;
  gap: 7px;
  align-content: start;
  border: 1px solid rgba(184,148,93,0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #fffaf0);
  padding: 13px;
  box-shadow: 0 6px 16px rgba(38,30,23,0.045);
}

.alpha-addon-gallery article > strong {
  color: #211b18;
  font-size: 13px;
}

.alpha-addon-gallery article > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.placeholder-grid {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

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

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

.placeholder-grid div {
  display: grid;
  place-items: center;
  min-height: 66px;
  border: 1px dashed rgba(184,148,93,0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 30%, rgba(184,148,93,0.13), transparent 52%),
    #fffaf0;
  color: var(--gold-dark);
  padding: 10px;
  text-align: center;
}

.placeholder-grid span {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.form-fieldset {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.form-fieldset legend {
  padding: 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.alpha-choice-fieldset .choice-list.vertical > label,
.alpha-choice-fieldset .choice-list.vertical > input[type="text"] {
  max-width: 560px;
}

.measurement-input-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.measurement-input-grid label {
  gap: 5px;
  margin: 0;
  font-weight: 900;
}

.alpha-step-page {
  background:
    radial-gradient(circle at 16% 6%, rgba(184,148,93,0.16), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #f6f1e8 48%, #fffaf0 100%);
}

.alpha-step-page .site-header {
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(18px);
}

.alpha-step-page main > .section {
  width: min(1180px, calc(100% - 44px));
}

.alpha-step-page .alpha-step-hero {
  position: relative;
  margin-top: 26px;
  border: 1px solid rgba(184,148,93,0.22);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(255,255,255,0.96), rgba(255,250,240,0.76)),
    radial-gradient(circle at 88% 18%, rgba(184,148,93,0.2), transparent 38%);
  padding: 38px clamp(34px, 4.4vw, 58px);
  box-shadow: 0 18px 50px rgba(38,30,23,0.08);
  overflow: hidden;
}

.alpha-step-hero::after {
  content: "";
  position: absolute;
  right: -72px;
  top: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(184,148,93,0.26);
  border-radius: 50%;
}

.alpha-step-hero .section-heading {
  max-width: 880px;
  margin-bottom: 0;
}

.alpha-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.alpha-hero-kicker .eyebrow {
  margin: 0;
}

.alpha-step-hero h1 {
  max-width: 920px;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.12;
  overflow-wrap: normal;
}

.alpha-pricing-callout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  margin: 22px 0 0;
  border-left: 5px solid #b8945d;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(90deg, rgba(184,148,93,0.17), rgba(184,148,93,0.06));
  padding: 15px 18px;
  color: #554536;
}

.alpha-pricing-callout strong {
  color: #211b18;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.2;
}

.alpha-pricing-callout span {
  font-size: 17px;
  line-height: 1.55;
}

.alpha-step-block > .alpha-pricing-callout {
  margin: 0 0 22px;
}

.alpha-step-page .alpha-inline-logo {
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 6px 14px rgba(38,30,23,0.1);
}

.alpha-step-page .alpha-step-block {
  position: relative;
  border: 1px solid rgba(184,148,93,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.78);
  padding: 34px;
  box-shadow: 0 8px 24px rgba(38,30,23,0.045);
  overflow: hidden;
}

.alpha-step-block::before {
  content: attr(data-step);
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(184,148,93,0.16);
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.alpha-step-block .section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.alpha-step-block .section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 32px;
  margin: 0;
  border-radius: 999px;
  background: #211b18;
  color: #fff;
  text-align: center;
}

.alpha-step-block .section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.12;
}

.alpha-step-block .option-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(280px, 0.9fr) minmax(260px, 0.66fr);
  gap: 22px;
  align-items: start;
}

.alpha-step-page .zoomable-image,
.alpha-step-page .ral-card,
.alpha-step-page .option-card,
.alpha-step-page .mini-card-grid article,
.alpha-step-page .form-fieldset,
.alpha-step-page .request-form {
  border-color: rgba(184,148,93,0.22);
  box-shadow: 0 8px 20px rgba(38,30,23,0.045);
}

.alpha-step-page .zoomable-image {
  background:
    linear-gradient(180deg, #fff, #fffaf0);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.alpha-step-page .zoomable-image:hover {
  transform: translateY(-2px);
  border-color: rgba(184,148,93,0.56);
  box-shadow: 0 16px 34px rgba(38,30,23,0.1);
}

.alpha-step-page .zoomable-image span {
  display: inline-flex;
  justify-self: center;
  border-radius: 999px;
  background: rgba(184,148,93,0.12);
  padding: 5px 9px;
  font-size: 12px;
}

.alpha-step-page .mini-card-grid article {
  background:
    linear-gradient(180deg, #fff, #fffaf7);
}

.alpha-step-page .mini-card-grid article strong,
.alpha-step-page .option-card strong {
  color: #211b18;
}

.alpha-step-page .option-card {
  background:
    linear-gradient(135deg, #fff, #fffaf0);
}

.alpha-step-page .placeholder-grid div {
  min-height: 68px;
  border-style: solid;
  border-color: rgba(184,148,93,0.22);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,250,240,0.88)),
    radial-gradient(circle at 16% 16%, rgba(184,148,93,0.16), transparent 42%);
}

.alpha-step-page .placeholder-grid div::before {
  content: "";
  width: 24px;
  height: 2px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(184,148,93,0.72);
}

.alpha-step-page .alpha-form-block {
  background:
    linear-gradient(135deg, rgba(33,27,24,0.96), rgba(54,43,35,0.96));
  color: #fff;
}

.alpha-step-page .alpha-form-block::before {
  color: rgba(255,255,255,0.08);
}

.alpha-step-page .alpha-form-block .section-heading .eyebrow {
  background: rgba(255,255,255,0.12);
}

.alpha-step-page .alpha-form-block .section-heading {
  display: block;
  max-width: 900px;
  margin-bottom: 30px;
}

.alpha-step-page .alpha-form-block h2,
.alpha-step-page .alpha-form-block .section-heading p {
  color: #fff;
}

.alpha-step-page .alpha-form-block h2 {
  max-width: 880px;
  margin: 16px 0 14px;
  font-size: clamp(32px, 3.3vw, 46px);
  line-height: 1.24;
}

.alpha-step-page .alpha-form-block .muted {
  color: rgba(255,255,255,0.7);
}

.alpha-step-page .alpha-form-block .section-heading .muted {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
}

.alpha-step-page .alpha-form-block .request-form {
  width: min(980px, 100%);
  margin: 0 auto;
  gap: 10px 12px;
  padding: 30px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.alpha-step-page .alpha-form-block .request-form > * {
  min-width: 0;
  max-width: 100%;
}

.alpha-step-page .alpha-form-block .form-fieldset {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}

.alpha-step-page .alpha-form-block .form-fieldset legend,
.alpha-step-page .alpha-form-block .request-form label {
  color: rgba(255,255,255,0.78);
}

.alpha-choice-fieldset .choice-list {
  display: grid;
  gap: 7px;
}

.alpha-choice-fieldset .choice-list.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.alpha-choice-fieldset .choice-list.addon-choice-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.alpha-choice-fieldset .choice-list.vertical {
  grid-template-columns: 1fr;
}

.alpha-choice-fieldset label,
.alpha-form-block .alpha-choice-fieldset label {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  margin: 0;
  border: 1px solid rgba(184,148,93,0.24);
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
  padding: 10px 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

.alpha-step-page .alpha-form-block .alpha-choice-fieldset label,
.alpha-step-page .alpha-form-block .alpha-choice-fieldset label span {
  color: var(--ink);
}

.alpha-choice-fieldset .addon-choice-list label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: 8px;
  min-height: 46px;
}

.alpha-choice-fieldset .addon-choice-list label span {
  min-width: 0;
}

.alpha-choice-fieldset label:has(input:checked) {
  border-color: rgba(184,148,93,0.72);
  background: #fff8e8;
  box-shadow: inset 0 0 0 1px rgba(184,148,93,0.22);
}

.alpha-choice-fieldset input[type="radio"],
.alpha-choice-fieldset input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  accent-color: var(--gold-dark);
}

.alpha-choice-fieldset input[type="text"] {
  width: 100%;
  max-width: 520px;
  margin: 0;
  border-color: rgba(184,148,93,0.24);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 9px 11px;
  font-size: 13px;
}

.alpha-choice-fieldset legend small {
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.72;
}

.price-pill {
  margin-left: auto;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.addon-choice-list .price-pill {
  align-self: center;
  justify-self: end;
  margin-left: 0;
}

.alpha-step-page .alpha-form-block .form-note-field {
  grid-column: 1;
}

.alpha-step-page .alpha-form-block .form-submit-button {
  grid-column: 2;
  align-self: end;
  justify-self: start;
  max-width: 100%;
  white-space: normal;
}

.alpha-price-panel {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  padding: 16px;
  color: #fff;
}

.alpha-price-panel h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
}

.alpha-price-panel dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.alpha-price-panel dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  padding: 9px 0;
}

.alpha-price-panel dt {
  color: rgba(255,255,255,0.7);
  font-weight: 800;
}

.alpha-price-panel dd {
  margin: 0;
  color: #fff;
  font-weight: 950;
  text-align: right;
  white-space: nowrap;
}

.alpha-price-panel p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
}

.flow-section {
  width: 100%;
  max-width: none;
  padding: 82px clamp(18px, 4vw, 52px);
  background: var(--warm);
}

.flow-section .section-heading,
.flow-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

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

.flow-grid div {
  min-height: 185px;
  padding: 20px;
}

.flow-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.flow-grid strong {
  display: block;
  margin-bottom: 8px;
}

.flow-grid p {
  color: var(--muted);
  font-size: 14px;
}

.form-section {
  padding-bottom: 36px;
}

.request-form,
.lookup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.lookup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.lookup-form {
  grid-template-columns: 1fr;
}

.lookup-result {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.status-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 24px;
}

.status-card .muted {
  color: rgba(255,255,255,0.68);
}

.lookup-contact-card {
  display: grid;
  align-content: center;
  gap: 14px;
}

.lookup-contact-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.74);
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.status-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 18px;
  padding-left: 20px;
}

.status-list li {
  padding-left: 4px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  padding: 13px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.wide,
.request-form button,
.lookup-form button {
  grid-column: 1 / -1;
}

.request-form button,
.lookup-form button {
  justify-self: start;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-submit-status {
  min-height: 1.5em;
  margin: 0;
  font-weight: 700;
}

.form-submit-status.is-pending {
  color: var(--muted);
}

.form-submit-status.is-success {
  color: #156d40;
}

.form-submit-status.is-error {
  color: #b42318;
}

.form-submit-dialog {
  width: min(420px, calc(100vw - 36px));
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.form-submit-dialog::backdrop {
  background: rgba(29, 25, 24, 0.42);
}

.form-submit-dialog-panel {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-submit-dialog-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
}

.form-submit-dialog-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.form-submit-dialog-panel button {
  justify-self: end;
}

.request-form [data-submit-button]:disabled {
  cursor: wait;
  opacity: 0.7;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: start;
  padding-top: 36px;
}

.contact-card {
  padding: 24px;
}

/* Global density pass: keep the same structure, but make catalog pages feel tighter. */
.section {
  padding: 58px 0;
}

.section.compact {
  padding-top: 24px;
}

.hero h1,
.brand-detail-hero h1,
.model-detail h1 {
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.14;
}

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

.section-heading .combined-section-title {
  margin-bottom: 16px;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.35;
  text-wrap: balance;
}

.section-heading.row {
  gap: 16px;
}

.entry-grid,
.category-section,
.custom-grid,
.product-grid,
.brand-logo-grid,
.process-grid,
.gallery-grid,
.model-grid,
.detail-grid,
.mini-card-grid,
.subpage-grid,
.brand-scope-grid {
  gap: 12px;
}

.entry-card,
.category-panel,
.custom-card,
.product-card,
.brand-logo-card,
.process-grid article,
.gallery-grid article,
.model-card,
.detail-grid article,
.mini-card-grid article,
.subpage-card,
.brand-scope-grid article,
.product-info-card,
.order-builder,
.form-panel,
.contact-card,
.request-form,
.lookup-form,
.status-card {
  box-shadow: 0 5px 16px rgba(38, 30, 23, 0.04);
}

.entry-card {
  grid-template-rows: 182px 1fr;
  min-height: 390px;
}

.entry-card.featured {
  grid-template-rows: 150px 1fr;
}

.entry-card img {
  padding: 12px;
}

.entry-card.featured img {
  padding: 0;
  object-fit: cover;
  background: #f7f5f0;
}

.entry-card > div,
.product-body,
.category-panel,
.custom-card,
.process-grid article,
.gallery-grid article,
.model-card,
.detail-grid article,
.mini-card-grid article,
.subpage-card,
.brand-scope-grid article,
.product-info-card,
.order-builder,
.contact-card,
.status-card {
  padding: 16px;
}

.entry-card span,
.flow-grid span,
.process-grid article > span {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

.brand-logo-card {
  min-height: 104px;
  padding: 12px 10px;
  gap: 8px;
}

.brand-logo-card img {
  max-width: 118px;
  max-height: 44px;
}

.category-panel {
  min-height: 190px;
}

.category-panel span,
.badge {
  margin-bottom: 12px;
  padding: 6px 9px;
}

.custom-card {
  min-height: 315px;
}

.check-list {
  margin: 12px 0;
}

.product-image {
  height: 140px;
}

.product-image img {
  padding: 8px;
}

.brand-detail-hero,
.model-detail {
  gap: 24px;
  min-height: 430px;
}

.brand-detail-logo {
  min-height: 240px;
}

.brand-detail-logo.banner-card {
  min-height: 220px;
}

.brand-detail-logo.banner-card.light-banner {
  min-height: 0;
}

.brand-detail-logo.light-banner img {
  padding: 10px;
}

.process-grid article,
.mini-card-grid article,
.detail-grid article {
  padding: 15px;
}

.model-card {
  min-height: 225px;
  gap: 8px;
}

.model-card img {
  height: 118px;
  padding: 4px;
  background: linear-gradient(135deg, #faf7f1, #fffdf9);
}

.gallery-grid img {
  height: 180px;
  margin-bottom: 10px;
}

.product-gallery {
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(122px, 1fr));
}

.gallery-thumb {
  min-height: 132px;
  box-shadow: 0 5px 16px rgba(38, 30, 23, 0.04);
}

.gallery-thumb img {
  min-height: 132px;
  padding: 7px;
}

.detail-image {
  min-height: 285px;
}

.detail-image img {
  max-height: 210px;
}

.flow-section {
  padding: 58px clamp(18px, 4vw, 52px);
}

.flow-grid div {
  min-height: 150px;
  padding: 16px;
}

.request-form,
.lookup-form {
  padding: 18px;
}

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

  .hero,
  .custom-grid,
  .category-section,
  .contact-section,
  .lookup-grid,
  .brand-detail-hero,
  .model-detail,
  .product-info-layout,
  .option-layout,
  #measurement .option-layout,
  #exterior .option-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .entry-grid,
  .entry-grid.two-col,
  .product-grid,
  .process-grid,
  .gallery-grid,
  .product-gallery,
  .model-grid,
  .detail-grid,
  .order-form-grid,
  .mini-card-grid,
  .mini-card-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .brand-logo-grid,
  .brand-scope-grid,
  .subpage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alpha-intro-layout {
    grid-template-columns: 1fr;
  }

  .alpha-intro-card.lead {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .visual-card {
    grid-template-columns: 1fr;
  }

  .placeholder-grid.five,
  .measurement-input-grid,
  .alpha-step-page .interior-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .alpha-step-page .interior-gallery {
    max-width: 100%;
  }

  .alpha-choice-fieldset .choice-list.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alpha-choice-fieldset .choice-list.addon-choice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alpha-model-grid,
  .alpha-swatch-gallery,
  .vision-gallery,
  .alpha-addon-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alpha-model-grid img,
  .alpha-swatch-gallery img,
  .alpha-detail-gallery img,
  .alpha-addon-gallery img {
    height: 124px;
  }

  .handle-chart {
    width: min(100%, 300px);
  }

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

  .alpha-step-page .alpha-step-block {
    padding: 28px;
  }

  .alpha-step-block .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .header-actions {
    gap: 6px;
  }

  .region-button {
    max-width: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    display: none;
  }

  .section {
    width: min(100% - 20px, 1180px);
    padding: 28px 0;
  }

  .alpha-step-page main > .section {
    width: calc(100% - 16px);
  }

  .alpha-step-page .alpha-step-hero,
  .alpha-step-page .alpha-step-block {
    padding: 22px 20px;
  }

  .alpha-step-hero {
    margin-top: 14px;
  }

  .alpha-step-hero h1 {
    font-size: 28px;
    line-height: 1.12;
  }

  .alpha-pricing-callout {
    padding: 13px 14px;
  }

  .alpha-pricing-callout strong {
    font-size: 18px;
  }

  .alpha-pricing-callout span {
    font-size: 15px;
  }

  .interior-feature-gallery {
    grid-template-columns: 1fr;
  }

  .alpha-step-block::before {
    top: 12px;
    right: 14px;
    font-size: 48px;
  }

  .alpha-step-block .section-heading .eyebrow {
    width: fit-content;
    min-width: 62px;
    min-height: 28px;
  }

  .alpha-step-block .section-heading h2 {
    font-size: 25px;
    line-height: 1.16;
  }

  h1 {
    font-size: 32px;
    line-height: 1.16;
  }

  .hero-text {
    font-size: 15px;
  }

  .custom-hero-description {
    max-width: none;
    font-size: 14px;
    line-height: 1.68;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  p {
    font-size: 14px;
  }

  .brand-detail-hero,
  .model-detail,
  .option-split,
  .option-split.reverse {
    gap: 20px;
  }

  .detail-image {
    min-height: 230px;
    box-shadow: 0 10px 26px rgba(38, 30, 23, 0.08);
  }

  .detail-image img {
    max-height: 180px;
  }

  .product-gallery {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .alpha-gallery-strip {
    grid-auto-columns: minmax(128px, 168px);
    gap: 8px;
    padding-bottom: 10px;
  }

  .alpha-gallery-item {
    height: 118px;
    box-shadow: none;
  }

  .alpha-colour-gallery {
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .alpha-colour-card {
    flex: 0 0 min(82vw, 320px);
    min-height: 360px;
  }

  .alpha-colour-trigger {
    height: 100%;
    min-height: inherit;
  }

  .alpha-colour-card figcaption {
    left: 8px;
    right: 8px;
    bottom: 8px;
    min-height: 30px;
    padding: 5px 9px;
    font-size: 0.74rem;
  }

  .alpha-intro-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .alpha-intro-card {
    padding: 12px;
  }

  .alpha-intro-card.lead {
    grid-template-rows: 220px auto;
  }

  .visual-card img,
  .maker-card img {
    min-height: 140px;
    max-height: 180px;
  }

  .maker-card {
    grid-template-rows: 150px auto;
  }

  .colour-card {
    grid-template-rows: auto auto;
  }

  .alpha-colour-showcase {
    height: auto;
    aspect-ratio: 2 / 1;
  }

  .alpha-colour-zoom {
    height: auto;
    aspect-ratio: 2 / 1;
  }

  .interior-card {
    grid-template-rows: auto auto;
  }

  .alpha-interior-showcase {
    height: 240px;
  }

  .alpha-intro-details {
    grid-template-columns: 1fr;
  }

  .alpha-intro-card strong {
    font-size: 15px;
  }

  .feature-number {
    font-size: 44px;
  }

  .zoomable-image img {
    max-height: 260px;
  }

  .gallery-thumb {
    flex: 0 0 104px;
    min-height: 86px;
    box-shadow: none;
    scroll-snap-align: start;
  }

  .gallery-thumb img {
    min-height: 86px;
    padding: 6px;
  }

  .gallery-thumb span {
    right: 5px;
    bottom: 5px;
    min-width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .process-grid article,
  .option-grid article,
  .option-image-grid article,
  .option-split > article,
  .note-card,
  .entry-card > div,
  .brand-logo-card,
  .brand-scope-grid article,
  .subpage-card,
  .category-panel,
  .custom-card,
  .product-body,
  .model-card,
  .product-info-card,
  .order-builder,
  .form-panel,
  .contact-card {
    padding: 12px;
  }

  .entry-grid,
  .entry-grid.two-col,
  .product-grid,
  .process-grid,
  .option-grid,
  .option-grid.three,
  .option-image-grid,
  .option-split,
  .option-split.reverse,
  .gallery-grid,
  .model-grid,
  .detail-grid,
  .order-form-grid,
  .mini-card-grid,
  .mini-card-grid.two,
  .request-form,
  .lookup-form {
    gap: 10px;
  }

  .entry-card,
  .custom-card,
  .category-panel,
  .product-card,
  .model-card,
  .subpage-card,
  .brand-logo-card,
  .brand-scope-grid article,
  .process-grid article,
  .mini-card-grid article {
    box-shadow: 0 4px 14px rgba(38, 30, 23, 0.04);
  }

  .entry-card {
    grid-template-rows: 138px 1fr;
    min-height: auto;
  }

  .entry-card img {
    padding: 10px;
  }

  .entry-card span {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    font-size: 11px;
  }

  .entry-card strong,
  .product-body p,
  .model-card p,
  .subpage-card p,
  .mini-card-grid p,
  .category-panel p,
  .custom-card li {
    font-size: 13px;
  }

  .brand-logo-card {
    min-height: 88px;
    gap: 8px;
  }

  .brand-logo-card img {
    max-width: 100px;
    max-height: 38px;
  }

  .brand-logo-card.wordmark strong {
    font-size: 15px;
  }

  .category-panel,
  .custom-card {
    min-height: auto;
  }

  .category-panel span,
  .badge {
    margin-bottom: 10px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .check-list {
    margin: 10px 0;
    padding-left: 18px;
  }

  .product-image {
    height: 124px;
  }

  .product-image img {
    padding: 8px;
  }

  .brand-detail-hero {
    min-height: auto;
  }

  .brand-detail-logo {
    min-height: 190px;
    box-shadow: 0 8px 22px rgba(38, 30, 23, 0.08);
  }

  .brand-detail-logo img {
    max-height: 112px;
  }

  .brand-detail-logo.banner-card {
    min-height: 168px;
  }

  .brand-detail-logo.banner-card img {
    max-height: none;
  }

  .brand-detail-logo.light-banner img {
    padding: 8px;
  }

  .brand-detail-logo.alpha-banner .alpha-banner-image {
    object-position: 58% center;
  }

  .process-grid article > span {
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    font-size: 12px;
  }

  .model-card {
    min-height: auto;
    gap: 8px;
  }

  .model-card img {
    height: 104px;
    padding: 7px;
  }

  .option-grid.three,
  .option-image-grid,
  .option-split,
  .option-split.reverse,
  .mb-process-grid,
  .color-card-panel {
    grid-template-columns: 1fr;
  }

  .option-image-grid img {
    height: 138px;
    padding: 7px;
  }

  .alpha-choice-fieldset .choice-list.compact {
    grid-template-columns: 1fr;
  }

  .alpha-choice-fieldset .choice-list.addon-choice-list {
    grid-template-columns: 1fr;
  }

  .alpha-model-grid,
  .alpha-swatch-gallery,
  .vision-gallery,
  .alpha-addon-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alpha-model-grid button,
  .alpha-swatch-gallery button {
    padding: 9px;
  }

  .alpha-model-grid img,
  .alpha-swatch-gallery img,
  .alpha-detail-gallery img,
  .alpha-addon-gallery img {
    height: 112px;
  }

  #measurement .measurement-card img,
  .ral-card .zoomable-image img {
    max-height: 210px;
  }

  .alpha-step-page .alpha-form-block .request-form {
    padding: 22px;
    grid-template-columns: 1fr;
  }

  .alpha-step-page .alpha-form-block .form-note-field,
  .alpha-step-page .alpha-form-block .form-submit-button {
    grid-column: 1;
  }

  .alpha-step-page .alpha-form-block .form-fieldset,
  .alpha-step-page .form-fieldset {
    padding: 16px;
  }

  .alpha-choice-fieldset label,
  .alpha-form-block .alpha-choice-fieldset label {
    min-height: 38px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .alpha-step-page .option-image-grid img {
    height: 112px;
    padding: 0;
  }

  .alpha-step-page .interior-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .handle-chart {
    width: min(100%, 240px);
  }

  .handle-chart img {
    max-height: 300px;
  }

  .alpha-price-panel dl div {
    gap: 10px;
  }

  .option-visual img {
    max-height: 220px;
    padding: 8px;
  }

  .color-card-panel {
    padding: 12px;
    gap: 10px;
  }

  .color-card-panel img {
    max-height: 300px;
  }

  .color-list {
    columns: 1;
    font-size: 13px;
  }

  .note-card .primary-button {
    width: 100%;
  }

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

  .filter-row a {
    padding: 7px 10px;
    font-size: 12px;
  }

  .product-info-layout,
  .order-form-grid {
    gap: 10px;
  }

  .price-table {
    margin: 8px 0 10px;
  }

  .configuration-price-grid {
    grid-template-columns: 1fr;
  }

  .configuration-price-grid .price-block + .price-block {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .price-block h4,
  .price-table div {
    padding: 10px 11px;
  }

  .detail-group {
    padding-top: 10px;
    margin-top: 10px;
  }

  .form-panel h4 {
    margin-bottom: 9px;
    font-size: 15px;
  }

  .form-panel label {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .form-panel label:has(input[type="radio"]),
  .form-panel label:has(input[type="checkbox"]) {
    min-height: 36px;
    padding: 8px 10px;
  }

  .form-panel-heading {
    display: grid;
  }

  .form-links {
    justify-content: flex-start;
  }

  .compact-choice {
    grid-template-columns: 1fr;
  }

  .order-color-cards img {
    height: 170px;
  }

  .form-panel input[type="text"],
  .form-panel textarea,
  input,
  select,
  textarea {
    padding: 10px 11px;
  }

  .form-panel textarea {
    min-height: 76px;
  }

  .entry-grid,
  .entry-grid.two-col,
  .product-grid,
  .process-grid,
  .gallery-grid,
  .model-grid,
  .detail-grid,
  .order-form-grid,
  .mini-card-grid,
  .mini-card-grid.two,
  .placeholder-grid.three,
  .placeholder-grid.five,
  .alpha-step-page .interior-gallery,
  .measurement-input-grid,
  .request-form,
  .lookup-form {
    grid-template-columns: 1fr;
  }

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

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

  .mb-detail-strip.image-only {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .mb-swatch-strip img {
    height: 150px;
  }

  .mb-detail-strip img {
    height: 108px;
  }

  .mb-detail-strip.image-only img {
    height: 62px;
    padding: 3px;
  }

  .material-example-grid img {
    height: 150px;
  }

  .mb-reference-page .section.compact {
    padding: 22px 0;
  }

  .mb-reference-page .option-image-grid img {
    height: 124px;
  }

  .mb-reference-page .option-image-grid,
  .mb-reference-page .interior-color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mb-process-column {
    display: contents;
  }

  .process-step-1 {
    order: 1;
  }

  .process-step-2 {
    order: 2;
  }

  .process-step-3 {
    order: 3;
  }

  .process-step-4 {
    order: 4;
  }

  .mb-reference-page .interior-color-grid img {
    height: 112px;
  }

  .mb-reference-page .option-visual img,
  .detail-patch-split .option-visual img {
    max-height: 210px;
  }

  .alpha-step-page main > .section {
    width: calc(100% - 14px);
  }

  .alpha-step-page .alpha-step-hero,
  .alpha-step-page .alpha-step-block {
    padding: 21px 20px;
  }

  .alpha-step-page .option-card,
  .alpha-addon-gallery article,
  .alpha-step-page .alpha-form-block .request-form,
  .alpha-step-page .form-fieldset {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-lightbox {
    padding: 14px;
  }

  .image-lightbox img {
    max-height: 72vh;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .entry-card,
  .custom-card,
  .category-panel {
    min-height: auto;
  }

  .section-heading.row {
    display: block;
  }

  .region-options {
    grid-template-columns: 1fr;
  }

  .brand-logo-grid,
  .brand-scope-grid,
  .subpage-grid {
    grid-template-columns: 1fr;
  }

  .region-options button {
    min-height: auto;
  }
}

/* Official BAM and Pirastro brand artwork. */
.pirastro-logo-crop {
  position: relative;
  display: block;
  width: 132px;
  height: 54px;
  overflow: hidden;
}

.pirastro-logo-crop img {
  position: absolute;
  top: -28px;
  left: -18px;
  width: 520px;
  height: 520px;
  max-width: none;
  max-height: none;
}

.brand-detail-logo.brand-photo-card {
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  background: #fff;
}

.brand-detail-logo.brand-photo-card .brand-page-visual {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.alpha-brand-mark {
  border-radius: 6px;
  background: #211c1d;
  box-shadow: 0 6px 16px rgba(28, 22, 18, 0.14);
}

.alpha-round-logo {
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.brand-strip .brand-logo-card {
  min-height: 104px;
  padding: 14px 10px;
}

/* Homepage hero: one composed visual rather than separate copy and image blocks. */
.brand-hero {
  position: relative;
  display: block;
  width: 100vw;
  min-height: 0;
  aspect-ratio: 6048 / 2304;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: #1b1715;
  box-shadow: var(--shadow);
}

.brand-hero .hero-visual.brand-showcase {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
}

.brand-hero .hero-showcase-image {
  object-fit: contain;
  object-position: center center;
  filter: brightness(0.97) saturate(0.96);
}

.hero-visual.brand-showcase::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 14, 12, 0.28) 0%, rgba(18, 14, 12, 0.18) 34%, rgba(18, 14, 12, 0.06) 56%, transparent 78%),
    linear-gradient(0deg, rgba(18, 14, 12, 0.24) 0%, rgba(18, 14, 12, 0.1) 32%, transparent 58%);
  content: "";
  pointer-events: none;
}

.brand-hero .hero-copy {
  position: absolute;
  inset: auto auto 0 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: min(820px, 68%);
  max-width: 820px;
  min-height: 0;
  align-items: end;
  padding: 34px clamp(28px, 4vw, 52px) 38px;
  color: #fff;
}

.brand-hero .hero-copy::before {
  position: absolute;
  inset: 18px clamp(14px, 2vw, 26px) 24px clamp(18px, 2.8vw, 34px);
  z-index: -1;
  border-radius: 30px;
  background: linear-gradient(90deg, rgba(18, 14, 12, 0.32), rgba(18, 14, 12, 0.18) 62%, transparent);
  content: "";
  filter: blur(14px);
  pointer-events: none;
}

.brand-hero h1 {
  max-width: 720px;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  text-wrap: balance;
}

.brand-hero .eyebrow {
  color: #e4c58e;
}

.brand-hero .hero-text {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.brand-hero .region-status {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.brand-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 0;
}

.brand-hero .primary-button {
  background: #fff;
  color: var(--ink);
}

.brand-hero .secondary-button {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(20, 16, 14, 0.38);
  color: #fff;
}

@media (min-width: 981px) {
  .brand-hero .hero-copy {
    width: min(1080px, 92%);
    max-width: 1080px;
  }

  .brand-hero h1 {
    max-width: none;
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  .brand-hero {
    min-height: 0;
  }

  .brand-hero .hero-copy {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(760px, 78%);
  }

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

@media (max-width: 640px) {
  .brand-hero {
    display: flex;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    flex-direction: column-reverse;
  }

  .brand-hero .hero-visual.brand-showcase {
    position: relative;
    inset: auto;
    height: auto;
    aspect-ratio: 6048 / 2304;
  }

  .brand-hero .hero-showcase-image {
    object-position: center center;
    filter: brightness(0.9) saturate(0.9);
  }

  .hero-visual.brand-showcase::after {
    background:
      linear-gradient(180deg, rgba(18, 14, 12, 0.02) 0%, rgba(18, 14, 12, 0.08) 48%, rgba(18, 14, 12, 0.42) 100%),
      linear-gradient(90deg, rgba(18, 14, 12, 0.32) 0%, rgba(18, 14, 12, 0.16) 48%, transparent 78%);
  }

  .brand-hero .hero-copy {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin-top: clamp(-108px, -24vw, -78px);
    padding: 16px 18px 22px;
    background: linear-gradient(180deg, rgba(18, 14, 12, 0), rgba(18, 14, 12, 0.66) 34%, rgba(18, 14, 12, 0.9));
    color: #fff;
  }

  .brand-hero .hero-copy::before {
    inset: 4px 10px auto 10px;
    height: 120px;
    border-radius: 22px;
    background: linear-gradient(90deg, rgba(18, 14, 12, 0.34), rgba(18, 14, 12, 0.1));
    filter: blur(12px);
  }

  .brand-hero h1 {
    max-width: 78%;
    margin-bottom: 6px;
    font-size: clamp(22px, 7.2vw, 30px);
    line-height: 1.08;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
  }

  .brand-hero .hero-text {
    display: none;
  }

  .brand-hero .eyebrow {
    margin-bottom: 6px;
    color: #f0d9a9;
    font-size: 10px;
  }

  .brand-hero .region-status {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
  }

  .brand-hero .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 360px;
    margin-top: 12px;
  }

  .brand-hero .primary-button,
  .brand-hero .secondary-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  .brand-hero .hero-actions {
    grid-template-columns: 1fr;
  }
}

/* Brand imagery pass: broad compositions stay broad instead of being forced into tall cards. */
.hero-visual.brand-showcase {
  min-height: 0;
  aspect-ratio: 2007 / 784;
  background: #211c19;
}

.hero-showcase-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-overview-visual {
  aspect-ratio: 16 / 9;
  min-height: 0 !important;
  background: #1b1816;
}

.custom-overview-visual img {
  object-fit: cover !important;
}

.mb-brand-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  min-height: 520px;
}

.mb-inline-logo {
  display: block;
  width: 54px;
  height: 54px;
  margin: 8px 0 12px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.mb-custom-kicker .mb-inline-logo {
  width: 72px;
  height: 44px;
  margin: 0;
}

.mb-custom-kicker .eyebrow {
  margin: 0;
}

.brand-detail-logo.banner-card.mb-showroom-hero {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 10;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-detail-logo.banner-card.mb-showroom-hero img {
  padding: 0;
  object-fit: contain;
  object-position: center;
}

.brand-detail-logo.banner-card.mb-showroom-hero::after {
  content: none;
}

.mb-model-banner {
  width: 100%;
  aspect-ratio: 3840 / 1050;
  margin: 0 0 24px;
  overflow: hidden;
  border-radius: 6px;
  background: #f7f5f0;
}

.mb-model-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mb-catalog-filters {
  position: sticky;
  top: calc(var(--responsive-header-height, 150px) + 12px);
  z-index: 4;
  margin: 0 0 24px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(12px);
}

.mb-catalog-filters a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
}

.mb-catalog-filters small {
  min-width: 22px;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  text-align: center;
}

.mb-catalog-section {
  scroll-margin-top: 150px;
  margin-top: 34px;
}

.mb-catalog-section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.mb-catalog-section-heading h3 {
  margin: 0;
}

.mb-catalog-section-heading span {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.mb-catalog-grid {
  gap: 14px;
}

.mb-catalog-card {
  grid-template-rows: 148px auto;
  gap: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.mb-card-image {
  display: block;
  min-width: 0;
  background: var(--soft);
}

.mb-catalog-card .mb-card-image img {
  width: 100%;
  height: 148px;
  padding: 8px;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.mb-catalog-card.is-placeholder .mb-card-image img {
  padding: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86);
}

.mb-card-copy {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 14px 15px 16px;
}

.mb-card-copy p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#mb-models .section-heading.row > .secondary-button {
  flex: 0 0 auto;
  align-self: flex-end;
  white-space: nowrap;
}

.cinematic-hero {
  grid-template-columns: 1fr;
  gap: 28px;
  min-height: auto;
  align-items: start;
}

.cinematic-hero > div:first-child {
  max-width: 900px;
}

.brand-detail-logo.banner-card.brand-cinematic-banner {
  min-height: 0;
  aspect-ratio: 3840 / 1050;
  border: 0;
  background: transparent;
  box-shadow: var(--shadow);
}

.brand-detail-logo.banner-card.brand-cinematic-banner img {
  padding: 0;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 981px) {
  .alpha-custom-hero.cinematic-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.55fr);
    grid-template-rows: auto auto;
    align-items: start;
  }

  .alpha-custom-hero.cinematic-hero > div:first-child {
    grid-column: 1;
    grid-row: 1;
    max-width: 780px;
    padding-top: clamp(18px, 3vw, 42px);
  }

  .alpha-custom-hero.cinematic-hero .alpha-story-lead {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .alpha-custom-hero.cinematic-hero .alpha-hero-price-panel {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
  }
}

.brand-product-showcase {
  width: 100%;
  aspect-ratio: 16 / 6;
  margin: 0 0 26px;
  overflow: hidden;
  border-radius: 8px;
  background: #201b18;
  box-shadow: var(--shadow);
}

.brand-product-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

@media (max-width: 980px) {
  .mb-brand-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brand-detail-logo.banner-card.mb-showroom-hero {
    aspect-ratio: 16 / 8;
  }

  .cinematic-hero {
    grid-template-columns: 1fr;
  }

  .mb-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mb-model-banner {
    margin-bottom: 18px;
    border-radius: 4px;
  }

  .mb-catalog-filters {
    position: static;
    gap: 6px;
    margin-bottom: 18px;
    padding: 8px;
  }

  .mb-catalog-filters a {
    padding: 7px 10px;
    font-size: 12px;
  }

  .mb-catalog-section {
    margin-top: 26px;
  }

  .mb-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mb-catalog-card {
    grid-template-rows: 112px auto;
  }

  .mb-catalog-card .mb-card-image img {
    height: 112px;
    padding: 5px;
  }

  .mb-card-copy {
    padding: 11px 11px 12px;
  }

  .mb-card-copy strong {
    font-size: 14px;
  }

  .mb-card-copy p {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  #mb-models .section-heading.row > .secondary-button {
    align-self: auto;
  }

  .brand-detail-logo.banner-card.mb-showroom-hero {
    aspect-ratio: 4 / 3;
  }

  .brand-detail-logo.banner-card.brand-cinematic-banner,
  .brand-product-showcase {
    aspect-ratio: 16 / 9;
  }

  .hero-showcase-image,
  .brand-detail-logo.banner-card.brand-cinematic-banner img {
    object-fit: cover;
  }

  .mb-cinematic-banner img {
    object-position: 62% center !important;
  }

  .alpha-banner img {
    object-position: 52% center !important;
  }

  .brand-product-showcase {
    margin-bottom: 18px;
  }
}

/* Homepage final navigation pass */
.flow-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

.flow-section .section-heading {
  max-width: 1180px;
  margin-bottom: 22px;
}

.flow-section .section-heading h2 {
  max-width: 820px;
  font-size: clamp(30px, 3vw, 42px);
}

.flow-section .section-heading h2.section-title-label {
  max-width: 1180px;
  font-size: clamp(18px, 1.6vw, 24px);
}

.flow-grid div {
  min-height: 156px;
  padding: 17px;
}

.flow-grid span {
  margin-bottom: 13px;
}

.flow-grid strong {
  font-size: 16px;
  line-height: 1.35;
}

.home-products .section-heading.row {
  align-items: end;
}

.home-products .section-heading.row > div {
  max-width: 600px;
}

.home-products .section-heading.row > .muted {
  max-width: 430px;
  margin-bottom: 7px;
  text-align: right;
}

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

.home-products .product-grid.is-paged {
  align-items: stretch;
}

.home-products .product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-products .featured-product-card[hidden] {
  display: none !important;
}

.home-products .product-image {
  height: 220px;
}

.home-products .product-image img {
  object-fit: cover;
  object-position: center 38%;
  padding: 0;
}

.home-products .featured-product-card .product-image {
  height: auto;
  min-height: 300px;
  aspect-ratio: 3 / 4;
  background: #f7f5f0;
}

.home-products .featured-product-card .product-image img {
  object-fit: contain;
  object-position: center;
  padding: 10px;
}

.product-gallery {
  position: relative;
}

.gallery-open-button {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}

.product-gallery .gallery-open-button img {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-arrow,
.lightbox-arrow,
.lightbox-close {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(29, 25, 24, 0.72);
  color: #fff;
  padding: 0;
  box-shadow: 0 4px 16px rgba(29, 25, 24, 0.2);
}

.gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 34px;
  height: 44px;
  border-radius: 999px;
  font-size: 28px;
  transform: translateY(-50%);
}

.gallery-previous {
  left: 8px;
}

.gallery-next {
  right: 8px;
}

.gallery-counter {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  border-radius: 999px;
  background: rgba(29, 25, 24, 0.72);
  color: #fff;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 750;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(18, 14, 12, 0.94);
}

.product-lightbox figure {
  display: grid;
  min-width: 0;
  height: calc(100vh - 48px);
  margin: 0;
  place-items: center;
}

.product-lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 92px);
  object-fit: contain;
}

.product-lightbox figcaption {
  position: absolute;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.lightbox-arrow {
  width: 46px;
  height: 58px;
  border-radius: 999px;
  font-size: 36px;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 30px;
}

body.lightbox-open {
  overflow: hidden;
}

.featured-price-legend {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.featured-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.featured-page-button {
  min-width: 94px;
  border: 1px solid rgba(123, 91, 46, 0.28);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.featured-page-button:disabled {
  cursor: default;
  opacity: 0.42;
}

.featured-page-status {
  min-width: 82px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.home-products .product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px;
}

.home-products .product-body h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.25;
}

.home-products .product-body p {
  margin: 0;
  line-height: 1.55;
}

.product-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.product-price-row span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.product-price-row strong {
  color: var(--gold-dark);
  font-size: 15px;
  line-height: 1.25;
  text-align: right;
}

.contact-method-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.contact-method {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-width: 0;
  border-bottom: 1px solid var(--line);
  padding: 4px 0 12px;
}

.contact-method-email {
  grid-column: 1 / -1;
}

.contact-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(123, 91, 46, 0.28);
  border-radius: 50%;
  padding: 7px;
  color: var(--gold-dark);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon-whatsapp {
  color: #1f8b4c;
  border-color: rgba(31, 139, 76, 0.28);
  background: rgba(31, 139, 76, 0.08);
}

.contact-icon-wechat {
  color: #207a3d;
  border-color: rgba(32, 122, 61, 0.28);
  background: rgba(32, 122, 61, 0.08);
}

.contact-icon-instagram {
  color: #9b4b7f;
  border-color: rgba(155, 75, 127, 0.26);
  background: rgba(155, 75, 127, 0.08);
}

.contact-method strong,
.contact-method a,
.contact-method span {
  display: block;
}

.contact-method strong {
  margin-bottom: 3px;
  font-size: 13px;
  line-height: 1.35;
}

.contact-method a,
.contact-method span {
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 1.45;
}

.contact-note {
  margin: 14px 0 10px;
  border-left: 3px solid var(--gold);
  padding: 8px 11px;
  background: var(--warm);
  color: var(--muted);
  font-size: 13px;
}

.social-contact-block {
  margin: 16px 0 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.social-contact-title {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 14px;
}

.social-contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.social-contact-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.55);
}

.contact-app-icon {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 5px 12px rgba(30, 22, 17, 0.1);
}

.social-contact-item span:not(.contact-icon) {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.social-contact-item strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .social-contact-list {
    grid-template-columns: 1fr;
  }
}

/* Keep the first-run region selector reachable below mobile browser chrome. */
@media (max-width: 640px) {
  .region-gate {
    padding:
      max(18px, env(safe-area-inset-top))
      12px
      max(18px, env(safe-area-inset-bottom));
  }

  .region-gate.active {
    align-items: start;
  }

  .region-panel {
    width: 100%;
    margin: auto 0;
    border-radius: 14px;
    padding: 24px 18px;
  }
}

@media (max-width: 980px) {
  .alpha-hero-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .alpha-hero-specs span {
    min-height: 68px;
  }

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

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

@media (max-width: 640px) {
  .alpha-hero-specs {
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
  }

  .alpha-hero-specs span {
    min-height: 58px;
    padding: 12px 14px 11px;
    border-radius: 16px;
  }

  .alpha-hero-specs span::before {
    inset: 10px auto auto 14px;
    width: 18px;
  }

  .alpha-hero-specs span:nth-child(3) {
    min-height: 70px;
  }

  .alpha-hero-specs span:nth-child(4),
  .alpha-hero-specs span:nth-child(5),
  .alpha-hero-specs span:nth-child(6) {
    grid-column: 1 / -1;
    min-height: 48px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 16px 13px;
  }

  .alpha-hero-specs span:nth-child(4)::before,
  .alpha-hero-specs span:nth-child(5)::before,
  .alpha-hero-specs span:nth-child(6)::before {
    width: 0;
  }

  .alpha-hero-specs span:nth-child(4) b,
  .alpha-hero-specs span:nth-child(5) b,
  .alpha-hero-specs span:nth-child(6) b {
    max-width: 11em;
    text-align: right;
  }

  .alpha-hero-specs strong {
    font-size: 14px;
    letter-spacing: 0.01em;
  }

  .alpha-hero-specs b {
    font-size: 11px;
    letter-spacing: 0.015em;
  }

  .hero-actions .primary-button {
    flex-basis: 100%;
  }

  .flow-section {
    padding: 34px 10px;
  }

  .flow-section .section-heading h2 {
    font-size: 27px;
  }

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

  .flow-grid div,
  .flow-grid div:last-child {
    grid-column: auto;
    min-height: auto;
    padding: 14px;
  }

  .home-products .section-heading.row > .muted {
    max-width: none;
    margin-top: 6px;
    text-align: left;
  }

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

  .home-products .product-card {
    display: flex;
    flex-direction: column;
  }

  .home-products .featured-product-card .product-image {
    min-height: 190px;
    aspect-ratio: 4 / 5;
  }

  .home-products .featured-product-card .product-image img {
    padding: 6px;
  }

  .home-products .product-body {
    padding: 12px;
  }

  .home-products .product-body h3 {
    font-size: 16px;
  }

  .home-products .product-body p {
    font-size: 12px;
  }

  .featured-pagination {
    justify-content: space-between;
  }

  .featured-page-button {
    min-width: 78px;
    padding: 8px 10px;
  }

  .gallery-arrow {
    width: 30px;
    height: 40px;
    font-size: 25px;
  }

  .product-lightbox {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 6px;
    padding: 12px;
  }

  .lightbox-arrow {
    width: 38px;
    height: 50px;
    font-size: 30px;
  }

  .home-products .product-body {
    padding: 13px;
  }

  .product-price-row {
    margin-top: 12px;
  }

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

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

  .contact-method-email {
    grid-column: auto;
  }
}

/* Shared language and region controls for every subpage */
.shared-header-actions {
  flex: 0 0 auto;
  margin-left: auto;
}

.shared-region-panel {
  position: relative;
}

.region-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0;
  font-size: 24px;
  line-height: 1;
}

body.region-dialog-open {
  overflow: hidden;
}

@media (max-width: 1120px) {
  .site-header .desktop-nav {
    display: none;
  }
}

@media (max-width: 980px) {
  .shared-header-actions {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .shared-header-actions {
    gap: 5px;
  }

  .shared-region-button {
    max-width: 92px;
    overflow: hidden;
    padding: 7px 10px;
    text-overflow: ellipsis;
  }

  .shared-header-actions .language-switch {
    padding: 2px;
  }

  .shared-header-actions .lang-button {
    min-width: 38px;
    padding: 6px 8px;
  }

  .shared-region-panel {
    padding: 24px 18px;
  }

  .shared-region-panel h2 {
    padding-right: 38px;
  }
}

/* Editorial catalogue cards for the MB Cases and Alpha Case choice. */
.custom-brand-grid {
  gap: clamp(14px, 2vw, 24px);
}

.custom-brand-grid .entry-card,
.custom-brand-grid .entry-card.featured {
  grid-template-rows: clamp(160px, 18vw, 210px) minmax(0, 1fr);
  min-height: 0;
  border-color: var(--line);
  border-radius: 14px;
  background: var(--warm);
  color: var(--ink);
}

.custom-brand-grid .entry-card img,
.custom-brand-grid .entry-card.featured img {
  display: block;
  width: calc(100% - 22px);
  height: auto;
  min-height: 0;
  max-height: 100%;
  align-self: center;
  justify-self: center;
  margin: 11px;
  border-radius: 9px;
  background: #fff;
  object-fit: contain;
  padding: 8px;
}

.custom-brand-grid .entry-card > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(16px, 2.2vw, 24px);
}

.custom-brand-grid .entry-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
}

.custom-brand-grid .entry-card p,
.custom-brand-grid .entry-card.featured p {
  margin: 0 0 18px;
  color: var(--muted);
}

.custom-brand-grid .entry-card > div > strong,
.custom-brand-grid .entry-card.featured > div > strong {
  width: 100%;
  margin-top: auto;
  border-top: 1px solid rgba(123, 91, 46, 0.22);
  padding-top: 13px;
  color: var(--gold-dark);
}

@media (max-width: 640px) {
  .custom-brand-grid,
  .entry-grid.two-col.custom-brand-grid {
    grid-template-columns: 1fr;
  }

  .custom-brand-grid .entry-card,
  .custom-brand-grid .entry-card.featured {
    grid-template-rows: clamp(138px, 42vw, 176px) auto;
  }

  .custom-brand-grid .entry-card > div {
    padding: 17px 15px;
  }
}

.home-page .site-header .home-control-row{display:flex;align-items:center;justify-content:flex-end;gap:14px;margin-left:auto;min-width:0}.home-page .site-header .home-control-row .header-actions{margin-left:0}
@media (min-width:1121px){.home-page .site-header .home-control-row{flex:1 1 auto}.home-page .site-header .home-header-contact{flex:1 1 auto;justify-content:center}}
@media (max-width:1120px){.home-page .site-header .home-control-row{order:2;flex:0 1 auto;gap:8px}.home-page .site-header .header-actions{order:2}.home-page .site-header .home-header-contact{order:3;display:flex;flex:0 0 auto;width:auto;gap:6px;padding:0;overflow:visible}.home-page .site-header .home-header-contact a{justify-content:center;width:34px;height:34px;min-height:34px;padding:0}.home-page .site-header .home-header-contact strong{display:none}}
@media (max-width:1120px){.home-page .site-header .home-header-contact{display:flex;flex:0 0 auto;width:auto}.home-page .site-header .home-header-contact a{width:34px;height:34px}}
@media (max-width:640px){html{scroll-padding-top:92px}.home-page .site-header{display:grid;grid-template-columns:minmax(118px,1fr) auto;align-items:center;gap:8px;padding:9px 10px}.home-page .site-header .brand{min-width:0}.home-page .site-header .brand-wordmark{width:clamp(112px,34vw,138px)}.home-page .site-header .home-control-row{display:flex;flex-wrap:nowrap;gap:6px;max-width:calc(100vw - 138px);overflow:hidden}.home-page .site-header .header-actions{gap:5px}.home-page .site-header .region-button{max-width:62px;padding:7px 9px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.home-page .site-header .language-switch{padding:2px}.home-page .site-header .lang-button{min-width:34px;padding:6px 7px}.home-page .site-header .home-header-contact{gap:5px}.home-page .site-header .home-header-contact a{width:32px;height:32px;min-height:32px}.home-page .site-header .home-contact-icon,.home-page .site-header .home-contact-icon-whatsapp,.home-page .site-header .home-contact-icon-chat{width:15px;height:15px}}

/* Keep the three homepage entry images on one shared baseline. */
#categories .entry-card,
#categories .entry-card.featured {
  grid-template-rows: 182px 1fr;
}

#categories .entry-card-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  background: #f7f5f0;
}

#categories .entry-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
}

#categories .entry-card h3 {
  font-family: var(--font-display);
}

#categories .standard-cover img {
  object-fit: cover;
  object-position: center;
  transform: translateX(2.5%) scale(1.14);
  transform-origin: center;
}

#categories .accessory-cover img {
  object-fit: cover;
  object-position: center;
}

@media (max-width: 640px) {
  #categories .entry-card,
  #categories .entry-card.featured {
    grid-template-rows: 138px 1fr;
  }
}

/* Show the supplied MB reference artwork at its full 16:9 ratio. */
.brand-detail-logo.banner-card.light-banner.full-image-banner {
  aspect-ratio: 16 / 9;
}

@media (min-width: 641px) {
  .mb-reference-page.mb-diy-page main {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 580px));
    column-gap: 20px;
    justify-content: center;
  }

  .mb-reference-page.mb-diy-page main > .section {
    width: 100%;
    grid-column: 1 / -1;
  }

  .mb-reference-page.mb-diy-page main > .trim-detail-section {
    width: auto;
    min-width: 0;
    margin: 0;
    grid-column: 1;
    grid-row: 3;
  }

  .mb-reference-page.mb-diy-page main > .handle-detail-section {
    width: auto;
    min-width: 0;
    margin: 0;
    grid-column: 2;
    grid-row: 3;
  }

  .mb-reference-page.mb-diy-page .trim-detail-section .option-split,
  .mb-reference-page.mb-diy-page .handle-detail-section .option-split,
  .mb-reference-page.mb-diy-page .handle-detail-section .option-split.reverse {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mb-reference-page.mb-diy-page .trim-detail-section .option-visual img,
  .mb-reference-page.mb-diy-page .handle-detail-section .option-visual img {
    max-height: 230px;
  }
}

/* Sitewide bilingual typography: editorial display faces, practical UI faces. */
h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
}

h3,
button,
input,
select,
textarea,
option {
  font-family: var(--font-body);
}

html[lang="zh-Hant"] h1,
html[lang="zh-Hant"] h2 {
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

html[lang="en"] h1,
html[lang="en"] h2 {
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

html[lang="en"] .eyebrow,
html[lang="en"] .tag {
  letter-spacing: 0.14em;
}

/* Mobile and narrow-width header: keep essential navigation visible. */
html {
  scroll-padding-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(231, 222, 210, 0.72);
}

@media (max-width: 1120px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .site-header .brand {
    flex: 1 1 auto;
    min-width: 150px;
  }

  .site-header .desktop-nav {
    order: 3;
    display: flex;
    flex: 0 0 100%;
    width: 100%;
    gap: 8px;
    justify-content: flex-end;
    overflow-x: auto;
    padding: 2px 0 4px;
    scrollbar-width: none;
  }

  .site-header .desktop-nav::-webkit-scrollbar {
    display: none;
  }

  .site-header .desktop-nav .nav-disabled {
    display: none;
  }

  .site-header .desktop-nav a {
    flex: 0 0 auto;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .site-header .desktop-nav a[href*="contact"] {
    font-weight: 700;
  }

  .home-page .site-header .desktop-nav {
    display: none;
  }

  .home-page .site-header .home-header-contact {
    order: 3;
    display: flex;
    flex: 0 0 100%;
    width: 100%;
    justify-content: flex-end;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 4px;
    color: var(--muted);
    scrollbar-width: none;
  }

  .home-page .site-header .home-header-contact::-webkit-scrollbar {
    display: none;
  }

  .home-page .site-header .home-header-contact a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
  }

  .home-page .site-header .home-contact-icon,
  .home-page .site-header .home-contact-icon-whatsapp,
  .home-page .site-header .home-contact-icon-chat {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
  }

  .home-page .site-header .home-contact-icon,
  .home-page .site-header .home-contact-icon-whatsapp {
    fill: none;
    stroke: var(--gold-dark);
    stroke-width: 1.9;
  }

  .home-page .site-header .home-contact-icon-pair {
    display: inline-flex;
    align-items: center;
    gap: 3px;
  }

  .home-page .site-header .home-contact-icon-chat circle {
    fill: var(--gold-dark);
    stroke: none;
  }

  .home-page .site-header .home-header-contact strong {
    color: var(--ink);
    font-weight: 700;
  }
}

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

  .site-header {
    padding: 10px 14px;
  }

  .site-header .brand-wordmark {
    width: clamp(108px, 34vw, 148px);
  }

  .site-header .shared-header-actions,
  .site-header .header-actions {
    margin-left: 0;
    flex: 0 0 auto;
  }

  .site-header .desktop-nav {
    gap: 6px;
    padding-bottom: 2px;
  }

  .site-header .desktop-nav a {
    padding: 7px 10px;
    font-size: 12px;
  }

  .home-page .site-header .home-header-contact {
    gap: 6px;
    padding-bottom: 2px;
  }

  .home-page .site-header .home-header-contact a {
    justify-content: center;
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
  }

  .home-page .site-header .home-header-contact strong {
    display: none;
  }
}

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

  .home-page .site-header {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: center;
    gap: 6px;
    padding: 8px;
  }

  .home-page .site-header .brand {
    min-width: 0;
  }

  .home-page .site-header .brand-wordmark {
    width: 102px;
  }

  .home-page .site-header .home-control-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    max-width: none;
    margin-left: 0;
    overflow: visible;
  }

  .home-page .site-header .header-actions {
    flex: 0 0 auto;
    gap: 4px;
  }

  .home-page .site-header .region-button {
    max-width: 42px;
    min-height: 28px;
    padding: 5px 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
  }

  .home-page .site-header .language-switch {
    gap: 1px;
    padding: 2px;
  }

  .home-page .site-header .lang-button {
    min-width: 29px;
    padding: 5px 6px;
    font-size: 11px;
  }

  .home-page .site-header .home-header-contact {
    display: flex;
    flex: 0 0 auto;
    width: auto;
    gap: 4px;
    padding: 0;
  }

  .home-page .site-header .home-header-contact a {
    width: 26px;
    height: 26px;
    min-height: 26px;
    padding: 0;
  }

  .home-page .site-header .home-contact-icon,
  .home-page .site-header .home-contact-icon-whatsapp,
  .home-page .site-header .home-contact-icon-chat {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 760px) {
  body:not(.home-page) .site-header {
    display: grid;
    grid-template-columns: minmax(148px, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "brand nav";
    align-items: center;
    column-gap: 10px;
    row-gap: 6px;
    padding: 10px 14px;
  }

  body:not(.home-page) .site-header .brand {
    grid-area: brand;
    align-self: stretch;
    display: flex;
    align-items: center;
    min-width: 0;
  }

  body:not(.home-page) .site-header .brand-lockup {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  body:not(.home-page) .site-header .brand-wordmark {
    width: clamp(118px, 34vw, 156px);
  }

  body:not(.home-page) .site-header .brand-lockup small {
    display: block;
    max-width: 160px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 650;
    line-height: 1.25;
    white-space: normal;
  }

  body:not(.home-page) .site-header .shared-header-actions,
  body:not(.home-page) .site-header .header-actions {
    grid-area: actions;
    justify-self: end;
    margin-left: 0;
  }

  body:not(.home-page) .site-header .desktop-nav {
    grid-area: nav;
    justify-self: end;
    order: initial;
    flex: 0 1 auto;
    width: auto;
    max-width: calc(100vw - 190px);
    justify-content: flex-end;
    padding: 0;
  }

  body:not(.home-page) .site-header .desktop-nav a {
    padding: 7px 10px;
  }
}

/* Header final pass: sticky bar, mobile return/contact access, and EN/ZH size parity. */
.site-header {
  position: sticky !important;
  top: 0;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

html[lang="en"] .eyebrow,
html[lang="en"] .tag,
html[lang="en"] .section-title-label {
  letter-spacing: 0.1em;
}

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

  .site-header {
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(231, 222, 210, 0.72);
  }

  .site-header .region-button,
  .site-header .lang-button,
  .site-header .desktop-nav a,
  .site-header .desktop-nav .nav-disabled {
    font-size: 13px;
    line-height: 1.2;
  }

  .home-page .site-header {
    display: grid;
    grid-template-columns: minmax(132px, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "contact contact";
    align-items: center;
    gap: 8px 10px;
    padding: 9px 12px;
  }

  .home-page .site-header .brand {
    grid-area: brand;
    min-width: 0;
  }

  .home-page .site-header .brand-wordmark {
    width: clamp(116px, 34vw, 150px);
  }

  .home-page .site-header .desktop-nav {
    display: none !important;
  }

  .home-page .site-header .home-control-row {
    display: contents !important;
  }

  .home-page .site-header .header-actions {
    grid-area: actions;
    justify-self: end;
    margin-left: 0;
    gap: 5px;
  }

  .home-page .site-header .home-header-contact {
    grid-area: contact;
    display: flex !important;
    justify-content: flex-end;
    gap: 6px;
    width: 100%;
    padding: 0;
    overflow: visible;
  }

  .home-page .site-header .home-header-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
  }

  .home-page .site-header .home-header-contact strong {
    display: inline;
    font-size: 13px;
    color: var(--ink);
    white-space: nowrap;
  }

  body:not(.home-page) .site-header {
    display: grid;
    grid-template-columns: minmax(144px, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "brand nav";
    align-items: center;
    gap: 8px 10px;
    min-height: 108px;
    padding: 9px 12px;
  }

  body:not(.home-page) .site-header .brand {
    grid-area: brand;
    align-self: center;
    min-width: 0;
  }

  body:not(.home-page) .site-header .brand-lockup {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  body:not(.home-page) .site-header .brand-wordmark {
    width: clamp(116px, 34vw, 150px);
  }

  body:not(.home-page) .site-header .brand-lockup small {
    display: block;
    max-width: 176px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    white-space: normal;
  }

  body:not(.home-page) .site-header .shared-header-actions,
  body:not(.home-page) .site-header .header-actions {
    grid-area: actions;
    justify-self: end;
    margin-left: 0;
    gap: 5px;
  }

  body:not(.home-page) .site-header .desktop-nav {
    grid-area: nav;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-end;
    justify-self: end;
    gap: 6px;
    width: auto;
    max-width: min(54vw, 310px);
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body:not(.home-page) .site-header .desktop-nav::-webkit-scrollbar {
    display: none;
  }

  body:not(.home-page) .site-header .desktop-nav a,
  body:not(.home-page) .site-header .desktop-nav .nav-disabled {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--muted);
    font-weight: 700;
    white-space: nowrap;
  }

  body:not(.home-page) .site-header .desktop-nav a[href*="contact"] {
    display: inline-flex !important;
    color: var(--ink);
  }

  body:not(.home-page) .site-header .desktop-nav .nav-disabled {
    display: none;
  }
}

@media (max-width: 420px) {
  .site-header .region-button {
    max-width: 78px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header .language-switch {
    flex: 0 0 auto;
  }

  body:not(.home-page) .site-header .desktop-nav {
    max-width: min(50vw, 230px);
  }

  body:not(.home-page) .site-header .desktop-nav a,
  body:not(.home-page) .site-header .desktop-nav .nav-disabled {
    padding: 7px 9px;
    font-size: 12px;
  }

  .home-page .site-header .home-header-contact {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home-page .site-header .home-header-contact::-webkit-scrollbar {
    display: none;
  }

  .home-page .site-header .home-header-contact strong {
    display: inline;
    font-size: 12px;
  }

  .home-page .site-header .home-header-contact a {
    width: auto;
    height: 34px;
    min-height: 34px;
    padding: 0 9px;
  }
}

/* Responsive header contract 2026-07-11 */
:root {
  --responsive-header-height: 92px;
  --brand-wordmark-width: clamp(116px, 10vw, 142px);
  --page-label-logo-inset: 0.423;
  --page-label-logo-offset: clamp(49px, 4.23vw, 60px);
}

html,
body {
  overflow-x: clip;
}

.site-header {
  isolation: isolate;
}

.site-header .header-actions,
.site-header .home-control-row,
.site-header .language-switch {
  min-width: 0;
  flex-wrap: nowrap;
}

.site-header .region-button,
.site-header .lang-button {
  flex: 0 0 auto;
  white-space: nowrap;
  word-break: keep-all;
}

.site-header .lang-button {
  white-space: nowrap;
}

.site-header .brand-wordmark {
  width: var(--brand-wordmark-width);
}

/* Keep each inner-page label aligned with the L in the LOCAL TALENT line. */
body:not(.home-page) .site-header .brand-lockup {
  display: grid;
  grid-template-columns: var(--page-label-logo-offset) minmax(0, 1fr);
  row-gap: 4px;
  width: min(100%, 420px);
}

body:not(.home-page) .site-header .brand-wordmark {
  grid-column: 1 / -1;
}

body:not(.home-page) .site-header .brand-lockup small {
  grid-column: 2;
  width: auto;
  max-width: min(28vw, 260px);
  margin-left: 0;
}

@media (min-width: 761px) and (max-width: 1120px) {
  html {
    scroll-padding-top: var(--responsive-header-height);
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    align-items: center;
    gap: 12px 18px;
    min-height: var(--responsive-header-height);
    padding: 12px clamp(20px, 3vw, 42px);
  }

  .site-header .brand {
    min-width: 0;
  }

  .site-header .brand-lockup {
    min-width: 0;
  }

  .site-header .brand-lockup small {
    max-width: min(30vw, 300px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header .header-actions {
    justify-self: end;
  }

  .site-header .language-switch {
    flex: 0 0 auto;
  }

  .site-header .lang-button {
    min-width: 48px;
    padding: 8px 12px;
  }

  .home-page .site-header .home-control-row {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-left: 0;
    overflow: visible;
  }

  .home-page .site-header .header-actions {
    order: 1;
  }

  .home-page .site-header .home-header-contact {
    order: 2;
    display: flex !important;
    flex: 0 0 auto;
    width: auto;
    gap: 7px;
    padding: 0;
    overflow: visible;
  }

  .home-page .site-header .home-header-contact a {
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
  }

  .home-page .site-header .home-header-contact strong {
    display: none;
  }

  /* Keep the inner-page navigation beside its controls until the mobile layout is necessary. */
  body:not(.home-page) .site-header {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: clamp(10px, 2vw, 24px);
  }

  body:not(.home-page) .site-header .desktop-nav {
    order: initial;
    flex: 0 0 auto;
    width: auto;
    padding: 0;
    overflow: visible;
  }

  body:not(.home-page) .site-header .shared-header-actions,
  body:not(.home-page) .site-header .header-actions {
    flex: 0 0 auto;
    justify-self: auto;
  }

  .home-page .brand-hero {
    scroll-margin-top: var(--responsive-header-height);
  }

  .brand-hero .hero-copy {
    gap: 10px;
    width: min(720px, 68%);
    padding: 18px clamp(24px, 3vw, 38px) 22px;
  }

  .brand-hero h1 {
    margin-bottom: 6px;
    font-size: clamp(28px, 4vw, 38px);
  }

  .brand-hero .hero-text {
    font-size: 13px;
  }

  .brand-hero .region-status {
    margin-top: 5px;
    font-size: 12px;
  }

  .brand-hero .hero-actions {
    gap: 7px;
  }

  .brand-hero .primary-button,
  .brand-hero .secondary-button {
    min-height: 38px;
    padding: 0 15px;
    font-size: 12px;
  }
}

@media (max-width: 760px) {
  :root {
    --responsive-header-height: 122px;
    --brand-wordmark-width: 150px;
    --page-label-logo-offset: 63.45px;
  }

  html {
    scroll-padding-top: var(--responsive-header-height);
  }

  .site-header {
    min-height: 0;
  }

  .home-page .site-header {
    display: grid;
    grid-template-columns: minmax(154px, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "label contact";
    align-items: center;
    gap: 8px 10px;
    padding: 10px 14px;
  }

  .home-page .site-header .brand {
    grid-area: 1 / 1 / 3 / 2;
    align-self: stretch;
    min-width: 0;
  }

  .home-page .site-header .brand-lockup {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .home-page .site-header .brand-wordmark {
    width: var(--brand-wordmark-width);
    max-width: 100%;
  }

  .home-page .site-header .brand-lockup small {
    display: block;
    width: auto;
    max-width: none;
    margin-left: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-page .site-header .home-control-row {
    display: contents !important;
  }

  .home-page .site-header .header-actions {
    grid-area: actions;
    justify-self: end;
    gap: 5px;
  }

  .home-page .site-header .home-header-contact {
    grid-area: contact;
    display: flex !important;
    justify-self: end;
    justify-content: flex-end;
    width: auto;
    gap: 6px;
    padding: 0;
    overflow: visible;
  }

  .home-page .site-header .home-header-contact a {
    width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
  }

  .home-page .site-header .home-header-contact strong {
    display: none;
  }

  .home-page .site-header .region-button {
    max-width: 78px;
    min-height: 36px;
    padding: 7px 11px;
    font-size: 13px;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .home-page .site-header .lang-button {
    min-width: 38px;
    padding: 7px 9px;
    font-size: 13px;
  }

  body:not(.home-page) .site-header {
    grid-template-columns: minmax(154px, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "brand nav";
    gap: 8px 10px;
    min-height: 0;
    padding: 10px 14px;
  }

  body:not(.home-page) .site-header .desktop-nav {
    max-width: min(56vw, 300px);
  }

  body:not(.home-page) .site-header .brand-lockup {
    display: grid;
    grid-template-columns: var(--page-label-logo-offset) minmax(0, 1fr);
    row-gap: 4px;
    width: min(100%, 420px);
  }

  body:not(.home-page) .site-header .brand-wordmark {
    grid-column: 1 / -1;
  }

  body:not(.home-page) .site-header .brand-lockup small {
    grid-column: 2;
    width: auto;
    max-width: none;
    margin-left: 0;
  }

  .home-page .brand-hero {
    scroll-margin-top: var(--responsive-header-height);
  }
}

@media (max-width: 430px) {
  :root {
    --responsive-header-height: 116px;
    --brand-wordmark-width: 128px;
    --page-label-logo-offset: 54.14px;
  }

  .home-page .site-header,
  body:not(.home-page) .site-header {
    grid-template-columns: minmax(132px, 1fr) auto;
    padding: 9px 10px;
  }

  .home-page .site-header .brand-wordmark,
  body:not(.home-page) .site-header .brand-wordmark {
    width: var(--brand-wordmark-width);
  }

  .home-page .site-header .brand-lockup small,
  body:not(.home-page) .site-header .brand-lockup small {
    font-size: 11px;
  }

  .home-page .site-header .home-header-contact {
    justify-content: flex-end;
    overflow: visible;
  }

  .home-page .site-header .home-header-contact a {
    width: 32px;
    height: 32px;
    min-height: 32px;
    padding: 0;
  }

  body:not(.home-page) .site-header .desktop-nav {
    max-width: 56vw;
  }
}

/* Bilingual typography normalization 2026-07-12 */
:root {
  --display-size-adjust: 1;
  --body-size-adjust: 1;
  --ui-size-adjust: 1;
  --price-size-adjust: 1;
  --lt-display-scale: var(--display-size-adjust);
  --lt-body-scale: var(--body-size-adjust);
  --lt-ui-scale: var(--ui-size-adjust);
  --lt-price-scale: var(--price-size-adjust);
  --type-display-xl: clamp(34px, 3.6vw, 52px);
  --type-display-lg: 38px;
  --type-display-md: 30px;
  --type-display-sm: 18px;
  --type-body-lg: 17px;
  --type-body-md: 14px;
  --type-ui-md: 14px;
  --type-ui-sm: 13px;
  --type-price-lg: 28px;
  --type-price-md: 20px;
}

html[lang="zh-Hant"] {
  --display-size-adjust: 1;
  --body-size-adjust: 1;
  --ui-size-adjust: 1;
  --price-size-adjust: 1;
}

html[lang="en"] {
  --display-size-adjust: 0.92;
  --body-size-adjust: 0.96;
  --ui-size-adjust: 0.96;
  --price-size-adjust: 0.94;
  --type-display-xl: clamp(31px, 3.35vw, 48px);
  --type-display-lg: 35px;
  --type-display-md: 28px;
  --type-display-sm: 17px;
  --type-body-lg: 16px;
  --type-body-md: 13.5px;
  --type-ui-md: 13.5px;
  --type-ui-sm: 12.5px;
  --type-price-lg: 26px;
  --type-price-md: 19px;
}

.brand-detail-hero h1,
.alpha-step-hero h1,
.cinematic-hero h1 {
  font-size: var(--type-display-xl);
  line-height: 1.12;
}

.section-heading h2,
.flow-section .section-heading h2,
.alpha-step-block .section-heading h2,
.alpha-price-panel h3 {
  font-size: var(--type-display-md);
  line-height: 1.16;
}

.hero-text,
.custom-hero-description {
  font-size: var(--type-body-lg);
  line-height: 1.72;
}

.section-heading p,
.muted,
.product-body p,
.model-card p,
.process-grid p,
.option-card p,
.contact-card p {
  font-size: var(--type-body-md);
  line-height: 1.66;
}

.primary-button,
.secondary-button,
.process-cta,
.desktop-nav a,
.desktop-nav .nav-disabled,
.region-button,
.lang-button,
.filter-row a,
.contact-button {
  font-size: var(--type-ui-md);
  line-height: 1.18;
}

.eyebrow,
.tag,
.badge,
.section-title-label,
.brand small {
  font-size: var(--type-ui-sm);
}

.model-card strong,
.product-body h3 {
  font-size: var(--type-display-sm);
  line-height: 1.22;
}

.product-price-row strong,
.price-table dd,
.alpha-price-panel dd {
  font-size: var(--type-price-md);
  line-height: 1.16;
}

@media (max-width: 760px) {
  :root {
    --type-display-xl: 32px;
    --type-display-lg: 30px;
    --type-display-md: 26px;
    --type-display-sm: 17px;
    --type-body-lg: 16px;
    --type-body-md: 14px;
    --type-ui-md: 14px;
    --type-ui-sm: 12px;
    --type-price-lg: 26px;
    --type-price-md: 19px;
  }

  html[lang="en"] {
    --type-display-xl: 30px;
    --type-display-lg: 28px;
    --type-display-md: 24px;
    --type-display-sm: 16px;
    --type-body-lg: 15px;
    --type-body-md: 13.5px;
    --type-ui-md: 13px;
    --type-ui-sm: 11.5px;
    --type-price-lg: 24px;
    --type-price-md: 18px;
  }
}

/* Alpha order form compact typography */
.alpha-step-page .alpha-form-block .section-heading h2 {
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.2;
}

.alpha-step-page .alpha-form-block .section-heading .muted {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.65;
}

.alpha-step-page .alpha-form-block .request-form {
  padding: 24px;
}

.alpha-step-page .alpha-form-block .form-fieldset legend,
.alpha-step-page .alpha-form-block .request-form > label {
  font-size: 13px;
  line-height: 1.35;
}

.alpha-step-page .alpha-form-block .alpha-choice-fieldset label,
.alpha-step-page .alpha-form-block .alpha-choice-fieldset label span {
  font-size: 12.5px;
}

.alpha-step-page .alpha-price-panel {
  padding: 16px 18px;
}

.alpha-step-page .alpha-price-panel h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
}

.alpha-step-page .alpha-price-panel dl div {
  grid-template-columns: minmax(120px, .7fr) minmax(0, 1.3fr);
  gap: 14px;
  padding: 8px 0;
}

.alpha-step-page .alpha-price-panel dt {
  min-width: 0;
  font-size: 13px;
  line-height: 1.4;
}

.alpha-step-page .alpha-price-panel dd {
  min-width: 0;
  font-size: 17px;
  line-height: 1.28;
  white-space: normal;
  overflow-wrap: anywhere;
}

.alpha-step-page .alpha-price-panel p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .alpha-step-page .alpha-form-block .section-heading {
    margin-bottom: 20px;
  }

  .alpha-step-page .alpha-form-block .section-heading h2 {
    margin: 12px 0 10px;
    font-size: 25px;
  }

  .alpha-step-page .alpha-form-block .section-heading .muted {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .alpha-step-page .alpha-form-block .request-form {
    gap: 8px;
    padding: 16px;
  }

  .alpha-step-page .alpha-form-block .form-fieldset,
  .alpha-step-page .form-fieldset {
    padding: 13px;
  }

  .alpha-step-page .alpha-form-block .form-fieldset legend,
  .alpha-step-page .alpha-form-block .request-form > label {
    font-size: 12.5px;
  }

  .alpha-step-page .alpha-form-block .alpha-choice-fieldset label,
  .alpha-step-page .alpha-form-block .alpha-choice-fieldset label span {
    font-size: 12px;
  }

  .alpha-step-page .alpha-price-panel {
    padding: 13px 14px;
  }

  .alpha-step-page .alpha-price-panel h3 {
    font-size: 20px;
  }

  .alpha-step-page .alpha-price-panel dl div {
    grid-template-columns: minmax(96px, .75fr) minmax(0, 1.25fr);
    gap: 10px;
    padding: 7px 0;
  }

  .alpha-step-page .alpha-price-panel dt {
    font-size: 12px;
  }

  .alpha-step-page .alpha-price-panel dd {
    font-size: 15px;
  }

.alpha-step-page .alpha-price-panel p {
  font-size: 11.5px;
}
}

/* MB model pricing: preserve hierarchy without letting amounts dominate. */
.mb-model-page .price-table dd {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.mb-model-page .choice-row strong,
.mb-model-page .addon-option strong,
.mb-model-page #carbonPrice {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.mb-model-page .total-panel dd {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 760px) {
  .site-footer {
    width: min(100% - 28px, 1180px);
    padding: 20px 0 24px;
  }

  .site-footer-copyright {
    font-size: 12px;
    line-height: 1.7;
  }
}

@media (max-width: 760px) {
  .mb-model-page .price-table dd,
  .mb-model-page .total-panel dd {
    font-size: 15px;
  }
}

/* Alpha mobile form density pass */
@media (max-width: 760px) {
  .alpha-step-page .alpha-form-block .request-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 10px;
  }

  .alpha-step-page .alpha-form-block .request-form > .wide,
  .alpha-step-page .alpha-form-block .form-note-field,
  .alpha-step-page .alpha-form-block .form-submit-button {
    grid-column: 1 / -1;
  }

  .alpha-choice-fieldset .choice-list.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alpha-choice-fieldset .choice-list.addon-choice-list {
    grid-template-columns: 1fr;
  }

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

  .alpha-choice-fieldset label,
  .alpha-form-block .alpha-choice-fieldset label {
    min-height: 38px;
    padding: 9px 10px;
  }
}
