:root {
  color-scheme: light;
  --ink: #181614;
  --muted: #6a625e;
  --line: #dfddda;
  --surface: #ffffff;
  --surface-alt: #f3f2f0;
  --field: #f8f7f6;
  --burgundy: #790913;
  --burgundy-dark: #56060d;
  --charcoal: #171b1b;
  --olive: #4f5544;
  --brass: #92724c;
  --warning: #7a3717;
  --success: #215b3e;
  --shadow: 0 18px 45px rgba(24, 22, 20, 0.1);
  --radius: 6px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-display: var(--font-sans);
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
  min-width: 218px;
  text-decoration: none;
  font-weight: 750;
}

.brand-logo-mark {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #fff;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
  line-height: 1;
}

.brand-logo-wordmark {
  display: block;
  width: 150px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.brand small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 650;
  text-transform: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.primary-nav {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  min-width: 0;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav a[aria-current="page"] {
  background: var(--surface-alt);
  color: var(--ink);
}

.primary-nav .nav-whatsapp {
  background: #1f7a4d;
  color: #fff;
}

.primary-nav .nav-whatsapp:hover,
.primary-nav .nav-whatsapp:focus {
  background: #18623e;
  color: #fff;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: 6px;
  border-left: 1px solid var(--line);
}

.language-switch span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.language-switch select {
  min-height: 36px;
  max-width: 118px;
  padding: 6px 28px 6px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
}

.primary-nav .nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.primary-nav .nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: min(72vw, 680px);
  height: 12px;
}

.nav-dropdown__trigger::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 5px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  opacity: 0.72;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(76vw, 720px);
  max-height: min(76vh, 720px);
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.985);
  transform-origin: top left;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-dropdown:not(.is-dismissed):hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.primary-nav .nav-dropdown__menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 34px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  white-space: nowrap;
}

.primary-nav .nav-dropdown__menu a:hover,
.primary-nav .nav-dropdown__menu a:focus {
  border-color: var(--line);
  background: var(--surface-alt);
}

.primary-nav .nav-dropdown__menu .nav-dropdown__all {
  grid-column: 1 / -1;
  min-height: 38px;
  border-color: rgba(140, 12, 27, 0.16);
  background: rgba(140, 12, 27, 0.06);
}

.nav-dropdown__group {
  display: grid;
  align-content: start;
  gap: 4px;
  min-width: 0;
  padding: 6px;
  border: 1px solid rgba(24, 22, 20, 0.08);
  border-radius: 4px;
  background: rgba(248, 246, 242, 0.58);
}

.primary-nav .nav-dropdown__menu .nav-dropdown__group-title {
  min-height: 30px;
  padding: 5px 7px;
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 760;
}

.nav-dropdown__menu strong {
  color: var(--ink);
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.2;
  text-overflow: clip;
}

.nav-dropdown__menu span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 20px;
  padding: 0 6px;
  border-radius: 4px;
  background: var(--surface-alt);
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1;
}

.quote-link {
  position: relative;
  border: 1px solid var(--burgundy);
  color: var(--burgundy-dark) !important;
}

[data-cart-count] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--burgundy);
  color: #fff;
  font-size: 12px;
  font-weight: 750;
}

[data-cart-count][data-empty] {
  background: var(--line);
  color: var(--muted);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 500px;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(121, 9, 19, 0.07), transparent 42%),
    linear-gradient(180deg, var(--surface), var(--surface-alt));
}

.page-hero--compact {
  min-height: 430px;
}

.catalog-hero {
  align-items: start;
  min-height: 0;
  padding-block: clamp(28px, 4vw, 42px);
}

.catalog-hero h1 {
  font-size: 3.25rem;
  line-height: 1.06;
}

.catalog-hero .hero-visual img {
  max-height: 280px;
  aspect-ratio: 16 / 9;
}

.home-hero {
  position: relative;
  display: block;
  min-height: 430px;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.18) 68%, rgba(255, 255, 255, 0) 100%);
}

.home-hero > div {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.home-hero .hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-hero .hero-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center right;
}

.home-hero .hero-visual figcaption {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 18px;
  max-width: 360px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
}

.page-hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 4.35rem;
  font-weight: 720;
  line-height: 1.06;
  letter-spacing: 0;
}

.page-hero--compact h1 {
  font-size: 3.4rem;
}

.page-hero.catalog-hero h1 {
  font-size: 3.25rem;
}

.page-hero p {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--burgundy-dark);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions,
.card-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--burgundy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(121, 9, 19, 0.2);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button-whatsapp {
  border-color: rgba(33, 91, 62, 0.45);
  color: var(--success);
}

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

.text-link:hover {
  text-decoration: underline;
}

.hero-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media__grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  height: 100%;
  min-height: 360px;
}

.hero-media__main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(121, 9, 19, 0.12), transparent 42%),
    repeating-linear-gradient(135deg, rgba(79, 85, 68, 0.08) 0 8px, rgba(79, 85, 68, 0.02) 8px 18px),
    #eef5f2;
}

.hero-media__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-left: 1px solid var(--line);
}

.hero-media__side div {
  padding: 18px;
}

.hero-media__side div + div {
  border-top: 1px solid var(--line);
}

.hero-visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-hero:not(.home-hero) .hero-visual {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: auto;
  max-width: 640px;
}

.page-hero:not(.home-hero) .hero-visual img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(340px, 40vh);
  aspect-ratio: auto;
  object-fit: contain;
}

.hero-visual figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

body[data-page="our-factory"] .page-hero .hero-visual img {
  max-height: min(320px, 38vh);
  object-position: center;
}

.media-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.media-proof {
  max-width: 260px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 750;
}

.section {
  padding: clamp(38px, 5vw, 72px) clamp(18px, 5vw, 72px);
}

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

.section-tight {
  padding-top: clamp(28px, 4vw, 48px);
}

.surface-muted {
  background: var(--surface-alt);
}

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

.section-heading h2,
.two-column h2,
.option-panel h2,
.quote-panel h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 2.45rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p,
.two-column p {
  color: var(--muted);
}

.path-grid,
.category-grid,
.reference-grid,
.case-grid,
.faq-grid,
.option-grid,
.audience-grid,
.evidence-grid {
  display: grid;
  gap: 18px;
}

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

.category-grid {
  grid-template-columns: repeat(5, minmax(160px, 1fr));
}

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

.case-grid,
.faq-grid,
.audience-grid,
.evidence-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-copy-section .section-heading {
  max-width: 920px;
}

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

.category-content-grid .option-card {
  min-height: 160px;
}

.category-link-card {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
}

.category-link-card:hover,
.category-link-card:focus {
  border-color: rgba(121, 9, 19, 0.36);
  box-shadow: 0 12px 28px rgba(22, 31, 38, 0.08);
}

.category-link-card strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.category-link-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.material-guide {
  display: grid;
  gap: 26px;
}

.material-guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
}

.material-guide-copy {
  display: grid;
  gap: 15px;
  max-width: 680px;
}

.material-guide-copy p {
  margin: 0;
  color: var(--muted);
}

.guide-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.featured-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
}

.featured-guide__copy {
  display: grid;
  gap: 14px;
  max-width: 680px;
}

.featured-guide__copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.featured-guide__copy p {
  margin: 0;
  color: var(--muted);
}

.featured-guide__media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.featured-guide__media figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--field);
}

.featured-guide__media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.material-guide-media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.material-guide-media figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--field);
}

.material-guide-media figure:first-child {
  grid-row: span 2;
}

.material-guide-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.material-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.material-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.material-table th,
.material-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.material-table th {
  background: var(--surface-alt);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.material-table td {
  color: var(--muted);
}

.material-table tr:last-child td {
  border-bottom: 0;
}

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

.guide-panel {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.guide-panel h3 {
  margin: 0 0 9px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.25;
}

.guide-panel p {
  color: var(--muted);
}

.guide-panel a {
  color: var(--burgundy-dark);
  font-weight: 760;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.guide-topic-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.guide-topic-card .asset-figure {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
}

.guide-topic-card .asset-figure img {
  padding: 8px;
  object-fit: contain;
}

.guide-topic-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.guide-topic-card__body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.guide-topic-card .eyebrow {
  margin: 0;
}

.guide-topic-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.25;
}

.guide-topic-card h3 a {
  color: inherit;
  text-decoration: none;
}

.guide-topic-card h3 a:hover,
.guide-topic-card h3 a:focus {
  color: var(--burgundy-dark);
}

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

.guide-topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding-top: 4px;
}

.guide-topic-links a {
  color: var(--burgundy-dark);
  font-size: 0.88rem;
  font-weight: 760;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.guide-article-hero .hero-visual img {
  object-fit: cover;
}

.guide-section-tabs {
  top: 68px;
}

.guide-article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 72px);
}

.guide-article-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow-wrap: anywhere;
  gap: 34px;
  min-width: 0;
  max-width: 940px;
}

.guide-article-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  gap: 16px;
  scroll-margin-top: 142px;
}

.guide-article-section h2,
.guide-article-section h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.16;
  letter-spacing: 0;
}

.guide-article-hero h1 {
  overflow-wrap: anywhere;
}

.guide-article-section h2 {
  font-size: 2.15rem;
}

.guide-article-section h3 {
  font-size: 1.24rem;
}

.guide-article-section p {
  margin: 0;
  color: var(--muted);
}

.guide-article-section ul,
.guide-article-section ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.guide-article-section li::marker {
  color: var(--burgundy);
  font-weight: 800;
}

.guide-callout {
  padding: 18px 20px;
  border-left: 4px solid var(--burgundy);
  background: var(--surface-alt);
}

.guide-callout strong {
  color: var(--ink);
}

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

.guide-image-row figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--field);
}

.guide-image-row img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.guide-note {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.guide-note h3 {
  margin-bottom: 8px;
}

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

.related-product-card {
  display: grid;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
}

.related-product-card img {
  display: block;
  width: 100%;
  height: 220px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  background: var(--field);
  object-fit: contain;
}

.related-product-card span {
  display: grid;
  gap: 6px;
  padding: 15px;
}

.related-product-card strong {
  font-family: var(--font-display);
  line-height: 1.2;
}

.related-product-card small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.related-product-card:hover strong,
.related-product-card:focus strong {
  color: var(--burgundy-dark);
}

.guide-aside {
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  position: sticky;
  top: 142px;
  display: grid;
  gap: 16px;
}

.guide-aside-panel {
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.guide-aside-panel h2,
.guide-aside-panel h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.2;
}

.guide-aside-panel p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.guide-aside-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-aside-panel li {
  color: var(--muted);
  font-size: 0.9rem;
}

.guide-aside-panel a {
  color: var(--burgundy-dark);
  font-weight: 760;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.path-card,
.category-card,
.reference-card,
.case-card,
.option-card,
.audience-card,
.evidence-card,
.detail-card,
.factory-card,
.quote-panel,
.option-panel,
.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.path-card,
.case-card,
.option-card,
.audience-card,
.evidence-card,
.quote-panel,
.empty-state {
  padding: 22px;
}

.category-card__link {
  display: block;
  height: 100%;
  padding: 22px;
  color: inherit;
  text-decoration: none;
}

.path-card h3,
.category-card h3,
.reference-card h3,
.case-card h3,
.option-card h3,
.audience-card h3,
.evidence-card h3,
.detail-card h3,
.factory-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 720;
  font-size: 1.08rem;
  line-height: 1.25;
}

.category-card h3 a,
.reference-card h3 a,
.related-reference-card h3 a {
  color: inherit;
  text-decoration: none;
}

.category-card h3 a:hover,
.category-card h3 a:focus,
.reference-card h3 a:hover,
.reference-card h3 a:focus,
.related-reference-card h3 a:hover,
.related-reference-card h3 a:focus {
  color: var(--burgundy-dark);
}

.path-card p,
.category-card p,
.reference-card p,
.case-card p,
.option-card p,
.audience-card p,
.evidence-card p,
.detail-card p,
.factory-card p {
  color: var(--muted);
}

.path-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.category-card,
.reference-card {
  overflow: hidden;
}

.reference-card {
  display: flex;
  flex-direction: column;
}

.category-card__image-link,
.reference-card__image-link {
  display: block;
  background: var(--field);
  color: inherit;
  text-decoration: none;
}

.category-card .asset-figure {
  aspect-ratio: 4 / 3;
  background: var(--field);
}

.category-card .asset-figure img {
  padding: 10px;
  object-fit: contain;
}

.reference-card .asset-figure {
  aspect-ratio: 4 / 3;
  background: var(--field);
}

.reference-card .asset-figure img {
  padding: 8px;
  object-fit: contain;
}

.category-card__body,
.reference-card__body {
  padding: 18px;
}

.category-card__body {
  padding: 14px;
}

.category-card p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.asset-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--surface-alt);
}

.asset-figure img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.hero-media .asset-figure {
  aspect-ratio: 4 / 3;
}

.asset-figure figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.tag-row span,
.status-badge,
.reference-id,
.tier-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
}

.tag-row span {
  padding: 4px 9px;
  background: var(--surface-alt);
  color: var(--muted);
}

.status-badge {
  padding: 4px 9px;
  background: #fff5ed;
  color: var(--warning);
}

.reference-id {
  color: var(--burgundy-dark);
}

.tier-badge {
  padding: 4px 9px;
  background: #f4efe9;
  color: var(--muted);
}

.tier-badge[data-tier="core"] {
  background: #e9f4ed;
  color: var(--success);
}

.tier-badge[data-tier="hold"] {
  background: #fff0ec;
  color: #8c2d16;
}

.reference-card--core {
  border-color: rgba(33, 91, 62, 0.38);
}

.reference-card--hold {
  background: #fffaf8;
}

.reference-card__top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.catalog-category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.reference-card h3 a {
  color: inherit;
  text-decoration: none;
}

.reference-card h3 a:hover,
.reference-card h3 a:focus {
  color: var(--burgundy-dark);
}

.catalog-selling-points {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0;
}

.catalog-selling-points span {
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 740;
  line-height: 1.25;
}

.catalog-card-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}

.catalog-card-facts div {
  min-width: 0;
  padding: 9px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-alt);
}

.catalog-card-facts dt {
  font-size: 0.68rem;
}

.catalog-card-facts dd {
  margin-top: 3px;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.22;
}

.reference-card .card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.reference-card .card-actions .button {
  min-height: 40px;
  padding: 8px 10px;
  font-size: 0.84rem;
  line-height: 1.2;
}

.reference-card .card-actions .button:last-child {
  grid-column: 1 / -1;
}

.mini-list,
.stacked-list {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.mini-list div,
.stacked-list div {
  display: grid;
  gap: 3px;
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.check-list,
.evidence-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list li,
.evidence-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before,
.evidence-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--burgundy);
  border-radius: 999px;
  transform: translateY(-50%);
}

.option-panel {
  padding: 22px;
  background: var(--surface-alt);
}

.support-media-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.support-media-figure {
  aspect-ratio: 16 / 9;
}

.support-media-copy {
  padding: 22px;
}

.support-media-copy h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

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

.home-ecommerce-photo {
  margin: 0 0 24px;
  min-width: 0;
}

.home-ecommerce-photo img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: contain;
}

.service-card-grid,
.buyer-fit-grid {
  display: grid;
  gap: 16px;
}

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

.service-card {
  display: grid;
  gap: 12px;
  min-height: 260px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-card span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--burgundy-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.service-card h3,
.buyer-fit-grid h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.service-card p,
.buyer-fit-grid p {
  margin: 0;
  color: var(--muted);
}

.service-card strong {
  align-self: end;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.35;
}

.workflow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 2px 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-alt);
}

.workflow-list span {
  display: grid;
  width: 28px;
  height: 28px;
  grid-row: span 2;
  place-items: center;
  border-radius: 999px;
  background: var(--burgundy);
  color: white;
  font-size: 0.78rem;
  font-weight: 850;
}

.workflow-list strong {
  line-height: 1.25;
}

.workflow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.buyer-fit-grid article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

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

.option-block {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.option-block ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.option-block p {
  color: var(--muted);
}

.photo-grid,
.evidence-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.evidence-photo-grid figure { margin: 0; min-width: 0; }
.shipment-record { margin: 20px 0 28px; }
.shipment-record img { display: block; width: 100%; height: auto; object-fit: contain; }
.shipment-record figcaption { margin-top: 12px; }
#home-load-more { min-width: 190px; }
#home-load-status { min-height: 1.6em; }
.evidence-photo-grid img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; }
.evidence-photo-grid figcaption { padding: 14px 0; }
.evidence-photo-grid figcaption strong, .evidence-photo-grid figcaption span { display: block; }
.sampling-case-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); list-style-position: inside; padding-left: 0; }
.sampling-case-steps li { padding: 16px 0; }
#packing-example, #australian-sampling-case { scroll-margin-top: 110px; }
@media (max-width: 700px) { .sampling-case-steps { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .evidence-photo-grid { grid-template-columns: 1fr; } }

.support-photo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

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

.photo-card .asset-figure {
  aspect-ratio: 4 / 3;
}

.photo-card > div {
  padding: 14px;
}

.photo-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
}

.photo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.option-card {
  overflow: hidden;
}

.option-card .asset-figure {
  margin: -22px -22px 16px;
  aspect-ratio: 16 / 10;
}

.support-photo-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.support-photo-row .asset-figure {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
}

.service-visual {
  aspect-ratio: 16 / 9;
}

.service-visual img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  background: var(--surface-alt);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 130px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-weight: 750;
}

.process-list span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 999px;
  background: var(--burgundy);
  color: white;
  font-size: 0.9rem;
}

.filters {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 220px 220px;
  gap: 12px;
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-alt);
}

.readiness-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.readiness-strip article {
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.readiness-strip span {
  display: block;
  color: var(--burgundy-dark);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 760;
  line-height: 1;
}

.readiness-strip strong {
  display: block;
  margin-top: 8px;
}

.readiness-strip p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.category-chips button {
  min-height: 38px;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 750;
}

.category-chips button[aria-pressed="true"] {
  border-bottom-color: var(--burgundy);
  color: var(--burgundy-dark);
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.service-nav a {
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.service-nav a:hover,
.service-nav a:focus {
  background: var(--surface-alt);
  color: var(--ink);
}

#support-overview,
#amazon-fba,
#order-workflow,
#dtc-dropshipping,
#buyer-fit,
#fulfillment,
#custom-packaging,
#overseas-warehouse,
#prepare,
#support-faq,
#start-paths,
#materials,
#material-library,
#construction-details,
#branding-options,
#sampling,
#packaging,
#buyer-programs,
#quote-prep,
#dtc-support,
#company-profile,
#factory-visual-story {
  scroll-margin-top: 92px;
}

.detail-card,
.factory-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.detail-card h3,
.detail-card p,
.factory-card h3,
.factory-card p {
  padding-inline: 0;
}

.detail-card .asset-figure,
.factory-card .asset-figure {
  margin-bottom: 12px;
  border-radius: var(--radius);
}

.manufacturing-band {
  background: radial-gradient(circle at 20% 0%, rgba(146, 114, 76, 0.18), transparent 32%), var(--charcoal);
  color: #fff;
}

.manufacturing-band .eyebrow,
.manufacturing-band p,
.manufacturing-band .asset-figure figcaption {
  color: rgba(255, 255, 255, 0.76);
}

.manufacturing-band .section-heading p,
.manufacturing-band .factory-card p {
  color: rgba(255, 255, 255, 0.78);
}

.manufacturing-band .factory-card {
  color: #fff;
}

.factory-visual-story {
  background: var(--surface);
}

.factory-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 18px;
  align-items: start;
}

.factory-featured-media,
.factory-support-media figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.factory-featured-media img,
.factory-support-media img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.factory-featured-media img {
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
}

.factory-featured-media figcaption,
.factory-support-media figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  width: fit-content;
  max-width: calc(100% - 24px);
  border-radius: var(--radius);
  background: rgba(24, 22, 20, 0.74);
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
}

.factory-featured-media figcaption {
  padding: 10px 12px;
}

.factory-support-media {
  display: grid;
  gap: 18px;
}

.factory-support-media figure {
  aspect-ratio: 4 / 3;
}

.factory-support-media img {
  height: 100%;
  aspect-ratio: auto;
}

.factory-support-media figcaption {
  padding: 8px 10px;
  font-size: 0.88rem;
}

.factory-process-flow {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.factory-process-step {
  display: grid;
  grid-template-columns: 58px minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.factory-step-number {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.86rem;
  font-weight: 800;
}

.factory-process-step .asset-figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.factory-process-step .asset-figure img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.factory-process-copy h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.18;
}

.factory-process-copy p {
  margin: 0;
  max-width: 560px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--field);
  color: var(--ink);
  padding: 10px 12px;
}

.field-note {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

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

input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
  outline: 3px solid rgba(19, 118, 105, 0.28);
  outline-offset: 2px;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.quote-intake {
  background:
    linear-gradient(120deg, rgba(121, 9, 19, 0.06), transparent 36%),
    var(--surface);
}

.quote-intake__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 22px;
}

.quote-intake h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 3.55rem;
  font-weight: 720;
  line-height: 1.06;
  letter-spacing: 0;
}

.quote-intake__head p {
  max-width: 700px;
  color: var(--muted);
}

.quote-status-inline,
.quote-guardrails {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-alt);
}

.quote-status-inline strong,
.quote-guardrails strong {
  color: var(--burgundy-dark);
}

.quote-status-inline span,
.quote-guardrails p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-guardrails {
  margin-top: 16px;
  background: var(--surface);
}

.product-model-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  padding: clamp(34px, 5vw, 64px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(121, 9, 19, 0.06), transparent 42%),
    linear-gradient(180deg, #fff, var(--surface-alt));
}

.product-model-media,
.product-model-copy {
  min-width: 0;
}

.product-media-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  background: var(--field);
}

.gallery-main-button {
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  place-items: center;
  background: var(--field);
  cursor: zoom-in;
}

.product-media-card figcaption {
  padding: 11px 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.product-breadcrumb a {
  color: var(--burgundy-dark);
  text-decoration: none;
}

.product-breadcrumb a:hover,
.product-breadcrumb a:focus {
  text-decoration: underline;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(24, 22, 20, 0.66);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  transform: translateY(-50%);
  cursor: pointer;
}

.gallery-nav--prev {
  left: 12px;
}

.gallery-nav--next {
  right: 12px;
}

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scroll-snap-type: x mandatory;
}

.product-gallery-thumbs button {
  flex: 0 0 clamp(124px, 23vw, 160px);
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
}

.product-gallery-thumbs button[aria-pressed="true"] {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 2px rgba(121, 9, 19, 0.13);
}

.product-gallery-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--field);
}

.product-gallery-thumbs span {
  display: block;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.2;
}

.product-gallery-highres {
  font-size: 0.9rem;
}

.product-gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.product-gallery-actions .button {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.product-section-tabs {
  position: sticky;
  top: 68px;
  z-index: 14;
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0 clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(24, 22, 20, 0.06);
  scroll-snap-type: x proximity;
}

.product-section-tabs a {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  scroll-snap-align: start;
}

.product-section-tabs a:hover,
.product-section-tabs a:focus,
.product-section-tabs a[aria-current="true"] {
  color: var(--burgundy-dark);
}

.product-section-tabs a[aria-current="true"] {
  border-bottom-color: var(--burgundy);
}

#product-details,
#product-specs,
#product-pricing,
#product-customization,
#product-process,
#product-faq,
#product-quote {
  scroll-margin-top: 142px;
}

.gallery-zoom {
  width: min(1100px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gallery-zoom::backdrop {
  background: rgba(24, 22, 20, 0.72);
}

.gallery-zoom img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  background: var(--surface-alt);
}

.gallery-zoom p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.gallery-zoom__close {
  display: block;
  margin: 0 0 12px auto;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-alt);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 750;
  cursor: pointer;
}

.product-model-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 3.55rem;
  font-weight: 720;
  line-height: 1.06;
  letter-spacing: 0;
}

.product-lede {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-option-panel {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

.product-option-head {
  display: grid;
  gap: 4px;
}

.product-option-head span {
  color: var(--burgundy-dark);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
}

.product-option-head strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 720;
  line-height: 1.25;
}

.product-option-row {
  display: grid;
  gap: 10px;
}

.product-option-row > span {
  color: var(--burgundy-dark);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
}

.color-swatch-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-swatch-group label {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.color-swatch-group input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.color-swatch-group label:has(input:checked) {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 2px rgba(121, 9, 19, 0.13);
}

.color-swatch {
  width: 18px;
  height: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--swatch);
}

.color-swatch-group strong {
  font-size: 0.85rem;
}

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

.product-actions {
  margin: 18px 0;
}

.product-actions .button {
  min-width: 148px;
}

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

.product-term-card {
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.product-term-card span {
  color: var(--burgundy-dark);
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
}

.product-term-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  line-height: 1.25;
}

.product-term-card p,
.product-disclaimer,
.product-privacy-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.product-term-card p {
  margin: 10px 0 0;
}

.product-disclaimer {
  max-width: 720px;
  margin: 16px 0 0;
}

.product-customization-section,
.product-info-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.product-customization-section h2,
.product-spec-panel h2,
.product-process-panel h2,
.product-inquiry-band h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.product-customization-section p {
  color: var(--muted);
}

.customization-card-grid,
.related-reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.customization-card,
.product-spec-panel,
.product-process-panel,
.related-reference-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.customization-card {
  padding: 18px;
}

.customization-card h3,
.related-reference-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 720;
  line-height: 1.25;
}

.customization-card p,
.related-reference-card p {
  color: var(--muted);
}

.customization-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.product-info-section {
  background: var(--surface-alt);
}

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

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

.product-dossier-panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--field);
}

.product-dossier-panel h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 720;
  line-height: 1.25;
}

.product-dossier-panel ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.product-attribute-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.product-attribute-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.product-attribute-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-attribute-list dt,
.price-tier-list span {
  color: var(--burgundy-dark);
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
}

.product-attribute-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.price-tier-list {
  display: grid;
  gap: 10px;
}

.price-tier-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.price-tier-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-tier-list strong {
  flex: 0 0 auto;
  text-align: right;
  font-size: 0.95rem;
}

.product-specification-section,
.bulk-quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.product-specification-section {
  background: var(--surface-alt);
}

.product-specification-section h2,
.bulk-quote-section h2 {
  overflow-wrap: anywhere;
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.product-specification-section p,
.bulk-quote-section p {
  color: var(--muted);
}

.product-spec-table-wrap,
.bulk-quote-panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.product-spec-table th,
.product-spec-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.product-spec-table tr:last-child th,
.product-spec-table tr:last-child td {
  border-bottom: 0;
}

.product-spec-table th {
  width: 34%;
  color: var(--burgundy-dark);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
}

.product-spec-table td {
  color: var(--ink);
  font-weight: 650;
}

.bulk-quote-panel {
  display: grid;
  gap: 16px;
}

.bulk-quote-panel .price-tier-list {
  gap: 0;
}

.bulk-quote-panel .price-tier-list div {
  padding: 13px 0;
}

.bulk-quote-panel .button {
  justify-self: start;
}

.product-spec-panel,
.product-process-panel {
  padding: 22px;
}

.product-spec-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.product-spec-list div {
  display: grid;
  gap: 5px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.product-spec-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-step-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.product-step-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--field);
}

.product-step-list span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: var(--burgundy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-step-list strong {
  align-self: end;
}

.product-step-list p {
  margin: 4px 0 0;
  color: var(--muted);
}

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

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

.product-faq-grid .faq-item {
  min-height: 96px;
  background: var(--field);
}

.product-faq-grid .faq-item[open] {
  background: var(--surface);
  box-shadow: 0 14px 30px rgba(24, 22, 20, 0.07);
}

.product-faq-grid summary {
  line-height: 1.25;
}

.product-inquiry-band {
  background:
    linear-gradient(120deg, rgba(79, 85, 68, 0.12), transparent 34%),
    var(--surface);
}

.product-inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.product-privacy-note {
  max-width: 720px;
  margin: 16px 0 0;
}

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

.related-reference-card {
  overflow: hidden;
}

.related-reference-card__image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.related-reference-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--surface-alt);
}

.related-reference-card div {
  padding: 16px;
}

.product-hero h1 {
  font-size: 3.35rem;
}

.readiness-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.product-hero {
  align-items: start;
}

.product-hero__side {
  display: grid;
  gap: 14px;
}

.readiness-panel__top,
.inquiry-item__top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.readiness-panel p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.readiness-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.status-metric {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.status-metric span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-metric strong {
  font-size: 0.88rem;
  line-height: 1.3;
}

.detail-layout--decision {
  align-items: stretch;
}

.quote-panel {
  box-shadow: var(--shadow);
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

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

.inquiry-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.inquiry-thumbnail { display: block; align-self: start; width: 96px; aspect-ratio: 1; background: var(--field); }
.inquiry-thumbnail img { width: 100%; height: 100%; object-fit: contain; }
.inquiry-request-fields { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; min-width: 0; }
.inquiry-request-fields .field-note { grid-column: 1 / -1; }
.inquiry-item > div { min-width: 0; overflow-wrap: anywhere; }
.inquiry-item > button { grid-column: 1 / -1; }
.inquiry-item:not([data-inquiry-item]) { grid-template-columns: minmax(0, 1fr) auto; }
.inquiry-request-fields label { display: grid; gap: 6px; }
.inquiry-request-fields input, .inquiry-request-fields select { min-width: 0; width: 100%; }
@media (max-width: 1100px) {
  .inquiry-item { grid-template-columns: 80px minmax(0, 1fr); }
  .inquiry-thumbnail { width: 80px; }
  .inquiry-request-fields { grid-column: 1 / -1; }
}

.inquiry-item h3,
.inquiry-item p {
  margin: 0;
}

.inquiry-item p {
  color: var(--muted);
}

.inquiry-option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 10px 0 0;
}

.inquiry-option-list div {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--field);
  font-size: 0.76rem;
}

.inquiry-option-list dt {
  color: var(--muted);
  font-weight: 750;
  text-transform: capitalize;
}

.inquiry-option-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 750;
}

.form-status[data-type="error"] {
  background: #fff0ec;
  color: #8c2d16;
}

.form-status[data-type="success"] {
  background: #e9f7ef;
  color: var(--success);
}

.form-status[data-type="loading"] {
  background: #f4efe9;
  color: var(--brass);
}

.faq-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-item p {
  color: var(--muted);
}

.site-footer {
  display: block;
  padding: 42px clamp(18px, 5vw, 72px) 28px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(160px, 0.7fr));
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  max-width: 1240px;
  margin-inline: auto;
}

.footer-brand,
.footer-nav,
.footer-contact {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.footer-brand h2,
.footer-nav h2,
.footer-contact h2 {
  margin: 0 0 6px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.2;
}

.footer-brand h2 {
  font-size: 1.55rem;
}

.footer-brand p,
.footer-contact p,
.footer-contact span {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.footer-nav a,
.footer-contact a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus,
.footer-contact a:hover,
.footer-contact a:focus {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.site-footer .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom p {
  margin: 0;
}

.site-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: min(380px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.site-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  main h1,
  main h2,
  main figcaption {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .site-header {
    align-items: flex-start;
  }

  body[data-nav-open] {
    overflow: hidden;
  }

  body[data-nav-open]::before {
    content: "";
    position: fixed;
    inset: 73px 0 0;
    z-index: 18;
    background: rgba(24, 22, 20, 0.22);
  }

  .nav-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: absolute;
    top: 73px;
    right: 18px;
    left: 18px;
    max-height: calc(100dvh - 90px);
    overflow-y: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    z-index: 21;
  }

  .primary-nav[data-open] {
    display: flex;
  }

  .primary-nav > * {
    flex-shrink: 0;
  }

  .primary-nav a {
    justify-content: space-between;
    white-space: normal;
  }

  .language-switch {
    justify-content: space-between;
    padding: 8px 10px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .language-switch select {
    max-width: 160px;
  }

  .primary-nav .nav-dropdown {
    display: grid;
    align-items: stretch;
  }

  .primary-nav .nav-dropdown::after {
    display: none;
  }

  .primary-nav .nav-dropdown .nav-dropdown__menu {
    display: none;
  }

  .primary-nav .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
  }

  .nav-dropdown__menu {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: auto;
    max-height: 54vh;
    visibility: visible;
    overflow: auto;
    min-width: 0;
    margin: 0 0 4px 12px;
    padding: 6px 0 6px 12px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav .nav-dropdown__menu a {
    min-height: 34px;
    padding: 7px 9px;
  }

  .primary-nav .nav-dropdown__menu .nav-dropdown__all {
    grid-column: 1 / -1;
  }

  .nav-dropdown__group {
    padding: 4px;
  }
}

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

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

  .reference-grid,
  .case-grid,
  .faq-grid,
  .audience-grid,
  .evidence-grid,
  .category-content-grid,
  .category-link-grid,
  .guide-panel-grid,
  .guide-topic-grid,
  .guide-note-grid,
  .readiness-strip,
  .photo-grid,
  .product-dossier-grid,
  .related-reference-grid,
  .related-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-guide,
  .guide-article-shell {
    grid-template-columns: 1fr;
  }

  .guide-aside {
    position: static;
  }

  .material-guide-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  body[data-nav-open] {
    overflow: hidden;
  }

  body[data-nav-open]::before {
    content: "";
    position: fixed;
    inset: 73px 0 0;
    z-index: 18;
    background: rgba(24, 22, 20, 0.22);
  }

  .nav-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: absolute;
    top: 73px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    z-index: 21;
  }

  .primary-nav[data-open] {
    display: flex;
  }

  .primary-nav a {
    justify-content: space-between;
    white-space: normal;
  }

  .language-switch {
    justify-content: space-between;
    padding: 8px 10px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .language-switch select {
    max-width: 160px;
  }

  .primary-nav .nav-dropdown {
    display: grid;
    align-items: stretch;
  }

  .nav-dropdown__menu {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: auto;
    max-height: 54vh;
    overflow: auto;
    min-width: 0;
    margin: 0 0 4px 12px;
    padding: 6px 0 6px 12px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav .nav-dropdown__menu a {
    min-height: 34px;
    padding: 7px 9px;
  }

  .primary-nav .nav-dropdown__menu .nav-dropdown__all {
    grid-column: 1 / -1;
  }

  .nav-dropdown__group {
    padding: 4px;
  }

  .page-hero,
  .product-model-hero,
  .product-customization-section,
  .product-info-section,
  .product-specification-section,
  .bulk-quote-section,
  .factory-story-layout,
  .factory-process-step,
  .two-column,
  .split-band,
  .detail-layout,
  .quote-layout,
  .quote-intake__head {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero:not(.home-hero) {
    gap: 20px;
    padding-block: 30px;
  }

  .page-hero:not(.home-hero) .hero-visual img {
    max-height: 240px;
  }

  .home-hero {
    display: grid;
    overflow: visible;
  }

  .home-hero::before {
    display: none;
  }

  .home-hero .hero-visual {
    position: relative;
    inset: auto;
    z-index: 1;
    margin-top: 26px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .home-hero .hero-visual img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .home-hero .hero-visual figcaption {
    position: static;
    max-width: none;
    border-radius: 0;
    background: var(--surface);
  }

  .factory-featured-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
  }

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

  .factory-process-step {
    gap: 12px;
    align-items: start;
  }

  .factory-process-step .asset-figure {
    max-width: 520px;
  }

  .hero-media,
  .hero-media__grid {
    min-height: 320px;
  }

  .filters,
  .form-grid,
  .option-grid,
  .option-grid--two,
  .service-card-grid,
  .buyer-fit-grid,
  .support-photo-row,
  .readiness-grid,
  .customization-card-grid,
  .product-option-grid,
  .product-faq-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-item {
    grid-template-columns: 1fr;
  }
  .inquiry-request-fields { grid-template-columns: 1fr; }

  .product-section-tabs {
    top: 73px;
    padding-inline: 18px;
  }

  .guide-section-tabs {
    top: 73px;
  }

  #product-details,
  #product-specs,
  #product-pricing,
  #product-customization,
  #product-process,
  #product-faq,
  #product-quote {
    scroll-margin-top: 146px;
  }

  .guide-article-section {
    scroll-margin-top: 146px;
  }
}

@media (max-width: 620px) {
  .category-grid,
  .reference-grid,
  .case-grid,
  .faq-grid,
  .audience-grid,
  .evidence-grid,
  .category-content-grid,
  .category-link-grid,
  .guide-panel-grid,
  .guide-topic-grid,
  .guide-note-grid,
  .guide-image-row,
  .photo-grid,
  .readiness-strip,
  .product-term-grid,
  .product-dossier-grid,
  .related-reference-grid,
  .related-product-grid,
  .path-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo-wordmark {
    width: 128px;
  }

  .product-section-tabs {
    top: 63px;
    padding-inline: 16px;
    flex-wrap: wrap;
    overflow: visible;
  }

  .guide-section-tabs {
    top: 63px;
  }

  .product-section-tabs a {
    flex: 1 1 30%;
    justify-content: center;
    min-height: 48px;
    min-width: 0;
    padding-inline: 8px;
    font-size: 0.84rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    gap: 10px;
  }

  .product-gallery-thumbs button {
    width: 100%;
    min-width: 0;
  }

  .product-spec-table,
  .product-spec-table tbody,
  .product-spec-table tr,
  .product-spec-table th,
  .product-spec-table td {
    display: block;
    width: 100%;
  }

  .product-spec-table-wrap {
    max-width: 100%;
    padding: 14px;
  }

  .product-spec-table tr {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .product-spec-table tr:last-child {
    border-bottom: 0;
  }

  .product-spec-table th,
  .product-spec-table td {
    padding: 3px 0;
    border-bottom: 0;
    overflow-wrap: anywhere;
  }

  #product-details,
  #product-specs,
  #product-pricing,
  #product-customization,
  #product-process,
  #product-faq,
  #product-quote {
    scroll-margin-top: 124px;
  }

  .guide-article-section {
    scroll-margin-top: 124px;
  }

  .page-hero,
  .section {
    padding-inline: 16px;
  }

  .page-hero:not(.home-hero) .hero-visual img {
    max-height: 180px;
  }

  .material-guide-media {
    grid-template-columns: 1fr;
  }

  .featured-guide__media {
    grid-template-columns: 1fr;
  }

  .material-guide-media figure:first-child {
    grid-row: auto;
  }

  .guide-link-row .button {
    width: 100%;
  }

  .material-table {
    min-width: 680px;
  }

  .service-nav {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-block: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .service-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .factory-support-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .factory-process-step {
    padding: 18px 0;
  }

  .factory-step-number {
    font-size: 0.78rem;
  }

  .page-hero h1 {
    font-size: 2.42rem;
    font-weight: 700;
    line-height: 1.08;
  }

  .page-hero.catalog-hero h1 {
    font-size: 2.32rem;
    line-height: 1.08;
  }

  .section-heading h2,
  .two-column h2,
  .option-panel h2,
  .quote-panel h2,
  .product-customization-section h2,
  .product-spec-panel h2,
  .product-process-panel h2,
  .product-inquiry-band h2,
  .product-specification-section h2,
  .bulk-quote-section h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .quote-intake h1 {
    font-size: 2.26rem;
    font-weight: 700;
    line-height: 1.08;
  }

  .product-model-copy h1 {
    font-size: 2.26rem;
    font-weight: 700;
    line-height: 1.08;
  }

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

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

  .product-step-list span {
    grid-row: auto;
    margin-bottom: 10px;
  }

  .hero-media__grid {
    grid-template-columns: 1fr;
  }

  .hero-media__side {
    grid-template-rows: none;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .footer-cta-row .button {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
}

.policy-content {
  max-width: 880px;
  margin-inline: auto;
  overflow-wrap: anywhere;
}

.policy-content section {
  padding-block: 20px;
  border-bottom: 1px solid #dedede;
}

.policy-content h2 {
  font-size: 22px;
  line-height: 1.35;
}
.visual-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 36px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

#custom-bag-process { scroll-margin-top: 100px; }

.visual-process li {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.visual-process-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--surface-alt);
  overflow: hidden;
}

.visual-process-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.visual-process .visual-process-number {
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 18px 0 8px;
}

.visual-process h3 {
  font-size: 21px;
  line-height: 1.3;
  margin: 0 0 10px;
}

.visual-process li > p:not(.visual-process-number) {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 16px;
}

.visual-process li > a {
  margin-top: auto;
  font-size: 14px;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

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

@media (max-width: 600px) {
  .visual-process { grid-template-columns: minmax(0, 1fr); gap: 32px; }
}

.catalog-filters { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: end; }
.catalog-filters input, .catalog-filters select { width: 100%; min-width: 0; }
.catalog-filters > a { align-self: center; text-underline-offset: 4px; }
.category-chips a { padding: 8px 0; color: var(--muted); text-underline-offset: 5px; }
.category-chips a[aria-current="true"] { color: var(--burgundy); font-weight: 700; }
.catalog-pagination { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; margin-top: 32px; }
.catalog-pagination a { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; padding: 8px 12px; text-underline-offset: 5px; }
.catalog-pagination a[aria-current="page"] { color: var(--burgundy); font-weight: 700; border-bottom: 2px solid currentColor; }
[data-page="custom-bags"] .catalog-selling-points { min-height: 78px; align-content: flex-start; align-items: flex-start; }
[data-page="custom-bags"] .catalog-selling-points span { overflow-wrap: anywhere; }
@media (max-width: 760px) {
  .catalog-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 430px) {
  .catalog-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-filters > label:first-child { grid-column: 1 / -1; }
}

#category-detail > .page-hero { min-height: 0; padding-block: 28px; }
#category-detail > .page-hero .asset-figure { max-height: 230px; aspect-ratio: 4 / 3; }
#category-detail > .page-hero .asset-figure img { object-fit: contain; }
@media (max-width: 760px) {
  #category-detail > .page-hero h1, .page-hero.catalog-hero h1 { font-size: 30px; line-height: 1.2; }
  #category-detail > .page-hero .asset-figure { width: 100%; max-height: 180px; }
  .catalog-hero .hero-visual img { max-height: 150px; object-fit: contain; }
  .catalog-hero { gap: 16px; }
  .category-chips { gap: 8px 16px; }
  .category-chips a { font-size: 13px; padding-block: 4px; }
}
