/* Hide content until the Chinese translation is applied (prevents English flash) */
html.tl-zh-pending body { visibility: hidden; }

:root {
  --paper: #F7F4EE;
  --paper-2: #EFEAE0;
  --charcoal: #1F1F1F;
  --sage: #7A8B6A;
  --olive: #7A8B6A;
  --terracotta: #C96B4B;
  --navy: #2D4F7A;
  --line: #1F1F1F;
  --muted: #6B655C;
  --hair: #DED7CA;

  --head: "Schibsted Grotesk", "Hanken Grotesk", "Zen Kaku Gothic New", sans-serif;
  --body: "Hanken Grotesk", "Zen Kaku Gothic New", sans-serif;
  --mono: "Hanken Grotesk", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--terracotta); color: var(--paper); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--terracotta); }

.wrap { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 44px; }

/* ---------- TYPE ---------- */
h1, h2, h3 { font-family: var(--head); font-weight: 500; letter-spacing: -0.01em; line-height: 1.12; }
.eyebrow {
  font-family: var(--body); font-weight: 500;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--sage);
}
.lede { font-size: clamp(17px, 1.4vw, 20px); color: #3B3730; line-height: 1.6; font-weight: 500; max-width: 58ch; }

/* ---------- NAV ---------- */
header.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: var(--charcoal); color: var(--paper);
  border-bottom: 1px solid rgba(245,240,230,0.12);
}
header.nav.solid { background: var(--charcoal); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { font-family: var(--head); font-weight: 700; font-size: 20px; letter-spacing: 0.02em; display: flex; align-items: baseline; gap: 9px; color: var(--paper); }
.brand .jp { font-family: var(--body); font-weight: 500; font-size: 12px; color: rgba(245,240,230,0.65); letter-spacing: 0.14em; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--paper); transition: color 0.25s var(--ease); position: relative; }
.nav-links a:not(.nav-btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
  background: var(--terracotta); transition: right 0.3s var(--ease);
}
.nav-links a:not(.nav-btn):hover::after { right: 0; }
.nav-links a:hover { color: var(--paper); }
.nav-links a.active { color: var(--terracotta); }
.nav-links a.active:not(.nav-btn)::after { right: 0; }
.nav-btn {
  background: var(--terracotta); border: 1px solid var(--terracotta); color: var(--paper) !important;
  padding: 9px 20px; border-radius: 0; font-size: 12px; letter-spacing: 0.1em;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.nav-btn:hover { background: var(--paper); border-color: var(--paper); color: var(--charcoal) !important; }
.nav-toggle { display: none; }

/* nav sits on dark bar always — hero variants inherit the same look */
.nav.on-hero:not(.solid) .brand,
.nav.on-hero:not(.solid) .nav-links a:not(.nav-btn) { color: var(--paper); }

/* ---------- HERO (split, interior style) ---------- */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1.02fr 0.98fr; }
.hero-text { display: flex; flex-direction: column; justify-content: center; padding: 120px 64px 80px; }
.hero-text .eyebrow { margin-bottom: 28px; }
.hero h1 { font-size: clamp(44px, 5.4vw, 84px); line-height: 0.92; }
.hero h1 { font-weight: 600; }
.hero h1 .accent { color: var(--terracotta); }
.hero .lede { margin: 30px 0 40px; }
.hero-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--navy); color: var(--paper); padding: 16px 30px; border-radius: 4px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  border: 1px solid var(--navy);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-primary:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--paper); transform: translateY(-2px); }
.btn-primary .arr { transition: transform 0.3s var(--ease); }
.btn-primary:hover .arr { transform: translateX(4px); }
.btn-text { font-size: 14px; font-weight: 600; letter-spacing: 0.01em; color: var(--charcoal); border-bottom: 1px solid var(--hair); padding-bottom: 4px; transition: color 0.25s var(--ease), border-color 0.25s var(--ease); }
.btn-text:hover { color: var(--terracotta); border-color: var(--terracotta); }
.hero-img { position: relative; overflow: hidden; background: var(--paper-2); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-cap { position: absolute; bottom: 28px; left: 28px; right: 28px; display: flex; justify-content: space-between; align-items: flex-end; color: var(--paper); font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-shadow: 0 1px 12px rgba(0,0,0,0.35); }
.hero-cap .r { font-weight: 700; }

/* ---------- FULL-BLEED HERO BANNER (home) ---------- */
.hero-banner { position: relative; min-height: 94vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; background: var(--charcoal); }
.hero-banner .hb-media { position: absolute; inset: 0; }
.hero-banner .hb-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-banner .hb-scrim { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.74) 40%, rgba(10,9,8,0.42) 72%, rgba(10,9,8,0.28) 100%),
  linear-gradient(0deg, rgba(10,9,8,0.6) 0%, rgba(10,9,8,0) 52%); }
.hero-banner .hb-inner { position: relative; z-index: 2; max-width: 62ch; margin-top: auto; padding-top: 140px; }
.hero-banner .eyebrow { color: var(--olive); margin-bottom: 26px; }
.hero-banner h1 { font-size: clamp(52px, 6.8vw, 116px); line-height: 0.94; color: var(--paper); font-weight: 600; }
.hero-banner h1 .accent { color: var(--terracotta); }
.hero-banner .lede { color: rgba(245,240,230,0.88); margin: 30px 0 42px; max-width: 54ch; }
.hero-banner .btn-text { color: var(--paper); border-color: rgba(245,240,230,0.7); }
.hero-banner .btn-text:hover { color: var(--olive); border-color: var(--olive); }
.hero-banner .hb-meta { position: relative; z-index: 2; margin-top: 48px; padding-bottom: 30px; }
.hero-banner .hb-meta .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid rgba(245,240,230,0.28); padding-top: 20px; }
.hero-banner .hb-meta span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: rgba(245,240,230,0.82); text-transform: uppercase; }
.hero-banner .hb-meta .r { font-weight: 700; }

/* ---------- INTERIOR PAGE BANNER ---------- */
.banner { position: relative; min-height: 58vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--charcoal); }
.banner .bn-media { position: absolute; inset: 0; }
.banner .bn-media img { width: 100%; height: 100%; object-fit: cover; }
.banner .bn-scrim { position: absolute; inset: 0; background:
  linear-gradient(0deg, rgba(10,9,8,0.94) 0%, rgba(10,9,8,0.7) 45%, rgba(10,9,8,0.5) 100%),
  linear-gradient(90deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.15) 60%, rgba(10,9,8,0) 100%); }
.banner .bn-inner { position: relative; z-index: 2; width: 100%; padding-bottom: 56px; padding-top: 130px; }
.banner .sec-label { margin-bottom: 18px; }
.banner .sec-label .num { color: rgba(245,240,230,0.7); }
.banner .eyebrow { color: var(--olive); }
.banner h1 { font-size: clamp(44px, 6vw, 96px); line-height: 0.96; color: var(--paper); max-width: 20ch; font-weight: 600; }
.banner h1 .accent { color: var(--terracotta); }
.banner .lede { color: rgba(245,240,230,0.88); margin-top: 24px; }

/* ---------- EDITORIAL ROW ---------- */
.editorial { background: var(--paper); }
.editorial.alt { background: var(--paper-2); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.ed { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 0; align-items: stretch; }
.ed-media { position: relative; min-height: 480px; overflow: hidden; background: var(--paper-2); }
.ed-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.ed:hover .ed-media img { transform: scale(1.04); }
.ed-media .tag { position: absolute; left: 0; bottom: 24px; background: var(--terracotta); color: var(--paper); font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 10px 18px; }
.ed-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 5vw, 88px); }
.ed-body.pad-l { padding-left: clamp(40px, 6vw, 110px); }
.ed-body.pad-r { padding-right: clamp(40px, 6vw, 110px); }
.ed-body .sec-label { margin-bottom: 18px; }
.ed-body h2 { font-size: clamp(32px, 3.4vw, 54px); line-height: 0.96; margin-bottom: 24px; }
.ed-body h2 .sage { color: var(--sage); }
.ed-body p { font-size: 16.5px; color: #3B3730; line-height: 1.7; margin-bottom: 20px; max-width: 52ch; }
.ed-body p:last-of-type { margin-bottom: 0; }
.ed-body .ed-stats { display: flex; gap: 48px; margin-top: 38px; flex-wrap: wrap; }
.ed-body .ed-stats .n { font-family: var(--head); font-size: clamp(34px, 3.4vw, 52px); line-height: 1; color: var(--charcoal); }
.ed-body .ed-stats .t { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 12px; max-width: 16ch; }
.ed-body .ed-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.ed-body .ed-tags span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); border: 1px solid var(--hair); border-radius: 0; padding: 7px 14px; }
.ed.flip .ed-media { order: 2; }
.ed.flip .ed-body { order: 1; }
/* dark editorial variant */
.editorial.on-dark { background: var(--charcoal); }
.editorial.on-dark .ed-body h2 { color: var(--paper); }
.editorial.on-dark .ed-body p { color: rgba(245,240,230,0.74); }
.editorial.on-dark .ed-body .eyebrow { color: var(--olive); }
.editorial.on-dark .ed-body .sec-label .num { color: rgba(245,240,230,0.6); }
.editorial.on-dark .ed-body .ed-stats .n { color: var(--olive); }
.editorial.on-dark .ed-body .ed-stats .t { color: rgba(245,240,230,0.6); }
.editorial.on-dark .ed-body .ed-tags span { color: rgba(245,240,230,0.8); border-color: rgba(245,240,230,0.3); }

/* ---------- PHILOSOPHY / PULL STATEMENT ---------- */
.philosophy { background: var(--paper); text-align: center; }
.philosophy.on-sage { background: var(--sage); }
.philosophy .inner { max-width: 1120px; margin: 0 auto; }
.philosophy .eyebrow { color: var(--terracotta); }
.philosophy.on-sage .eyebrow { color: rgba(245,240,230,0.85); }
.philosophy blockquote { font-family: var(--head); font-weight: 500; font-size: clamp(30px, 4vw, 56px); line-height: 1.14; margin: 30px auto 0; max-width: 100%; text-wrap: balance; }
.philosophy.on-sage blockquote { color: var(--paper); }
.philosophy .src { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 36px; }
.philosophy.on-sage .src { color: rgba(245,240,230,0.8); }

/* ---------- STAT STRIP ---------- */
.stat-strip { background: var(--charcoal); color: var(--paper); }
.stat-strip .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-strip .item { padding: 18px 36px; border-left: 1px solid rgba(245,240,230,0.22); }
.stat-strip .item:first-child { border-left: none; padding-left: 0; }
.stat-strip .item .n { font-family: var(--head); font-size: clamp(46px, 5vw, 76px); line-height: 0.95; color: var(--paper); }
.stat-strip .item .n em { font-style: normal; color: var(--olive); }
.stat-strip .item .t { font-family: var(--mono); font-size: 11.5px; color: rgba(245,240,230,0.68); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 16px; line-height: 1.55; max-width: 24ch; }

/* ---------- PAGE HERO (interior pages) ---------- */
.page-hero { padding: 150px 0 72px; border-bottom: 1px solid var(--hair); background: var(--paper); }
.page-hero .sec-label { margin-bottom: 22px; }
.page-hero h1 { font-size: clamp(44px, 5.8vw, 92px); line-height: 1.0; max-width: 18ch; font-weight: 600; }
.page-hero h1 .accent { color: var(--terracotta); }
.page-hero .lede { margin-top: 26px; }
.page-hero.on-dark { background: var(--charcoal); color: var(--paper); border-bottom-color: var(--charcoal); }
.page-hero.on-dark h1 { color: var(--paper); }
.page-hero.on-dark .lede { color: rgba(245,240,230,0.76); }
.page-hero.on-dark .eyebrow { color: var(--olive); }
.page-hero.on-dark .sec-label .num { color: rgba(245,240,230,0.6); }

/* staggered reveal on load */
.stagger { opacity: 0; transform: translateY(24px); }
.loaded .stagger { animation: rise 1s var(--ease) forwards; }
.loaded .stagger.s1 { animation-delay: 0.15s; }
.loaded .stagger.s2 { animation-delay: 0.30s; }
.loaded .stagger.s3 { animation-delay: 0.45s; }
.loaded .stagger.s4 { animation-delay: 0.60s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ---------- TICKER ---------- */
.ticker { background: var(--terracotta); color: var(--paper); overflow: hidden; white-space: nowrap; display: flex; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.ticker-track { display: flex; flex-shrink: 0; align-items: center; animation: scroll 38s linear infinite; }
.ticker-track span { font-family: var(--head); font-weight: 400; font-size: 17px; letter-spacing: 0.14em; text-transform: uppercase; padding: 14px 0; display: flex; align-items: center; color: var(--paper); }
.ticker-track span::after { content: "●"; font-size: 9px; margin: 0 30px; color: var(--charcoal); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- SECTION SHELL ---------- */
.section { padding: 120px 0; }
.section.tight { padding: 90px 0; }
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.sec-label { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.sec-label .num { font-family: var(--head); font-weight: 500; font-size: 13px; color: var(--muted); }

/* ---------- OVERVIEW ---------- */
.overview { background: var(--paper); }
.ov-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: start; }
.overview h2 { font-size: clamp(34px, 4vw, 60px); }
.overview h2 .sage { color: var(--sage); }
.ov-body p { font-size: 17px; color: #3B3730; margin-bottom: 22px; line-height: 1.7; }
.ov-body p.first { font-size: clamp(19px, 1.6vw, 23px); color: var(--charcoal); font-weight: 600; line-height: 1.5; }
.ov-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 56px; border-top: 1px solid var(--hair); }
.ov-stat { padding: 28px 0 0; }
.ov-stat .n { font-family: var(--head); font-size: clamp(38px, 4vw, 60px); color: var(--charcoal); line-height: 1; }
.ov-stat .t { font-family: var(--mono); font-size: 11.5px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 12px; }

/* ---------- CATEGORIES ---------- */
.cats { background: var(--paper-2); }
.cats-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; margin-bottom: 56px; }
.cats-head h2 { font-size: clamp(34px, 4.2vw, 64px); max-width: 16ch; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat { background: var(--paper); border: 1px solid var(--hair); border-radius: 0; overflow: hidden; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.cat:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(31,31,31,0.10); }
.cat-img { aspect-ratio: 4/3; overflow: hidden; background: var(--paper-2); border-bottom: 1px solid var(--hair); }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.cat:hover .cat-img img { transform: scale(1.05); }
.cat-body { padding: 24px 26px 30px; }
.cat-body .ci { font-family: var(--mono); font-weight: 700; font-size: 11px; color: var(--terracotta); letter-spacing: 0.14em; }
.cat-body h3 { font-size: 26px; margin: 10px 0 10px; }
.cat-body p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.cat.wide { grid-column: span 1; }

/* ---------- CATEGORY DETAIL (alternating rows) ---------- */
.cat-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; border: 1px solid var(--hair); border-radius: 0; overflow: hidden; background: var(--paper); margin-bottom: 32px; }
.cat-detail .cd-img { min-height: 360px; overflow: hidden; background: var(--paper-2); }
.cat-detail .cd-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.cat-detail:hover .cd-img img { transform: scale(1.04); }
.cat-detail .cd-body { padding: 56px 60px; display: flex; flex-direction: column; justify-content: center; }
.cat-detail .cd-num { font-family: var(--mono); font-weight: 700; font-size: 12px; color: var(--terracotta); letter-spacing: 0.16em; }
.cat-detail .cd-body h3 { font-size: clamp(30px, 3vw, 46px); margin: 16px 0 16px; }
.cat-detail .cd-body p { font-size: 16px; color: #3B3730; line-height: 1.7; margin-bottom: 22px; }
.cat-detail .cd-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.cat-detail .cd-tags span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); border: 1px solid var(--hair); border-radius: 0; padding: 6px 13px; }
.cat-detail.flip .cd-img { order: 2; }

/* ---------- DISTRIBUTION ---------- */
.dist { background: var(--charcoal); color: var(--paper); position: relative; overflow: hidden; }
.dist .pbg { position: absolute; inset: -12% 0 0 auto; width: 46%; height: 124%; opacity: 0.5; }
.dist .pbg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.25) brightness(0.7); }
.dist .pbg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--charcoal) 0%, rgba(14,13,11,0.2) 100%); }
.dist-inner { position: relative; z-index: 2; max-width: 680px; }
.dist .eyebrow { color: var(--olive); }
.dist h2 { font-size: clamp(34px, 4.2vw, 64px); color: var(--paper); margin: 18px 0 26px; }
.dist .lede { color: rgba(245,240,230,0.76); }
.dist-list { margin-top: 50px; display: grid; gap: 0; }
.dist-row { display: grid; grid-template-columns: 56px 1fr; gap: 26px; padding: 26px 0; border-top: 1px solid rgba(245,240,230,0.2); }
.dist-row:last-child { border-bottom: 1px solid rgba(245,240,230,0.2); }
.dist-row .ri { font-family: var(--mono); font-weight: 700; font-size: 13px; color: var(--olive); padding-top: 4px; }
.dist-row h4 { font-family: var(--head); font-weight: 500; font-size: 20px; color: var(--paper); margin-bottom: 8px; }
.dist-row p { font-size: 15px; color: rgba(245,240,230,0.68); line-height: 1.65; max-width: 48ch; }

.dist.flat { background: var(--charcoal); }
.dist.flat .dist-inner { max-width: none; }

/* process steps (light) */
.process { background: var(--paper-2); }
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.proc { background: var(--paper); border: 1px solid var(--hair); border-radius: 0; padding: 30px 26px 34px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.proc:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(31,31,31,0.10); }
.proc .pn { font-family: var(--mono); font-weight: 700; font-size: 12px; color: var(--paper); background: var(--terracotta); display: inline-block; padding: 3px 8px; letter-spacing: 0.1em; }
.proc h4 { font-family: var(--head); font-weight: 500; font-size: 19px; margin: 20px 0 12px; line-height: 1.25; }
.proc p { font-size: 14.5px; color: var(--muted); line-height: 1.62; }

/* ---------- PARTNERS ---------- */
.partners { background: var(--paper); }
.partners-head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.partners-head h2 { font-size: clamp(32px, 3.8vw, 56px); margin: 18px 0 18px; }
.partners-head .lede { margin: 0 auto; }
.logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--hair); border-radius: 0; overflow: hidden; }
.logo-cell { display: flex; align-items: center; justify-content: center; aspect-ratio: 16/9; border-right: 1px solid var(--hair); border-bottom: 1px solid var(--hair); transition: background 0.3s var(--ease); padding: 14px; text-align: center; }
.logo-cell:nth-child(3n) { border-right: none; }
.logo-grid .logo-cell:nth-last-child(-n+3) { border-bottom: none; }
.logo-cell:hover { background: var(--paper-2); }
.logo-cell .mk { font-family: var(--body); font-weight: 800; font-size: clamp(16px, 1.5vw, 21px); color: #8B857A; letter-spacing: 0.02em; transition: color 0.3s var(--ease); text-align: center; line-height: 1.25; }
.logo-cell:hover .mk { color: var(--charcoal); }
.logo-cell .mk small { font-family: var(--mono); font-weight: 700; font-size: 0.52em; color: var(--terracotta); display: block; letter-spacing: 0.2em; margin-top: 5px; text-align: center; }

/* ---------- BEVERAGE TYPES ---------- */
.types { background: var(--paper-2); }
.types-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; margin-bottom: 52px; }
.types-head h2 { font-size: clamp(34px, 4.2vw, 64px); max-width: 16ch; }
.types-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.type-card { background: var(--paper); border: 1px solid var(--hair); border-radius: 0; overflow: hidden; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.type-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(31,31,31,0.10); }
.type-card .ti { aspect-ratio: 4/5; overflow: hidden; background: var(--paper-2); border-bottom: 1px solid var(--hair); }
.type-card .ti img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.type-card:hover .ti img { transform: scale(1.06); }
.type-card .tb { padding: 16px 16px 22px; }
.type-card .tn { font-family: var(--mono); font-weight: 700; font-size: 11px; color: var(--terracotta); letter-spacing: 0.12em; }
.type-card h3 { font-size: 20px; margin: 8px 0 7px; }
.type-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ---------- FORMAT / SPEC STRIP ---------- */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--hair); margin-top: 6px; }
.spec { padding: 30px 34px 30px 0; border-bottom: 1px solid var(--hair); }
.spec:nth-child(3n) { padding-right: 0; }
.spec .sn { font-family: var(--mono); font-weight: 700; font-size: 12px; color: var(--terracotta); letter-spacing: 0.1em; }
.spec h4 { font-family: var(--head); font-weight: 500; font-size: 18px; margin: 14px 0 8px; }
.spec p { font-size: 13.5px; color: var(--muted); line-height: 1.6; max-width: 30ch; }

/* ---------- VALUES ---------- */
.values { background: var(--sage); color: var(--paper); }
.values .eyebrow { color: rgba(245,240,230,0.85); }
.values .sec-label .num { color: var(--paper); border-color: rgba(245,240,230,0.6); }
.val-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 64px; }
.values h2 { font-size: clamp(34px, 4.2vw, 64px); color: var(--paper); }
.val-head .lede { color: rgba(245,240,230,0.86); }
.val-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid rgba(245,240,230,0.4); }
.val { padding: 36px 24px 40px 28px; border-right: 1px solid rgba(245,240,230,0.3); }
.val:first-child { padding-left: 0; }
.val:last-child { border-right: none; padding-right: 0; }
.val .vn { font-family: var(--mono); font-weight: 700; font-size: 12px; color: rgba(245,240,230,0.7); }
.val h3 { font-size: 22px; color: var(--paper); margin: 22px 0 14px; line-height: 1.05; }
.val p { font-size: 14px; color: rgba(245,240,230,0.82); line-height: 1.6; }

/* ---------- CTA BAND ---------- */
.cta-band { background: var(--charcoal); color: var(--paper); text-align: center; }
.cta-band .inner { max-width: 780px; margin: 0 auto; }
.cta-band .eyebrow { color: var(--olive); }
.cta-band h2 { font-size: clamp(36px, 5vw, 76px); color: var(--paper); margin: 20px 0 24px; line-height: 0.95; }
.cta-band p { font-size: clamp(16px, 1.4vw, 19px); color: rgba(245,240,230,0.76); line-height: 1.7; margin: 0 auto 40px; max-width: 54ch; }
.cta-band .btn-primary { background: var(--terracotta); border-color: var(--terracotta); }
.cta-band .btn-primary:hover { background: var(--paper); border-color: var(--paper); color: var(--charcoal); box-shadow: 0 10px 24px rgba(31,31,31,0.14); }

/* ---------- CONTACT ---------- */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 90px; align-items: start; }
.contact h2 { font-size: clamp(34px, 4.2vw, 60px); margin: 18px 0 24px; }
.contact .lede { margin-bottom: 36px; }
.contact-meta { border-top: 1px solid var(--hair); padding-top: 26px; margin-top: 8px; }
.contact-meta .row { display: flex; justify-content: space-between; padding: 12px 0; font-size: 14px; gap: 20px; }
.contact-meta .row .k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.contact-meta .row .v { font-weight: 700; text-align: right; }
.form { background: var(--paper); border: 1px solid var(--hair); border-radius: 0; padding: 44px; box-shadow: 0 18px 40px rgba(31,31,31,0.10); }
.field { margin-bottom: 26px; }
.field label { display: block; font-family: var(--mono); font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 10px; }
.field input, .field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--hair);
  font-family: var(--body); font-size: 16px; color: var(--charcoal); padding: 8px 0 12px;
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--terracotta); }
.field textarea { resize: vertical; min-height: 90px; }
.field input::placeholder, .field textarea::placeholder { color: #A9A294; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.submit {
  width: 100%; margin-top: 8px; background: var(--terracotta); color: var(--paper); border: 1px solid var(--terracotta);
  font-family: var(--body); font-size: 14px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 17px; border-radius: 0; cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.submit:hover { background: var(--charcoal); border-color: var(--charcoal); }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 18px; line-height: 1.6; }

/* ---------- FOOTER ---------- */
footer { background: var(--charcoal); color: var(--paper); border-top: 1px solid rgba(245,240,230,0.12); }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding: 80px 0 56px; }
.foot-brand { font-family: var(--head); font-weight: 700; font-size: 24px; letter-spacing: 0.02em; }
.foot-brand .jp { display: block; font-family: var(--body); font-weight: 500; font-size: 12px; color: rgba(245,240,230,0.55); margin-top: 10px; letter-spacing: 0.14em; text-transform: none; }
.foot-desc { font-size: 14px; color: rgba(245,240,230,0.62); margin-top: 22px; max-width: 34ch; line-height: 1.7; }
.foot-col h5 { font-family: var(--mono); font-weight: 700; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive); margin-bottom: 18px; }
.foot-col a { display: block; font-size: 14.5px; font-weight: 500; color: rgba(245,240,230,0.8); margin-bottom: 13px; transition: color 0.25s var(--ease); }
.foot-col a:hover { color: var(--paper); }
.foot-bar { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid rgba(245,240,230,0.18); padding: 26px 0 44px; font-family: var(--mono); font-size: 11px; color: rgba(245,240,230,0.5); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .wrap { padding: 0 28px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 110px 28px 60px; }
  .hero-img { min-height: 52vh; }
  .ov-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .val-grid { grid-template-columns: repeat(2, 1fr); }
  .val { border-right: none; border-bottom: 1px solid rgba(245,240,230,0.3); padding: 30px 0; }
  .val:nth-child(odd) { padding-right: 24px; border-right: 1px solid rgba(245,240,230,0.3); }
  .val:nth-child(even) { padding-left: 24px; }
  .val-head { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-cell:nth-child(2n) { border-right: none; }
  .types-grid { grid-template-columns: repeat(3, 1fr); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .spec:nth-child(3n) { padding-right: 34px; }
  .spec:nth-child(2n) { padding-right: 0; }
  .logo-cell { border-right: 1px solid var(--hair); }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .dist .pbg { display: none; }
  .dist { background: var(--charcoal); }
  .cat-detail { grid-template-columns: 1fr; }
  .cat-detail .cd-img { min-height: 280px; order: 1 !important; }
  .cat-detail .cd-body { padding: 40px 36px; }

  /* editorial rows stack */
  .ed { grid-template-columns: 1fr; }
  .ed-media { min-height: 320px; order: 1 !important; }
  .ed-body { order: 2 !important; padding: 44px 28px !important; }
  .ed-body .ed-stats { gap: 32px; }
  .stat-strip .grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-strip .item { padding: 24px 24px; border-left: none; }
  .stat-strip .item:nth-child(even) { border-left: 1px solid rgba(245,240,230,0.22); }
  .stat-strip .item:first-child { padding-left: 24px; }
  .hero-banner { min-height: 88vh; }
  .banner { min-height: 48vh; }

  /* mobile nav */
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; padding: 8px; margin: -8px; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--paper); position: relative; transition: background 0.2s; }
  .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: var(--paper); transition: transform 0.3s var(--ease); }
  .nav-toggle span::before { top: -7px; }
  .nav-toggle span::after { top: 7px; }
  .nav.open .nav-toggle span { background: transparent; }
  .nav.open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }
  .nav-links {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--charcoal);
    border-bottom: 1px solid var(--terracotta); padding: 12px 28px 24px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    align-items: stretch;
  }
  .nav.open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 16px 0; border-bottom: 1px solid rgba(245,240,230,0.18); font-size: 15px; }
  .nav-links a:not(.nav-btn)::after { display: none; }
  .nav-links a.nav-btn { border: 1px solid var(--terracotta); text-align: center; margin-top: 16px; padding: 14px 20px; border-radius: 0; }
}
@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: 1fr; }
  .spec, .spec:nth-child(3n), .spec:nth-child(2n) { padding-right: 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .ov-stats { grid-template-columns: 1fr; gap: 24px; }
  .ov-stat { border-bottom: 1px solid var(--hair); padding-bottom: 24px; }
  .form { padding: 30px 24px; box-shadow: 0 12px 28px rgba(31,31,31,0.10); }
  .foot-top { grid-template-columns: 1fr; }
  .section { padding: 90px 0; }
  .cat-detail .cd-body { padding: 34px 26px; }
  .stat-strip .grid { grid-template-columns: 1fr; }
  .stat-strip .item, .stat-strip .item:nth-child(even) { border-left: none; border-top: 1px solid rgba(245,240,230,0.22); padding: 22px 0; }
  .stat-strip .item:first-child { border-top: none; padding-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  .reveal, .stagger { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* animations-off tweak */
body.no-anim .reveal, body.no-anim .stagger { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
body.no-anim .ticker-track { animation: none !important; }
body.no-anim [data-parallax] { transform: none !important; }
