:root {
  --ivory: #f6f3ea;
  --paper: #fbf9f3;
  --sage: #9da78c;
  --sage-deep: #69745f;
  --ink: #252820;
  --muted: #6f7268;
  --line: rgba(37, 40, 32, .17);
  --white: #fff;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.drawer-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin-top: 0; }
button { color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 100; background: var(--ink); color: white; padding: 10px 16px; }
.skip-link:focus { top: 16px; }

.topbar {
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 6px 20px;
  color: #eff2eb;
  background: var(--sage-deep);
  text-align: center;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.topbar p { margin: 0; }

.site-header {
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  padding: 0 clamp(22px, 4vw, 72px);
  background: rgba(246, 243, 234, .94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color .25s ease;
}
.site-header.scrolled { border-color: var(--line); }
.brand { display: flex; align-items: center; gap: 12px; justify-self: start; }
.brand-mark { position: relative; width: 26px; height: 31px; display: block; }
.brand-mark i { position: absolute; border: 1px solid var(--sage-deep); border-radius: 50% 0 50% 50%; width: 17px; height: 25px; transform: rotate(28deg); }
.brand-mark i:first-child { left: 1px; top: 2px; }
.brand-mark i:last-child { right: 0; bottom: 0; transform: rotate(-28deg) scaleX(-1); }
.brand-type { font-size: 16px; letter-spacing: .22em; font-weight: 600; white-space: nowrap; }
.brand-type small { font-size: 9px; letter-spacing: .28em; color: var(--sage-deep); }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 3vw, 44px); }
.main-nav a { position: relative; font-size: 12px; letter-spacing: .07em; text-transform: uppercase; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--ink); transition: right .25s ease; }
.main-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; justify-self: end; }
.language-picker select { border: 0; background: transparent; cursor: pointer; font-size: 12px; padding: 8px 2px; }
.inquiry-button { border: 0; background: none; display: flex; align-items: center; gap: 9px; cursor: pointer; padding: 8px 0; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.inquiry-button b { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--ink); color: white; font-size: 11px; }
.menu-toggle { display: none; border: 0; background: none; width: 34px; height: 34px; padding: 9px 5px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 1px; background: var(--ink); margin: 5px 0; }

.hero {
  position: relative;
  min-height: calc(100vh - 106px);
  max-height: 920px;
  background: #e8e1d3;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; background: url("assets/hero-skincare-oem.jpg") center/cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(246,243,234,.92) 0%, rgba(246,243,234,.65) 35%, rgba(246,243,234,0) 64%); }
.hero-content {
  position: relative;
  z-index: 2;
  width: min(570px, 46vw);
  padding: clamp(90px, 13vh, 150px) 0 120px clamp(24px, 7vw, 126px);
}
.eyebrow { margin-bottom: 22px; font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--sage-deep); }
.hero h1, .section-heading h2, .ingredient-copy h2, .factory-copy h2, .cta-inner h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.03em;
}
.hero h1 { font-size: clamp(52px, 6vw, 94px); line-height: .94; margin-bottom: 30px; }
.hero-copy { max-width: 500px; color: #55594f; font-size: clamp(14px, 1.2vw, 17px); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 12px 24px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: .25s ease;
}
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: var(--sage-deep); }
.button-outline { border-color: var(--ink); background: transparent; }
.button-outline:hover { background: var(--ink); color: white; }
.button-light { background: var(--ivory); color: var(--ink); }
.button-light:hover { background: white; }
.text-link { border: 0; border-bottom: 1px solid currentColor; background: none; padding: 4px 0; cursor: pointer; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.hero-note { position: absolute; z-index: 2; left: clamp(24px, 7vw, 126px); bottom: 28px; font-size: 11px; }
.hero-note span { display: block; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 4px; color: var(--sage-deep); }
.hero-note p { margin: 0; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: var(--paper); padding: 0 clamp(22px, 5vw, 90px); }
.trust-strip article { min-height: 114px; display: flex; flex-direction: column; justify-content: center; padding: 24px clamp(18px, 3vw, 44px); border-right: 1px solid var(--line); }
.trust-strip article:first-child { border-left: 1px solid var(--line); }
.trust-strip strong { font-family: var(--serif); font-weight: 400; font-size: 26px; }
.trust-strip span { margin-top: 3px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }

.section-pad { padding: clamp(90px, 11vw, 168px) clamp(22px, 7vw, 126px); }
.section-heading { max-width: 760px; margin-bottom: 60px; }
.section-heading.split { max-width: none; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.section-heading h2, .ingredient-copy h2, .factory-copy h2, .cta-inner h2 { font-size: clamp(40px, 4.4vw, 70px); line-height: 1.02; margin-bottom: 0; }
.section-heading.split > p { max-width: 520px; margin: 0; color: var(--muted); }

.intro { background: var(--ivory); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.service-card { min-height: 430px; padding: clamp(28px, 3.5vw, 58px); border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.service-card:last-child { border-right: 0; }
.service-card.featured { background: #e3e6da; }
.service-card > span { color: var(--sage-deep); font-family: var(--serif); font-size: 20px; }
.service-card h3 { font-family: var(--serif); font-weight: 400; font-size: 34px; margin: 75px 0 18px; }
.service-card p { color: var(--muted); }
.service-card ul { margin: auto 0 0; padding: 22px 0 0; list-style: none; border-top: 1px solid var(--line); }
.service-card li { padding: 5px 0; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }

.factory-campus { position: relative; min-height: 900px; overflow: hidden; background: #70766b; color: white; }
.factory-campus > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.factory-campus-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,26,21,.84) 0%, rgba(23,26,21,.55) 40%, rgba(23,26,21,.05) 70%), linear-gradient(0deg, rgba(23,26,21,.55), transparent 38%); }
.factory-campus-copy { position: relative; z-index: 2; width: min(730px, 58vw); padding: clamp(110px, 14vw, 210px) 0 220px clamp(24px, 7vw, 126px); }
.factory-campus-copy .eyebrow { color: #d7ddcf; }
.factory-campus-copy h2 { margin-bottom: 28px; font-family: var(--serif); font-size: clamp(52px, 6vw, 90px); line-height: .96; font-weight: 400; letter-spacing: -.035em; }
.factory-campus-copy > p:not(.eyebrow) { max-width: 620px; color: #d4d7d0; font-size: 16px; }
.campus-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.campus-actions .button { gap: 10px; }
.factory-demo-note { position: absolute; z-index: 2; top: 28px; right: clamp(24px, 4vw, 68px); max-width: 330px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.38); background: rgba(20,23,18,.52); backdrop-filter: blur(10px); }
.factory-demo-note strong, .factory-demo-note span { display: block; }
.factory-demo-note strong { margin-bottom: 5px; color: #e6e9e1; font-size: 8px; letter-spacing: .15em; }
.factory-demo-note span { color: #bdc2b8; font-size: 10px; }
.factory-campus-stats { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: repeat(4,1fr); padding: 0 clamp(24px, 7vw, 126px); background: rgba(24,27,22,.83); backdrop-filter: blur(12px); }
.factory-campus-stats article { min-height: 126px; display: flex; align-items: center; gap: 18px; padding: 22px clamp(14px, 2vw, 32px); border-left: 1px solid rgba(255,255,255,.17); }
.factory-campus-stats article:last-child { border-right: 1px solid rgba(255,255,255,.17); }
.factory-campus-stats span { color: #aeb8a5; font-family: var(--serif); }
.factory-campus-stats strong { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.factory-workflow { background: var(--paper); }
.factory-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.6vw, 40px); }
.factory-scene { min-width: 0; }
.factory-scene-wide { grid-column: 1 / -1; }
.factory-scene-image { position: relative; aspect-ratio: 1.42 / 1; overflow: hidden; background: #ddd; }
.factory-scene-wide .factory-scene-image { aspect-ratio: 2.35 / 1; }
.factory-scene-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.factory-scene:hover img { transform: scale(1.02); }
.factory-scene-image > span { position: absolute; top: 16px; left: 16px; padding: 7px 10px; background: rgba(251,249,243,.88); color: var(--muted); font-size: 8px; letter-spacing: .13em; backdrop-filter: blur(6px); }
.factory-scene-copy { display: grid; grid-template-columns: 46px 1fr; gap: 20px; padding: 24px 4px 40px; border-bottom: 1px solid var(--line); }
.factory-scene-copy > span { color: var(--sage-deep); font-family: var(--serif); }
.factory-scene-copy h3 { margin-bottom: 7px; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.factory-scene-copy p { max-width: 700px; margin: 0; color: var(--muted); font-size: 13px; }
.factory-control-rail { display: flex; align-items: center; gap: 18px; margin-top: 48px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.factory-control-rail span { flex: 0 0 auto; font-size: 9px; font-weight: 600; letter-spacing: .15em; }
.factory-control-rail i { flex: 1 1 auto; height: 1px; position: relative; background: var(--line); }
.factory-control-rail i::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid var(--sage-deep); border-right: 1px solid var(--sage-deep); transform: rotate(45deg); }

.export-reach { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(60px, 9vw, 145px); align-items: center; background: #dfe3d6; }
.export-map { position: relative; min-height: 620px; border: 1px solid rgba(37,40,32,.2); background: radial-gradient(circle at center, rgba(255,255,255,.7), rgba(255,255,255,.08) 60%); overflow: hidden; }
.export-map::before, .export-map::after { content: ""; position: absolute; inset: 50% auto auto 50%; border: 1px solid rgba(105,116,95,.18); border-radius: 50%; transform: translate(-50%,-50%); }
.export-map::before { width: 390px; height: 390px; }
.export-map::after { width: 250px; height: 250px; }
.export-map svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.export-map svg path { fill: none; stroke: var(--sage-deep); stroke-width: 1.4; stroke-dasharray: 6 8; animation: routePulse 12s linear infinite; }
.export-map svg circle { fill: var(--ink); }
.export-map svg .hub-ring { fill: rgba(255,255,255,.6); stroke: var(--sage-deep); stroke-width: 1; }
.export-map svg .hub-dot { fill: var(--sage-deep); }
@keyframes routePulse { to { stroke-dashoffset: -140; } }
.export-hub { position: absolute; left: 50%; top: 52.7%; transform: translate(-50%,-50%); z-index: 2; text-align: center; }
.export-hub small, .export-hub strong { display: block; }
.export-hub small { color: var(--muted); font-size: 7px; letter-spacing: .14em; }
.export-hub strong { margin-top: 3px; font-family: var(--serif); font-size: 18px; font-weight: 400; }
.region { position: absolute; padding: 7px 9px; background: rgba(251,249,243,.78); font-size: 8px; letter-spacing: .13em; }
.region-vietnam { left: 8%; top: 12%; }
.region-thailand { left: 37%; top: 7%; }
.region-china { left: 4%; top: 49%; }
.region-uk { right: 7%; top: 12%; }
.region-middle-east { right: 4%; bottom: 12%; }
.region-americas { left: 7%; bottom: 9%; }
.export-copy h2 { margin-bottom: 24px; font-family: var(--serif); font-size: clamp(46px, 4.5vw, 70px); line-height: 1.02; font-weight: 400; }
.export-copy > p:not(.eyebrow) { color: #5c6257; }
.export-copy ul { margin: 34px 0 38px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.export-copy li { display: grid; grid-template-columns: 36px 1fr; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.export-copy li span { color: var(--sage-deep); font-family: var(--serif); }
.export-copy li strong { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }

.story-hub { background: #e5e6dd; }
.video-showcase { display: grid; grid-template-columns: 1.55fr .85fr; gap: clamp(18px, 2.5vw, 38px); }
.video-feature, .video-list-card { position: relative; border: 0; padding: 0; overflow: hidden; background: #d8d6cc; cursor: pointer; text-align: left; }
.video-feature { min-height: 680px; }
.video-feature > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center 56%; transition: transform .8s ease; }
.video-feature:hover > img, .video-list-card:hover > img { transform: scale(1.025); }
.video-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(21,23,18,.7)); }
.play-button { display: grid; place-items: center; width: 76px; height: 76px; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; background: rgba(246,243,234,.13); color: white; font-size: 19px; padding-left: 4px; backdrop-filter: blur(8px); }
.video-feature > .play-button { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.video-feature-copy { position: absolute; left: clamp(24px, 4vw, 58px); right: 24px; bottom: clamp(24px, 4vw, 52px); color: white; }
.video-feature-copy small, .video-list-card small { display: block; margin-bottom: 8px; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; opacity: .8; }
.video-feature-copy strong { display: block; max-width: 520px; font-family: var(--serif); font-size: clamp(34px, 4vw, 58px); line-height: 1; font-weight: 400; }
.video-list { display: grid; grid-template-rows: 1fr 1fr auto; gap: 16px; }
.video-list-card { min-height: 220px; color: white; }
.video-list-card::after { content: "▶"; position: absolute; top: 20px; right: 20px; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(246,243,234,.84); color: var(--ink); font-size: 11px; }
.video-list-card > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .8s ease; }
.video-list-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 25%, rgba(21,23,18,.76)); }
.video-list-card > span { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 21px; }
.video-list-card strong { display: block; padding-right: 48px; font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.08; }
.video-list-card em { position: absolute; right: 0; bottom: 2px; font-style: normal; font-size: 10px; letter-spacing: .1em; }
.video-upload-note { display: flex; align-items: center; gap: 18px; min-height: 96px; padding: 18px 22px; border: 1px dashed rgba(37,40,32,.35); }
.video-upload-note > span { display: grid; place-items: center; flex: 0 0 48px; width: 48px; height: 48px; border-radius: 50%; background: var(--paper); font-family: var(--serif); font-size: 28px; }
.video-upload-note strong { display: block; font-family: var(--serif); font-size: 19px; font-weight: 400; }
.video-upload-note p { margin: 3px 0 0; color: var(--muted); font-size: 10px; letter-spacing: .08em; }
.creative-marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink); color: #dfe3d6; }
.creative-marquee div { width: max-content; padding: 17px 0; white-space: nowrap; font-size: 10px; letter-spacing: .22em; animation: marquee 36s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

.catalog-section { background: var(--paper); }
.catalog-truth-note { display: flex; justify-content: space-between; gap: 32px; margin: -24px 0 34px; padding: 18px 20px; border-left: 3px solid var(--sage-deep); background: #eceee6; }
.catalog-truth-note span { flex: 0 0 auto; font-size: 9px; font-weight: 600; letter-spacing: .13em; color: var(--sage-deep); }
.catalog-truth-note p { max-width: 760px; margin: 0; color: var(--muted); font-size: 12px; }
.category-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 34px; }
.category-tabs button { min-height: 38px; border: 1px solid var(--line); background: transparent; padding: 8px 17px; cursor: pointer; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.category-tabs button.active, .category-tabs button:hover { color: white; background: var(--sage-deep); border-color: var(--sage-deep); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 1.8vw, 28px); }
.product-card { min-width: 0; transition: opacity .25s ease, transform .25s ease; }
.product-card.hidden { display: none; }
.product-card-image { position: relative; overflow: hidden; background: #e7e3d8; aspect-ratio: 1/1.04; cursor: pointer; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-card-image img { transform: scale(1.035); }
.product-card-badge { position: absolute; top: 14px; left: 14px; background: rgba(251,249,243,.88); padding: 7px 10px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(6px); }
.product-card-body { padding: 20px 2px 32px; }
.product-code { margin-bottom: 7px; color: var(--sage-deep); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.product-card h3 { margin-bottom: 5px; font-family: var(--serif); font-weight: 400; font-size: 25px; }
.product-card p { margin-bottom: 16px; color: var(--muted); font-size: 13px; }
.product-meta { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); padding-top: 13px; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.product-card-actions { display: flex; gap: 18px; align-items: center; margin-top: 18px; }
.product-card-actions button { border: 0; background: none; padding: 0 0 3px; cursor: pointer; font-size: 11px; border-bottom: 1px solid currentColor; }
.product-card-actions .quick-add { color: var(--sage-deep); }
.catalog-footer { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 58px; padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.catalog-footer p { margin: 0; color: var(--muted); }
.catalog-footer strong { color: var(--ink); }

.market-proof { background: #ebe9df; }
.proof-status { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; margin-bottom: 32px; padding: 18px 20px; border: 1px solid var(--line); background: rgba(255,255,255,.42); }
.proof-status span, .proof-status strong { font-size: 8px; letter-spacing: .14em; }
.proof-status span { color: var(--sage-deep); font-weight: 600; }
.proof-status strong { padding: 7px 10px; background: var(--ink); color: white; white-space: nowrap; }
.proof-status p { margin: 0; color: var(--muted); font-size: 11px; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.3vw, 34px); }
.proof-visual { position: relative; min-height: 610px; overflow: hidden; background: #ddd9cf; }
.proof-visual img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.proof-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(20,22,18,.82)); }
.proof-overlay { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 28px; color: white; }
.proof-overlay span { font-size: 8px; letter-spacing: .15em; opacity: .78; }
.proof-overlay h3 { margin: 9px 0 7px; font-family: var(--serif); font-size: 35px; line-height: 1.02; font-weight: 400; }
.proof-overlay p { max-width: 460px; margin: 0; color: rgba(255,255,255,.75); font-size: 11px; }
.proof-board { grid-column: 1 / -1; display: grid; grid-template-columns: .65fr 1.35fr; gap: 54px; padding: clamp(32px, 5vw, 72px); background: var(--ink); color: white; }
.proof-board-head span, .proof-board-head strong { display: block; }
.proof-board-head span { color: #9da78c; font-size: 8px; letter-spacing: .15em; }
.proof-board-head strong { max-width: 350px; margin-top: 22px; font-family: var(--serif); font-size: clamp(38px, 4vw, 58px); line-height: 1; font-weight: 400; }
.proof-board ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.proof-board li { display: grid; grid-template-columns: 34px 1fr auto; gap: 16px; align-items: start; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.proof-board li > span { color: #9da78c; font-family: var(--serif); }
.proof-board li strong { font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
.proof-board li p { margin: 4px 0 0; color: #aeb2a8; font-size: 10px; }
.proof-board li em { padding: 5px 7px; border: 1px solid rgba(255,255,255,.28); color: #b9bdb4; font-size: 7px; letter-spacing: .1em; font-style: normal; white-space: nowrap; }
.attachment-center { display: grid; grid-template-columns: .85fr 1.15fr; gap: 55px; align-items: start; margin-top: 34px; padding: clamp(32px, 5vw, 68px); border: 1px solid var(--line); background: var(--paper); }
.attachment-copy h3 { margin-bottom: 20px; font-family: var(--serif); font-size: clamp(36px, 3.8vw, 55px); line-height: 1.02; font-weight: 400; }
.attachment-copy > p:not(.eyebrow) { color: var(--muted); }
.attachment-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.attachment-slots > div { min-height: 140px; display: flex; flex-direction: column; justify-content: space-between; padding: 18px; border: 1px dashed rgba(37,40,32,.32); background: #f2f0e8; }
.attachment-slots span { color: var(--sage-deep); font-size: 8px; letter-spacing: .13em; }
.attachment-slots strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.attachment-slots small { color: var(--muted); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.attachment-center > .button { grid-column: 2; justify-self: start; }

.creator-section { background: var(--ivory); }
.creator-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(16px, 2.2vw, 34px); align-items: stretch; }
.creator-card { position: relative; min-height: 590px; overflow: hidden; background: #ddd9cf; }
.creator-card-tall { transform: translateY(42px); }
.creator-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.creator-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(19,21,17,.78)); }
.creator-caption { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 24px; color: white; }
.creator-caption span, .creator-caption small { display: block; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; opacity: .78; }
.creator-caption strong { display: block; margin: 8px 0 12px; font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1.05; }
.creator-brief { min-height: 590px; display: flex; flex-direction: column; padding: clamp(28px, 3.5vw, 52px); background: #dfe3d6; }
.creator-brief h3 { max-width: 380px; font-family: var(--serif); font-size: clamp(34px, 3vw, 46px); line-height: 1.02; font-weight: 400; }
.creator-brief ol { margin: auto 0 30px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.creator-brief li { display: grid; grid-template-columns: 34px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.creator-brief li > span { color: var(--sage-deep); font-family: var(--serif); }
.creator-brief li strong { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.creator-brief li p { margin: 3px 0 0; color: var(--muted); font-size: 11px; }
.creator-brief .button { align-self: flex-start; }

.reviews-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 8vw, 120px); background: var(--paper); }
.reviews-intro { align-self: center; }
.reviews-intro h2 { font-family: var(--serif); font-size: clamp(42px, 4vw, 64px); line-height: 1.02; font-weight: 400; }
.reviews-intro > p:not(.eyebrow) { color: var(--muted); }
.review-score { display: flex; align-items: center; gap: 20px; margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line); }
.review-score > strong { font-family: var(--serif); font-size: 54px; font-weight: 400; }
.review-score > span { color: #a18444; letter-spacing: .12em; }
.review-score small { display: block; margin-top: 5px; color: var(--muted); font-size: 8px; letter-spacing: .15em; }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.review-card { min-height: 330px; display: flex; flex-direction: column; padding: clamp(26px, 3vw, 42px); border: 1px solid var(--line); background: var(--ivory); }
.review-card.featured { background: #e1e4d7; }
.review-card:last-child { grid-column: 1 / -1; min-height: 280px; }
.review-label { align-self: flex-start; padding: 6px 9px; background: var(--paper); color: var(--muted); font-size: 8px; letter-spacing: .13em; }
.stars { margin: 32px 0 15px; color: #9b7f43; letter-spacing: .1em; }
.review-card blockquote { margin: 0 0 36px; font-family: var(--serif); font-size: 23px; line-height: 1.35; }
.review-card footer { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.review-card footer > b { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: white; font-size: 10px; letter-spacing: .1em; }
.review-card footer span, .review-card footer small { display: block; }
.review-card footer strong { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.review-card footer small { margin-top: 2px; color: var(--muted); font-size: 8px; letter-spacing: .1em; }

.ingredient-story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(70px, 10vw, 180px); background: #e1e4d7; }
.ingredient-copy { align-self: center; }
.ingredient-copy h2 { max-width: 650px; margin-bottom: 28px; }
.ingredient-copy > p:not(.eyebrow) { max-width: 560px; color: #5e6357; margin-bottom: 30px; }
.ingredient-list { border-top: 1px solid var(--line); }
.ingredient-list article { display: grid; grid-template-columns: 44px 1fr; gap: 20px; align-items: start; padding: 27px 0; border-bottom: 1px solid var(--line); }
.ingredient-list article > span { font-family: var(--serif); color: var(--sage-deep); }
.ingredient-list h3 { font-family: var(--serif); font-size: 27px; font-weight: 400; margin-bottom: 4px; }
.ingredient-list p { margin: 0; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }

.factory-section { display: grid; grid-template-columns: 1.2fr .8fr; min-height: 700px; background: var(--ink); color: white; }
.factory-image { background: url("assets/factory-lab.jpg") center/cover no-repeat; min-height: 620px; }
.factory-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 7vw, 120px); }
.factory-copy .eyebrow { color: #cbd3bf; }
.factory-copy h2 { margin-bottom: 26px; }
.factory-copy > p:not(.eyebrow) { color: #bfc2b9; }
.factory-points { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 20px; margin: 32px 0 42px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.factory-points span { font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.factory-copy .button { align-self: flex-start; }

.process { background: var(--ivory); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.process-grid li { position: relative; min-height: 280px; padding: 28px 32px 32px 0; border-bottom: 1px solid var(--line); }
.process-grid li:not(:last-child) { border-right: 1px solid var(--line); margin-right: 32px; }
.process-grid span { color: var(--sage-deep); font-family: var(--serif); }
.process-grid h3 { margin: 95px 0 12px; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.process-grid p { color: var(--muted); font-size: 13px; }

.cta-section { padding: 32px; background: var(--ivory); }
.cta-inner { min-height: 530px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: #dfe3d6; padding: 80px 24px; }
.cta-inner h2 { max-width: 850px; margin-bottom: 24px; }
.cta-inner > p:not(.eyebrow) { max-width: 610px; color: var(--muted); }
.cta-inner .button { margin-top: 22px; }

.site-footer { display: grid; grid-template-columns: 1.5fr .7fr 1fr 1.2fr; gap: 50px; padding: 70px clamp(22px, 7vw, 126px); background: var(--ink); color: #d9dcd3; }
.site-footer h3 { margin-bottom: 16px; font-size: 10px; color: #9ca095; letter-spacing: .14em; text-transform: uppercase; }
.site-footer a, .site-footer span { display: block; margin: 8px 0; font-size: 12px; }
.footer-brand .brand-type { color: white; display: block; margin-bottom: 18px; }
.footer-brand p, .footer-note p { color: #9fa39a; font-size: 12px; }
.footer-note { display: flex; flex-direction: column; justify-content: space-between; }

.drawer-backdrop { position: fixed; inset: 0; z-index: 70; background: rgba(20,22,18,.45); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.inquiry-drawer { position: fixed; z-index: 80; inset: 0 0 0 auto; width: min(680px, 100%); background: var(--paper); padding: clamp(26px, 4vw, 54px); overflow-y: auto; transform: translateX(101%); transition: transform .4s cubic-bezier(.25,.8,.25,1); }
.inquiry-drawer.open { transform: translateX(0); }
.drawer-header { display: flex; justify-content: space-between; align-items: start; gap: 20px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.drawer-header h2 { font-family: var(--serif); font-weight: 400; font-size: 36px; margin: 0; }
.icon-button, .modal-close { border: 0; background: none; font-family: var(--serif); font-size: 35px; font-weight: 200; line-height: 1; cursor: pointer; }
.drawer-products { padding: 18px 0; }
.drawer-empty { color: var(--muted); font-size: 13px; padding: 22px 0; }
.drawer-product { display: grid; grid-template-columns: 68px 1fr auto; align-items: center; gap: 15px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.drawer-product img { width: 68px; height: 68px; object-fit: cover; }
.drawer-product h3 { font-family: var(--serif); font-size: 17px; font-weight: 400; margin: 0; }
.drawer-product p { margin: 2px 0 0; font-size: 10px; color: var(--muted); }
.drawer-product button { border: 0; background: none; cursor: pointer; color: var(--muted); }
.quote-form { margin-top: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form label { display: block; margin-bottom: 18px; }
.quote-form label > span { display: block; margin-bottom: 7px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; background: white; padding: 13px 14px; outline: none; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--sage-deep); box-shadow: 0 0 0 2px rgba(105,116,95,.12); }
.submit-button { width: 100%; }
.form-note { margin: 13px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.success-message { display: none; text-align: center; padding: 70px 10px; }
.success-message.show { display: block; }
.success-message > span { display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 20px; border-radius: 50%; background: #dfe3d6; font-size: 22px; }
.success-message h3 { font-family: var(--serif); font-weight: 400; font-size: 32px; }
.success-message p { color: var(--muted); }

.product-modal { width: min(980px, calc(100% - 32px)); max-height: calc(100vh - 32px); border: 0; padding: 0; background: var(--paper); color: var(--ink); }
.product-modal::backdrop { background: rgba(20,22,18,.62); backdrop-filter: blur(3px); }
.product-modal[open] { display: grid; grid-template-columns: 1fr 1fr; }
.modal-image { min-height: 650px; background: #ebe7dc; overflow: hidden; }
.modal-image img { width: 100%; height: 100%; object-fit: cover; }
.modal-content { padding: clamp(38px, 5vw, 72px); overflow-y: auto; }
.modal-content h2 { font-family: var(--serif); font-size: 42px; font-weight: 400; line-height: 1.05; }
.modal-content > p:not(.eyebrow) { color: var(--muted); }
.modal-close { position: absolute; top: 20px; right: 22px; z-index: 2; }
.spec-list { margin: 30px 0; border-top: 1px solid var(--line); }
.spec-list div { display: grid; grid-template-columns: 130px 1fr; gap: 15px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.spec-list dt { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.spec-list dd { margin: 0; font-size: 13px; }
.customizable { background: #e4e7dc; padding: 20px; margin-bottom: 28px; }
.customizable span { font-size: 9px; letter-spacing: .13em; color: var(--sage-deep); }
.customizable p { margin: 6px 0 0; font-size: 12px; }

.video-modal { width: min(1050px, calc(100% - 32px)); max-height: calc(100vh - 32px); border: 0; padding: 0; background: var(--paper); color: var(--ink); }
.video-modal::backdrop { background: rgba(20,22,18,.7); backdrop-filter: blur(4px); }
.video-modal[open] { display: grid; grid-template-columns: 1.35fr .65fr; }
.video-modal-stage { position: relative; min-height: 660px; overflow: hidden; background: #ddd9cf; }
.video-modal-stage img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.video-modal-stage video { display: none; width: 100%; height: 100%; position: absolute; z-index: 2; inset: 0; object-fit: contain; background: #111; }
.video-modal-stage.has-video video { display: block; }
.video-modal-stage.has-video img, .video-modal-stage.has-video .play-button, .video-modal-stage.has-video::after { display: none; }
.video-modal-stage::after { content: ""; position: absolute; inset: 0; background: rgba(22,24,20,.12); }
.video-modal-stage .play-button { position: absolute; z-index: 1; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.video-modal-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 5vw, 70px); }
.video-modal-copy h2 { font-family: var(--serif); font-size: clamp(34px, 4vw, 54px); line-height: 1.02; font-weight: 400; }
.video-modal-copy > p:not(.eyebrow) { color: var(--muted); }
.video-modal-copy .button { align-self: flex-start; margin-top: 22px; }
.video-modal .modal-close { color: white; text-shadow: 0 1px 8px rgba(0,0,0,.4); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

html[dir="rtl"] .site-header { direction: rtl; }
html[dir="rtl"] .hero-content { padding-left: 0; padding-right: clamp(24px, 7vw, 126px); }
html[dir="rtl"] .hero-note { left: auto; right: clamp(24px, 7vw, 126px); }
html[dir="rtl"] .hero::after { background: linear-gradient(270deg, rgba(246,243,234,.92) 0%, rgba(246,243,234,.65) 35%, rgba(246,243,234,0) 64%); }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: auto 1fr auto; gap: 20px; }
  .menu-toggle { display: block; grid-column: 2; grid-row: 1; justify-self: end; }
  .header-actions { grid-column: 3; }
  .main-nav { position: fixed; top: 106px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 28px; background: var(--paper); border-bottom: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .hero-content { width: min(610px, 70vw); }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip article:nth-child(2) { border-right: 0; }
  .trust-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 340px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .service-card h3 { margin-top: 45px; }
  .factory-campus-copy { width: min(720px, 75vw); }
  .factory-campus-stats { grid-template-columns: 1fr 1fr; }
  .factory-campus-stats article { min-height: 90px; }
  .export-reach { grid-template-columns: 1fr; }
  .export-map { min-height: 560px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .video-showcase { grid-template-columns: 1fr; }
  .video-feature { min-height: 620px; }
  .video-list { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .video-upload-note { grid-column: 1 / -1; }
  .creator-grid { grid-template-columns: 1fr 1fr; }
  .attachment-center { grid-template-columns: 1fr; }
  .attachment-center > .button { grid-column: auto; }
  .creator-brief { grid-column: 1 / -1; }
  .creator-card-tall { transform: none; }
  .reviews-section { grid-template-columns: 1fr; }
  .ingredient-story { grid-template-columns: 1fr; }
  .factory-section { grid-template-columns: 1fr; }
  .factory-image { min-height: 520px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid li:nth-child(2) { border-right: 0; margin-right: 0; }
  .site-footer { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-note { grid-column: 1 / -1; flex-direction: row; gap: 30px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 28px; }
}

@media (max-width: 700px) {
  :root { --header-h: 66px; }
  .topbar { font-size: 9px; }
  .site-header { grid-template-columns: 1fr auto auto; padding: 0 18px; }
  .brand-mark { display: none; }
  .brand-type { font-size: 13px; }
  .main-nav { top: 96px; }
  .inquiry-button > span { display: none; }
  .header-actions { gap: 10px; }
  .hero { min-height: 760px; max-height: none; }
  .hero-media { background-position: 66% center; }
  .hero::after { background: linear-gradient(180deg, rgba(246,243,234,.9) 0%, rgba(246,243,234,.78) 46%, rgba(246,243,234,.05) 75%); }
  .hero-content { width: auto; padding: 70px 22px 280px; }
  .hero h1 { font-size: 52px; }
  .hero-copy { max-width: 440px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-note { left: 22px; right: 22px; bottom: 20px; padding: 13px; background: rgba(246,243,234,.83); }
  .trust-strip { padding: 0 14px; }
  .trust-strip article { min-height: 95px; padding: 18px 14px; }
  .trust-strip strong { font-size: 20px; }
  .trust-strip span { font-size: 9px; }
  .section-pad { padding: 82px 20px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading.split { grid-template-columns: 1fr; gap: 24px; }
  .section-heading h2, .ingredient-copy h2, .factory-copy h2, .cta-inner h2 { font-size: 41px; }
  .catalog-section.section-pad { padding: 56px 12px 62px; }
  .catalog-section .section-heading { margin-bottom: 26px; }
  .catalog-section .section-heading h2 { font-size: 34px; }
  .catalog-section .section-heading > p { font-size: 12px; }
  .catalog-truth-note { flex-direction: column; gap: 6px; margin: -6px 0 20px; padding: 12px 13px; }
  .catalog-truth-note p { font-size: 10px; line-height: 1.45; }
  .category-tabs { flex-wrap: nowrap; gap: 6px; margin: 0 -12px 18px; padding: 0 12px 6px; overflow-x: auto; scrollbar-width: none; }
  .category-tabs::-webkit-scrollbar { display: none; }
  .category-tabs button { flex: 0 0 auto; min-height: 32px; padding: 6px 11px; font-size: 9px; }
  .intro.section-pad { padding: 58px 12px; }
  .intro .section-heading { margin-bottom: 26px; padding: 0 8px; }
  .intro .section-heading h2 { font-size: 34px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { min-height: 0; padding: 22px 15px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:last-child { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
  .service-card > span { font-size: 16px; }
  .service-card h3 { margin: 25px 0 10px; font-size: 25px; line-height: 1.08; }
  .service-card p { margin-bottom: 12px; font-size: 11px; line-height: 1.5; }
  .service-card ul { margin: 14px 0 0; padding-top: 12px; }
  .service-card li { padding: 3px 0; font-size: 9px; line-height: 1.35; letter-spacing: .02em; }
  .factory-campus { min-height: 920px; }
  .factory-campus > img { object-position: 58% center; }
  .factory-campus-shade { background: linear-gradient(180deg, rgba(23,26,21,.78), rgba(23,26,21,.28) 65%, rgba(23,26,21,.8)); }
  .factory-campus-copy { width: auto; padding: 115px 22px 280px; }
  .factory-campus-copy h2 { font-size: 50px; }
  .factory-campus-copy > p:not(.eyebrow) { font-size: 14px; }
  .campus-actions { align-items: flex-start; flex-direction: column; }
  .factory-demo-note { top: 18px; left: 18px; right: 18px; max-width: none; }
  .factory-campus-stats { grid-template-columns: 1fr 1fr; padding: 0 12px; }
  .factory-campus-stats article { min-height: 84px; gap: 10px; padding: 14px 11px; }
  .factory-campus-stats strong { font-size: 9px; }
  .factory-gallery { grid-template-columns: 1fr; }
  .factory-scene-wide { grid-column: auto; }
  .factory-scene-image, .factory-scene-wide .factory-scene-image { aspect-ratio: 1.18 / 1; }
  .factory-scene-copy { grid-template-columns: 35px 1fr; gap: 12px; }
  .factory-scene-copy h3 { font-size: 25px; }
  .factory-workflow.section-pad { padding-bottom: 42px; }
  .factory-control-rail { gap: 8px; margin-top: 18px; padding: 16px 0; overflow: hidden; }
  .factory-control-rail span { font-size: 7px; }
  .export-map { min-height: 390px; }
  .export-map::before { width: 280px; height: 280px; }
  .export-map::after { width: 170px; height: 170px; }
  .region { padding: 5px 6px; font-size: 6px; letter-spacing: .08em; }
  .region-vietnam { left: 5%; top: 12%; }
  .region-thailand { left: 35%; top: 5%; }
  .region-china { left: 2%; top: 49%; }
  .region-uk { right: 3%; top: 12%; }
  .region-middle-east { right: 2%; bottom: 12%; }
  .region-americas { left: 4%; bottom: 8%; }
  .export-copy h2 { font-size: 42px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 10px; }
  .product-card-image { aspect-ratio: 1 / 1; }
  .product-card-badge { top: 7px; left: 7px; max-width: calc(100% - 14px); padding: 4px 6px; overflow: hidden; font-size: 7px; letter-spacing: .07em; text-overflow: ellipsis; white-space: nowrap; }
  .product-card-body { padding: 10px 1px 8px; }
  .product-code { margin-bottom: 4px; font-size: 7px; letter-spacing: .1em; }
  .product-card h3 { min-height: 34px; margin-bottom: 3px; overflow: hidden; font-size: 16px; line-height: 1.08; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .product-card-body > p:not(.product-code) { margin-bottom: 8px; overflow: hidden; font-size: 9px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
  .product-meta { min-height: 27px; padding-top: 7px; font-size: 7px; line-height: 1.25; letter-spacing: .03em; }
  .product-meta span:last-child { display: none; }
  .product-card-actions { justify-content: space-between; gap: 6px; margin-top: 8px; }
  .product-card-actions button { font-size: 8px; line-height: 1.25; }
  .video-feature { min-height: 520px; }
  .video-list { grid-template-columns: 1fr; }
  .video-upload-note { grid-column: auto; }
  .creator-grid { grid-template-columns: 1fr; }
  .proof-status { grid-template-columns: 1fr; gap: 8px; }
  .proof-status strong { justify-self: start; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-visual { min-height: 520px; }
  .proof-board { grid-column: auto; grid-template-columns: 1fr; gap: 35px; padding: 36px 24px; }
  .proof-board li { grid-template-columns: 28px 1fr; }
  .proof-board li em { grid-column: 2; justify-self: start; }
  .attachment-center { padding: 34px 22px; }
  .attachment-slots { grid-template-columns: 1fr; }
  .creator-card { min-height: 540px; }
  .creator-brief { grid-column: auto; min-height: 560px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card:last-child { grid-column: auto; }
  .catalog-footer { align-items: stretch; flex-direction: column; margin-top: 30px; padding: 24px 0; }
  .catalog-footer .button { width: 100%; }
  .factory-image { min-height: 390px; background-position: 58% center; }
  .factory-copy { padding: 65px 22px; }
  .factory-points { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li, .process-grid li:not(:last-child) { min-height: 210px; margin-right: 0; border-right: 0; }
  .process-grid h3 { margin-top: 55px; }
  .cta-section { padding: 14px; }
  .cta-inner { min-height: 480px; }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 38px 24px; padding: 58px 22px; }
  .footer-brand, .footer-note { grid-column: 1 / -1; }
  .footer-note { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .product-modal[open] { display: block; }
  .modal-image { min-height: 320px; height: 42vh; }
  .modal-content { padding: 36px 24px; }
  .modal-content h2 { font-size: 35px; }
  .spec-list div { grid-template-columns: 110px 1fr; }
  .video-modal[open] { display: block; }
  .video-modal-stage { min-height: 420px; height: 52vh; }
  .video-modal-copy { padding: 38px 24px; }
  .video-modal .modal-close { color: white; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
