/* =========================================================
   Forty North Cashmere — Ordos, China
   English-only · refined editorial design system
   ========================================================= */

:root {
  /* European minimal — warm near-monochrome, one quiet taupe accent
     (--camel / --camel-deep keep their names but now hold a warm taupe) */
  --ivory:    #f3f0e9;
  --paper:    #fbf9f4;
  --ink:      #1b1813;
  --ink-soft: #6a6357;
  --muted:    #9c9589;
  --camel:    #8c7d67;
  --camel-deep:#6f6252;
  --line:     #e5e1d7;
  --line-soft:#efece3;

  --shadow-sm: 0 1px 2px rgba(34,29,23,.04), 0 6px 18px rgba(34,29,23,.05);
  --shadow-md: 0 10px 30px rgba(34,29,23,.08);
  --shadow-lg: 0 30px 70px rgba(34,29,23,.14);

  --r:   12px;
  --r-lg: 20px;
  --maxw: 1180px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--camel); color: var(--paper); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 30px; }

/* ---------- Type ---------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; color: var(--ink); }
.eyebrow {
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--camel-deep);
  margin-bottom: 22px; display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content:''; width: 26px; height: 1px; background: var(--camel); display:inline-block; }
.eyebrow.center { justify-content: center; }
.title { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 56ch; line-height: 1.7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 30px; border-radius: 100px;
  font-family: var(--sans); font-weight: 600; font-size: .9rem; letter-spacing: .01em;
  cursor: pointer; border: 1px solid transparent;
  transition: background .3s, color .3s, border-color .3s, transform .3s, box-shadow .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--ivory); }
.btn-primary:hover { background: var(--camel-deep); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { box-shadow: var(--shadow-md); }
.btn .arrow { transition: transform .3s; }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow { display:inline-flex; align-items:center; gap:8px; font-weight:600; font-size:.92rem; color: var(--ink); border-bottom: 1px solid var(--camel); padding-bottom: 3px; transition: gap .3s, color .3s; }
.link-arrow:hover { gap: 13px; color: var(--camel-deep); }

/* ---------- Icons ---------- */
.ico { display:inline-flex; }
.ico svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid transparent;
  transition: border-color .35s, box-shadow .35s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 1px 0 rgba(34,29,23,.02); }
.nav { display:flex; align-items:center; justify-content:space-between; height: 80px; }
.brand { display:flex; align-items:center; gap: 13px; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--camel); color: var(--camel-deep);
  display:grid; place-items:center; font-family: var(--sans); font-size: .58rem; font-weight: 700; letter-spacing: .02em;
}
.brand b { font-family: var(--serif); font-size: 1.32rem; font-weight: 500; line-height: 1; letter-spacing: -.01em; }
.brand small { display:block; font-family: var(--sans); font-size: .58rem; font-weight:500; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.nav-links { display:flex; align-items:center; gap: 38px; list-style:none; }
.nav-links a { font-size: .72rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft); position: relative; padding: 4px 0; }
.nav-links a::after { content:''; position:absolute; left:0; bottom:-2px; width:0; height:1px; background: var(--ink); transition: width .3s; }
.nav-links a:hover { color: var(--ink); } .nav-links a:hover::after { width:100%; }
.nav-actions { display:flex; align-items:center; gap: 16px; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-btn { display:inline-flex; align-items:center; gap: 6px; background:none; border:none; cursor:pointer;
  font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); padding: 6px 4px; }
.lang-btn svg { width: 15px; height: 15px; fill:none; stroke: currentColor; stroke-width: 1.5; }
.lang-btn .chev { width: 11px; height: 11px; transition: transform .25s; }
.lang-switch.open .lang-btn .chev { transform: rotate(180deg); }
.lang-menu { position: absolute; top: calc(100% + 10px); right: 0; min-width: 130px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-md);
  padding: 6px; display: none; flex-direction: column; z-index: 120; }
.lang-switch.open .lang-menu { display: flex; }
.lang-menu button { text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: .84rem; color: var(--ink-soft); padding: 9px 12px; border-radius: 7px; transition: background .2s, color .2s; }
.lang-menu button:hover { background: var(--ivory); color: var(--ink); }
.lang-menu button.active { color: var(--ink); font-weight: 600; }
@media (max-width: 720px) { .lang-switch { display: none; } }
.nav-toggle { display:none; background:none; border:none; cursor:pointer; flex-direction:column; gap:5px; padding:6px; }
.nav-toggle span { width:24px; height:1.6px; background: var(--ink); transition:.3s; }

/* ---------- Hero ---------- */
.hero { padding: 78px 0 96px; position: relative; }
.hero-grid { display:grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(2.7rem, 5.6vw, 4.4rem); line-height: 1.02; font-weight: 500; }
.hero h1 em { font-style: italic; color: var(--camel-deep); font-weight: 500; }
.hero .lead { margin: 30px 0 38px; font-size: 1.18rem; max-width: 50ch; }
.hero-cta { display:flex; gap: 16px; flex-wrap: wrap; align-items:center; }
.hero-stats { display:flex; gap: 46px; margin-top: 54px; padding-top: 36px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero-stats b { font-family: var(--serif); font-size: 2.1rem; font-weight: 500; display:block; line-height: 1; }
.hero-stats span { font-size: .82rem; color: var(--muted); margin-top: 8px; display:block; }

.hero-visual { position: relative; }
.hero-visual .photo { border-radius: var(--r-lg); overflow:hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); background: var(--line-soft); }
.hero-visual .photo img { width:100%; height:100%; object-fit: cover; }
.hero-card {
  position:absolute; left: -28px; bottom: 44px;
  background: var(--paper); border:1px solid var(--line); border-radius: var(--r);
  padding: 16px 20px; box-shadow: var(--shadow-md); max-width: 248px;
}
.hero-card .ico { color: var(--camel-deep); margin-bottom: 8px; }
.hero-card b { font-size: .92rem; display:block; }
.hero-card p { font-size: .8rem; color: var(--muted); margin: 2px 0 0; line-height: 1.5; }

/* ---------- Trust strip ---------- */
.strip { border-top:1px solid var(--line); border-bottom:1px solid var(--line); background: var(--paper); }
.strip .container { display:flex; align-items:center; justify-content: space-between; gap: 26px; flex-wrap: wrap; padding: 26px 30px; }
.strip span { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ---------- Section ---------- */
.section { padding: 132px 0; }
.section-sm { padding: 96px 0; }
.head { max-width: 640px; margin-bottom: 60px; }
.head.center { margin-inline: auto; text-align: center; }
.head .lead { margin-top: 16px; }
.head.center .lead { margin-inline: auto; }

/* ---------- Origin ---------- */
.origin { display:grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: center; }
.origin-photos { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.origin-photos img { border-radius: var(--r); width:100%; height:100%; object-fit: cover; aspect-ratio: 3/4; }
.origin-photos .ph { aspect-ratio: 3/4; }
.origin-photos > :first-child { margin-top: 40px; }
.points { list-style:none; margin-top: 34px; display:grid; gap: 22px; }
.points li { display:grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.points .ico { color: var(--camel-deep); margin-top: 2px; }
.points b { display:block; font-family: var(--sans); font-weight: 600; font-size: .98rem; }
.points p { font-size: .92rem; color: var(--ink-soft); margin: 3px 0 0; }

/* ---------- Products ---------- */
.products { background: var(--paper); }
.pgrid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pcard { border-radius: var(--r-lg); overflow: hidden; background: var(--ivory); border: 1px solid var(--line-soft); transition: transform .4s, box-shadow .4s; }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pcard .pimg { aspect-ratio: 4/3; overflow: hidden; background: var(--line-soft); }
.pcard .pimg img { width:100%; height:100%; object-fit: cover; transition: transform .5s ease; }
.pcard:hover .pimg img { transform: scale(1.05); }
.pcard .pbody { padding: 26px 26px 30px; }
.pcard h3 { font-size: 1.5rem; margin-bottom: 8px; }
.pcard p { font-size: .94rem; color: var(--ink-soft); margin-bottom: 16px; }
.tags { display:flex; gap: 8px; flex-wrap: wrap; }
.tag { font-size: .72rem; padding: 4px 12px; border-radius: 100px; border: 1px solid var(--line); color: var(--ink-soft); font-weight: 500; }

/* ---------- Feature cards (for buyers / capabilities) ---------- */
.fgrid { display:grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border:1px solid var(--line); border-radius: var(--r-lg); overflow:hidden; }
.fcard { background: var(--paper); padding: 40px 36px; transition: background .3s; }
.fcard:hover { background: var(--ivory); }
.fcard .ico { color: var(--camel-deep); margin-bottom: 22px; }
.fcard h3 { font-size: 1.32rem; margin-bottom: 10px; }
.fcard p { font-size: .94rem; color: var(--ink-soft); }

/* ---------- Audience ---------- */
.audience { background: var(--ink); color: var(--ivory); }
.audience .eyebrow { color: var(--camel); }
.audience .eyebrow::before { background: var(--camel); }
.audience .title { color: var(--ivory); }
.audience .lead { color: rgba(246,241,233,.72); }
.agrid { display:grid; grid-template-columns: repeat(3,1fr); gap: 50px; margin-top: 64px; }
.acard { border-top: 1px solid rgba(246,241,233,.18); padding-top: 26px; }
.acard .n { font-family: var(--serif); font-size: 1.1rem; color: var(--camel); margin-bottom: 18px; display:block; }
.acard h3 { color: var(--ivory); font-size: 1.5rem; margin-bottom: 12px; }
.acard p { color: rgba(246,241,233,.7); font-size: .96rem; }

/* ---------- Process ---------- */
.steps { display:grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.step { padding-top: 28px; border-top: 1px solid var(--line); }
.step .n { font-family: var(--serif); font-size: 1rem; color: var(--camel-deep); font-weight: 600; }
.step h3 { font-size: 1.32rem; margin: 14px 0 10px; }
.step p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- Note / promise (replaces fake reviews) ---------- */
.note { background: var(--paper); }
.note-wrap { max-width: 800px; margin: 0 auto; text-align: center; }
.note-wrap .mark-lg { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--camel); color: var(--camel-deep); display:grid; place-items:center; margin: 0 auto 32px; font-weight: 700; font-size: .8rem; letter-spacing: .02em; }
.note-wrap blockquote { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.45; font-weight: 500; letter-spacing: -.01em; }
.note-wrap blockquote em { font-style: italic; color: var(--camel-deep); }
.note-sign { margin-top: 34px; font-size: .86rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ---------- CTA / form ---------- */
.cta { background: var(--ink); color: var(--ivory); }
.cta .eyebrow { color: var(--camel); } .cta .eyebrow::before { background: var(--camel); }
.cta .title { color: var(--ivory); } .cta .lead { color: rgba(246,241,233,.78); }
.cta-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.cta-list { list-style:none; margin-top: 34px; display:grid; gap: 16px; }
.cta-list li { display:flex; gap: 13px; align-items: center; color: rgba(246,241,233,.9); font-size: .96rem; }
.cta-list .ico { color: var(--camel); }

.form-card { background: var(--paper); color: var(--ink); border-radius: var(--r-lg); padding: 42px; box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 1.7rem; margin-bottom: 6px; }
.form-card .sub { font-size: .92rem; color: var(--muted); margin-bottom: 28px; }
.field { margin-bottom: 18px; }
.field label { display:block; font-size: .8rem; font-weight: 600; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width:100%; padding: 13px 15px; border:1px solid var(--line); border-radius: 9px;
  font-family: var(--sans); font-size: .94rem; background: var(--ivory); color: var(--ink);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--camel); box-shadow: 0 0 0 3px rgba(140,125,103,.22); background: var(--paper); }
.field.two { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card .btn { width:100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: .76rem; color: var(--muted); text-align:center; margin-top: 16px; line-height: 1.5; }
.form-ok { display:none; background: #2f6f4f; color:#fff; padding: 14px; border-radius: 9px; text-align:center; font-weight: 600; font-size: .9rem; margin-top: 16px; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { background: var(--paper); border-bottom: 1px solid var(--line); padding: 92px 0; }
.page-hero .container { max-width: 820px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 500; }
.page-hero .lead { margin-top: 20px; font-size: 1.18rem; }
.crumb { font-size: .8rem; color: var(--muted); margin-bottom: 22px; letter-spacing: .04em; }
.crumb a:hover { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(246,241,233,.62); padding: 80px 0 34px; }
.footer-grid { display:grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 48px; }
.site-footer .brand b { color: var(--ivory); }
.site-footer .brand .mark { border-color: rgba(246,241,233,.35); color: var(--ivory); }
.site-footer .fdesc { font-size: .92rem; max-width: 34ch; margin-top: 18px; line-height: 1.7; }
.fcol h4 { color: var(--ivory); font-family: var(--sans); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.fcol ul { list-style:none; display:grid; gap: 12px; }
.fcol a, .fcol span { font-size: .92rem; transition: color .25s; }
.fcol a:hover { color: var(--camel); }
.foot-bottom { border-top: 1px solid rgba(246,241,233,.12); margin-top: 56px; padding-top: 26px; display:flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: .8rem; color: var(--muted); }

/* ---------- Reveal ---------- */
.reveal { opacity:0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1; transform:none; transition:none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .origin, .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .pgrid, .fgrid, .agrid, .steps { grid-template-columns: 1fr 1fr; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .section { padding: 84px 0; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav-actions .btn { display:none; }
  .nav-toggle { display:flex; }
  .nav-links.open { display:flex; position:absolute; top:80px; left:0; right:0; flex-direction:column; align-items:flex-start; background: var(--ivory); padding: 24px 30px; gap: 20px; box-shadow: var(--shadow-md); border-bottom:1px solid var(--line); }
  .pgrid, .fgrid, .agrid, .steps, .footer-grid, .field.two { grid-template-columns: 1fr; }
  .origin-photos > :first-child { margin-top: 0; }
  .hero-card { left: 0; }
  .section { padding: 70px 0; }
}

/* =========================================================
   v2 — premium DTC components
   ========================================================= */

/* Announcement bar */
.annc { background: var(--ink); color: rgba(241,240,234,.92); font-size: .8rem; }
.annc .container { display:flex; align-items:center; justify-content:center; gap: 26px; padding: 10px 30px; flex-wrap: wrap; }
.annc b { color: var(--ivory); font-weight: 600; }
.annc .dot { color: var(--camel); }
.annc a { color: var(--camel); font-weight: 600; border-bottom: 1px solid transparent; transition: border-color .25s; }
.annc a:hover { border-color: var(--camel); }

/* Cinematic full-bleed hero */
.hero-full { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-full .bg { position:absolute; inset:0; z-index:0; }
.hero-full .bg img { width:100%; height:100%; object-fit: cover; }
.hero-full .scrim { position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(20,22,16,.42) 0%, rgba(20,22,16,.12) 38%, rgba(20,22,16,.72) 100%); }
.hero-full .hero-inner { position: relative; z-index:2; width:100%; padding: 0 0 9vh; color: var(--ivory); }
.hero-full .eyebrow { color: #d7dcc9; }
.hero-full .eyebrow::before { background: #d7dcc9; }
.hero-full h1 { color: #fff; font-size: clamp(2.8rem, 6.2vw, 5.4rem); line-height: 1.0; font-weight: 500; max-width: 16ch; letter-spacing: -.015em; }
.hero-full h1 em { font-style: italic; color: #e7ddc7; }
.hero-full .lead { color: rgba(255,255,255,.9); font-size: 1.2rem; max-width: 50ch; margin: 26px 0 36px; }
.hero-full .hero-cta .link-arrow { color:#fff; border-color: rgba(255,255,255,.6); }
.hero-full .hero-cta .link-arrow:hover { color:#fff; border-color:#fff; }
.hero-full .btn-light { background: var(--ivory); color: var(--ink); }
.scroll-cue { position:absolute; left:50%; bottom: 22px; transform: translateX(-50%); z-index:3; color: rgba(255,255,255,.7); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; display:flex; flex-direction:column; align-items:center; gap:8px; }
.scroll-cue::after { content:''; width:1px; height:34px; background: linear-gradient(rgba(255,255,255,.8), transparent); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100%{ opacity:.3; transform: scaleY(.6); transform-origin: top;} 50%{ opacity:1; transform: scaleY(1);} }

/* Marquee ticker */
.marquee { background: var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line); overflow:hidden; }
.marquee-track { display:flex; gap: 0; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display:inline-flex; align-items:center; gap: 14px; padding: 16px 30px; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; white-space: nowrap; }
.marquee-track span::after { content:'✦'; color: var(--camel); font-size: .7rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Big editorial statement */
.statement { text-align:center; }
.statement .container { max-width: 920px; }
.statement p { font-family: var(--serif); font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 1.35; font-weight: 500; letter-spacing: -.01em; }
.statement p em { font-style: italic; color: var(--camel-deep); }
.statement .sub { font-family: var(--sans); font-size: 1.05rem; color: var(--ink-soft); max-width: 60ch; margin: 28px auto 0; line-height: 1.7; }

/* Editorial alternating image + text */
.editorial { display:grid; grid-template-columns: 1.05fr .95fr; gap: 0; align-items: stretch; }
.editorial + .editorial { margin-top: 8px; }
.editorial .ed-img { overflow:hidden; min-height: 460px; }
.editorial .ed-img img { width:100%; height:100%; object-fit: cover; }
.editorial .ed-text { padding: 70px clamp(30px,5vw,80px); display:flex; flex-direction:column; justify-content:center; background: var(--paper); }
.editorial.rev .ed-img { order: 2; }
.editorial .ed-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.editorial .ed-text .lead { margin-top: 18px; }

/* Image-led category tiles */
.cats { display:grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.cat { position: relative; display:block; border-radius: var(--r); overflow:hidden; aspect-ratio: 3/4; background: var(--line-soft); }
.cat img { width:100%; height:100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.6,.2,1); }
.cat::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 45%, rgba(20,22,16,.66) 100%); transition: background .4s; }
.cat:hover img { transform: scale(1.06); }
.cat:hover::after { background: linear-gradient(180deg, rgba(20,22,16,.1) 30%, rgba(20,22,16,.78) 100%); }
.cat-cap { position:absolute; left:0; right:0; bottom:0; z-index:2; padding: 24px; color:#fff; }
.cat-cap h3 { color:#fff; font-size: 1.5rem; margin:0; }
.cat-cap span { font-size: .82rem; color: rgba(255,255,255,.82); display:inline-flex; align-items:center; gap:7px; margin-top: 6px; opacity:0; transform: translateY(6px); transition: opacity .35s, transform .35s; }
.cat:hover .cat-cap span { opacity:1; transform:none; }

/* Stats band (count-up) */
.stats-band { background: var(--ink); color: var(--ivory); }
.stats-band .container { display:grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align:center; padding: 72px 30px; }
.stats-band b { font-family: var(--serif); font-size: clamp(2.4rem,5vw,3.4rem); font-weight: 500; display:block; line-height:1; color:#fff; }
.stats-band b .u { color: var(--camel); }
.stats-band span { font-size: .85rem; color: rgba(241,240,234,.66); margin-top: 12px; display:block; }

/* FAQ accordion */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width:100%; text-align:left; background:none; border:none; cursor:pointer; padding: 26px 0; display:flex; justify-content:space-between; align-items:center; gap: 20px; font-family: var(--serif); font-size: 1.3rem; font-weight: 500; color: var(--ink); }
.faq-q .pm { flex:none; width:26px; height:26px; position:relative; transition: transform .3s; }
.faq-q .pm::before, .faq-q .pm::after { content:''; position:absolute; background: var(--camel-deep); transition: opacity .3s; }
.faq-q .pm::before { left:0; top:12px; width:26px; height:2px; }
.faq-q .pm::after { left:12px; top:0; width:2px; height:26px; }
.faq-item.open .faq-q .pm::after { opacity:0; }
.faq-a { overflow:hidden; max-height:0; transition: max-height .4s ease; }
.faq-a p { font-size: 1rem; color: var(--ink-soft); padding: 0 0 26px; max-width: 64ch; }

/* Newsletter / lead capture band */
.news { background: var(--paper); border-top: 1px solid var(--line); }
.news .container { display:grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items:center; padding: 64px 30px; }
.news h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.news p { color: var(--ink-soft); margin-top: 10px; }
.news form { display:flex; gap: 10px; }
.news input { flex:1; padding: 14px 16px; border:1px solid var(--line); border-radius: 100px; background: var(--ivory); font-family: var(--sans); font-size:.95rem; }
.news input:focus { outline:none; border-color: var(--camel); box-shadow: 0 0 0 3px rgba(140,125,103,.22); }

/* Floating contact button */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 90; display:inline-flex; align-items:center; gap:10px;
  background: var(--ink); color: var(--ivory); padding: 13px 20px; border-radius: 100px; box-shadow: var(--shadow-lg);
  font-size: .88rem; font-weight: 600; transition: transform .25s, background .25s; }
.fab:hover { transform: translateY(-3px); background: var(--camel-deep); }
.fab .ico svg { width:20px; height:20px; }

@media (max-width: 980px) {
  .editorial, .cats, .news .container { grid-template-columns: 1fr; }
  .editorial .ed-img { min-height: 320px; }
  .editorial.rev .ed-img { order: 0; }
  .cats { grid-template-columns: 1fr 1fr; }
  .stats-band .container { grid-template-columns: 1fr 1fr; gap: 44px 30px; }
}
@media (max-width: 720px) {
  .hero-full { min-height: 82vh; }
  .cats { grid-template-columns: 1fr; }
  .stats-band .container { grid-template-columns: 1fr 1fr; }
  .news form { flex-direction: column; }
  .news input { border-radius: 12px; }
  .fab { right: 14px; bottom: 14px; padding: 11px 16px; }
}

/* =========================================================
   v3 — B2B: photo placeholders, sample specs, colour card
   ========================================================= */

/* Designed placeholder (until real photos arrive) */
.ph { position: relative; display:flex; align-items:center; justify-content:center; overflow:hidden;
  background: var(--line-soft); border: 1px solid var(--line); border-radius: var(--r); }
.ph::before { content:''; position:absolute; inset:0;
  background-image: linear-gradient(135deg, transparent 46%, rgba(95,106,79,.06) 46% 54%, transparent 54%),
                    linear-gradient(45deg, transparent 46%, rgba(95,106,79,.06) 46% 54%, transparent 54%);
  background-size: 22px 22px; }
.ph-tag { position: relative; z-index:1; display:inline-flex; align-items:center; gap:8px;
  font-size: .76rem; letter-spacing: .04em; color: var(--muted); font-weight: 600;
  background: var(--paper); border: 1px solid var(--line); padding: 7px 13px; border-radius: 100px; }
.ph-tag svg { width:15px; height:15px; fill:none; stroke: var(--camel-deep); stroke-width:1.5; }

/* Sample rows (editorial + spec) */
.samples { display:grid; gap: 84px; }
.sample { display:grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.sample.rev .s-media { order: 2; }
.s-media { aspect-ratio: 4/5; }
.s-media .ph { width:100%; height:100%; }
.s-media > img { width:100%; height:100%; object-fit: cover; border-radius: var(--r); border: 1px solid var(--line); }
.s-info .scode { font-size:.76rem; letter-spacing:.18em; text-transform:uppercase; color: var(--camel-deep); font-weight:600; }
.s-info h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 8px 0 12px; }
.s-info > p { font-size: 1rem; color: var(--ink-soft); margin-bottom: 22px; max-width: 46ch; }
.spec { list-style:none; margin: 0 0 24px; border-top: 1px solid var(--line); }
.spec li { display:flex; justify-content:space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.spec li b { color: var(--ink); font-weight: 600; flex: none; }
.spec li span { color: var(--ink-soft); text-align: right; }
.s-cta { display:flex; align-items:center; gap: 18px; flex-wrap: wrap; }

/* Compact more-styles grid */
.mini-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.mini .ph { aspect-ratio: 3/4; margin-bottom: 12px; }
.mini h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; margin-bottom: 3px; }
.mini p { font-size: .82rem; color: var(--muted); }

/* Colour card (real CSS swatches — no photos needed) */
.swatches { display:grid; grid-template-columns: repeat(auto-fill, minmax(116px,1fr)); gap: 16px; }
.swatch i { display:block; height: 92px; border-radius: 10px; border: 1px solid rgba(37,40,31,.08); box-shadow: var(--shadow-sm); }
.swatch b { display:block; font-size: .86rem; font-weight: 600; margin-top: 10px; }
.swatch span { font-size: .74rem; color: var(--muted); }
.swatch-note { margin-top: 26px; font-size: .9rem; color: var(--ink-soft); display:flex; align-items:center; gap: 10px; }
.swatch-note .ico { color: var(--camel-deep); }

/* Workshop gallery */
.gallery { display:grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 14px; grid-auto-flow: dense; }
.gallery .ph { width:100%; height:100%; }
.gallery .has-photo::before { display:none; }
.gallery .has-photo img { width:100%; height:100%; object-fit:cover; }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }

@media (max-width: 980px) {
  .sample { grid-template-columns: 1fr; gap: 30px; }
  .sample.rev .s-media { order: 0; }
  .s-media { max-width: 460px; }
  .mini-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery .wide { grid-column: span 2; }
}
@media (max-width: 720px) {
  .mini-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   v4 — motion polish & "cool" micro-interactions
   ========================================================= */

/* Scroll progress bar */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 9998;
  background: var(--ink); transform: scaleX(0); transform-origin: 0 50%; will-change: transform; }

/* Smart nav (hide on scroll down, show on scroll up) */
.site-header { transition: transform .45s cubic-bezier(.4,0,.2,1), border-color .35s, box-shadow .35s; }
.site-header.nav-hide { transform: translateY(-100%); }

/* Hero entrance + slow zoom */
.hero-full .bg img { animation: kenburns 20s ease-out both; transform-origin: 60% 40%; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-full .hero-inner .container > * { opacity: 0; transform: translateY(28px); animation: heroRise .95s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-full .hero-inner .container > *:nth-child(1) { animation-delay: .35s; }
.hero-full .hero-inner .container > *:nth-child(2) { animation-delay: .48s; }
.hero-full .hero-inner .container > *:nth-child(3) { animation-delay: .61s; }
.hero-full .hero-inner .container > *:nth-child(4) { animation-delay: .74s; }
.scroll-cue { animation: heroRise 1s ease .95s both; }
@keyframes heroRise { to { opacity: 1; transform: none; } }

/* Nicer reveal easing + soft blur-in */
.reveal { transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1), filter .8s ease; filter: blur(6px); }
.reveal.in { filter: blur(0); }


/* Preloader (first visit per session) */
.preloader { position: fixed; inset: 0; z-index: 10000; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform .8s cubic-bezier(.76,0,.24,1); }
.preloader.done { transform: translateY(-100%); }
.pl-mark { width: 68px; height: 68px; border-radius: 50%; border: 1px solid var(--camel);
  display: flex; align-items: center; justify-content: center; color: var(--ivory);
  font-size: .8rem; font-weight: 700; letter-spacing: .04em; animation: plpulse 1.4s ease-in-out infinite; }
@keyframes plpulse { 0%,100% { transform: scale(1); opacity: .7; } 50% { transform: scale(1.08); opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .hero-full .bg img, .hero-full .hero-inner .container > *, .scroll-cue { animation: none; opacity: 1; transform: none; }
  .reveal { filter: none; }
  .preloader { display: none; }
}

/* Branded product placeholder tiles (swap for real photos later) */
.ptile { position: relative; display: block; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); transition: box-shadow .35s, transform .35s; }
.ptile::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(27,24,19,.045) 0 1px, transparent 1px 12px); }
.ptile:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.ptile .pt-cap { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 20px 22px; }
.ptile .pt-cap h3 { color: var(--ink); font-size: 1.3rem; margin: 0; font-weight: 500; }
.ptile .pt-cap span { color: var(--camel-deep); font-size: .78rem; font-weight: 600; margin-top: 4px; display: inline-block; }
.ptile .pt-mark { position: absolute; top: 14px; right: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 6px;
  font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--muted);
  background: rgba(255,255,255,.55); border-radius: 100px; padding: 5px 10px; }
.ptile .pt-mark svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.5; }
@media (max-width: 640px) { .annc { display: none; } }

/* =========================================================
   v5 — signature details: line art, micron scale, 40°N marks
   ========================================================= */

/* Hand-drawn line-art inside tiles */
.tile-art { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.tile-art svg { width: 47%; max-width: 150px; height: auto; fill: none; stroke: var(--camel-deep); stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round; opacity: .8; }
.tile-art .dot { fill: var(--camel-deep); stroke: none; }
.ptile:hover .tile-art [data-d], .pimg:hover .tile-art [data-d], .ph:hover .tile-art [data-d] {
  stroke-dasharray: 1; animation: drawline 1.2s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes drawline { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }

.pimg { position: relative; }
.ph.has-art { }
.ph.has-art .ph-tag { position: absolute; top: 14px; right: 14px; z-index: 2; }
.ph.has-art .tile-art svg { width: 52%; max-width: 190px; }

/* Micron scale — drawn to scale */
.micron { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mic-row { display: flex; align-items: flex-end; justify-content: center; gap: clamp(28px, 7vw, 90px); margin-top: 64px; }
.mic { text-align: center; }
.mic i { display: block; margin: 0 auto 22px; border-radius: 50%; border: 1px solid var(--camel);
  background: var(--ivory); transform: scale(0); transition: transform 1s cubic-bezier(.3,1.35,.4,1); }
.reveal.in .mic i { transform: scale(1); }
.reveal.in .mic:nth-child(2) i { transition-delay: .15s; }
.reveal.in .mic:nth-child(3) i { transition-delay: .3s; }
.mic b { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; display: block; }
.mic span { font-size: .78rem; color: var(--muted); letter-spacing: .04em; }
.mic-note { text-align: center; margin-top: 40px; font-size: .78rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }

/* 40°N coordinate mark */
.coord { display: inline-flex; align-items: center; gap: 14px; font-size: .66rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--muted); font-weight: 600; }
.coord::before, .coord::after { content: ''; width: 34px; height: 1px; background: var(--line); }

/* Giant outlined marquee */
.mq-big { overflow: hidden; padding: 44px 0 36px; background: var(--ivory); border-top: 1px solid var(--line); }
.mq-big .track { display: flex; width: max-content; animation: marquee 46s linear infinite; }
.mq-big span { font-family: var(--serif); font-style: italic; font-size: clamp(3.6rem, 8.5vw, 7rem); line-height: 1;
  white-space: nowrap; padding-right: .55em; color: transparent; -webkit-text-stroke: 1px var(--camel); opacity: .45; }
@media (prefers-reduced-motion: reduce) { .mq-big .track, .marquee-track { animation: none; } .reveal.in .mic i, .mic i { transform: scale(1); transition: none; } }

/* Product-forward split hero */
.hero-split { padding: 56px 0 74px; }
.hero-split .container { display: grid; grid-template-columns: .92fr 1.08fr; gap: 58px; align-items: center; }
.hs-copy h1 { font-size: clamp(2.3rem, 4.4vw, 3.5rem); line-height: 1.04; font-weight: 500; letter-spacing: -.01em; }
.hs-copy h1 em { font-style: italic; color: var(--camel-deep); }
.hs-copy .lead { margin: 22px 0 30px; font-size: 1.1rem; max-width: 44ch; }
.hs-copy .hero-cta { margin-bottom: 36px; }
.hs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hs-grid .cat, .hs-grid .ptile { aspect-ratio: 1/1; }
.cats .ptile { aspect-ratio: 3/4; }
.hs-grid .cat-cap h3 { font-size: 1.25rem; }
@media (max-width: 980px) {
  .hero-split .container { grid-template-columns: 1fr; gap: 40px; }
  .hs-grid { max-width: 520px; }
}
