:root {
  color-scheme: light;
  --ink: #171a17;
  --ink-soft: #353b36;
  --muted: #69706b;
  --paper: #f6f5f0;
  --surface: #fbfaf5;
  --surface-strong: #ffffff;
  --line: #d7d8d1;
  --accent: #2d654b;
  --accent-dark: #214d3a;
  --accent-soft: #e1ebe5;
  --blue: #365f82;
  --shadow: rgba(33, 39, 35, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 245, 240, 0.12) 360px),
    var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  min-height: 68px;
  padding: 12px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(21, 23, 22, 0.11);
  background: rgba(246, 245, 240, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.language-menu {
  position: relative;
  min-width: max-content;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 66px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 12px;
  font-weight: 680;
  cursor: pointer;
}

.language-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(1px);
  transition: transform 180ms ease;
}

.language-trigger[aria-expanded="true"]::after {
  transform: translateY(-1px) rotate(180deg);
}

.language-trigger span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.language-trigger strong {
  min-width: 28px;
  text-align: center;
  font-size: 13px;
}

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  display: grid;
  min-width: 170px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(33, 39, 35, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-menu.is-open .language-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-options button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 680;
  text-align: left;
  cursor: pointer;
}

.language-options button:hover,
.language-options button.is-active {
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.language-options button.is-active::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 760;
}

.brand span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  color: var(--surface);
  background: var(--ink);
  font-size: 12px;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.1vw, 30px);
  min-width: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 680;
  white-space: nowrap;
}

.main-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  color: var(--accent-dark);
}

.nav-action,
.button,
.product-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

button.button {
  appearance: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-action,
.button.primary {
  color: var(--surface);
  background: var(--ink);
}

.button.secondary,
.product-card a {
  color: var(--ink);
  background: transparent;
}

.nav-action:hover,
.button:hover,
.product-card a:hover,
.contact-link:hover,
.buyer-paths a:hover {
  transform: translateY(-2px);
}

.nav-action:active,
.button:active,
.product-card a:active,
.contact-link:active,
.buyer-paths a:active {
  transform: translateY(1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(480px, 1fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: center;
  min-height: calc(88dvh - 68px);
  padding: clamp(32px, 5vw, 72px) clamp(18px, 5vw, 76px);
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
}

.kicker {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(40px, 4.7vw, 66px);
  line-height: 1.08;
  font-weight: 780;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.06;
  font-weight: 760;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 760;
}

.hero-copy > p:not(.kicker),
.section-intro p,
.oem-copy p,
.detail-copy p,
.label-section > div > p,
.factory-copy p,
.contact-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.66;
}

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

.showroom-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 680;
}

.showroom-notes span {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  height: clamp(470px, 43vw, 560px);
  min-height: 0;
  min-width: 0;
}

.hero-style {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 26, 23, 0.1);
  border-radius: 10px;
  background: var(--surface-strong);
  box-shadow: 0 24px 72px var(--shadow);
}

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

.hero-style figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(251, 250, 245, 0.82);
  backdrop-filter: blur(10px);
}

.hero-style figcaption strong,
.hero-style figcaption span {
  line-height: 1;
  white-space: nowrap;
}

.hero-style figcaption strong {
  font-size: 12px;
  font-weight: 850;
}

.hero-style figcaption span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
}

.buyer-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 clamp(18px, 5vw, 76px) clamp(34px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.buyer-paths a {
  display: grid;
  gap: 12px;
  min-height: 132px;
  padding: 24px;
  border-right: 1px solid var(--line);
  transition: transform 180ms ease, background 180ms ease;
  min-width: 0;
}

.buyer-paths a:last-child {
  border-right: 0;
}

.buyer-paths a:hover {
  background: var(--surface-strong);
}

.buyer-paths span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 760;
}

.buyer-paths strong {
  max-width: 360px;
  font-size: clamp(18px, 1.75vw, 22px);
  line-height: 1.2;
  font-weight: 720;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
}

.proof-strip article {
  display: grid;
  align-content: start;
  min-height: 196px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.proof-strip article:last-child {
  border-right: 0;
}

.proof-strip div {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 999px;
  color: var(--accent-dark);
  background: transparent;
  border: 1px solid rgba(45, 101, 75, 0.26);
  font-size: 12px;
  font-weight: 820;
}

.proof-strip h2 {
  max-width: 240px;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.12;
}

.proof-strip p {
  max-width: 300px;
  margin-top: 14px;
}

.proof-strip p,
.product-card p,
.oem-flow p,
.detail-grid span,
.label-grid p,
.factory-copy li,
.contact-link span,
.site-footer span {
  color: var(--muted);
  line-height: 1.56;
}

.styles-section,
.oem-section,
.detail-section,
.label-section,
.factory-section,
.contact-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 76px);
}

.section-intro {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.section-actions {
  margin: -14px 0 28px;
}

.catalog-package {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: end;
  margin: -4px 0 28px;
  padding: 22px 24px;
  border: 1px solid rgba(23, 26, 23, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
}

.catalog-package-copy {
  display: grid;
  gap: 6px;
  max-width: 660px;
}

.catalog-package-copy span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0;
}

.catalog-package-copy strong {
  color: var(--ink);
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.08;
  font-weight: 780;
}

.catalog-package-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.catalog-package-action {
  display: flex;
  justify-content: flex-end;
}

.catalog-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(23, 26, 23, 0.1);
}

.catalog-proof div {
  display: grid;
  gap: 3px;
  padding-right: 22px;
}

.catalog-proof dt,
.catalog-proof dd {
  margin: 0;
}

.catalog-proof dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 740;
  line-height: 1.2;
}

.catalog-proof dd {
  color: var(--ink);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.2;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: minmax(340px, auto);
  gap: 16px;
}

.catalog-showcase {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-strong);
  overflow: hidden;
}

.product-card.large {
  grid-row: span 2;
}

.product-card.wide {
  grid-column: span 2;
  grid-template-columns: 1fr 0.78fr;
  grid-template-rows: auto;
}

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

.catalog-card img {
  aspect-ratio: 4 / 5;
  height: auto;
}

.catalog-card > div {
  gap: 9px;
  padding: 16px;
}

.catalog-card h3 {
  font-size: 18px;
  line-height: 1.18;
}

.catalog-card p {
  min-height: 3em;
  font-size: 14px;
  line-height: 1.42;
}

.catalog-card .product-code {
  padding: 6px 9px;
}

.catalog-card .product-stats.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-card .product-stats div {
  padding: 8px;
}

.catalog-card a {
  margin-top: 2px;
  padding: 12px 14px;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.product-card div {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 21px;
  min-width: 0;
}

.product-code {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(74, 111, 82, 0.08);
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
}

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

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

.product-stats div {
  display: grid;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(23, 26, 23, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.62);
}

.product-stats dt,
.product-stats dd {
  margin: 0;
}

.product-stats dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  line-height: 1.15;
}

.product-stats dd {
  color: var(--ink);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.18;
}

.oem-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  color: var(--surface);
  background: #223229;
}

.oem-copy p,
.oem-flow p {
  color: #dfe7e1;
}

.oem-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.oem-flow article {
  min-height: 164px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.065);
}

.oem-flow span {
  display: block;
  margin-bottom: 34px;
  color: #b9d7c1;
  font-size: 20px;
  font-weight: 760;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.64fr) 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: rgba(255, 255, 255, 0.45);
}

.detail-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(23, 26, 23, 0.1);
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 22px 60px var(--shadow);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.detail-grid div {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-strong);
}

.label-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--surface-strong);
}

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

.label-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.factory-section {
  display: grid;
  grid-template-columns: 1.04fr 0.82fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.factory-board {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
  gap: 14px;
}

.factory-side {
  display: grid;
  gap: 14px;
}

.factory-shot {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 26, 23, 0.12);
  border-radius: 12px;
  background: #171a17;
  box-shadow: 0 18px 48px var(--shadow);
}

.factory-shot img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
}

.factory-shot-main img {
  min-height: 510px;
}

.factory-shot figcaption {
  display: grid;
  gap: 5px;
  padding: 16px 18px 17px;
  color: var(--surface);
  background: linear-gradient(180deg, rgba(23, 26, 23, 0.94), rgba(23, 26, 23, 0.98));
}

.factory-shot figcaption strong {
  color: var(--surface);
  font-size: 14px;
}

.factory-shot figcaption span {
  color: rgba(251, 250, 245, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.factory-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.factory-copy li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  color: var(--surface);
  background: #252b2f;
}

.contact-copy p {
  color: #e3e7eb;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: grid;
  gap: 7px;
  padding: 24px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--surface-strong);
  transition: transform 180ms ease, background 180ms ease;
}

.contact-link.email-card {
  appearance: none;
  width: 100%;
  border: 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.contact-link.whatsapp {
  color: var(--surface);
  background: var(--accent);
}

.contact-link.facebook {
  color: var(--surface);
  background: var(--blue);
}

.contact-link strong {
  font-size: 21px;
}

.contact-link.whatsapp span,
.contact-link.facebook span {
  color: rgba(255, 255, 255, 0.83);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  background: var(--surface-strong);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: stretch;
}

.floating-contact a,
.floating-contact button {
  appearance: none;
  display: inline-grid;
  place-items: center;
  min-width: 112px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 0;
  color: var(--surface);
  background: var(--ink);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
  transition: transform 180ms ease;
}

.floating-contact .whatsapp {
  background: var(--accent);
}

.floating-contact .facebook {
  background: var(--blue);
}

.floating-contact a:hover,
.floating-contact button:hover {
  transform: translateY(-2px);
}

.floating-contact a:active,
.floating-contact button:active {
  transform: translateY(1px);
}

.button:focus-visible,
.contact-link:focus-visible,
.floating-contact a:focus-visible,
.floating-contact button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.copy-toast {
  position: fixed;
  top: 82px;
  left: 50%;
  z-index: 40;
  display: grid;
  gap: 4px;
  max-width: min(360px, calc(100vw - 36px));
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: var(--surface);
  background: rgba(23, 26, 23, 0.94);
  box-shadow: 0 24px 70px rgba(23, 26, 23, 0.28);
  opacity: 0;
  transform: translate(-50%, -10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.copy-toast strong {
  font-size: 14px;
  letter-spacing: 0;
}

.copy-toast span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.45;
}

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .language-menu {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .hero,
  .oem-section,
  .detail-section,
  .label-section,
  .factory-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    min-height: 500px;
  }

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

  .catalog-package {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .catalog-package-action {
    justify-content: flex-start;
  }

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

  .proof-strip article:nth-child(2) {
    border-right: 0;
  }

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

  .product-card.large,
  .product-card.wide {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(320px, 1fr) auto;
  }

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

  .factory-shot-main img {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  * {
    max-width: 100%;
  }

  body {
    padding-bottom: 82px;
    background-size: 34px 34px;
  }

  .site-header {
    position: static;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px 8px;
    min-height: 0;
    padding: 10px 16px 12px;
    width: 100%;
    overflow: visible;
  }

  .site-header > *,
  .hero > *,
  .styles-section > *,
  .oem-section > *,
  .detail-section > *,
  .label-section > *,
  .factory-section > *,
  .contact-section > * {
    min-width: 0;
  }

  .nav-action {
    grid-column: 2;
    grid-row: 1;
    min-height: 40px;
    padding: 0 12px;
  }

  .language-menu {
    grid-column: 3;
    grid-row: 1;
    width: auto;
  }

  .language-trigger {
    justify-content: center;
    width: auto;
    min-height: 40px;
  }

  .language-options {
    position: absolute;
    min-width: 170px;
    max-height: none;
    margin-top: 8px;
    padding: 6px;
    overflow: visible;
    background: var(--surface-strong);
    opacity: 0;
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(33, 39, 35, 0.12);
    pointer-events: none;
  }

  .language-menu.is-open .language-options {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    gap: 18px;
    width: 100%;
    overflow-x: auto;
    padding: 2px 0 4px;
    white-space: nowrap;
    font-size: 12px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 34px 16px 44px;
    gap: 28px;
    width: 100%;
    overflow: hidden;
  }

  h1 {
    max-width: calc(100vw - 32px);
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.05;
  }

  .hero-copy > p:not(.kicker),
  .section-intro p,
  .oem-copy p,
  .detail-copy p,
  .label-section > div > p,
  .factory-copy p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: 0;
    gap: 12px;
  }

  .hero-style {
    aspect-ratio: 4 / 5;
    box-shadow: 0 14px 34px var(--shadow);
  }

  .hero-style figcaption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 8px;
    border-radius: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .buyer-paths,
  .proof-strip,
  .product-showcase,
  .oem-flow,
  .detail-grid,
  .label-grid,
  .factory-board {
    grid-template-columns: 1fr;
  }

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

  .factory-shot-main img,
  .factory-shot img {
    min-height: 260px;
  }

  .buyer-paths {
    margin-inline: 18px;
  }

  .buyer-paths a {
    min-height: auto;
    padding: 20px;
  }

  .proof-strip article {
    min-height: auto;
    padding: 22px 20px;
  }

  .proof-strip div {
    margin-bottom: 22px;
  }

  .proof-strip p {
    margin-top: 10px;
  }

  .buyer-paths a,
  .proof-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .buyer-paths a:last-child,
  .proof-strip article:last-child {
    border-bottom: 0;
  }

  .product-card img {
    aspect-ratio: 4 / 5;
    height: auto;
  }

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

  .styles-section,
  .oem-section,
  .detail-section,
  .label-section,
  .factory-section,
  .contact-section {
    padding: 48px 16px;
  }

  .proof-strip article,
  .oem-flow article,
  .label-grid article,
  .contact-link {
    padding: 20px;
  }

  .proof-strip div,
  .oem-flow span {
    margin-bottom: 22px;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 92px;
  }

  .floating-contact {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: repeat(3, 1fr);
  }

  .floating-contact a,
  .floating-contact button {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 6px;
    font-size: 12px;
  }

  .copy-toast {
    top: 14px;
    right: auto;
    left: 50%;
    width: calc(100vw - 20px);
    max-width: 420px;
  }
}

[dir="rtl"] .site-header,
[dir="rtl"] .hero,
[dir="rtl"] .oem-section,
[dir="rtl"] .detail-section,
[dir="rtl"] .label-section,
[dir="rtl"] .factory-section,
[dir="rtl"] .contact-section {
  direction: rtl;
}

[dir="rtl"] .main-nav,
[dir="rtl"] .hero-actions,
[dir="rtl"] .showroom-notes,
[dir="rtl"] .buyer-paths a,
[dir="rtl"] .proof-strip article,
[dir="rtl"] .product-card div,
[dir="rtl"] .detail-grid div,
[dir="rtl"] .label-grid article,
[dir="rtl"] .contact-link,
[dir="rtl"] .site-footer {
  text-align: right;
}
