: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-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(4, minmax(0, 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;
}

.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;
}

.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;
}

.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);
}

.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 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;
}

.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;
}

.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(3) {
    border-left: 0;
  }

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

  .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;
  }
}

@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;
  }

  .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,
  .evidence-strip {
    grid-template-columns: 1fr;
  }

  .decision-grid article:nth-child(2n) {
    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;
  }
}
