/* ============================================================
   Juneja Industries — design system v3
   Warm paper ground · ink panels · copper-amber accent
   Type: Archivo (display + body) · IBM Plex Mono (spec labels)
   ============================================================ */

:root {
  --paper: #f4f2ed;
  --paper-2: #ece9e2;
  --ink: #131312;
  --ink-2: #1d1d1b;
  --ink-3: #292927;
  --ink-line: rgba(255, 255, 255, 0.1);
  --body: #33322f;
  --grey: #6e6a62;
  --grey-2: #97928a;
  --line: #dcd8cf;
  --copper: #c8802f;
  --copper-deep: #a96a24;
  --copper-soft: #e7c894;
  --white: #ffffff;

  --font-sans: "Archivo", "Segoe UI", -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;

  --wrap: 1280px;
  --r: 14px;
  --r-lg: 24px;
  --r-pill: 999px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  overflow-x: clip;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3 { color: var(--ink); }
h1 em, h2 em { color: var(--copper); font-style: normal; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

::selection { background: var(--copper); color: #fff; }

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader img {
  width: min(280px, 70vw);
  height: auto;
  object-fit: contain;
  opacity: 0;
  animation: loaderMark 1.4s var(--ease) forwards;
}
.loader-bar {
  width: 120px;
  height: 2px;
  background: var(--line);
  overflow: hidden;
  position: relative;
}
.loader-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  animation: loaderFill 1.1s var(--ease) 0.15s forwards;
}
@keyframes loaderMark {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes loaderFill { to { transform: scaleX(1); } }

/* ---------- Nav — light glass bar ---------- */
.site-header {
  position: fixed;
  top: 14px;
  left: 0; right: 0;
  z-index: 100;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  max-width: var(--wrap);
  margin: 0 auto;
  width: calc(100% - 32px);
  background: rgba(244, 242, 237, 0.86);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(19, 19, 18, 0.08);
  border-radius: var(--r-pill);
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand img { height: 58px; width: auto; object-fit: contain; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: "Cinzel", "Georgia", serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.17em;
  color: #092145;
}
.brand-text small {
  font-family: inherit;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.48em;
  color: #9a6a3c;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.brand-text small::before,
.brand-text small::after {
  content: "";
  height: 1px;
  flex: 1;
  background: currentColor;
  opacity: 0.75;
}
.site-footer .brand-text { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: var(--body);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: var(--r-pill);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover { color: var(--ink); background: rgba(19, 19, 18, 0.05); }
.nav-links a.active { color: var(--ink); background: rgba(19, 19, 18, 0.07); }
.nav-cta {
  background: var(--copper);
  color: #fff !important;
  margin-left: 10px;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  transition: background 0.2s ease !important;
}
.nav-cta:hover { background: var(--copper-deep) !important; }
.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.menu-btn svg { width: 22px; height: 22px; stroke: var(--ink); display: block; }

/* ---------- Buttons — pills ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: none;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s var(--ease);
}
.btn svg { width: 15px; height: 15px; transition: transform 0.22s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-ink, .btn-dark, .btn-navy { background: var(--ink); color: #fff; }
.btn-ink:hover, .btn-dark:hover, .btn-navy:hover { background: var(--ink-3); }
.btn-copper, .btn-accent { background: var(--copper); color: #fff; }
.btn-copper:hover, .btn-accent:hover { background: var(--copper-deep); }
.btn-solid { background: #fff; color: var(--ink); }
.btn-solid:hover { background: var(--paper-2); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(19, 19, 18, 0.28);
}
.btn-outline:hover { border-color: var(--ink); }
.on-dark .btn-outline, .cta-band .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}
.on-dark .btn-outline:hover, .cta-band .btn-outline:hover { border-color: #fff; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--copper);
}
section { padding: clamp(72px, 9vw, 130px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 62px); }
.section-head h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.section-head p { color: var(--grey); font-size: 17px; max-width: 580px; }
.on-dark { background: var(--ink); color: rgba(255, 255, 255, 0.72); }
.on-dark .section-head h2, .on-dark h2, .on-dark h3 { color: #fff; }
.on-dark .section-head p { color: rgba(255, 255, 255, 0.58); }
.on-dark .eyebrow { color: rgba(255, 255, 255, 0.55); }

.head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.head-row .section-head { margin-bottom: 0; }
.head-row > a { flex-shrink: 0; margin-bottom: 6px; }

/* reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.06s; }
.reveal-d2 { transition-delay: 0.12s; }
.reveal-d3 { transition-delay: 0.18s; }

/* ---------- Hero — full-bleed video ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 0;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0,0.45);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 150px;
  padding-bottom: clamp(36px, 5vh, 64px);
}
.hero h1 {
  color: #fff;
  font-size: clamp(44px, 7.2vw, 96px);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 860px;
  margin-bottom: 24px;
}
.hero .lede {
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 500px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .stat-row { margin-top: clamp(36px, 5vh, 64px); }
.hero .stat b { font-size: clamp(34px, 4.2vw, 56px); }
.hero .stat { padding: clamp(18px, 2.4vw, 30px) clamp(16px, 2vw, 30px); }
.hero .stat span { color: rgba(255, 255, 255, 0.5); }

/* stats row — big numbers, hairline dividers */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: clamp(48px, 7vh, 84px);
}
.stat {
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 36px);
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat .k {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: 12px;
}
.stat b {
  display: block;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.stat span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--grey-2);
  max-width: 260px;
}
.on-dark .stat { border-color: var(--ink-line); }
.on-dark .stat b { color: #fff; }
.stat-row.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* standalone strip band (below hero) */
.strip-band { padding: clamp(56px, 8vh, 84px) 0 clamp(56px, 8vh, 84px); }
.strip-band .photo-strip { margin-top: 0; border-radius: var(--r-lg); }

/* ---------- Photo strip — mixed mono/colour tiles + info cards ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: clamp(48px, 7vh, 80px);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
}
.photo-strip .tile { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.photo-strip .tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.4s ease, transform 0.6s var(--ease);
}
.photo-strip .tile:hover img, .photo-strip .tile.color img { filter: none; }
.photo-strip .tile:hover img { transform: scale(1.04); }
.photo-strip .tile-copper {
  background: var(--copper);
  color: #fff;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}
.photo-strip .tile-copper .t-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}
.photo-strip .tile-copper h3 { color: #fff; font-size: 19px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.photo-strip .tile-copper .t-spec { font-family: var(--font-mono); font-size: 12px; margin-top: 8px; opacity: 0.9; }
.photo-strip .tile-dark {
  background: var(--ink);
  color: #fff;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.photo-strip .tile-dark h3 { color: #fff; font-size: 21px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.photo-strip .tile-dark .t-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.photo-strip .tile-dark .t-link svg { width: 14px; height: 14px; transition: transform 0.22s var(--ease); }
.photo-strip .tile-dark:hover .t-link svg { transform: translateX(3px); }
.photo-strip a.tile { display: block; }

/* ---------- Partner logo marquee ---------- */
.logo-strip {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}
.logo-strip .label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 24px;
}
.marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(44px, 5vw, 76px);
  padding-right: clamp(44px, 5vw, 76px);
  flex-shrink: 0;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.marquee-track img:hover { filter: none; opacity: 1; }
@keyframes marquee { to { transform: translateX(-100%); } }

/* ---------- Product cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--ease);
}
.card:hover {
  border-color: #c9c4b8;
  box-shadow: 0 18px 44px -20px rgba(19, 19, 18, 0.22);
  transform: translateY(-3px);
}
.card-img { height: 240px; overflow: hidden; background: var(--paper-2); position: relative; }
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.card:hover .card-img img { transform: scale(1.04); }
.card-idx {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: rgba(244, 242, 237, 0.92);
  padding: 5px 10px;
  border-radius: var(--r-pill);
  z-index: 2;
}
.card-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.card-body p { color: var(--grey); font-size: 14.5px; line-height: 1.55; flex: 1; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 15px 0 18px; }
.chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--body);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.card-link {
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
}
.card-link svg { width: 14px; height: 14px; transition: transform 0.22s var(--ease); }
.card-link:hover svg { transform: translateX(3px); }
.card-link:hover { color: var(--copper); }
.card.card-cta { background: var(--ink); border-color: var(--ink); }
.card.card-cta h3 { color: #fff; font-size: 23px; letter-spacing: -0.02em; line-height: 1.2; }
.card.card-cta p { color: rgba(255, 255, 255, 0.6); }

/* ---------- Yarn index — dark interactive panel (signature) ---------- */
.yarn-index { background: var(--ink); color: rgba(255, 255, 255, 0.72); }
.yarn-index-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--ink-line);
}
.yarn-index-media { position: relative; min-height: 460px; background: var(--ink-2); }
.yarn-index-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.yarn-index-media img.show { opacity: 1; }
.yarn-list { display: flex; flex-direction: column; background: var(--ink-2); }
.yarn-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--ink-line);
  transition: background 0.22s ease, color 0.22s ease;
  flex: 1;
}
.yarn-list a:last-child { border-bottom: none; }
.yarn-list .y-name {
  display: block;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}
.yarn-list .y-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}
.yarn-list .y-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--ink-line);
  display: grid;
  place-items: center;
  transition: background 0.22s ease, border-color 0.22s ease;
}
.yarn-list .y-arrow svg { width: 13px; height: 13px; stroke: currentColor; }
.yarn-list a:hover, .yarn-list a.active { background: var(--copper); }
.yarn-list a:hover .y-sub, .yarn-list a.active .y-sub { color: rgba(255, 255, 255, 0.75); }
.yarn-list a:hover .y-arrow, .yarn-list a.active .y-arrow { background: rgba(255, 255, 255, 0.15); border-color: transparent; }

/* ---------- Why — dark capability strip ---------- */
.why { background: var(--ink); color: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (min-width: 1021px) {
  .why-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}
.why-item {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
}
.why-item .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 26px;
}
.why-item svg { width: 26px; height: 26px; stroke: var(--copper); margin-bottom: 16px; }
.why-item h3 { color: #fff; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.why-item p { color: rgba(255, 255, 255, 0.55); font-size: 13.5px; line-height: 1.55; }

/* ---------- Partner grid ---------- */
.partner-group { margin-bottom: 44px; }
.partner-group:last-child { margin-bottom: 0; }
.partner-group h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.partner-group h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.partner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.partner:hover { border-color: #c9c4b8; box-shadow: 0 10px 26px -16px rgba(19, 19, 18, 0.2); }
.partner img {
  height: 44px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.22s ease, opacity 0.22s ease;
}
.partner:hover img { filter: none; opacity: 1; }
.partner span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
  line-height: 1.4;
}

/* ---------- Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.split-media { position: relative; }
.split-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.split-media .tag, .split-media .badge {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(19, 19, 18, 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: var(--r);
  padding: 14px 18px;
}
.split-media .tag b, .split-media .badge b { display: block; font-size: 26px; font-weight: 750; letter-spacing: -0.02em; line-height: 1.1; }
.split-media .tag span, .split-media .badge span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.split-copy h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.split-copy > p { color: var(--grey); margin-bottom: 16px; }
.ticks { margin: 24px 0 30px; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--body); }
.ticks svg { width: 17px; height: 17px; stroke: var(--copper); flex-shrink: 0; margin-top: 3.5px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: #fff;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 620px;
}
.cta-band p { color: rgba(255, 255, 255, 0.6); margin-top: 12px; max-width: 480px; font-size: 15px; }

/* ---------- Page hero (inner pages) — light, type-led ---------- */
.page-hero {
  background: var(--paper);
  padding: clamp(150px, 18vh, 190px) 0 clamp(40px, 6vh, 64px);
}
.page-hero .crumb {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.page-hero .crumb a:hover { color: var(--copper); }
.page-hero h1 {
  font-size: clamp(40px, 6.4vw, 84px);
  font-weight: 750;
  line-height: 0.99;
  letter-spacing: -0.045em;
  max-width: 900px;
}
.page-hero p { color: var(--grey); max-width: 560px; margin-top: 22px; font-size: 17.5px; }

/* ---------- Product detail — hero card ---------- */
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4.5vw, 64px);
  align-items: center;
}
.product-card-lg {
  background: var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: #fff;
}
.product-card-lg .pc-img { aspect-ratio: 4 / 3; overflow: hidden; }
.product-card-lg .pc-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-lg .pc-body { padding: 26px 28px 28px; }
.product-card-lg .pc-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.product-card-lg h3 { color: #fff; font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin: 6px 0 0; }
.pc-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-line);
}
.pc-specs .k {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}
.pc-specs b { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: #fff; }

/* ---------- Variant cards ---------- */
.variant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.variant {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.variant:hover { border-color: #c9c4b8; box-shadow: 0 14px 38px -18px rgba(19, 19, 18, 0.18); }
.variant .v-img { height: 200px; overflow: hidden; background: var(--paper-2); }
.variant .v-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.variant:hover .v-img img { transform: scale(1.04); }
.variant .v-body { padding: 20px 22px 22px; }
.variant h3 { font-size: 17.5px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 6px; }
.variant p { color: var(--grey); font-size: 14px; line-height: 1.55; }
.variant .v-spec {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--copper-deep);
  margin-top: 12px;
  display: block;
}
.variant.no-img { padding-top: 4px; }

/* ---------- Spec table ---------- */
.spec-table { margin: 20px 0 26px; border-top: 1px solid var(--line); }
.spec-table div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.spec-table dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  padding-top: 2px;
}
.spec-table dd { color: var(--body); }

/* ---------- Product pager (prev / next) ---------- */
.pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pager a {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: background 0.22s ease;
}
.pager a:hover { background: var(--copper); }
.pager .p-dir {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}
.pager a:hover .p-dir { color: rgba(255, 255, 255, 0.75); }
.pager .p-name { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.pager svg { width: 20px; height: 20px; flex-shrink: 0; }
.pager a.next { text-align: right; }
.pager a.next .p-body { margin-left: auto; }

/* ---------- Values ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.value {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.value:hover { border-color: #c9c4b8; box-shadow: 0 12px 30px -18px rgba(19, 19, 18, 0.18); }
.value svg { width: 24px; height: 24px; stroke: var(--copper); margin-bottom: 16px; }
.value h3 { font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 7px; }
.value p { color: var(--grey); font-size: 13.5px; line-height: 1.55; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-card { display: grid; gap: 12px; }
.contact-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.22s ease;
}
.contact-item:hover { border-color: #c9c4b8; }
.contact-item svg { width: 20px; height: 20px; stroke: var(--copper); flex-shrink: 0; margin-top: 3px; }
.contact-item b {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 5px;
}
.contact-item span, .contact-item a { font-size: 15.5px; font-weight: 500; color: var(--ink); }
.contact-item a:hover { color: var(--copper); }

/* QR inside contact cards */
.contact-qr {
  margin-left: auto;
  flex-shrink: 0;
  align-self: center;
}
.contact-qr img {
  display: block;
  width: 128px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.22s ease;
}
.contact-qr:hover img { border-color: var(--copper); }

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 40px);
}
.form h3 { font-size: 23px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.form > p { color: var(--grey); font-size: 14px; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.field textarea { min-height: 108px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(19, 19, 18, 0.08);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #fff;
  color: var(--grey);
  border-top: 1px solid var(--line);
  padding: 64px 0 30px;
}
.site-footer .brand { color: var(--ink); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand img { height: 56px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 300px; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 14px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--copper); }
.footer-col li { font-size: 14px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--grey-2);
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .cards, .variant-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
  .stat-row.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-row.cols-4 .stat:nth-child(2) { border-right: none; }
  .yarn-index-grid { grid-template-columns: 1fr; }
  .yarn-index-media { min-height: 320px; }
}
@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 100px; left: 16px; right: 16px;
    background: rgba(244, 242, 237, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(19, 19, 18, 0.08);
    border-radius: var(--r-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; font-size: 15px; }
  .nav-cta { margin-left: 0; margin-top: 6px; text-align: center; }
  .menu-btn { display: block; }

  .split, .contact-grid, .product-hero-grid, .pager { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .on-dark .stat, .hero .stat { border-color: var(--ink-line); }

  /* hero: compact 3-across stats, no descriptions */
  .hero { min-height: 92svh; }
  .hero-inner { padding-top: 120px; }
  .hero .stat-row { grid-template-columns: repeat(3, 1fr); }
  .hero .stat { border-bottom: none; border-right: 1px solid var(--ink-line); }
  .hero .stat:last-child { border-right: none; }
  .hero .stat span { display: none; }
  .hero .stat .k { display: block; font-size: 9.5px; letter-spacing: 0.1em; margin-bottom: 8px; }
  .hero .stat b { font-size: clamp(26px, 8vw, 34px); }
  .split-media img { height: 300px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .field-row { grid-template-columns: 1fr; }
  .cards, .variant-grid { grid-template-columns: 1fr; }
  .spec-table div { grid-template-columns: 1fr; gap: 3px; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .pager a.next { text-align: left; flex-direction: row-reverse; justify-content: flex-end; }
}
@media (max-width: 520px) {
  .brand img { height: 44px; }
  .brand-text { font-size: 19px; }
  .brand-text small { font-size: 8px; letter-spacing: 0.38em; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-item { flex-wrap: wrap; }
  .contact-qr { margin-left: 36px; }
  .contact-qr img { width: 148px; }
  .why-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .pc-specs { grid-template-columns: 1fr 1fr; }
}

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

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}
