:root {
  color-scheme: light;
  --page: #f4f6f8;
  --surface: #f9fafb;
  --surface-cool: #eaf2f7;
  --surface-strong: #dce7ef;
  --ink: #082a59;
  --ink-soft: #4d5c70;
  --line: #cbd5df;
  --accent: #cb4310;
  --accent-hover: #a92f05;
  --error: #b42318;
  --success: #1b6543;
  --radius: 14px;
  --shadow: 0 24px 70px rgb(17 50 84 / 0.12);
  --font-sans: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --container: min(1440px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.locale-page {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Apple SD Gothic Neo",
    "Malgun Gothic", var(--font-sans);
  word-break: keep-all;
  overflow-wrap: anywhere;
}

body.is-locked {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-160%);
}

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

.header-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid transparent;
  background: rgb(244 246 248 / 0.92);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 26px rgb(19 52 85 / 0.07);
}

.nav-shell {
  width: var(--container);
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 228px;
  height: 64px;
  gap: 8px;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-lockup {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-lockup strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0.055em;
}

.brand-lockup small {
  color: var(--accent);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 1.7vw, 28px);
}

.primary-nav > a:not(.button) {
  position: relative;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.locale-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.locale-links a {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.locale-links a:hover,
.locale-links a:focus-visible,
.locale-links a[aria-current="page"] {
  color: var(--accent);
}

.primary-nav > a:not(.button)::after,
.text-link::after,
.product-copy a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after,
.product-copy a:hover::after,
.product-copy a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fffaf7;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
}

.button:active {
  transform: translateY(1px) scale(0.98);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.menu-toggle:focus-visible,
.product-copy a:focus-visible,
.text-link:focus-visible,
.market-tabs button:focus-visible,
.buyer-faq summary:focus-visible,
.locale-links a:focus-visible {
  outline: 3px solid rgb(203 67 16 / 0.34);
  outline-offset: 3px;
}

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

.button-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface);
}

.button-small {
  min-height: 44px;
  padding-inline: 22px;
  font-size: 14px;
}

.hero {
  width: var(--container);
  min-height: min(700px, calc(100dvh - 72px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(590px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 88px);
  padding-block: 54px;
}

.hero-copy {
  padding-left: 0;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(52px, 3.9vw, 60px);
  line-height: 1.06;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy > p {
  max-width: 550px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.65;
}

.eyebrow,
.hero-copy > .eyebrow,
.manufacturing-copy > .eyebrow {
  max-width: none;
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-trust-grid {
  max-width: 650px;
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-trust-grid div {
  min-width: 0;
  padding: 15px 16px 15px 0;
}

.hero-trust-grid div + div {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.hero-trust-grid dt {
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-trust-grid dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-media {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.proof-band {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-band div {
  min-width: 0;
  padding: 26px clamp(16px, 2.4vw, 34px);
}

.proof-band div + div {
  border-left: 1px solid var(--line);
}

.proof-band span,
.proof-band strong {
  display: block;
}

.proof-band span {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.proof-band strong {
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.35;
}

.proof-band strong a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.section {
  width: var(--container);
  margin-inline: auto;
  padding-block: clamp(92px, 10vw, 150px);
  scroll-margin-top: 72px;
}

.products-section {
  padding-top: clamp(92px, 10vw, 150px);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 54px;
}

.section h2 {
  max-width: 800px;
  font-size: clamp(40px, 4.4vw, 68px);
  line-height: 1.08;
}

.section-intro p,
.manufacturing-copy p,
.about-copy p,
.inquiry-intro p,
.oem-panel p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.markets-section {
  padding-bottom: 30px;
}

.market-explorer {
  display: grid;
  grid-template-columns: minmax(210px, 0.36fr) minmax(0, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.market-tabs {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.market-tabs button {
  min-height: 92px;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.market-tabs button:last-child {
  border-bottom: 0;
}

.market-tabs button span {
  font-size: 17px;
  font-weight: 800;
}

.market-tabs button small {
  font-size: 12px;
}

.market-tabs button[aria-selected="true"] {
  background: var(--surface-cool);
  color: var(--ink);
  box-shadow: inset 4px 0 0 var(--accent);
}

.market-panels {
  min-width: 0;
  display: grid;
  align-items: stretch;
}

.market-panels article {
  min-height: 368px;
  padding: clamp(32px, 4.5vw, 68px);
}

.market-panels article[hidden] {
  display: none;
}

.market-panels h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 3.3vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.market-panels article > p:not(.eyebrow) {
  max-width: 800px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.market-priorities {
  margin: 34px 0 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.market-priorities div {
  padding: 20px;
}

.market-priorities div + div {
  border-left: 1px solid var(--line);
}

.market-priorities dt {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.market-priorities dd {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.compliance-note {
  max-width: 900px;
  margin: 22px 0 0 auto;
  color: var(--ink-soft);
  font-size: 13px;
  text-align: right;
}

.product-mosaic {
  display: grid;
  grid-template-columns: 1.35fr 0.96fr 0.7fr;
  grid-template-rows: 320px 300px;
  gap: 16px;
}

.product-tile {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgb(203 213 223 / 0.76);
  border-radius: var(--radius);
  background: var(--surface);
}

.product-featured {
  grid-row: 1 / 3;
}

.product-wide {
  grid-column: 2;
  grid-row: 1;
}

.product-tall {
  grid-column: 3;
  grid-row: 1;
}

.product-small:nth-of-type(4) {
  grid-column: 2;
  grid-row: 2;
}

.product-small:nth-of-type(5) {
  grid-column: 3;
  grid-row: 2;
}

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

.product-pet {
  background: var(--surface-strong);
}

.product-copy {
  position: relative;
  z-index: 2;
  padding: 22px 24px 14px;
}

.product-copy h3 {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 25px);
  line-height: 1.15;
}

.product-copy p {
  max-width: 300px;
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.35;
}

.product-copy a {
  position: relative;
  display: inline-block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.product-tile img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-featured img,
.product-tall img,
.product-small:not(.product-pet) img {
  object-fit: contain;
  padding: 4px 18px 12px;
}

.product-pet img {
  object-position: center 62%;
}

.product-tile:hover img,
.product-tile:focus-within img {
  transform: scale(1.035);
}

.manufacturing-section {
  padding-top: clamp(80px, 9vw, 130px);
}

.manufacturing-top {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) 196px minmax(430px, 0.95fr);
  align-items: stretch;
  gap: 18px;
}

.factory-media {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.factory-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-stats {
  margin: 0;
  padding: 20px 0;
  display: grid;
  align-content: stretch;
  border-radius: var(--radius);
  background: var(--surface-cool);
}

.factory-stats div {
  display: flex;
  min-height: 130px;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px;
  text-align: center;
}

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

.factory-stats dt {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.factory-stats dd {
  margin: 0;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 800;
  line-height: 1.1;
}

.manufacturing-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.manufacturing-copy h2 {
  font-size: clamp(42px, 3.1vw, 50px);
}

.capability-band {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.oem-panel,
.quality-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.oem-panel {
  padding: clamp(30px, 4vw, 58px);
}

.oem-panel h3,
.quality-panel h3 {
  margin: 0;
  font-size: clamp(30px, 2.6vw, 42px);
  letter-spacing: -0.035em;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-list span {
  min-width: 0;
  padding: 22px 14px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.capability-list span + span {
  border-left: 1px solid var(--line);
}

.oem-panel .button {
  margin-top: 28px;
}

.quality-panel {
  padding: 28px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 24px;
}

.quality-groups {
  margin: 24px 0 0;
  display: grid;
  gap: 0;
}

.quality-groups div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.quality-groups dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.quality-groups dd {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.quality-panel img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}

.about-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 16px;
}

.about-gallery img {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  object-fit: cover;
}

.about-copy h2 {
  font-size: clamp(38px, 3.8vw, 58px);
}

.about-copy .button {
  margin-top: 30px;
}

.buyer-guide-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: start;
}

.buyer-guide-section .section-intro {
  position: sticky;
  top: 110px;
  margin-bottom: 0;
}

.buyer-guide-section .section-intro h2 {
  font-size: clamp(38px, 3.8vw, 58px);
}

.buyer-resource-links {
  margin-top: 30px;
  display: grid;
  border-top: 1px solid var(--line);
}

.buyer-resource-links a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.buyer-resource-links a:hover,
.buyer-resource-links a:focus-visible {
  color: var(--accent);
}

.buyer-faq {
  border-top: 1px solid var(--line);
}

.faq-group-title {
  margin: 28px 0 0;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.faq-group-title:first-child {
  margin-top: 0;
}

.buyer-faq details {
  border-bottom: 1px solid var(--line);
}

.buyer-faq summary {
  position: relative;
  padding: 25px 54px 25px 0;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.buyer-faq summary::-webkit-details-marker {
  display: none;
}

.buyer-faq summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--accent);
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.buyer-faq details[open] summary::after {
  content: "−";
}

.buyer-faq details p {
  max-width: 760px;
  margin: -4px 0 26px;
  color: var(--ink-soft);
  font-size: 16px;
}

.localized-market-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
}

.localized-market-copy h2,
.locale-evidence-copy h2 {
  font-size: clamp(40px, 4.2vw, 64px);
}

.localized-market-copy > p:not(.eyebrow),
.locale-evidence-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.localized-market-copy .compliance-inline {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.locale-priorities {
  grid-template-columns: 1fr;
  margin: 0;
}

.locale-priorities div + div {
  border-top: 1px solid var(--line);
  border-left: 0;
}

.locale-priorities dt {
  font-size: 13px;
}

.locale-priorities dd {
  font-size: 16px;
}

.locale-products-section {
  padding-top: 30px;
}

.locale-product-list {
  border-top: 1px solid var(--line);
}

.locale-product-list a {
  min-height: 92px;
  padding: 18px 6px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.35fr) 34px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 180ms ease, padding-left 180ms ease;
}

.locale-product-list a::after {
  content: "→";
  color: var(--accent);
  font-size: 25px;
  text-align: right;
}

.locale-product-list a:hover,
.locale-product-list a:focus-visible {
  padding-left: 14px;
  color: var(--accent);
}

.locale-product-list span {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
}

.locale-product-list small {
  color: var(--ink-soft);
  font-size: 13px;
}

.locale-evidence-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.locale-evidence-section .factory-media {
  min-height: 520px;
}

.locale-footer {
  margin-top: 90px;
}

.content-page {
  min-height: 100vh;
}

.content-hero {
  width: var(--container);
  min-height: 610px;
  margin-inline: auto;
  padding-block: clamp(54px, 7vw, 100px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
}

.content-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.content-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.4vw, 21px);
}

.content-hero .hero-actions {
  margin-top: 32px;
}

.content-hero figure {
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-hero figure img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.breadcrumb {
  width: var(--container);
  margin: 22px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
}

.breadcrumb a {
  font-weight: 750;
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--accent);
}

.content-section {
  width: var(--container);
  margin-inline: auto;
  padding-block: clamp(72px, 8vw, 120px);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
}

.content-aside {
  position: sticky;
  top: 110px;
  padding-top: 4px;
}

.content-aside strong {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.content-aside nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.content-aside a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.content-aside a:hover,
.content-aside a:focus-visible {
  color: var(--accent);
}

.content-body {
  max-width: 920px;
}

.content-body > section {
  padding-bottom: clamp(54px, 7vw, 90px);
  scroll-margin-top: 100px;
}

.content-body h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(34px, 3.8vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.content-body h3 {
  margin: 36px 0 10px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.2;
}

.content-body p,
.content-body li {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.content-body p {
  margin: 18px 0 0;
}

.content-body ul,
.content-body ol {
  margin: 20px 0 0;
  padding-left: 22px;
}

.content-body li + li {
  margin-top: 9px;
}

.certification-body a:not(.button) {
  color: var(--ink);
  font-weight: 800;
  text-underline-offset: 5px;
}

.decision-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.decision-grid article {
  min-height: 180px;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}

.decision-grid article:nth-child(2n) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.decision-grid h3 {
  margin: 0;
  font-size: 21px;
}

.decision-grid p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.spec-matrix {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.spec-matrix article {
  min-width: 0;
  min-height: 184px;
  padding: 26px 22px 26px 0;
  border-bottom: 1px solid var(--line);
}

.spec-matrix article:nth-child(3n + 2),
.spec-matrix article:nth-child(3n + 3) {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.spec-matrix h3 {
  margin: 0;
  font-size: 21px;
}

.spec-matrix p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.evidence-strip {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-cool);
}

.evidence-strip img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.evidence-copy {
  padding: clamp(34px, 5vw, 68px);
  align-self: center;
}

.evidence-copy h2 {
  margin: 0;
  font-size: clamp(32px, 3.2vw, 48px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.evidence-copy p {
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.content-faq {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.content-faq details {
  border-bottom: 1px solid var(--line);
}

.content-faq summary {
  position: relative;
  padding: 22px 50px 22px 0;
  font-size: 19px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.content-faq summary::-webkit-details-marker {
  display: none;
}

.content-faq summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--accent);
  font-size: 25px;
}

.content-faq details[open] summary::after {
  content: "−";
}

.content-faq p {
  margin: -2px 0 24px;
}

.related-links {
  width: var(--container);
  margin: clamp(82px, 9vw, 130px) auto 0;
  padding: clamp(38px, 5vw, 62px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.related-links h2 {
  margin: 0 0 22px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.03em;
}

.related-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.related-links a {
  color: var(--ink);
  font-weight: 800;
  text-underline-offset: 5px;
}

.content-cta {
  width: var(--container);
  margin: clamp(70px, 8vw, 110px) auto;
  padding: clamp(44px, 6vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.content-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.content-cta p {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgb(255 255 255 / 0.72);
}

.certification-scope-note {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 15px !important;
}

.certificate-hero-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
  background: var(--surface);
}

.certificate-hero-preview img {
  width: min(420px, 100%);
  height: auto;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgb(17 50 84 / 0.12);
  object-fit: contain;
}

.certification-body {
  max-width: 1040px;
}

.certificate-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(26px, 4vw, 48px);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.certificate-card-copy {
  min-width: 0;
}

.certificate-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.certificate-preview img {
  width: 100%;
  height: auto;
}

.certificate-card-copy h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.certificate-card-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.certificate-meta {
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}

.certificate-meta div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.certificate-meta dt {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificate-meta dd {
  min-width: 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.certificate-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.certificate-actions .button {
  white-space: normal;
}

.certificate-section {
  padding-block: clamp(82px, 8vw, 118px);
}

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

.certificate-summary article {
  padding: 24px;
}

.certificate-summary article + article {
  border-left: 1px solid var(--line);
}

.certificate-summary strong {
  display: block;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.2;
}

.certificate-summary span,
.certificate-summary p {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(44px, 7vw, 110px);
  padding: clamp(50px, 5vw, 74px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-cool);
}

.inquiry-intro h2 {
  font-size: clamp(40px, 3.8vw, 58px);
}

.text-link {
  position: relative;
  display: inline-block;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.inquiry-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #9cabb9;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  min-height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 132px;
  padding: 14px 15px;
  resize: vertical;
}

#attachments {
  min-height: 96px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #667689;
  opacity: 1;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgb(180 35 24 / 0.1);
}

.field-error {
  min-height: 20px;
  color: var(--error);
  font-size: 13px;
}

.form-action {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--success);
  font-size: 14px;
  text-align: right;
}

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

.inquiry-privacy {
  margin: 0;
  max-width: 540px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}

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

.site-footer {
  width: var(--container);
  margin: 80px auto 0;
  padding: 48px 0 56px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(120px, 0.7fr));
  gap: 48px;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 210px;
  height: 100px;
  object-fit: contain;
}

.footer-brand p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-group h2 {
  margin: 0 0 6px;
  font-size: 15px;
}

.footer-group a,
.footer-group span {
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: none;
}

.footer-group a:hover,
.footer-group a:focus-visible {
  color: var(--accent);
}

.video-dialog {
  width: min(1000px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.video-dialog::backdrop {
  background: rgb(8 42 89 / 0.72);
  backdrop-filter: blur(8px);
}

.video-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.video-dialog-header h2 {
  margin: 0;
  font-size: 26px;
}

.video-dialog video {
  width: 100%;
  max-height: calc(100dvh - 150px);
  border-radius: calc(var(--radius) - 4px);
  background: #071b34;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-late {
  transition-delay: 120ms;
}

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

@media (max-width: 1120px) {
  :root {
    --container: min(100% - 40px, 1080px);
  }

  .primary-nav {
    gap: 20px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 50px 86px;
  }

  .hero h1 {
    font-size: clamp(50px, 6vw, 60px);
  }

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

  .hero-media {
    order: initial;
  }

  .hero-media img {
    aspect-ratio: 16 / 9;
  }

  .product-mosaic {
    grid-template-columns: 1.25fr 0.85fr 0.7fr;
  }

  .manufacturing-top {
    grid-template-columns: 1fr;
  }

  .factory-media {
    min-height: 420px;
  }

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

  .factory-stats div {
    min-height: 120px;
  }

  .factory-stats div + div {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .manufacturing-copy {
    padding: 38px 0 20px;
  }

  .quality-panel {
    grid-template-columns: 1fr;
  }

  .quality-panel img {
    height: 220px;
  }
}

@media (max-width: 1040px) {
  :root {
    --container: min(100% - 32px, 820px);
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand {
    width: 196px;
    height: 60px;
    gap: 6px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-lockup strong {
    font-size: 17px;
  }

  .brand-lockup small {
    font-size: 7px;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    cursor: pointer;
  }

  .menu-toggle-label {
    font-size: 13px;
    font-weight: 800;
  }

  .menu-toggle-lines {
    width: 18px;
    display: grid;
    gap: 3px;
  }

  .menu-toggle-lines span {
    height: 2px;
    border-radius: 2px;
    background: currentColor;
  }

  .primary-nav {
    position: absolute;
    top: 66px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .primary-nav > a:not(.button) {
    padding: 14px 10px;
  }

  .locale-links {
    justify-content: flex-start;
    gap: 16px;
    padding: 14px 10px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .locale-links a {
    font-size: 13px;
  }

  .primary-nav .button {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 54px 78px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-copy > p {
    max-width: 580px;
  }

  .hero-media {
    order: initial;
  }

  .proof-band {
    grid-template-columns: 1fr 1fr;
  }

  .proof-band div:nth-child(odd) {
    border-left: 0;
  }

  .proof-band div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .proof-band div:last-child {
    grid-column: 1 / -1;
  }

  .product-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 470px 330px 330px;
  }

  .product-featured {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .product-wide {
    grid-column: 1;
    grid-row: 2;
  }

  .product-tall {
    grid-column: 2;
    grid-row: 2;
  }

  .product-small:nth-of-type(4) {
    grid-column: 1;
    grid-row: 3;
  }

  .product-small:nth-of-type(5) {
    grid-column: 2;
    grid-row: 3;
  }

  .manufacturing-top {
    grid-template-columns: 1fr;
  }

  .factory-media {
    min-height: 420px;
  }

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

  .factory-stats div {
    min-height: 120px;
  }

  .factory-stats div + div {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .manufacturing-copy {
    padding: 38px 0 20px;
  }

  .capability-band {
    grid-template-columns: 1fr;
  }

  .quality-panel {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .buyer-guide-section {
    grid-template-columns: 1fr;
  }

  .buyer-guide-section .section-intro {
    position: static;
  }

  .localized-market-section,
  .locale-evidence-section {
    grid-template-columns: 1fr;
  }

  .locale-evidence-section .factory-media {
    min-height: 400px;
  }

  .about-gallery {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .about-gallery img {
    height: 350px;
  }

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

  .site-footer {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1 / 4;
  }

  .content-hero,
  .content-layout {
    grid-template-columns: 1fr;
  }

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

  .content-hero figure,
  .content-hero figure img {
    min-height: 380px;
  }

  .content-aside {
    position: static;
  }

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

  .content-aside a {
    padding-right: 16px;
  }

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

  .spec-matrix article:nth-child(n) {
    padding-left: 0;
    border-left: 0;
  }

  .spec-matrix article:nth-child(2n) {
    padding-left: 22px;
    border-left: 1px solid var(--line);
  }

  .certificate-card {
    grid-template-columns: minmax(210px, 0.36fr) minmax(0, 1fr);
  }

  .certificate-summary {
    grid-template-columns: 1fr 1fr;
  }

  .certificate-summary article:nth-child(odd) {
    border-left: 0;
  }

  .certificate-summary article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 32px);
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero h1 span {
    white-space: normal;
  }

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

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

  .proof-band {
    grid-template-columns: 1fr;
  }

  .proof-band div + div,
  .proof-band div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-band div:last-child {
    grid-column: auto;
  }

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

  .hero-trust-grid div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .market-explorer {
    grid-template-columns: 1fr;
  }

  .market-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .market-tabs button {
    min-height: 78px;
    border-right: 1px solid var(--line);
  }

  .market-tabs button:nth-child(2n) {
    border-right: 0;
  }

  .market-tabs button:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .market-tabs button[aria-selected="true"] {
    box-shadow: inset 0 4px 0 var(--accent);
  }

  .market-panels article {
    min-height: 0;
    padding: 30px 20px;
  }

  .market-priorities {
    grid-template-columns: 1fr;
  }

  .market-priorities div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .locale-product-list a {
    grid-template-columns: 1fr 30px;
    gap: 12px;
  }

  .locale-product-list small {
    grid-column: 1;
    grid-row: 2;
  }

  .locale-product-list a::after {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .compliance-note {
    text-align: left;
  }

  .section {
    padding-block: 82px;
  }

  .product-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 360px);
  }

  .product-featured,
  .product-wide,
  .product-tall,
  .product-small:nth-of-type(4),
  .product-small:nth-of-type(5) {
    grid-column: 1;
  }

  .product-featured {
    grid-row: 1;
  }

  .product-wide {
    grid-row: 2;
  }

  .product-tall {
    grid-row: 3;
  }

  .product-small:nth-of-type(4) {
    grid-row: 4;
  }

  .product-small:nth-of-type(5) {
    grid-row: 5;
  }

  .factory-media {
    min-height: 300px;
  }

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

  .factory-stats div {
    min-height: 104px;
  }

  .factory-stats div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .capability-list {
    grid-template-columns: 1fr 1fr;
  }

  .capability-list span + span {
    border-left: 0;
  }

  .capability-list span:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

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

  .quality-panel {
    grid-template-columns: 1fr;
  }

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

  .about-gallery img {
    height: 280px;
  }

  .about-gallery img:nth-child(2) {
    display: none;
  }

  .inquiry-section {
    width: calc(100% - 20px);
    padding: 34px 20px;
  }

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

  .form-action {
    grid-column: 1;
    align-items: stretch;
  }

  .form-action .button {
    width: 100%;
  }

  .form-status {
    text-align: left;
  }

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

  .content-hero {
    padding-top: 38px;
  }

  .content-hero-copy h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .content-hero figure,
  .content-hero figure img {
    min-height: 300px;
  }

  .content-aside nav,
  .decision-grid,
  .spec-matrix,
  .evidence-strip,
  .certificate-card,
  .certificate-summary,
  .certificate-meta div {
    grid-template-columns: 1fr;
  }

  .certificate-summary article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .certificate-hero-preview {
    padding: 20px;
  }

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

  .certificate-actions .button {
    width: 100%;
  }

  .decision-grid article:nth-child(2n) {
    padding-left: 0;
    border-left: 0;
  }

  .spec-matrix article:nth-child(n) {
    padding-left: 0;
    border-left: 0;
  }

  .evidence-strip img {
    min-height: 280px;
  }

  .content-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .content-cta .button {
    width: 100%;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .video-dialog {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Buyer-facing product, factory and ordering layouts. */
body.buyer-refresh { --container: min(1240px, calc(100% - 48px)); background: #fafbf9; }
.buyer-refresh [hidden] { display: none !important; }
.buyer-refresh h1, .buyer-refresh h2, .buyer-refresh h3 { text-wrap: balance; font-weight: 650; }
.buyer-refresh h1 { font-size: clamp(32px, 3.6vw, 48px); line-height: 1.12; letter-spacing: -.035em; }
.buyer-refresh h2 { font-size: clamp(24px, 2.3vw, 32px); line-height: 1.2; letter-spacing: -.025em; }
.buyer-refresh h3 { font-size: 18px; line-height: 1.35; }
.buyer-refresh .button { min-height: 46px; border-radius: 6px; padding: 13px 20px; font-weight: 650; white-space: normal; line-height: 1.25; }
.buyer-refresh .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .09em; }
.buyer-refresh .primary-nav { gap: 16px; }
.buyer-refresh .primary-nav > a:not(.button) { font-weight: 650; }
.buyer-refresh .brand { flex-shrink: 0; }
.buyer-refresh .rf-hero { width: var(--container); margin: 0 auto; padding: 38px 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 44px; }
.buyer-refresh .rf-hero h1 { margin: 0; max-width: 650px; }
.buyer-refresh .rf-hero p:not(.eyebrow) { color: var(--ink-soft); font-size: 17px; max-width: 620px; margin: 20px 0; }
.buyer-refresh .rf-hero figure { margin: 0; border-radius: 10px; overflow: hidden; background: #edece6; }
.buyer-refresh .rf-hero figure img { width: 100%; height: 350px; object-fit: cover; }
.buyer-refresh.home-refresh .rf-hero figure img { object-fit: contain; background: #f3f0e9; }
.buyer-refresh .rf-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 24px; }
.buyer-refresh .rf-hero .hero-order-note { margin: 22px 0 0; font-size: 13px; }
.buyer-refresh .rf-section { width: var(--container); margin: 0 auto; padding: 46px 0; border-top: 1px solid var(--line); scroll-margin-top: 100px; }
.buyer-refresh .rf-section h2 { margin: 0 0 14px; }
.buyer-refresh .rf-section p { color: var(--ink-soft); }
.buyer-refresh .rf-heading { max-width: 760px; margin-bottom: 22px; }
.buyer-refresh .rf-heading p { margin: 0; font-size: 16px; line-height: 1.65; }
.buyer-refresh .range-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.buyer-refresh .range-card { display: block; text-decoration: none; background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; padding-bottom: 18px; transition: border-color .18s; }
.buyer-refresh .range-card:hover, .buyer-refresh .range-card:focus-visible { border-color: var(--accent); }
.buyer-refresh .range-card img { width: 100%; height: 230px; object-fit: contain; background: #f4f3ef; }
.buyer-refresh .range-card h3 { margin: 16px 18px 8px; }
.buyer-refresh .range-card > span { margin: 0 18px; color: var(--accent); font-size: 13px; }
.buyer-refresh .range-more, .buyer-refresh .section-shortcuts { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 22px; font-size: 14px; }
.buyer-refresh .range-more a, .buyer-refresh .section-shortcuts a { text-underline-offset: 4px; }
.buyer-refresh .section-shortcuts { width: var(--container); margin: 0 auto; padding: 18px 0; border-top: 1px solid var(--line); }
.buyer-refresh .purchase-terms { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 24px 0 10px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.buyer-refresh .purchase-terms > div { padding: 18px; }
.buyer-refresh .purchase-terms > div + div { border-left: 1px solid var(--line); }
.buyer-refresh .purchase-terms dt { font-size: 13px; color: var(--ink-soft); }
.buyer-refresh .purchase-terms dd { margin: 6px 0 0; font-size: 17px; font-weight: 650; }
.buyer-refresh .small-note { font-size: 13px; line-height: 1.6; max-width: 860px; }
.buyer-refresh .order-steps { padding: 0; margin: 28px 0; list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.buyer-refresh .order-steps li > span { color: var(--accent); font-size: 13px; font-weight: 650; }
.buyer-refresh .order-steps h3 { margin: 8px 0; }
.buyer-refresh .order-steps p { margin: 0; font-size: 14px; line-height: 1.65; }
.buyer-refresh .factory-numbers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin: 20px 0 26px; }
.buyer-refresh .factory-numbers div { display: flex; flex-direction: column-reverse; gap: 4px; }
.buyer-refresh .factory-numbers dt { font-size: 13px; color: var(--ink-soft); }
.buyer-refresh .factory-numbers dd { margin: 0; font-size: 30px; line-height: 1.2; font-weight: 650; }
.buyer-refresh .compact-stats { padding: 0; border-top: 0; }
.buyer-refresh .process-photos { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.buyer-refresh .process-photos figure { margin: 0; min-width: 0; background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.buyer-refresh .process-photos img { width: 100%; height: 215px; object-fit: cover; }
.buyer-refresh .process-photos figcaption { padding: 16px; font-size: 15px; }
.buyer-refresh .process-photos figcaption strong, .buyer-refresh .process-photos figcaption span { display: block; }
.buyer-refresh .process-photos figcaption strong { font-weight: 650; }
.buyer-refresh .process-photos figcaption span { color: var(--ink-soft); font-size: 13px; margin-top: 6px; }
.buyer-refresh .secondary-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 20px; }
.buyer-refresh .secondary-photos figure { margin: 0; }
.buyer-refresh .secondary-photos img { width: 100%; height: 230px; object-fit: cover; border-radius: 8px; }
.buyer-refresh .secondary-photos figcaption { padding-top: 10px; font-size: 14px; }
.buyer-refresh .quality-summary { display: grid; grid-template-columns: .55fr 1.8fr .65fr; align-items: start; gap: 24px; padding-top: 24px; }
.buyer-refresh .quality-summary h3, .buyer-refresh .quality-summary p { margin: 0; }
.buyer-refresh .quality-summary p { font-size: 14px; }
.buyer-refresh .quality-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.buyer-refresh .quality-layout figure { margin: 0; }
.buyer-refresh .quality-layout img { height: 320px; width: 100%; object-fit: cover; border-radius: 8px; }
.buyer-refresh .document-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.buyer-refresh .document-links article { border: 1px solid var(--line); padding: 20px; border-radius: 8px; background: #fff; }
.buyer-refresh .document-links h3 { margin: 0 0 14px; }
.buyer-refresh .document-links a { display: block; width: fit-content; padding-block: 6px; font-size: 14px; text-underline-offset: 4px; }
.buyer-refresh .company-details { margin: 20px 0 0; border-top: 1px solid var(--line); }
.buyer-refresh .company-details > div { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 24px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.buyer-refresh .company-details dt { color: var(--ink-soft); }
.buyer-refresh .company-details dd { margin: 0; overflow-wrap: anywhere; }
.buyer-refresh .contact-band { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.buyer-refresh .contact-band p { max-width: 720px; margin: 0; }
.buyer-refresh .contact-band .button { flex-shrink: 0; }
.buyer-refresh .company-faq details { border-bottom: 1px solid var(--line); padding: 14px 0; }
.buyer-refresh .company-faq summary { cursor: pointer; font-weight: 650; }
.buyer-refresh .content-hero { min-height: 0; padding-block: 34px; gap: 38px; }
.buyer-refresh .content-hero-copy h1 { font-size: clamp(32px, 3.5vw, 46px); line-height: 1.15; }
.buyer-refresh .content-hero figure, .buyer-refresh .content-hero figure img { min-height: 0; max-height: 360px; object-fit: contain; }
.buyer-refresh .content-section, .buyer-refresh .section { padding-block: 46px; }
.buyer-refresh .content-layout { grid-template-columns: 185px minmax(0, 1fr); gap: 38px; }
.buyer-refresh .content-body h2, .buyer-refresh .section h2, .buyer-refresh .certificate-card-copy h2, .buyer-refresh .inquiry-intro h2 { font-size: clamp(24px, 2.3vw, 32px); line-height: 1.2; }
.buyer-refresh .content-body > section { padding-bottom: 36px; }
.buyer-refresh .section-intro { margin-bottom: 24px; }
.buyer-refresh .inquiry-options { grid-column: 1 / -1; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; }
.buyer-refresh .inquiry-options summary { cursor: pointer; font-weight: 600; }
.buyer-refresh .optional-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.buyer-refresh .form-action { grid-column: 1 / -1; align-items: flex-start; }
/* Replace conflicting legacy catalog layout rules with a single content column. */
body.buyer-page.buyer-refresh main { display: block; width: var(--container); padding: 28px 0 48px; }
body.buyer-page.buyer-refresh .buyer-shell { width: 100%; }
body.buyer-page.buyer-refresh .catalog-heading { padding-bottom: 24px; }
body.buyer-page.buyer-refresh .catalog-heading h1 { font-size: clamp(28px, 3vw, 38px); margin: 0; }
body.buyer-page.buyer-refresh .catalog-heading > p:not(.eyebrow) { margin: 12px 0 0; font-size: 15px; color: var(--ink-soft); max-width: 900px; }
body.buyer-page.buyer-refresh .catalog-order-line { display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: 13px !important; }
body.buyer-page.buyer-refresh .buyer-section { padding: 0; }
body.buyer-page.buyer-refresh .catalog-list-title { font-size: 20px; margin-bottom: 14px; }
body.buyer-page.buyer-refresh .catalog-search { padding-bottom: 18px; }
body.buyer-page.buyer-refresh .catalog-search label { display: block; font-size: 13px; margin-bottom: 8px; }
body.buyer-page.buyer-refresh .catalog-search > div { display: flex; gap: 8px; max-width: 640px; }
body.buyer-page.buyer-refresh .catalog-search input { flex: 1; min-width: 0; padding: 12px; border: 1px solid var(--line); border-radius: 6px; background: #fff; font-size: 16px; }
body.buyer-page.buyer-refresh .catalog-search button { cursor: pointer; border: 1px solid var(--line); border-radius: 6px; background: #fff; padding: 8px 16px; font-size: 14px; }
body.buyer-page.buyer-refresh .catalog-search p { min-height: 20px; margin: 8px 0 0; font-size: 13px; color: var(--ink-soft); }
body.buyer-page.buyer-refresh .category-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; padding: 0; background: transparent; border: 0; }
body.buyer-page.buyer-refresh .category-nav a { padding: 10px 12px; border-radius: 5px; font-size: 13px; font-weight: 600; }
body.buyer-page.buyer-refresh .buyer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
body.buyer-page.buyer-refresh .category-panel { display: block; padding: 18px 0 12px; border: 0; border-top: 1px solid var(--line); background: transparent; box-shadow: none; }
body.buyer-page.buyer-refresh .category-panel h2 { font-size: 23px; }
body.buyer-page.buyer-refresh .category-panel p { font-size: 14px; }
body.buyer-page.buyer-refresh .category-block { margin: 0 0 34px; scroll-margin-top: 110px; }
body.buyer-page.buyer-refresh .buyer-card .media { aspect-ratio: 1; background: #fff; }
body.buyer-page.buyer-refresh .buyer-card img { padding: 0; mix-blend-mode: normal; }
body.buyer-page.buyer-refresh .buyer-card-body { padding: 16px; }
body.buyer-page.buyer-refresh .buyer-card h3 { font-size: 16px; font-weight: 650; min-height: 42px; }
body.buyer-page.buyer-refresh .buyer-card .model-ref { display: block; margin: 0 0 8px; font-size: 11px; font-weight: 400; overflow-wrap: anywhere; }
body.buyer-page.buyer-refresh .spec-grid { grid-template-columns: 1fr; }
body.buyer-page.buyer-refresh .spec dd { font-size: 14px; font-weight: 500; }
body.buyer-page.buyer-refresh .card-actions a { font-size: 13px; font-weight: 650; min-height: 42px; }
body.buyer-page.buyer-refresh .card-actions { grid-template-columns: 1fr; }
body.buyer-page.buyer-refresh .site-footer { width: var(--container); margin-inline: auto; padding-block: 28px; }
@media (max-width: 960px) {
 .buyer-refresh .rf-hero { gap: 24px; }
 .buyer-refresh .rf-hero figure img { height: 280px; }
 .buyer-refresh .purchase-terms, .buyer-refresh .order-steps, .buyer-refresh .document-links { grid-template-columns: 1fr 1fr; }
 .buyer-refresh .purchase-terms > div:nth-child(3) { border-left: 0; }
 .buyer-refresh .purchase-terms > div:nth-child(n+3) { border-top: 1px solid var(--line); }
 .buyer-refresh .quality-summary { grid-template-columns: 1fr; gap: 10px; }
 .buyer-refresh .content-layout { grid-template-columns: 1fr; }
 body.buyer-page.buyer-refresh .buyer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
 body.buyer-refresh { --container: calc(100% - 32px); }
 .buyer-refresh .rf-hero { grid-template-columns: 1fr; gap: 24px; padding-block: 28px; }
 .buyer-refresh .rf-hero h1 { font-size: 34px; }
 .buyer-refresh .rf-hero figure img { height: 240px; }
 .buyer-refresh .rf-section { padding-block: 30px; }
 .buyer-refresh .range-grid { grid-template-columns: 1fr; gap: 12px; }
 .buyer-refresh .range-card { display: grid; grid-template-columns: 42% 1fr; grid-template-rows: 1fr 1fr; padding: 0; }
 .buyer-refresh .range-card img { height: 160px; grid-row: 1 / 3; }
 .buyer-refresh .range-card h3 { align-self: end; font-size: 17px; }
 .buyer-refresh .range-card > span { align-self: start; }
 .buyer-refresh .process-photos { grid-template-columns: 1fr; }
 .buyer-refresh .process-photos img { height: auto; aspect-ratio: 16 / 10; }
 .buyer-refresh .secondary-photos img { height: 150px; }
 .buyer-refresh .quality-layout { grid-template-columns: 1fr; gap: 20px; }
 .buyer-refresh .quality-layout img { height: auto; }
 .buyer-refresh .factory-numbers { gap: 10px; }
 .buyer-refresh .factory-numbers dd { font-size: 24px; }
 .buyer-refresh .factory-numbers dt { font-size: 12px; }
 .buyer-refresh .company-details > div { grid-template-columns: 1fr; gap: 5px; }
 .buyer-refresh .contact-band { display: block; }
 .buyer-refresh .contact-band .button { margin-top: 20px; }
 .buyer-refresh .optional-fields { grid-template-columns: 1fr; }
 body.buyer-page.buyer-refresh .buyer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
 body.buyer-page.buyer-refresh .buyer-card-body { padding: 10px; }
 body.buyer-page.buyer-refresh .buyer-card h3 { font-size: 14px; }
 body.buyer-page.buyer-refresh .site-header { padding: 10px 16px; flex-wrap: wrap; gap: 8px; }
 body.buyer-page.buyer-refresh .top-nav { gap: 12px; }
 body.buyer-page.buyer-refresh .top-nav a { font-size: 12px; }
}
@media (max-width: 380px) {
 .buyer-refresh .document-links, .buyer-refresh .order-steps { grid-template-columns: 1fr; }
 body.buyer-page.buyer-refresh .buyer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
 .buyer-refresh *, .buyer-refresh *::before, .buyer-refresh *::after { scroll-behavior: auto !important; transition: none !important; }
}
body.buyer-page.buyer-refresh .category-panel h2,
body.buyer-page.buyer-refresh .category-panel a { color: var(--ink) !important; }
body.buyer-page.buyer-refresh .category-panel p { color: var(--ink-soft) !important; }

.buyer-decision-hub {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.buyer-decision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.buyer-decision-card {
  display: flex;
  flex-direction: column;
  min-height: 188px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
  color: var(--ink);
  text-decoration: none;
}
.buyer-decision-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.buyer-decision-card h3 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}
.buyer-decision-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}
.buyer-decision-card strong {
  margin-top: auto;
  padding-top: 16px;
  color: var(--ink);
  font-size: 13px;
}
.buyer-decision-card.primary {
  background: #082a59;
  border-color: #082a59;
  color: #fff;
}
.buyer-decision-card.primary span,
.buyer-decision-card.primary h3,
.buyer-decision-card.primary p,
.buyer-decision-card.primary strong {
  color: #fff;
}
.buyer-proof-strip {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.buyer-proof-strip > div {
  padding: 16px;
  border-left: 1px solid var(--line);
}
.buyer-proof-strip > div:first-child {
  border-left: 0;
  background: #f8fafb;
}
.buyer-proof-strip dt {
  margin: 0;
  color: #657286;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.buyer-proof-strip dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}
.catalog-decision-panel {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 20px;
}
.catalog-decision-panel a,
.catalog-decision-panel div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}
.catalog-decision-panel h2,
.catalog-decision-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}
.catalog-decision-panel p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}
.catalog-decision-panel .primary {
  background: #082a59;
  border-color: #082a59;
}
.catalog-decision-panel .primary h2,
.catalog-decision-panel .primary h3,
.catalog-decision-panel .primary p {
  color: #fff;
}
.model-summary {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 980px) {
  .buyer-decision-grid,
  .buyer-proof-strip,
  .catalog-decision-panel {
    grid-template-columns: 1fr 1fr;
  }
  .buyer-proof-strip > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .buyer-proof-strip > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}
@media (max-width: 620px) {
  .buyer-decision-grid,
  .buyer-proof-strip,
  .catalog-decision-panel {
    grid-template-columns: 1fr;
  }
  .buyer-proof-strip > div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .buyer-proof-strip > div:first-child {
    border-top: 0;
  }
}

/* Product-to-RFQ decision path, adapted from the LuxoPack benchmark. */
.reference-starters {
  background: #f5f7f9;
}
.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.reference-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 42, 89, .06);
}
.reference-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #edf1f4;
}
.reference-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.reference-card:hover .reference-card-media img {
  transform: scale(1.025);
}
.reference-card-copy {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 22px;
}
.reference-card-kicker {
  margin: 0 0 8px;
  color: #657286;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.reference-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
}
.reference-card dl {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}
.reference-card dl div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.reference-card dt,
.reference-card dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}
.reference-card dt {
  color: #657286;
  font-weight: 700;
}
.reference-card dd {
  color: var(--ink);
}
.reference-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}
.reference-card-actions > a:first-child {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.reference-card-actions .button {
  text-align: center;
}
.reference-order-note {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}
.inquiry-return-list {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.inquiry-return-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
}
.inquiry-return-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: #196b5b;
  font-weight: 900;
}
.inquiry-context {
  grid-column: 1 / -1;
  padding: 16px 18px;
  border: 1px solid #a9c9c1;
  border-radius: 8px;
  background: #f0f8f6;
}
.inquiry-context span,
.inquiry-context strong,
.inquiry-context small {
  display: block;
}
.inquiry-context span {
  color: #47655f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.inquiry-context strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 17px;
}
.inquiry-context small {
  margin-top: 4px;
  color: var(--ink-soft);
}
@media (max-width: 980px) {
  .reference-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .reference-grid {
    grid-template-columns: 1fr;
  }
  .reference-card-copy {
    min-height: 0;
  }
  .reference-card-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
