:root {
  --ink: #171412;
  --soft-ink: #3a342f;
  --muted: #756d64;
  --paper: #f7f4ee;
  --paper-2: #ebe6dc;
  --white: #fffdf9;
  --line: rgba(45, 37, 30, .12);
  --accent: #9f2f28;
  --accent-2: #c3a06f;
  --sage: #576b5d;
  --sage-deep: #17231d;
  --charcoal: #12100e;
  --gold: #b88b52;
  --shadow-soft: 0 18px 46px rgba(31, 25, 20, .11);
  --shadow-deep: 0 34px 90px rgba(15, 13, 10, .25);
  --radius: 8px;
  --max: 1480px;
  --market-accent: #9f2f28;
  --market-accent-2: #c3a06f;
  --market-line: rgba(159, 47, 40, .18);
  --banner-filter: saturate(.96) contrast(1.02);
  --banner-shade-a: rgba(12,10,8,.88);
  --banner-shade-b: rgba(18,14,10,.7);
  --banner-shade-c: rgba(20,16,12,.2);
  --banner-bottom: rgba(0,0,0,.48);
  --product-image-filter: saturate(1) contrast(1.02);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #faf8f3 0%, var(--paper) 38%, #f4f0e8 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.lang-ja,
body.lang-zh {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans CJK SC", "Noto Sans JP", sans-serif;
}

body.lang-de {
  --market-accent: #566876;
  --market-accent-2: #c2a56a;
  --market-line: rgba(86, 104, 118, .24);
  --banner-filter: saturate(.9) contrast(1.08) brightness(.94);
  --banner-shade-a: rgba(13,18,22,.9);
  --banner-shade-b: rgba(31,42,48,.72);
  --banner-shade-c: rgba(47,58,65,.24);
  --banner-bottom: rgba(8,12,15,.54);
  --product-image-filter: saturate(.94) contrast(1.04);
}

body.lang-fr {
  --market-accent: #9a4f5f;
  --market-accent-2: #c9a079;
  --market-line: rgba(154, 79, 95, .22);
  --banner-filter: saturate(.92) contrast(1) brightness(1.03);
  --banner-shade-a: rgba(29,18,22,.82);
  --banner-shade-b: rgba(65,39,46,.62);
  --banner-shade-c: rgba(118,82,86,.2);
  --banner-bottom: rgba(35,22,25,.44);
  --product-image-filter: saturate(.96) brightness(1.03);
}

body.lang-es {
  --market-accent: #a24c2f;
  --market-accent-2: #d0a05a;
  --market-line: rgba(162, 76, 47, .24);
  --banner-filter: saturate(1.06) contrast(1.02) brightness(1.02);
  --banner-shade-a: rgba(39,20,12,.84);
  --banner-shade-b: rgba(84,43,25,.62);
  --banner-shade-c: rgba(150,92,46,.2);
  --banner-bottom: rgba(48,25,14,.46);
  --product-image-filter: saturate(1.04) contrast(1.01);
}

body.lang-it {
  --market-accent: #576b5d;
  --market-accent-2: #c3a06f;
  --market-line: rgba(87, 107, 93, .25);
  --banner-filter: saturate(.96) contrast(1.06) brightness(.98);
  --banner-shade-a: rgba(16,24,19,.86);
  --banner-shade-b: rgba(39,55,45,.68);
  --banner-shade-c: rgba(89,105,78,.2);
  --banner-bottom: rgba(13,19,15,.5);
  --product-image-filter: saturate(.98) contrast(1.03);
}

body.lang-ja {
  --market-accent: #596f78;
  --market-accent-2: #bcae91;
  --market-line: rgba(89, 111, 120, .22);
  --banner-filter: saturate(.84) contrast(1.02) brightness(1.08);
  --banner-shade-a: rgba(13,18,20,.78);
  --banner-shade-b: rgba(37,47,51,.56);
  --banner-shade-c: rgba(88,100,104,.16);
  --banner-bottom: rgba(14,18,19,.38);
  --product-image-filter: saturate(.9) brightness(1.05);
}

body.lang-zh {
  --market-accent: #9f2f28;
  --market-accent-2: #b88b52;
  --market-line: rgba(159, 47, 40, .24);
  --banner-filter: saturate(1.03) contrast(1.03);
  --banner-shade-a: rgba(25,12,10,.86);
  --banner-shade-b: rgba(69,28,22,.66);
  --banner-shade-c: rgba(140,52,38,.22);
  --banner-bottom: rgba(41,18,14,.5);
  --product-image-filter: saturate(1.02) contrast(1.02);
}

img {
  display: block;
  width: 100%;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 86px;
  padding: 0 clamp(22px, 4vw, 64px);
  color: #fff;
  background: linear-gradient(180deg, rgba(18, 15, 12, .72), rgba(18, 15, 12, .34));
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  left: clamp(22px, 4vw, 64px);
  right: clamp(22px, 4vw, 64px);
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  pointer-events: none;
}

.brand {
  position: relative;
  display: inline-flex;
  width: 124px;
  aspect-ratio: 196 / 124;
}

.brand::before,
.footer-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 253, 249, .94);
  -webkit-mask: url("assets/images/logo.png") center / contain no-repeat;
  mask: url("assets/images/logo.png") center / contain no-repeat;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.28));
}

.brand img {
  opacity: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.3vw, 34px);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 32px 0;
  color: rgba(255,255,255,.82);
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  height: 2px;
  background: var(--market-accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.mobile-nav-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  backdrop-filter: blur(12px);
}

.mobile-nav-toggle span {
  position: absolute;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.mobile-nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-nav-open .mobile-nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-nav-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .mobile-nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,.16);
}

.language-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.language-select {
  height: 38px;
  min-width: 118px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  padding: 0 30px 0 14px;
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .02em;
  outline: none;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.language-select:hover,
.language-select:focus {
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.14);
}

.language-select option {
  color: var(--ink);
  background: var(--white);
}

.header-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--market-accent);
  border-radius: 999px;
  background: var(--market-accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px color-mix(in srgb, var(--market-accent) 24%, transparent);
}

.button.secondary {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button.secondary:hover {
  border-color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.2);
}

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

.banner-slider {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--charcoal);
}

.banner-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 150px clamp(22px, 5.6vw, 86px) 118px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 800ms ease;
}

.banner-image,
.banner-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.banner-image {
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1700ms ease;
  filter: var(--banner-filter);
}

.banner-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, var(--banner-shade-a) 0%, var(--banner-shade-b) 35%, var(--banner-shade-c) 68%, rgba(20,16,12,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12), var(--banner-bottom));
}

.banner-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.banner-slide.is-active .banner-image {
  transform: scale(1);
}

.banner-content {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 760px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--market-accent-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.banner-content h1,
.banner-content h2,
.section-head h2,
.split-copy h2,
.contact-copy h2,
.factory-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.banner-content h1,
.banner-content h2 {
  margin: 0;
  font-size: clamp(42px, 5.1vw, 76px);
  line-height: .98;
  font-weight: 400;
  max-width: 820px;
}

.banner-content p:not(.eyebrow) {
  max-width: 600px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.75;
}

.banner-content .button {
  margin-top: 0;
}

.banner-dots {
  position: absolute;
  left: clamp(22px, 5.6vw, 86px);
  bottom: 112px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner-dots button {
  position: relative;
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
  cursor: pointer;
  overflow: hidden;
  transition: width 220ms ease, background-color 220ms ease, opacity 220ms ease;
}

.banner-dots button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: color-mix(in srgb, var(--market-accent-2) 78%, rgba(255,255,255,.2));
  transform: scaleX(0);
  transform-origin: left;
}

.banner-dots button.is-active {
  width: 48px;
  background: rgba(255,255,255,.22);
}

.banner-dots button.is-active::after {
  animation: bannerDotFill 5s linear forwards;
}

.proof-strip {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.5fr);
  gap: 0;
  max-width: var(--max);
  margin: -54px auto 0;
  padding: 0 clamp(18px, 4vw, 44px);
  position: relative;
  z-index: 5;
}

.proof-intro,
.proof-item {
  background: rgba(255,253,249,.94);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(33, 27, 22, .1);
}

.proof-intro {
  padding: clamp(28px, 3.4vw, 48px);
  border-radius: var(--radius) 0 0 var(--radius);
}

.proof-intro h2 {
  margin: 0;
  max-width: 480px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.3vw, 52px);
  line-height: .98;
  font-weight: 400;
}

.proof-intro p {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.proof-grid {
  display: grid;
  grid-template-columns: .86fr 1.18fr .86fr .94fr .86fr;
}

.proof-item {
  min-height: 188px;
  padding: clamp(24px, 3vw, 40px) 22px;
  border-left: 0;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.proof-item:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.proof-item:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.proof-item strong {
  display: block;
  color: var(--market-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.25vw, 50px);
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
}

.proof-item strong[data-format="comma"] {
  font-size: clamp(31px, 3vw, 46px);
}

.proof-item span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(76px, 8vw, 124px) clamp(18px, 4vw, 44px);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 4vw, 62px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.section-head h2,
.split-copy h2,
.contact-copy h2,
.factory-copy h2 {
  margin: 0;
  font-size: clamp(32px, 3.9vw, 58px);
  line-height: 1.02;
  font-weight: 400;
}

.products .section-head h2 {
  max-width: 760px;
  font-size: clamp(29px, 3.25vw, 48px);
  line-height: 1.08;
}

.section-head p:not(.eyebrow),
.split-copy p:not(.eyebrow),
.contact-copy p:not(.eyebrow),
.factory-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

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

.product-card {
  position: relative;
  display: grid;
  grid-column: span 4;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(31, 25, 20, .06);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.product-card:nth-child(1),
.product-card:nth-child(2) {
  grid-column: span 6;
  min-height: 520px;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--market-line);
  box-shadow: var(--shadow-soft);
}

.product-card img {
  aspect-ratio: 1200 / 780;
  height: auto;
  object-fit: cover;
  background: #f7f4ee;
  filter: var(--product-image-filter);
  transition: transform 800ms ease;
}

.product-card:nth-child(1) img,
.product-card:nth-child(2) img {
  height: auto;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-card > div {
  display: grid;
  align-content: start;
  padding: 26px 26px 8px;
}

.product-card h3,
.advantage-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 720;
}

.product-card p,
.advantage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.product-card a {
  align-self: end;
  justify-self: start;
  margin: 18px 26px 26px;
  color: var(--market-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card a::after {
  content: " ->";
}

.product-addons {
  display: grid;
  grid-column: 1 / -1;
  gap: 12px;
  margin-top: 8px;
  padding: 28px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,255,255,.82), rgba(250,247,240,.72));
}

.product-addons span {
  color: var(--market-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-addons strong {
  max-width: 850px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.14;
  font-weight: 760;
}

.product-addons p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.addon-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.addon-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(31,25,20,.14);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .02em;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 44px) clamp(76px, 8vw, 124px);
}

.split-media,
.split-copy {
  min-height: 660px;
  background: var(--white);
  border: 1px solid var(--line);
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius) 0 0 var(--radius);
}

.split-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 82px);
  border-left: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

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

.mini-grid div {
  min-height: 148px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #faf7f0;
}

.mini-grid strong,
.mini-grid span {
  display: block;
}

.mini-grid strong {
  color: var(--soft-ink);
}

.mini-grid span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

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

.advantage-card {
  position: relative;
  min-height: 238px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,253,249,.96), rgba(246,241,231,.96));
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.advantage-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--market-accent), var(--market-accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.advantage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184,139,82,.32);
  box-shadow: var(--shadow-soft);
}

.advantage-card:hover::after {
  transform: scaleX(1);
}

.advantage-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #241f1b;
  color: #fff;
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.factory-showcase {
  position: relative;
  padding: clamp(76px, 8vw, 124px) clamp(18px, 4vw, 44px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(23,35,29,.98), rgba(12,18,15,.98)),
    var(--sage-deep);
  color: #fff;
}

.factory-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: .28;
  pointer-events: none;
}

.factory-copy,
.factory-panorama,
.factory-gallery,
.factory-list {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.factory-copy {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, .9fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: end;
  margin-bottom: 38px;
}

.factory-copy h2 {
  max-width: 900px;
}

.factory-copy p:not(.eyebrow) {
  color: rgba(255,255,255,.76);
}

.factory-panorama {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
}

.factory-panorama img {
  height: 720px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03);
}

.factory-panorama::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,16,13,.02) 0%, rgba(11,16,13,.08) 46%, rgba(11,16,13,.72) 100%);
}

.factory-stat-grid {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.factory-stat-grid div,
.factory-list div {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(12,18,15,.58);
  backdrop-filter: blur(16px);
}

.factory-stat-grid strong,
.factory-stat-grid span,
.factory-gallery figcaption,
.factory-list strong,
.factory-list span {
  display: block;
}

.factory-stat-grid strong,
.factory-list strong {
  font-size: 18px;
  line-height: 1.2;
}

.factory-stat-grid span,
.factory-gallery figcaption,
.factory-list span {
  margin-top: 9px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
}

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

.factory-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}

.factory-gallery img {
  aspect-ratio: 16 / 9;
  height: 250px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03);
}

.factory-gallery figcaption {
  margin: 0;
  padding: 16px 18px 18px;
  color: rgba(255,255,255,.84);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

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

.process-steps article {
  position: relative;
  min-height: 210px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(31,25,20,.05);
}

.process-steps article::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  height: 1px;
  background: var(--line);
}

.process-steps span {
  display: block;
  color: var(--market-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}

.process-steps strong {
  display: block;
  margin-top: 48px;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 760;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  max-width: var(--max);
  margin: 0 auto clamp(22px, 4vw, 48px);
  padding: 0 clamp(18px, 4vw, 44px) clamp(18px, 4vw, 44px);
}

.contact-copy,
.inquiry-form {
  border: 1px solid rgba(255,255,255,.16);
  background: var(--sage-deep);
  color: var(--white);
}

.contact-copy {
  padding: clamp(44px, 6vw, 82px);
  border-radius: var(--radius) 0 0 var(--radius);
  background:
    linear-gradient(180deg, rgba(23,35,29,.92), rgba(15,22,18,.98)),
    var(--sage-deep);
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255,255,255,.74);
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-cards a {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.86);
  transition: transform 180ms ease, background-color 180ms ease;
}

.contact-cards a:hover {
  transform: translateX(4px);
  background: rgba(255,255,255,.12);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(36px, 5vw, 64px);
  border-left: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #1e1915;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.74);
  font-size: 13px;
}

.inquiry-form .wide,
.inquiry-form button,
.inquiry-form .turnstile-field,
.form-note {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
  font-size: 15px;
  padding: 14px 15px;
  outline: none;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus {
  border-color: rgba(195,160,111,.8);
  background: rgba(255,255,255,.11);
  box-shadow: 0 0 0 4px rgba(195,160,111,.12);
}

.inquiry-form select {
  min-height: 50px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.76) 50%),
    linear-gradient(135deg, rgba(255,255,255,.76) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 12px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.inquiry-form select option {
  color: var(--ink);
  background: var(--white);
}

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

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255,255,255,.44);
}

.form-note {
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: 13px;
}

.turnstile-field {
  min-height: 65px;
}

.site-footer {
  margin-top: clamp(18px, 3vw, 38px);
  padding: clamp(48px, 6vw, 76px) clamp(18px, 4vw, 44px) 28px;
  background:
    linear-gradient(180deg, rgba(18,16,14,.98), rgba(10,9,8,1)),
    var(--charcoal);
  color: #fff;
}

.footer-inner,
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(160px, .72fr));
  gap: clamp(30px, 5vw, 72px);
}

.footer-logo {
  position: relative;
  display: inline-flex;
  width: 128px;
  aspect-ratio: 196 / 124;
}

.footer-logo img {
  opacity: 0;
}

.footer-brand p {
  max-width: 420px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 15px;
  line-height: 1.75;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: rgba(255,255,255,.96);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin-top: 11px;
  color: rgba(255,255,255,.64);
  font-size: 14px;
  line-height: 1.45;
}

.footer-column a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(38px, 5vw, 62px);
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.54);
  font-size: 12px;
  line-height: 1.5;
}

.footer-bottom a {
  color: rgba(255,255,255,.74);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.floating-contacts {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 60;
  display: grid;
  gap: 8px;
}

.floating-whatsapp {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 9px;
  align-items: center;
  min-width: 188px;
  min-height: 54px;
  padding: 9px 12px 9px 9px;
  border-radius: 999px;
  background: rgba(16, 20, 17, .92);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 16px 34px rgba(14,22,17,.24);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp::before {
  content: "WA";
  grid-row: 1 / 4;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: rgba(22, 28, 24, .96);
  box-shadow: 0 18px 38px rgba(14,22,17,.3);
}

.floating-whatsapp span,
.floating-whatsapp strong,
.floating-whatsapp em {
  display: block;
  min-width: 0;
}

.floating-whatsapp span {
  color: rgba(255,255,255,.56);
  font-size: 10px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.floating-whatsapp strong {
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.05;
}

.floating-whatsapp em {
  margin-top: 2px;
  color: rgba(255,255,255,.68);
  font-size: 11px;
  line-height: 1.2;
  font-style: normal;
  white-space: nowrap;
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 760ms ease, transform 760ms ease, clip-path 980ms ease;
}

[data-animate="fade-down"] {
  transform: translateY(-18px);
}

[data-animate="image-reveal"] {
  transform: translateY(0);
  clip-path: inset(0 0 18% 0);
}

[data-animate="card-up"] {
  transform: translateY(34px) scale(.985);
}

.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  clip-path: inset(0 0 0 0);
}

.product-card:nth-child(2),
.advantage-card:nth-child(2),
.proof-item:nth-child(2),
.process-steps article:nth-child(2) {
  transition-delay: 60ms;
}

.product-card:nth-child(3),
.advantage-card:nth-child(3),
.proof-item:nth-child(3),
.process-steps article:nth-child(3) {
  transition-delay: 120ms;
}

.product-card:nth-child(4),
.advantage-card:nth-child(4),
.proof-item:nth-child(4),
.process-steps article:nth-child(4) {
  transition-delay: 180ms;
}

.product-card:nth-child(5),
.advantage-card:nth-child(5),
.proof-item:nth-child(5),
.process-steps article:nth-child(5) {
  transition-delay: 240ms;
}

@keyframes pulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.04); }
}

@supports not ((-webkit-mask: url("")) or (mask: url(""))) {
  .brand::before,
  .footer-logo::before {
    content: none;
  }

  .brand img,
  .footer-logo img {
    opacity: 1;
    filter: grayscale(1) brightness(3.4) drop-shadow(0 12px 22px rgba(0,0,0,.28));
  }
}

@keyframes bannerDotFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 142px 1fr;
    gap: 18px;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 14px;
  }

  .main-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .proof-strip,
  .split-section,
  .contact-section,
  .factory-copy {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-top: 0;
    padding-top: 26px;
  }

  .proof-grid,
  .advantage-grid,
  .process-steps,
  .factory-list,
  .factory-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-intro,
  .proof-item:last-child,
  .split-media,
  .split-copy,
  .contact-copy,
  .inquiry-form {
    border-radius: var(--radius);
  }

  .proof-item,
  .split-copy,
  .inquiry-form {
    border-left: 1px solid var(--line);
  }

  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(2) {
    grid-column: span 6;
  }

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

  .split-media,
  .split-copy {
    min-height: 480px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: fixed;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 9px;
    min-height: 64px;
    padding: 10px 12px;
    overflow: visible;
  }

  .site-header.is-nav-open {
    z-index: 120;
  }

  .site-header::before {
    left: 12px;
    right: 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    width: 88px;
    align-self: center;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    z-index: 2;
  }

  .main-nav {
    position: relative;
    z-index: 3;
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    width: 100%;
    max-width: none;
    max-height: 0;
    margin-top: 0;
    padding: 0 10px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: rgba(20, 17, 14, .94);
    box-shadow: none;
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease,
      max-height 220ms ease,
      padding 180ms ease,
      margin 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease;
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,.04);
    font-size: 12px;
    line-height: 1;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a.is-active,
  .main-nav a:hover {
    background: rgba(255,255,255,.1);
  }

  .site-header.is-nav-open .main-nav {
    max-height: 320px;
    margin-top: 8px;
    padding: 10px;
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 22px 54px rgba(0,0,0,.28);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    width: auto;
    min-width: 0;
    padding-left: 0;
    padding-bottom: 0;
    border-left: 0;
  }

  .language-label {
    width: 1px;
  }

  .language-select,
  .header-cta {
    width: auto;
    max-width: 100%;
    min-width: 0;
  }

  .language-select {
    height: 34px;
    max-width: 86px;
    padding: 0 24px 0 10px;
    font-size: 11px;
  }

  .header-cta {
    min-height: 34px;
    max-width: 108px;
    padding: 0 10px;
    font-size: 10px;
    line-height: 1.08;
    white-space: normal;
    text-align: center;
  }

  .banner-slide {
    padding: 154px 20px 104px;
  }

  .banner-content h1,
  .banner-content h2 {
    max-width: min(318px, calc(100vw - 40px));
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.05;
  }

  .banner-content p:not(.eyebrow) {
    max-width: min(330px, calc(100vw - 40px));
    font-size: 15px;
    line-height: 1.65;
  }

  .eyebrow {
    max-width: min(330px, calc(100vw - 40px));
    gap: 10px;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: .12em;
  }

  .eyebrow::before {
    width: 34px;
    flex: 0 0 34px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: min(330px, calc(100vw - 40px));
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    font-size: 11px;
  }

  .banner-dots {
    left: 20px;
    bottom: 26px;
    gap: 8px;
  }

  .banner-dots button {
    width: 26px;
    height: 3px;
    background: rgba(255,255,255,.28);
  }

  .banner-dots button.is-active {
    width: 38px;
    background: rgba(255,255,255,.2);
  }

  .section,
  .factory-showcase {
    padding: 58px 18px;
  }

  .proof-strip,
  .split-section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-head,
  .proof-grid,
  .mini-grid,
  .advantage-grid,
  .process-steps,
  .factory-gallery,
  .factory-list,
  .factory-stat-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(2) {
    grid-column: span 12;
    min-height: auto;
  }

  .product-card img,
  .product-card:nth-child(1) img,
  .product-card:nth-child(2) img {
    height: auto;
  }

  .product-addons {
    padding: 24px 20px;
  }

  .addon-links a {
    width: 100%;
    justify-content: center;
  }

  .product-card h3,
  .advantage-card h3 {
    font-size: 21px;
    line-height: 1.14;
  }

  .process-steps strong {
    margin-top: 28px;
    font-size: 17px;
  }

  .split-section,
  .contact-section {
    padding-bottom: 58px;
  }

  .split-media,
  .split-copy {
    min-height: auto;
  }

  .split-media img {
    min-height: 320px;
  }

  .factory-panorama {
    min-height: 660px;
  }

  .factory-panorama img {
    height: 660px;
  }

  .factory-stat-grid {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .contact-copy,
  .inquiry-form {
    padding: 34px 20px;
  }

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

  .footer-bottom {
    display: grid;
  }

  .floating-whatsapp {
    grid-template-columns: 26px minmax(0, 1fr);
    column-gap: 7px;
    min-width: 0;
    min-height: 42px;
    padding: 6px 8px 6px 6px;
  }

  .floating-whatsapp::before {
    width: 26px;
    height: 26px;
    font-size: 9px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp strong {
    margin: 0;
    font-size: 12px;
  }

  .floating-whatsapp em {
    margin-top: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 10px;
  }

  .floating-contacts {
    right: 12px;
    bottom: 8px;
    width: min(360px, calc(100vw - 24px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}
