: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;
  overflow-x: hidden;
  overflow-x: clip;
  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 { position: relative; }
.language-picker select { 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 { min-height: 38px; display: flex; align-items: center; gap: 7px; border: 0; background: transparent; padding: 5px 2px; cursor: pointer; font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.language-trigger-flag { width: 24px; height: 24px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 50%; background: white; font-size: 18px; line-height: 1; }
.language-trigger-flag img { width: 100%; height: 100%; object-fit: cover; }
.language-trigger i { width: 7px; height: 7px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-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; }

.language-overlay { position: fixed; z-index: 110; inset: 0; display: grid; place-items: start center; overflow-y: auto; background: rgba(23,26,21,.68); padding: clamp(24px, 7vh, 76px) 20px; opacity: 0; visibility: hidden; pointer-events: none; backdrop-filter: blur(7px); transition: opacity .28s ease, visibility .28s ease; }
.language-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
.language-panel { position: relative; width: min(1320px, 100%); border: 1px solid var(--line); background: var(--paper); padding: clamp(34px, 4vw, 66px); transform: translateY(-16px); transition: transform .32s cubic-bezier(.2,.7,.2,1); }
.language-overlay.open .language-panel { transform: none; }
.language-close { position: absolute; top: 18px; right: 22px; border: 0; background: transparent; padding: 0; cursor: pointer; font-family: var(--serif); font-size: 38px; font-weight: 200; line-height: 1; }
.language-panel-heading { max-width: 820px; margin: 0 auto clamp(30px, 4vw, 54px); text-align: center; }
.language-panel-heading .eyebrow { margin-bottom: 14px; }
.language-panel-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 5vw, 76px); font-weight: 400; line-height: 1; }
.language-panel-heading > p:not(.eyebrow) { max-width: 590px; margin: 18px auto 0; color: var(--muted); font-size: 12px; }
.language-options { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.language-options :is(button, a) { position: relative; min-width: 0; min-height: 190px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; padding: 20px 10px; cursor: pointer; text-align: center; transition: background .2s ease; }
.language-options :is(button, a):hover, .language-options :is(button, a):focus-visible { background: var(--ivory); outline: 0; }
.language-options :is(button, a).active { background: #e2e6da; }
.language-options :is(button, a) > span { width: 66px; height: 66px; display: grid; place-items: center; overflow: hidden; margin-bottom: 17px; border: 1px solid rgba(37,40,32,.14); border-radius: 50%; background: white; font-size: 48px; line-height: 1; box-shadow: 0 8px 24px rgba(37,40,32,.08); }
.language-options :is(button, a) > .language-flag img { width: 100%; height: 100%; object-fit: cover; }
.language-options strong { overflow-wrap: anywhere; font-family: var(--serif); font-size: 20px; font-weight: 400; line-height: 1.05; }
.language-options small { margin-top: 7px; color: var(--muted); font-size: 7px; letter-spacing: .06em; text-transform: uppercase; }
.language-options i { position: absolute; top: 10px; right: 10px; width: 20px; height: 20px; display: none; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-size: 9px; font-style: normal; }
.language-options :is(button, a).active i { display: grid; }
.language-auto-note { margin: 18px 0 0; color: var(--muted); font-size: 9px; letter-spacing: .04em; text-align: center; }
body.language-open { overflow: hidden; }

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - 106px));
  background: #e8e1d3;
  overflow: hidden;
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; visibility: hidden; transition: opacity .7s ease, visibility .7s ease; }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide > img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(246,243,234,.94) 0%, rgba(246,243,234,.72) 36%, rgba(246,243,234,.05) 70%); }
.hero-slide-shade-dark { background: linear-gradient(90deg, rgba(20,23,18,.86) 0%, rgba(20,23,18,.62) 42%, rgba(20,23,18,.08) 76%); }
.hero-content {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: min(570px, 46vw);
  padding: clamp(80px, 12vh, 135px) 0 145px clamp(24px, 7vw, 126px);
}
.hero-content-light { color: white; }
.hero-content-light .eyebrow { color: #d7ddcf; }
.hero-content-light .hero-copy { color: #d8dbd4; }
.hero-content-light .text-link { color: white; }
.eyebrow { margin-bottom: 22px; font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--sage-deep); }
.hero h1, .hero .hero-title, .section-heading h2, .ingredient-copy h2, .factory-copy h2, .cta-inner h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.03em;
}
.hero h1, .hero .hero-title { 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-carousel-controls { position: absolute; z-index: 5; left: clamp(18px, 4vw, 64px); right: clamp(18px, 4vw, 64px); bottom: 24px; display: grid; grid-template-columns: 48px 1fr 48px 48px; align-items: stretch; gap: 8px; }
.hero-arrow, .hero-pause { min-width: 48px; min-height: 58px; border: 1px solid rgba(255,255,255,.5); background: rgba(28,31,25,.72); color: white; cursor: pointer; backdrop-filter: blur(10px); }
.hero-slide-tabs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border: 1px solid rgba(255,255,255,.5); background: rgba(28,31,25,.72); backdrop-filter: blur(10px); }
.hero-slide-tabs button { min-width: 0; min-height: 56px; display: flex; align-items: center; gap: 10px; border: 0; border-right: 1px solid rgba(255,255,255,.16); background: transparent; color: rgba(255,255,255,.68); padding: 10px 14px; cursor: pointer; text-align: left; }
.hero-slide-tabs button:last-child { border-right: 0; }
.hero-slide-tabs button.active { background: rgba(246,243,234,.94); color: var(--ink); }
.hero-slide-tabs span { font-family: var(--serif); font-size: 15px; }
.hero-slide-tabs b { overflow: hidden; font-size: 8px; letter-spacing: .12em; text-overflow: ellipsis; white-space: nowrap; }

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

.conversion-hub { background: #20241d; color: #f8f6ef; }
.conversion-hub .eyebrow { color: #adb6a5; }
.conversion-hub .section-heading { border-color: rgba(255,255,255,.16); }
.conversion-hub .section-heading.split > p { color: rgba(248,246,239,.68); }
.conversion-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.conversion-card { min-width: 0; min-height: 400px; display: flex; flex-direction: column; align-items: flex-start; border: 0; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); background: transparent; padding: clamp(22px, 2.7vw, 42px); color: inherit; cursor: pointer; text-align: left; transition: background .25s ease, color .25s ease; }
.conversion-card:hover, .conversion-card:focus-visible { background: #e4e8dc; color: var(--ink); outline: 0; }
.conversion-card > span { color: #9ca693; font-family: var(--serif); font-size: 22px; }
.conversion-card small { margin-top: auto; margin-bottom: 18px; font-size: 9px; letter-spacing: .18em; opacity: .65; }
.conversion-card h3 { max-width: 290px; margin: 0 0 18px; font-family: var(--serif); font-size: clamp(28px, 2.25vw, 39px); font-weight: 400; line-height: 1.02; }
.conversion-card p { max-width: 310px; margin: 0 0 30px; color: currentColor; font-size: 12px; line-height: 1.65; opacity: .68; }
.conversion-card strong { margin-top: auto; border-bottom: 1px solid currentColor; padding-bottom: 5px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.conversion-response-note { margin: 18px 0 0; color: rgba(248,246,239,.56); font-size: 10px; letter-spacing: .04em; text-align: right; }

.section-pad { padding: clamp(64px, 6vw, 96px) clamp(22px, 7vw, 126px); }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading.split { max-width: none; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: clamp(36px, 4vw, 68px); }
.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); }
.intro.section-pad { padding-top: clamp(54px, 4.5vw, 76px); padding-bottom: clamp(50px, 4vw, 68px); }
.intro .section-heading { margin-bottom: 30px; }
.brand-signature { display: grid; grid-template-columns: 1fr 1.1fr auto; gap: clamp(28px, 5vw, 78px); align-items: center; margin: 0 0 28px; padding: 28px clamp(24px, 3.5vw, 52px); border: 1px solid var(--line); background: var(--paper); }
.brand-signature-mark { display: flex; align-items: center; gap: 22px; }
.brand-mark-large { display: flex; width: 66px; height: 66px; }
.brand-signature-mark > strong { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 38px); font-weight: 400; letter-spacing: .06em; white-space: nowrap; }
.brand-signature-mark small { color: var(--sage-deep); font-family: var(--sans); font-size: .34em; letter-spacing: .25em; }
.brand-signature-copy span { color: var(--sage-deep); font-size: 8px; font-weight: 600; letter-spacing: .15em; }
.brand-signature-copy p { max-width: 640px; margin: 7px 0 0; color: var(--muted); font-size: 12px; }
.brand-palette { display: flex; gap: 7px; }
.brand-palette i { width: 28px; height: 72px; border: 1px solid rgba(37,40,32,.1); }
.brand-palette i:nth-child(1) { background: #f6f3ea; }.brand-palette i:nth-child(2) { background: #dfe3d6; }.brand-palette i:nth-child(3) { background: #778268; }.brand-palette i:nth-child(4) { background: #252820; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.service-card { min-height: 340px; padding: clamp(28px, 3vw, 48px); 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: 44px 0 14px; }
.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; }
.creator-video-hub { overflow: hidden; }
.creator-video-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin: -22px 0 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.creator-video-toolbar p { display: flex; align-items: center; gap: 14px; margin: 0; color: var(--muted); font-size: 10px; }
.creator-video-toolbar p strong { padding: 6px 8px; background: var(--ink); color: white; font-size: 7px; letter-spacing: .13em; }
.creator-video-toolbar > div { display: flex; gap: 8px; }
.creator-video-toolbar button { width: 46px; height: 46px; border: 1px solid var(--line); background: var(--paper); cursor: pointer; font-size: 18px; }
.creator-video-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 21vw); gap: clamp(12px, 1.5vw, 22px); overflow-x: auto; padding: 0 clamp(22px, 7vw, 126px) 22px 0; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--sage-deep) transparent; }
.creator-video-card { position: relative; min-height: 520px; border: 0; padding: 0; overflow: hidden; background: #d9d7cd; color: white; cursor: pointer; scroll-snap-align: start; text-align: left; }
.creator-video-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .7s ease; }
.creator-video-card:hover img { transform: scale(1.025); }
.creator-video-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,22,18,.03) 35%, rgba(20,22,18,.82)); }
.creator-video-play { position: absolute; z-index: 2; left: 18px; top: 18px; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(246,243,234,.9); color: var(--ink); font-size: 12px; }
.creator-video-card-copy { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 18px; }
.creator-video-card-copy small { display: block; margin-bottom: 6px; font-size: 7px; letter-spacing: .14em; }
.creator-video-card-copy strong { display: block; font-family: var(--serif); font-size: 23px; font-weight: 400; line-height: 1.05; }
.creator-video-card-copy em { display: block; margin-top: 8px; font-style: normal; font-size: 8px; letter-spacing: .1em; opacity: .75; }
.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-section.section-pad { padding-top: clamp(50px, 4vw, 68px); }
.catalog-section .section-heading { margin-bottom: 32px; }
.catalog-truth-note { display: flex; justify-content: space-between; gap: 32px; margin: -6px 0 28px; padding: 16px 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-image[data-code]:not([data-code=""])::after { content: "IMAGE SLOT · " attr(data-code); position: absolute; right: 9px; bottom: 9px; padding: 5px 7px; background: rgba(33,36,29,.78); color: white; font-size: 6px; letter-spacing: .12em; }
.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-evidence-card { min-height: 420px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(28px, 4vw, 54px); border: 1px solid var(--line); background: var(--paper); }
.proof-evidence-card h3 { max-width: 430px; margin: auto 0 12px; font-family: var(--serif); font-size: clamp(30px, 3vw, 45px); line-height: 1.02; font-weight: 400; }
.proof-evidence-card p { max-width: 470px; margin: 0; color: var(--muted); font-size: 12px; }
.proof-evidence-icon { height: 120px; display: flex; align-items: flex-end; gap: 9px; padding: 18px; border: 1px solid var(--line); background: #eceee6; }
.proof-evidence-icon span { flex: 1; background: var(--sage-deep); opacity: .72; }
.proof-evidence-icon span:nth-child(1) { height: 28%; }
.proof-evidence-icon span:nth-child(2) { height: 46%; }
.proof-evidence-icon span:nth-child(3) { height: 62%; }
.proof-evidence-icon span:nth-child(4) { height: 78%; }
.proof-evidence-icon span:nth-child(5) { height: 92%; }
.proof-link-preview { display: grid; grid-template-columns: 42px 1fr auto; gap: 14px; align-items: center; min-height: 84px; padding: 16px; border: 1px solid var(--line); background: #eceee6; }
.proof-link-preview > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: white; }
.proof-link-preview b, .proof-link-preview small { display: block; }
.proof-link-preview b { font-size: 10px; letter-spacing: .08em; }
.proof-link-preview small { margin-top: 4px; color: var(--muted); font-size: 8px; }
.proof-link-preview em { color: var(--sage-deep); font-style: normal; font-size: 18px; }
.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: 250px; padding: 26px 28px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid li:nth-child(4n) { border-right: 0; }
.process-grid span { color: var(--sage-deep); font-family: var(--serif); }
.process-grid h3 { margin: 72px 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(820px, 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); }
.inquiry-route-switcher { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin: 22px 0; border: 1px solid var(--line); background: var(--line); }
.inquiry-route-switcher button { min-height: 48px; border: 0; background: var(--paper); padding: 9px 8px; color: var(--muted); cursor: pointer; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.inquiry-route-switcher button.active { background: var(--ink); color: white; }
.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); }
.form-span-2 { grid-column: 1 / -1; }
.form-section-heading { display: grid; grid-template-columns: 34px 1fr; gap: 13px; align-items: start; margin: 28px 0 18px; border-top: 1px solid var(--line); padding-top: 20px; }
.form-section-heading > span { color: var(--sage-deep); font-family: var(--serif); font-size: 20px; }
.form-section-heading strong, .form-section-heading small { display: block; }
.form-section-heading strong { font-family: var(--serif); font-size: 23px; font-weight: 400; line-height: 1.1; }
.form-section-heading small { margin-top: 5px; color: var(--muted); font-size: 10px; line-height: 1.45; }
.choice-fieldset { margin: 0 0 18px; border: 0; padding: 0; }
.choice-fieldset legend { margin-bottom: 9px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.choice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
.choice-grid label { min-height: 43px; display: flex; align-items: center; gap: 8px; margin: 0; border: 1px solid var(--line); background: white; padding: 9px 11px; cursor: pointer; }
.choice-grid label:has(input:checked) { border-color: var(--sage-deep); background: #e9ece3; }
.choice-grid input { width: 14px; height: 14px; flex: 0 0 auto; margin: 0; accent-color: var(--ink); }
.choice-grid label > span { display: inline; margin: 0; font-size: 9px; letter-spacing: .04em; line-height: 1.2; text-transform: none; }
.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%); }
html[dir="rtl"] .conversion-card { text-align: right; }
html[dir="rtl"] .conversion-response-note { text-align: left; }
html[dir="rtl"] .language-close { right: auto; left: 22px; }
html[dir="rtl"] .language-options i { right: auto; left: 10px; }

@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); }
  .conversion-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .conversion-card { min-height: 320px; }
  .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(odd) { border-right: 1px solid var(--line); }
  .process-grid li:nth-child(even) { border-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 { min-height: 26px; padding: 5px 12px; font-size: 8px; letter-spacing: .08em; }
  .site-header { grid-template-columns: 1fr auto; padding: 0 18px; }
  .brand-mark { display: none; }
  .brand-type { font-size: 13px; }
  .main-nav { top: 92px; padding: 20px; gap: 20px; }
  .inquiry-button > span { display: inline; font-size: 9px; }
  .inquiry-button b { width: 22px; height: 22px; font-size: 9px; }
  .menu-toggle { position: absolute; top: 16px; right: 13px; grid-column: auto; }
  .header-actions { position: absolute; top: 15px; right: 57px !important; left: auto; width: auto; grid-column: auto; gap: 7px; z-index: 2; }
  .language-trigger { min-height: 34px; gap: 4px; padding: 3px 1px; font-size: 8px; }
  .language-trigger-flag { width: 21px; height: 21px; font-size: 16px; }
  .language-trigger i { width: 6px; height: 6px; }
  .language-overlay { padding: 10px; }
  .language-panel { min-height: calc(100svh - 20px); padding: 54px 12px 24px; }
  .language-close { top: 14px; right: 16px; font-size: 34px; }
  .language-panel-heading { margin-bottom: 24px; padding: 0 8px; }
  .language-panel-heading h2 { font-size: 36px; }
  .language-panel-heading > p:not(.eyebrow) { margin-top: 12px; font-size: 9px; line-height: 1.5; }
  .language-options { grid-template-columns: 1fr 1fr; }
  .language-options :is(button, a) { min-height: 128px; padding: 13px 7px; }
  .language-options :is(button, a):last-child { grid-column: 1 / -1; min-height: 112px; }
  .language-options :is(button, a) > span { width: 44px; height: 44px; margin-bottom: 9px; font-size: 32px; }
  .language-options strong { font-size: 17px; }
  .language-options small { margin-top: 4px; font-size: 6px; }
  .language-auto-note { margin-top: 13px; padding: 0 8px; font-size: 8px; line-height: 1.4; }
  .hero { min-height: 640px; height: min(76svh, 700px); max-height: 700px; }
  .hero-slide > img { object-position: 58% center; }
  .hero-slide:nth-child(1) > img { object-position: 56% center; }
  .hero-slide:nth-child(3) > img { object-position: 66% center; }
  .hero-slide-shade, .hero-slide-shade-dark { background: linear-gradient(180deg, rgba(25,28,22,.14) 0%, rgba(25,28,22,.2) 34%, rgba(20,23,18,.87) 100%); }
  .hero-content, html[dir="rtl"] .hero-content { width: auto; max-width: none; padding: 166px 18px 122px; color: white; }
  .hero-content .eyebrow, .hero-content .hero-copy { color: rgba(255,255,255,.82); }
  .hero-content .button-primary { background: var(--paper); color: var(--ink); }
  .hero-content .text-link { color: white; }
  .hero h1, .hero .hero-title { font-size: clamp(35px, 9.8vw, 41px); line-height: 1; }
  .hero-copy { max-width: 440px; font-size: 13px; line-height: 1.55; }
  .hero-actions { align-items: center; flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .hero-actions .button { min-height: 42px; padding: 10px 16px; font-size: 9px; }
  .hero-actions .text-link { font-size: 10px; }
  .hero-carousel-controls { left: 12px; right: 12px; bottom: 12px; display: block; height: 48px; }
  #heroPrev, #heroNext { position: absolute; bottom: 0; }
  #heroPrev { left: 0; }
  #heroNext { right: 0; }
  .hero-slide-tabs { position: absolute; left: 46px; right: 46px; bottom: 0; width: auto; min-width: 0; }
  .hero-arrow { width: 40px; height: 48px; }
  .hero-slide-tabs { overflow: hidden; }
  .hero-slide-tabs button { min-height: 48px; justify-content: center; padding: 8px 4px; border-right-color: rgba(255,255,255,.12); }
  .hero-slide-tabs b { display: none; }
  .hero-slide-tabs span { font-size: 13px; }
  .hero-pause { position: absolute; top: -54px; right: 0; width: 38px; height: 38px; min-width: 38px; min-height: 38px; }
  .trust-strip { padding: 0 10px; }
  .trust-strip article { min-height: 74px; padding: 12px 10px; }
  .trust-strip strong { font-size: 17px; }
  .trust-strip span { font-size: 7px; line-height: 1.35; }
  .conversion-hub.section-pad { padding: 46px 10px; }
  .conversion-hub .section-heading { margin-bottom: 22px; padding: 0 4px; }
  .conversion-hub .section-heading h2 { font-size: 31px; }
  .conversion-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .conversion-card { min-height: 255px; padding: 15px 12px; }
  .conversion-card > span { font-size: 16px; }
  .conversion-card small { margin-bottom: 11px; font-size: 6px; letter-spacing: .1em; }
  .conversion-card h3 { margin-bottom: 10px; font-size: clamp(20px, 5.7vw, 25px); }
  .conversion-card p { margin-bottom: 16px; font-size: 8px; line-height: 1.45; }
  .conversion-card strong { font-size: 7px; letter-spacing: .06em; }
  .conversion-response-note { margin-top: 12px; padding: 0 4px; font-size: 8px; line-height: 1.4; text-align: left; }
  .section-pad { padding: 52px 14px; }
  .section-heading { margin-bottom: 30px; }
  .section-heading.split { grid-template-columns: 1fr; gap: 14px; }
  .section-heading h2, .ingredient-copy h2, .factory-copy h2, .cta-inner h2 { font-size: 34px; }
  .section-heading.split > p { font-size: 11px; line-height: 1.55; }
  .catalog-section.section-pad { padding: 46px 10px 50px; }
  .catalog-section .section-heading { margin-bottom: 20px; }
  .catalog-section .section-heading h2 { font-size: 31px; }
  .catalog-section .section-heading > p { font-size: 12px; }
  .catalog-truth-note { flex-direction: column; gap: 5px; margin: 0 0 16px; padding: 10px 11px; }
  .catalog-truth-note p { font-size: 10px; line-height: 1.45; }
  .category-tabs { flex-wrap: nowrap; gap: 6px; margin: 0 -10px 18px; padding: 0 10px 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: 44px 10px; }
  .intro .section-heading { margin-bottom: 20px; padding: 0 4px; }
  .intro .section-heading h2 { font-size: 31px; }
  .brand-signature { grid-template-columns: 1fr auto; gap: 16px 12px; margin-bottom: 18px; padding: 18px 16px; }
  .brand-signature-mark { gap: 10px; font-size: 25px; }
  .brand-mark-large { width: 44px; height: 44px; }
  .brand-signature-mark > strong { font-size: 23px; }
  .brand-signature-copy { grid-column: 1 / -1; }
  .brand-signature-copy p { font-size: 10px; line-height: 1.5; }
  .brand-palette { gap: 4px; }
  .brand-palette i { width: 16px; height: 42px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { min-height: 0; padding: 18px 12px; 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: 18px 0 8px; font-size: 22px; line-height: 1.08; }
  .service-card p { margin-bottom: 9px; font-size: 10px; line-height: 1.45; }
  .service-card ul { margin: 10px 0 0; padding-top: 9px; }
  .service-card li { padding: 2px 0; font-size: 8px; line-height: 1.3; letter-spacing: .01em; }
  .factory-campus { min-height: 740px; }
  .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: 94px 18px 220px; }
  .factory-campus-copy h2 { font-size: 41px; }
  .factory-campus-copy > p:not(.eyebrow) { font-size: 12px; line-height: 1.55; }
  .campus-actions { align-items: flex-start; flex-direction: column; }
  .factory-demo-note { top: 12px; left: 12px; right: 12px; max-width: none; padding: 10px 12px; }
  .factory-campus-stats { grid-template-columns: 1fr 1fr; padding: 0 8px; }
  .factory-campus-stats article { min-height: 68px; gap: 7px; padding: 10px 8px; }
  .factory-campus-stats strong { font-size: 8px; }
  .factory-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .factory-scene-wide { grid-column: auto; }
  .factory-scene-image, .factory-scene-wide .factory-scene-image { aspect-ratio: 1 / 1; }
  .factory-scene-image > span { top: 7px; left: 7px; max-width: calc(100% - 14px); padding: 4px 5px; overflow: hidden; font-size: 5px; text-overflow: ellipsis; white-space: nowrap; }
  .factory-scene-copy { display: block; padding: 10px 2px 16px; }
  .factory-scene-copy > span { display: block; margin-bottom: 5px; font-size: 10px; }
  .factory-scene-copy h3 { min-height: 38px; margin: 0; font-size: 17px; line-height: 1.1; }
  .factory-scene-copy p { display: none; }
  .factory-workflow.section-pad { padding-bottom: 34px; }
  .factory-control-rail { gap: 8px; margin-top: 18px; padding: 16px 0; overflow: hidden; }
  .factory-control-rail span { font-size: 7px; }
  .export-reach { gap: 30px; }
  .export-map { min-height: 320px; }
  .export-map::before { width: 238px; height: 238px; }
  .export-map::after { width: 148px; height: 148px; }
  .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: 34px; }
  .export-copy ul { margin: 22px 0 24px; }
  .export-copy li { padding: 12px 0; }
  .export-copy .button { width: 100%; }
  .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; }
  .creator-video-hub.section-pad { padding: 48px 10px; }
  .creator-video-hub .section-heading { padding: 0 4px; margin-bottom: 20px; }
  .creator-video-toolbar { align-items: flex-start; margin: 0 8px 18px; }
  .creator-video-toolbar p { max-width: 230px; align-items: flex-start; flex-direction: column; gap: 7px; line-height: 1.45; }
  .creator-video-toolbar button { width: 40px; height: 40px; }
  .creator-video-track { grid-auto-columns: minmax(180px, 62vw); gap: 10px; padding: 0 8px 12px 0; }
  .creator-video-card { min-height: 360px; }
  .creator-video-card-copy strong { font-size: 20px; }
  .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 1fr; gap: 10px; }
  .proof-evidence-card { min-height: 320px; padding: 18px 14px; }
  .proof-evidence-card h3 { font-size: 24px; }
  .proof-evidence-card p { font-size: 9px; }
  .proof-evidence-icon { height: 82px; padding: 10px; gap: 5px; }
  .proof-link-preview { grid-template-columns: 34px 1fr; gap: 9px; padding: 10px; }
  .proof-link-preview > span { width: 34px; height: 34px; }
  .proof-link-preview em { display: none; }
  .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: 22px; padding: 18px 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 1fr; }
  .process-grid li { min-height: 156px; padding: 14px 11px; }
  .process-grid li:nth-child(odd) { border-right: 1px solid var(--line); }
  .process-grid li:nth-child(even) { border-right: 0; }
  .process-grid h3 { margin-top: 22px; font-size: 18px; }
  .process-grid p { font-size: 9px; line-height: 1.4; }
  .cta-section { padding: 10px; }
  .cta-inner { min-height: 380px; padding: 52px 18px; }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 30px 20px; padding: 44px 18px; }
  .footer-brand, .footer-note { grid-column: 1 / -1; }
  .footer-note { flex-direction: column; }
  .inquiry-drawer { padding: 24px 16px 36px; }
  .drawer-header { padding-bottom: 18px; }
  .drawer-header h2 { font-size: 30px; }
  .inquiry-route-switcher { grid-template-columns: 1fr 1fr; margin: 16px 0; }
  .inquiry-route-switcher button { min-height: 42px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .form-span-2 { grid-column: auto; }
  .form-section-heading { margin-top: 24px; padding-top: 16px; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .choice-grid label { min-height: 40px; padding: 8px; }
  .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; }
}

/* OCELEIYA: two business routes and clear WhatsApp handoff. */
.oceleiya-logo { object-fit: cover; object-position: 50% 52.5%; width: 185px; height: 48px; mix-blend-mode: multiply; }
.site-footer .oceleiya-logo { display: block; width: 209px; height: 68px; margin-bottom: 14px; border: 10px solid #fff; border-radius: 4px; background: #fff; mix-blend-mode: normal; }
html[lang="vi"] .product-card-image[data-code]:not([data-code=""])::after { content: "MINH HỌA · " attr(data-code); }
.language-options a { color: inherit; text-decoration: none; }
.noscript-contact { padding: 16px; text-align: center; }
.about-section { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; padding: 90px max(24px, calc((100vw - 1240px) / 2)); background: #e9ece2; scroll-margin-top: 95px; }
.about-intro h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 3.3vw, 52px); line-height: 1.15; margin: 15px 0 24px; }
.about-intro > p:last-child, .about-services p { color: var(--muted); line-height: 1.75; }
.about-intro .oceleiya-logo { width: 240px; height: 64px; margin-bottom: 24px; }
.about-intro > p[data-i18n="aboutCopy"] { color: var(--muted); line-height: 1.75; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.about-fact { padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 4px; }
.about-fact strong { display: block; margin-bottom: 10px; font-size: 21px; letter-spacing: .02em; }
.about-fact span, .about-fact > small { display: block; font-size: 13px; line-height: 1.6; color: var(--muted); }
.about-fact-factory { grid-column: 1 / -1; }
.about-fact-factory strong { font-size: 44px; line-height: 1.1; }
.about-fact-factory strong small { font-size: 23px; }
.site-footer .footer-company-copy { max-width: 390px; margin-top: 12px; line-height: 1.7; }
.about-services article { padding: 0 0 25px; margin-bottom: 25px; border-bottom: 1px solid var(--line); }
.about-services h3 { font-size: 20px; margin-bottom: 12px; }
.about-services .text-link { margin-top: 14px; text-align: start; }
.locale-links { display: flex; flex-wrap: wrap; gap: 15px; }
.language-recommendation { position: fixed; bottom: 18px; left: 18px; z-index: 90; max-width: calc(100vw - 36px); padding: 14px 18px; background: white; border: 1px solid var(--line); box-shadow: 0 8px 28px #0002; border-radius: 8px; }
.language-recommendation[hidden] { display: none; }
.language-recommendation a { font-weight: 600; margin-right: 16px; text-decoration: underline; }
.language-recommendation button { border: 0; background: none; cursor: pointer; font-size: 20px; }
@media (max-width: 900px) { .about-section { grid-template-columns: 1fr; gap: 35px; padding: 54px 24px; } }
@media (max-width: 700px) { .site-header .oceleiya-logo { width: 130px; height: 35px; } }
.success-message .button { margin: 8px 5px; }
.hero-actions button.text-link { text-align: start; }
@media (max-width: 700px) {
  .site-header .brand { gap: 7px; }
  .site-header .brand-type { font-size: 12px; letter-spacing: .10em; }
  .site-header .brand-type small { display: block; font-size: 7px; letter-spacing: .24em; }
  .hero-actions { flex-wrap: wrap; gap: 15px; }
  .conversion-grid { grid-template-columns: 1fr; }
  .conversion-card { min-height: 250px; padding: 24px; }
  .conversion-card h3, .conversion-card p { max-width: none; }
  .conversion-card small { margin-top: 20px; }
  .conversion-response-note { text-align: start; line-height: 1.7; }
}

@media (min-width: 701px) {
  .hero { min-height: max(680px, min(820px, calc(100svh - 106px))); }
  .hero-slide .hero-content { width: min(730px, 60vw); padding-top: clamp(56px, 8vh, 90px); }
  .hero h1, .hero .hero-title { font-size: clamp(38px, 4vw, 56px); line-height: 1.1; }
  .hero-actions { flex-wrap: wrap; }
}

.hero-slide .hero-copy { max-width: 590px; line-height: 1.7; }
.hero-slide .hero-actions { margin-top: 24px; }
.optional-brief { border:1px solid var(--line); padding:16px; margin:20px 0; }
.optional-brief summary { cursor:pointer; font-size:14px; font-weight:600; }
.optional-brief[open] summary { margin-bottom:20px; }
.privacy-consent { display:flex!important; align-items:flex-start; gap:10px; font-size:12px; line-height:1.6; margin:20px 0 8px; }
.privacy-consent input { width:18px!important; min-height:18px; margin-top:3px; }
.form-honeypot { position:absolute!important; left:-10000px; width:1px; height:1px; overflow:hidden; }
.lead-error { padding:14px; background:#fff0ed; color:#8d2822; }
[hidden] { display:none!important; }
.hero-illustration { position:absolute; right:22px; top:22px; padding:8px 12px; font-size:10px; letter-spacing:.08em; background:#20251fe6; color:#fff; z-index:3; }
.buyer-resources { background:#f0f1e9; }
.buyer-resources h2 { font-family:var(--serif); font-weight:400; font-size:clamp(30px,3vw,46px); margin:36px 0 20px; }
.buyer-resources details { border-top:1px solid #ccd0c2; padding:20px 0; }
.buyer-resources summary { cursor:pointer; font-size:17px; font-weight:600; }
.buyer-resources details p { max-width:850px; margin-top:16px; line-height:1.8; }
.service-links { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.service-links a { padding:24px; background:white; border:1px solid #d9ddcf; font-size:16px; }
.evidence-placeholder { border:1px dashed #939e85; padding:30px; margin-top:30px; max-width:900px; }
.evidence-placeholder p { line-height:1.8; margin:16px 0; }
.evidence-placeholder strong { font-size:12px; color:#667453; }
.footer-privacy { display:flex; flex-wrap:wrap; gap:20px; grid-column:1/-1; font-size:12px; }
.footer-privacy button { background:none; border:0; color:inherit; cursor:pointer; }
.analytics-choice { position:fixed; bottom:18px; left:18px; width:min(440px,calc(100vw - 36px)); padding:20px; background:#fff; color:#25291f; border:1px solid #b6bdaa; box-shadow:0 8px 28px #0002; z-index:85; font-size:13px; line-height:1.6; }
.analytics-choice div { display:flex; flex-wrap:wrap; gap:12px; margin-top:12px; align-items:center; }
.analytics-choice button { padding:8px 12px; background:#edf0e8; border:1px solid #b6bdaa; cursor:pointer; }
.analytics-choice a { text-decoration:underline; }
.service-page { max-width:1100px; margin:auto; padding:60px 24px; }
.service-page h1 { font:400 clamp(36px,5vw,64px)/1.12 var(--serif); margin:22px 0; }
.service-page h2 { font-size:25px; margin:35px 0 18px; }
.service-page p,.service-page li { line-height:1.85; }
.service-page ul { padding-left:24px; }
.service-page .service-actions { display:flex; gap:20px; flex-wrap:wrap; margin:35px 0; }
.service-page .service-note { padding:24px; background:#e9ece2; margin:30px 0; }
#creator-videos .creator-video-toolbar { display:none; }
#creator-videos .creator-video-track { display:flex; justify-content:center; }
#creator-videos .creator-video-card { width:min(400px,100%); flex:none; }
@media(max-width:700px){.service-links{grid-template-columns:1fr}.hero-illustration{font-size:8px;top:12px;right:12px}.evidence-placeholder{padding:20px}}
@media (max-width: 700px) {
  .hero-slide .hero-content { padding-top: 90px; }
  .hero h1, .hero .hero-title { font-size: clamp(28px, 7.8vw, 36px); line-height: 1.12; margin-bottom: 22px; }
}
