/* ═══════════════════════════════════════════════════════════════
   NEOTECH EQUIPMENTS — Editorial Industrial Stylesheet v4
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Archivo+Narrow:wght@400;500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Neutrals (warm, paper-like) */
  --paper:     #fafaf7;
  --paper-2:   #f3f2ed;
  --paper-3:   #e8e6dd;
  --ink:       #15171a;
  --ink-2:     #2c2e33;
  --ink-3:     #5a5e68;
  --ink-4:     #8a8f9a;
  --rule:      #d9d6cb;
  --rule-2:    #c8c4b6;

  /* Brand — Neotech cyan with deeper accent */
  --brand:     #00aadd;
  --brand-d:   #0077a8;
  --brand-l:   #d4eef7;
  --brand-l2:  #eef7fb;

  /* Warm accent for editorial hits */
  --accent:    #c74f2b;  /* industrial orange */
  --accent-l:  #fae8e0;
  --gold:      #b8903a;
  --olive:     #62702f;
  --navy:      #0f1f2e;

  /* Type */
  --sans:      'Archivo', -apple-system, system-ui, sans-serif;
  --cond:      'Archivo Narrow', sans-serif;
  --serif:     'Fraunces', Georgia, serif;
  --mono:      'JetBrains Mono', monospace;

  /* Rhythm */
  --r:         0;
  --gutter:    48px;
  --max:       1320px;
  --max-w:     1480px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: 120px 0; }
section.tight { padding: 80px 0; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.kicker {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

h1.display, h2.display {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h1.display { font-size: clamp(48px, 7vw, 108px); }
h2.display { font-size: clamp(40px, 5.5vw, 80px); }
.display em {
  font-style: italic;
  color: var(--ink-2);
  font-weight: 300;
}
.display .hl {
  background: linear-gradient(180deg, transparent 60%, var(--brand-l) 60%);
  padding: 0 0.08em;
}

h2.head, h3.head {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--ink);
}
h2.head { font-size: clamp(32px, 4vw, 52px); }
h3.head { font-size: clamp(22px, 2.4vw, 32px); }

.cond-head {
  font-family: var(--cond);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  max-width: 58ch;
}

.body-lg {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
}

.mono { font-family: var(--mono); }
.serif { font-family: var(--serif); }

/* Index number treatment */
.index-num {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-4);
}
.index-num::before { content: '/ '; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  transition: all 0.22s ease;
  white-space: nowrap;
  border-radius: var(--r);
}
.btn-ink {
  background: var(--ink);
  color: var(--paper);
}
.btn-ink:hover {
  background: var(--ink-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.3);
}
.btn-brand {
  background: var(--brand);
  color: #fff;
}
.btn-brand:hover {
  background: var(--brand-d);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-outline-brand {
  background: transparent;
  color: var(--brand-d);
  border: 1.5px solid var(--brand);
}
.btn-outline-brand:hover { background: var(--brand); color: #fff; }
.btn-ghost {
  padding: 14px 0;
  background: transparent;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  font-weight: 600;
  font-size: 14px;
}
.btn-ghost:hover { color: var(--brand-d); border-color: var(--brand); }

.arrow {
  display: inline-block;
  transition: transform 0.22s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ── NAVIGATION ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 250, 247, 0.88);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(250, 250, 247, 0.96);
  border-bottom-color: var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--gutter);
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 38px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-logo-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--ink-4);
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  padding: 10px 14px;
  transition: color 0.18s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1.5px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.nav-phone strong { color: var(--ink); font-weight: 500; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--paper);
  z-index: 999;
  padding: 40px 32px;
  flex-direction: column;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: end;
}
.hero-left { max-width: 780px; }
.hero-title {
  margin-bottom: 32px;
}
.hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.hero-meta span strong { color: var(--ink); font-weight: 500; }
.hero-lede {
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-right {
  position: relative;
  height: 520px;
}
.hero-image-stack {
  position: relative;
  height: 100%;
}
.hero-img-1, .hero-img-2, .hero-img-3 {
  position: absolute;
  overflow: hidden;
  border-radius: var(--r);
}
.hero-img-1 {
  top: 0; right: 0;
  width: 68%; height: 72%;
  background: var(--paper-3);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15);
}
.hero-img-2 {
  bottom: 0; left: 0;
  width: 48%; height: 50%;
  background: var(--brand);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.hero-img-3 {
  top: 55%; right: 52%;
  width: 28%; height: 32%;
  background: var(--ink);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
.hero-img-1 img { width: 100%; height: 100%; object-fit: cover; }
.hero-since-label {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.hero-since-year {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 72px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}
.hero-since-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  text-transform: uppercase;
}

.hero-stat-badge .num {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: #fff;
}
.hero-stat-badge .lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── MARQUEE ───────────────────────────────────────────────── */
.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  background: var(--paper);
  padding: 24px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  align-items: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 36px;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 28px;
  color: var(--ink-3);
  letter-spacing: -0.01em;
}
.marquee-item::after {
  content: '✦';
  font-size: 14px;
  color: var(--brand);
  font-style: normal;
}

/* ── PRODUCT CATEGORIES ────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}
.cat-card {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 40px 36px;
  background: var(--paper);
  transition: background 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.cat-card:hover { background: var(--paper-2); }
.cat-card:nth-child(3n) { border-right: none; }

.cat-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}
.cat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-4);
  letter-spacing: -0.02em;
}
.cat-badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--brand-d);
  background: var(--brand-l);
  padding: 4px 9px;
  text-transform: uppercase;
}

.cat-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.cat-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-3);
  margin-bottom: 24px;
  flex: 1;
}
.cat-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.cat-brand {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  padding: 4px 10px;
  border: 1px solid var(--rule-2);
  background: var(--paper-2);
}
.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--ink);
  align-self: flex-start;
  transition: color 0.2s;
}
.cat-card:hover .cat-link { color: var(--brand-d); border-color: var(--brand); }

/* ── EDITORIAL: Focus Products ─────────────────────────────── */
.focus-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--ink);
}
.focus-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--rule);
}
.focus-row:last-child { border-bottom: 1px solid var(--rule); }
.focus-row.reverse { direction: rtl; }
.focus-row.reverse > * { direction: ltr; }

.focus-visual {
  background: var(--paper-2);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.focus-visual img { width: 100%; height: 100%; object-fit: cover; }

.focus-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.focus-brand-logo {
  height: 36px;
  width: auto;
  margin-bottom: 32px;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
}
.focus-brand-text {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-d);
  margin-bottom: 32px;
}
.focus-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.focus-title em { font-style: italic; color: var(--ink-2); font-weight: 300; }
.focus-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 28px;
  max-width: 48ch;
}
.focus-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  margin-bottom: 36px;
  max-width: 520px;
}
.focus-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.4;
}
.focus-feature::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--brand);
  transform: rotate(45deg);
  margin-top: 8px;
  flex-shrink: 0;
}
.focus-cta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

/* ── ABOUT SPLIT ───────────────────────────────────────────── */
.about-section {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.about-section .eyebrow { color: var(--brand); }
.about-section .eyebrow::before { background: var(--brand); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink-2);
  overflow: hidden;
}
.about-visual-label {
  position: absolute;
  top: 28px; left: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  z-index: 2;
}
.about-visual-big {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.03em;
  z-index: 2;
}
.about-visual-big strong {
  font-style: normal;
  font-weight: 400;
  color: var(--brand);
  display: block;
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21,23,26,0.2) 0%, rgba(21,23,26,0.85) 100%);
  z-index: 1;
}
.about-text .display { color: #fff; margin-bottom: 32px; }
.about-text .display em { color: rgba(255,255,255,0.7); }
.about-motto {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--brand);
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 2px solid var(--brand);
}
.about-body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.about-body + .about-body { margin-top: 0; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.about-stat .num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}
.about-stat .num sup { font-size: 0.5em; color: var(--brand); font-weight: 400; }
.about-stat .lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── PARTNERS LOGO WALL ────────────────────────────────────── */
.partners-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.partner-cell {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 44px 32px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  transition: background 0.25s;
}
.partner-cell:hover { background: var(--paper-2); }
.partner-cell.dark { background: #1a1a1a; }
.partner-cell.dark:hover { background: #222; }
.partner-cell img {
  max-height: 54px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}

/* ── CLIENTS WALL ──────────────────────────────────────────── */
.clients-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.client-cell {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 20px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  font-family: var(--cond);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: all 0.25s;
}
.client-cell:hover { background: var(--paper-2); color: var(--ink); }

/* ── EDITORIAL CTA ─────────────────────────────────────────── */
.editorial-cta {
  background: var(--brand);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.editorial-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0, transparent 40%);
}
.editorial-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.editorial-cta .display { color: #fff; max-width: 14ch; }
.editorial-cta-lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 46ch;
}
.editorial-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ── FOOTER ────────────────────────────────────────────────── */
footer.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 32px;
  border-top: 4px solid var(--brand);
}
.foot-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.foot-brand-logo { height: 44px; width: auto; margin-bottom: 20px; }
.foot-brand-name {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.foot-brand-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.foot-motto {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  max-width: 320px;
  margin-bottom: 24px;
}
.foot-socials { display: flex; gap: 10px; }
.foot-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: all 0.22s;
}
.foot-social:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

.foot-col-title {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}
.foot-links { display: flex; flex-direction: column; gap: 12px; }
.foot-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.22s;
}
.foot-links a:hover { color: #fff; }

.foot-contact-item { margin-bottom: 20px; }
.foot-contact-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}
.foot-contact-body {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
}
.foot-copy { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); }
.foot-legal { display: flex; gap: 20px; }
.foot-legal a { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); }
.foot-legal a:hover { color: var(--brand); }

/* ── PAGE HERO ─────────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.breadcrumb {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--brand-d); }
.breadcrumb .sep { margin: 0 10px; color: var(--ink-4); }

/* ── PRODUCTS PAGE SIDEBAR LAYOUT ──────────────────────────── */
.prod-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.prod-sidebar {
  border-right: 1px solid var(--rule);
  padding: 40px 0;
  background: var(--paper-2);
  position: sticky;
  top: 72px;
  align-self: start;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.prod-sidebar-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding: 0 32px 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}
.prod-sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 32px 13px 29px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.2s;
  line-height: 1.3;
}
.prod-sidebar-item:hover { color: var(--ink); background: var(--paper); }
.prod-sidebar-item.active {
  color: var(--brand-d);
  background: var(--paper);
  border-left-color: var(--brand);
  font-weight: 600;
}
.prod-sidebar-count {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-4);
  flex-shrink: 0;
}

.prod-main { padding: 56px 64px; background: var(--paper); }

.prod-header {
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.prod-brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.prod-brand-logo-wrap img { height: 44px; width: auto; max-width: 180px; object-fit: contain; }
.prod-brand-logo-wrap .pill {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-d);
  background: var(--brand-l);
  padding: 4px 10px;
}
.prod-header-text { flex: 1; }
.prod-header-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.prod-header-sub {
  font-size: 15px;
  color: var(--ink-3);
  max-width: 60ch;
  line-height: 1.6;
}

.subcats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.subcat {
  background: var(--paper);
  padding: 28px 24px;
  transition: all 0.2s;
}
.subcat:hover {
  background: var(--paper-2);
  transform: translateY(-1px);
}
.subcat-icon {
  width: 40px; height: 40px;
  background: var(--brand-l);
  color: var(--brand-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: var(--mono);
  font-weight: 600;
}
.subcat-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}
.subcat-desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.55;
}

.prod-panel { display: none; }
.prod-panel.active { display: block; }

/* Product image showcase */
.prod-showcase {
  margin: 48px 0;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--rule);
}
.prod-showcase img { width: 100%; height: auto; display: block; }

/* ── PARTNERS PAGE ─────────────────────────────────────────── */
.partner-section { border-top: 1px solid var(--rule); padding-top: 64px; margin-top: 64px; }
.partner-section:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.partner-section-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.partner-section-num {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 28px;
  color: var(--ink-4);
  letter-spacing: -0.02em;
  min-width: 80px;
}
.partner-section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 34px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  flex: 1;
}
.partner-section-count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-4);
  text-transform: uppercase;
}

.partner-row {
  display: grid;
  grid-template-columns: 1fr 2.2fr auto;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  transition: background 0.22s;
}
.partner-row:last-child { border-bottom: none; }
.partner-row:hover { background: var(--paper-2); }
.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 32px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  height: 120px;
}
.partner-row:hover .partner-logo-wrap { background: var(--paper); }
.partner-logo-wrap.dark-bg { background: #111; border-color: #111; }
.partner-logo-wrap img {
  max-height: 60px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}
.partner-logo-text {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--brand-d);
  text-transform: uppercase;
}
.partner-info {}
.partner-info-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-4);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.partner-info-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.partner-info-line {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--brand-d);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.partner-info-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 58ch;
}
.partner-actions { display: flex; flex-direction: column; gap: 8px; }
.partner-btn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  text-align: center;
  transition: all 0.2s;
  white-space: nowrap;
  display: block;
}
.partner-btn.primary { background: var(--ink); color: #fff; }
.partner-btn.primary:hover { background: var(--brand-d); }
.partner-btn.ghost { background: transparent; color: var(--ink-2); border: 1px solid var(--rule-2); }
.partner-btn.ghost:hover { border-color: var(--ink); color: var(--ink); }

/* ── CONTACT PAGE ──────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border: 1px solid var(--rule);
}
.contact-left {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
}
.contact-left::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-left .eyebrow { color: var(--brand); }
.contact-left .eyebrow::before { background: var(--brand); }
.contact-panel-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 40px;
}
.contact-panel-title em { font-style: italic; color: var(--brand); }
.contact-info-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-info-val {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
}
.contact-info-val strong { color: #fff; font-weight: 600; }
.contact-info-val a { color: var(--brand); }

.contact-right {
  background: var(--paper);
  padding: 72px 64px;
}
.form-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--rule-2);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-bottom-color: var(--brand);
}
.form-textarea { height: 100px; resize: vertical; }
.form-submit {
  background: var(--ink);
  color: #fff;
  padding: 16px 48px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  margin-top: 16px;
}
.form-submit:hover { background: var(--brand-d); }

/* ── DOWNLOADS PAGE ────────────────────────────────────────── */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.dl-card {
  background: var(--paper);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: background 0.22s;
}
.dl-card:hover { background: var(--paper-2); }
.dl-icon {
  width: 44px; height: 44px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.dl-brand {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--brand-d);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.dl-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.dl-meta { font-size: 12px; color: var(--ink-4); font-family: var(--mono); margin-bottom: 24px; }
.dl-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  align-self: flex-start;
  margin-top: auto;
  transition: background 0.2s;
}
.dl-link:hover { background: var(--brand-d); }
.dl-link.secondary { background: transparent; color: var(--ink); border: 1px solid var(--rule-2); }
.dl-link.secondary:hover { border-color: var(--ink); }

/* ── EVENTS ────────────────────────────────────────────────── */
.event-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr auto;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.event-year {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  color: var(--ink-4);
  letter-spacing: -0.03em;
}
.event-year.upcoming { color: var(--brand); }
.event-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.event-loc { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.05em; }
.event-desc { font-size: 13px; color: var(--ink-3); line-height: 1.55; }
.event-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  text-transform: uppercase;
  border: 1px solid var(--rule-2);
  color: var(--ink-3);
  white-space: nowrap;
}
.event-tag.upcoming { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ── VALUES (ABOUT PAGE) ───────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.value-card {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 44px 36px;
  background: var(--paper);
}
.value-num {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 32px;
  color: var(--brand);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.value-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.value-text {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.7;
}

/* ── ANIMATION ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.fade-up.delay-1 { animation-delay: 0.08s; }
.fade-up.delay-2 { animation-delay: 0.16s; }
.fade-up.delay-3 { animation-delay: 0.24s; }
.fade-up.delay-4 { animation-delay: 0.32s; }
.fade-up.delay-5 { animation-delay: 0.4s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --gutter: 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-right { height: 400px; }
  .focus-row { grid-template-columns: 1fr; }
  .focus-row.reverse { direction: ltr; }
  .focus-text { padding: 56px 40px; }
  .focus-visual { min-height: 360px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .prod-layout { grid-template-columns: 1fr; }
  .prod-sidebar { position: relative; max-height: none; border-right: none; border-bottom: 1px solid var(--rule); }
  .prod-sidebar { display: flex; flex-wrap: wrap; padding: 16px 24px; gap: 4px; }
  .prod-sidebar-title { padding: 8px 12px; width: 100%; border-bottom: none; margin-bottom: 4px; }
  .prod-sidebar-item { padding: 8px 14px; border-left: none; border: 1px solid var(--rule); background: var(--paper); }
  .prod-sidebar-item.active { background: var(--ink); color: #fff; border-color: var(--ink); }
  .prod-main { padding: 40px 32px; }
  .partner-row { grid-template-columns: 1fr; gap: 24px; }
  .partner-logo-wrap { justify-content: center; max-width: 280px; }
  .partner-actions { flex-direction: row; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card:nth-child(3n) { border-right: 1px solid var(--rule); }
  .cat-card:nth-child(2n) { border-right: none; }
  .partners-wall { grid-template-columns: repeat(3, 1fr); }
  .clients-wall { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .editorial-cta-inner { grid-template-columns: 1fr; }
  .editorial-cta-actions { justify-content: flex-start; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  :root { --gutter: 20px; }
  section { padding: 80px 0; }
  .hero { padding: 120px 0 60px; }
  .hero-meta { gap: 16px; }
  .hero-right { display: none; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 48px 28px; }
  .prod-main { padding: 32px 20px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { border-right: none !important; }
  .partners-wall { grid-template-columns: repeat(2, 1fr); }
  .clients-wall { grid-template-columns: repeat(2, 1fr); }
  .dl-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; gap: 32px; }
  .event-row { grid-template-columns: 80px 1fr; }
  .event-row > *:nth-child(3), .event-row > *:nth-child(4) { display: none; }
  .marquee-item { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   V4.1 ADDITIONS — Cover rotator, partner grid, subcategory blocks
   ═══════════════════════════════════════════════════════════════ */

/* ── ROTATING COVER HERO ───────────────────────────────────── */
.hero-rotator {
  position: relative;
  height: min(85vh, 760px);
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
  margin-top: 72px;
}
.hero-rotator-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.04);
  filter: brightness(0.82) saturate(0.82);
}
.hero-slide.active {
  opacity: 1;
  animation: slowZoom 12s ease-in-out forwards;
}
@keyframes slowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

.hero-rotator::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(250,250,247,0.22) 0%, rgba(250,250,247,0.72) 60%, rgba(250,250,247,0.92) 100%),
    linear-gradient(90deg, rgba(250,250,247,0.60) 0%, rgba(250,250,247,0.20) 50%, rgba(250,250,247,0.55) 100%);
}
.hero-rotator-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-rotator-content {
  max-width: 820px;
}
.hero-rotator-content .eyebrow { color: var(--accent); }
.hero-rotator-content .eyebrow::before { background: var(--accent); }
.hero-rotator-content .display {
  color: var(--ink);
  text-shadow: 0 2px 32px rgba(250,250,247,0.8);
}
.hero-rotator-content .lede {
  color: var(--ink-2);
  font-weight: 400;
  text-shadow: 0 1px 16px rgba(250,250,247,0.8);
}

.hero-rotator-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(21,23,26,0.2);
}
.hero-rotator-meta span strong { color: var(--ink); font-weight: 600; font-size: 15px; }

.hero-rotator-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Dots nav */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero-dot {
  width: 40px;
  height: 3px;
  background: rgba(21,23,26,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0;
  padding: 0;
}
.hero-dot.active {
  background: var(--brand);
  width: 80px;
}
.hero-dot:hover { background: var(--ink); }

/* Brand tag for each slide */
.hero-slide-tag {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  background: rgba(250,250,247,0.85);
  padding: 8px 16px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(21,23,26,0.08);
}

@media (max-width: 768px) {
  .hero-rotator { height: 100vh; min-height: 520px; }
  .hero-rotator-meta { gap: 18px; }
  .hero-rotator-meta span strong { font-size: 13px; }
  .hero-dots { bottom: 16px; }
  .hero-slide-tag { top: 80px; right: 16px; font-size: 9px; padding: 6px 12px; }
}

/* ── PARTNER LOGO BLOCK GRID (replaces marquee) ────────────── */
.partner-block-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  background: var(--paper);
}
.partner-block {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  aspect-ratio: 5 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: all 0.3s ease;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.partner-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand-l2);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 0;
}
.partner-block:hover::after { opacity: 1; }
.partner-block:hover { transform: translateY(-2px); }
.partner-block img {
  max-height: 60%;
  max-width: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
  filter: grayscale(20%);
}
.partner-block:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.partner-block-text {
  font-family: var(--cond);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.03em;
  color: var(--ink);
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.partner-block-text small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-3);
  letter-spacing: 0.18em;
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .partner-block-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .partner-block-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-block { padding: 20px; }
  .partner-block-text { font-size: 18px; }
}

/* ── SUBCATEGORY BLOCKS (with image placeholder) ───────────── */
.subcat-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 32px;
}
.subcat-block {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: background 0.22s;
}
.subcat-block:hover {
  background: var(--paper-2);
}
.subcat-block-image {
  aspect-ratio: 4 / 3;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.subcat-block-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  transform: scale(1.3);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.subcat-block:hover .subcat-block-image img { transform: scale(1.36); }
.subcat-block-image-placeholder {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--ink-4);
  text-transform: uppercase;
  text-align: center;
  opacity: 0.5;
  background: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.subcat-block-image-placeholder::before {
  content: '—';
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--brand);
}
.subcat-block-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.subcat-block-num {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.subcat-block-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.35;
}
.subcat-block-desc {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-3);
  margin-top: 4px;
  /* Limit to 3 lines so cards stay uniform */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.subcat-block-link {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--brand-d);
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.subcat-block-link span { transition: transform 0.2s ease; }
.subcat-block:hover .subcat-block-link span { transform: translateX(3px); }

/* ── CATEGORY COLLAGE COVER (placeholder style) ────────────── */
.cat-cover {
  aspect-ratio: 16 / 9;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.cat-cover-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1px;
  background: var(--rule);
}
.cat-cover-collage > div {
  background-size: cover;
  background-position: center;
}
.cat-cover-collage > div:nth-child(1) { grid-row: span 2; }
.cat-cover-collage .side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
}
.cat-cover-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-4);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #ffffff;
}
.cat-cover-placeholder::before {
  content: '◇';
  font-size: 28px;
  color: var(--brand);
  font-family: var(--serif);
}

/* ── CATEGORY HERO HEADER ───────────────────────────────────── */
.cat-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  padding: 56px 0;
  align-items: center;
}
.cat-hero-text .cat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cat-hero-text .cat-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.cat-hero-text .cat-h em { font-style: italic; color: var(--ink-2); font-weight: 300; }
.cat-hero-text .cat-writeup {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 60ch;
  margin-bottom: 22px;
}
.cat-hero-text .cat-brand-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
.cat-hero-text .cat-brand-line img {
  max-height: 36px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}
.cat-hero-text .cat-brand-line .pill {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--brand-d);
  background: var(--brand-l);
  padding: 5px 11px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .cat-hero { grid-template-columns: 1fr; gap: 32px; }
}

/* ═══════════════════════════════════════════════════════════════
   V4.2 UPDATES — Partner cards improvements, bigger logos, caps
   ═══════════════════════════════════════════════════════════════ */

/* Partner row hover — extend horizontal padding so hover zone feels wider */
.partner-row {
  padding-left: 24px;
  padding-right: 24px;
  margin-left: -24px;
  margin-right: -24px;
  border-bottom: 1px solid var(--rule);
  transition: background 0.22s, transform 0.22s;
}
.partner-row:hover {
  background: var(--paper-2);
}

/* Partner logo box: centered, larger */
.partner-logo-wrap {
  justify-content: center !important;
  padding: 28px 24px;
  height: 140px;
  transition: all 0.22s;
}
.partner-logo-wrap img {
  max-height: 82px;
  max-width: 220px;
  transition: transform 0.3s;
}
.partner-row:hover .partner-logo-wrap img {
  transform: scale(1.04);
}

/* Partner name — ALL CAPS */
.partner-info-name {
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-family: var(--sans) !important;
  font-weight: 800 !important;
  font-size: 22px !important;
  line-height: 1.1 !important;
}

.partner-info-line {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Bigger partner block grid logos (25-40% larger) */
.partner-block img {
  max-height: 75%;
  max-width: 88%;
}
.partner-block {
  padding: 20px;
}
.partner-block-text {
  font-size: 28px;
  letter-spacing: 0.04em;
}

/* Homepage cat-card brand chips — reinforce brand visibility */
.cat-brand {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 5px 12px;
}

/* Meta-group header (for category clusters on products page) */
.meta-group {
  padding: 28px 0 20px;
  border-top: 2px solid var(--ink);
  margin-top: 56px;
}
.meta-group:first-child {
  margin-top: 0;
  border-top: none;
}
.meta-group-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.meta-group-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.meta-group-sub {
  font-size: 14px;
  color: var(--ink-3);
  max-width: 60ch;
}
.meta-group-brands {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.meta-group-brands span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  padding: 4px 10px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  text-transform: uppercase;
}

/* Hero stats — larger, more confident */
.hero-rotator-meta {
  gap: 40px;
}
.hero-rotator-meta span strong {
  font-size: 17px;
  font-weight: 700;
}
.hero-rotator-meta span {
  font-size: 10px;
  letter-spacing: 0.15em;
}

/* FORMECO section imagery fallback - just in case */
.formeco-gallery {
  aspect-ratio: auto;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.formeco-gallery::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,119,168,0.08) 0%, rgba(0,0,0,0.12) 100%);
  pointer-events: none;
}

/* About section stat emphasis reduction */
.about-stats .num {
  font-size: 40px !important;
}

/* ═══════════════════════════════════════════════════════════════
   V4.2 ADDITIONS — Partner refinements, bigger logos, group cards
   ═══════════════════════════════════════════════════════════════ */

/* ── BIGGER PARTNER GRID LOGOS (30% larger) ────────────────── */
.partner-block img {
  max-height: 75% !important;
  max-width: 88% !important;
}
.partner-block-text {
  font-size: 30px;
}
.partner-block-text small { font-size: 10px; margin-top: 8px; }

/* Footer/general logos elsewhere get modest boost */
.nav-logo img { height: 44px; }
.focus-brand-logo { height: 48px !important; max-width: 180px !important; }

/* ── PARTNERS PAGE REFINEMENTS ─────────────────────────────── */
/* 1. Row hover stays off the edge */
.partner-row {
  padding: 36px 36px !important;
  margin: 0 -36px !important;
  border-radius: 0;
  position: relative;
}
.partner-row:hover {
  background: var(--paper-2);
}
/* Restore grid with gutter inside */
.partner-section { padding: 0 36px; }

@media (max-width: 900px) {
  .partner-row { padding: 28px 20px !important; margin: 0 -20px !important; }
  .partner-section { padding: 0 20px; }
}

/* 2. Logo box — center the logo */
.partner-logo-wrap {
  justify-content: center !important;
  padding: 28px 24px !important;
}
.partner-logo-wrap img {
  max-height: 72px !important;
  max-width: 220px !important;
}

/* 3. Brand names ALL CAPS */
.partner-info-name {
  text-transform: uppercase !important;
  letter-spacing: 0.01em !important;
  font-family: var(--sans) !important;
  font-weight: 800 !important;
  font-size: 22px !important;
  color: var(--ink) !important;
}

.partner-logo-text {
  text-transform: uppercase !important;
  font-family: var(--cond) !important;
  font-weight: 800 !important;
  font-size: 26px !important;
  letter-spacing: 0.06em !important;
  color: var(--brand-d) !important;
  text-align: center;
}

/* ── CATEGORY GROUPS (homepage) ────────────────────────────── */
.group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--rule);
}
.group-card {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 48px 40px 40px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  min-height: 400px;
  transition: background 0.25s;
  position: relative;
}
.group-card:hover { background: var(--paper-2); }

.group-card-number {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  color: var(--ink-4);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.group-card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
  max-width: 16ch;
}
.group-card-title em {
  font-style: italic;
  color: var(--ink-2);
  font-weight: 300;
}
.group-card-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-3);
  margin-bottom: 26px;
  max-width: 46ch;
  flex: 1;
}
.group-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.group-brand-chip {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 7px 14px;
  border: 1px solid var(--rule-2);
  background: var(--paper-2);
  text-transform: uppercase;
}
.group-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--ink);
  align-self: flex-start;
  transition: all 0.2s;
}
.group-card:hover .group-card-link { color: var(--brand-d); border-color: var(--brand); }

@media (max-width: 900px) {
  .group-grid { grid-template-columns: 1fr; }
  .group-card { min-height: 320px; padding: 36px 28px 32px; }
  .group-card-title { font-size: 26px; }
}

/* ── SECOND COVER BAND (scroll-down mini rotator) ──────────── */
.mini-rotator {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--ink);
}
.mini-rotator-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mini-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  filter: brightness(0.82) saturate(0.9);
  transform: scale(1.03);
}
.mini-slide.active {
  opacity: 1;
  animation: miniZoom 10s ease-in-out forwards;
}
@keyframes miniZoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.09); }
}
.mini-rotator::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(21,23,26,0.82) 0%, rgba(21,23,26,0.55) 50%, rgba(21,23,26,0.82) 100%);
}
.mini-rotator-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.mini-rotator-content { max-width: 780px; }
.mini-rotator-content .eyebrow { color: var(--brand); justify-content: center; }
.mini-rotator-content .eyebrow::before { background: var(--brand); }
.mini-rotator-content h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}
.mini-rotator-content h2 em {
  font-style: italic;
  color: var(--brand);
  font-weight: 400;
}
.mini-rotator-content p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 58ch;
  margin: 0 auto;
}
.mini-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.mini-dot {
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.mini-dot.active {
  background: var(--brand);
  width: 56px;
}

/* ═══════════════════════════════════════════════════════════════
   V4.3 — Group card visuals, category image integration
   ═══════════════════════════════════════════════════════════════ */

/* Group cards now have an image header */
.group-card {
  position: relative;
  padding: 0 !important;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
}

.group-card-visual {
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.group-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.group-card:hover .group-card-visual img { transform: scale(1.04); }
.group-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(21,23,26,0.15) 100%);
  pointer-events: none;
}

.group-card-body {
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Full-width card (group 5) keeps 2-column layout */
.group-card.wide {
  display: grid !important;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
}
.group-card.wide .group-card-visual { aspect-ratio: auto; border-bottom: none; border-right: 1px solid var(--rule); }
.group-card.wide .group-card-body { padding: 56px 48px; justify-content: center; }

@media (max-width: 900px) {
  .group-card.wide { grid-template-columns: 1fr; }
  .group-card.wide .group-card-visual { aspect-ratio: 16 / 9; border-right: none; border-bottom: 1px solid var(--rule); }
  .group-card.wide .group-card-body { padding: 36px 28px; }
}

/* Prod-layout: give panels breathing room */
.prod-panel { padding-bottom: 64px; }
.prod-panel + .prod-panel { padding-top: 48px; border-top: 1px solid var(--rule); margin-top: 24px; }

/* ═══════════════════════════════════════════════════════════════
   BLOG SYSTEM — Cards, filters, post layout
   ═══════════════════════════════════════════════════════════════ */

.blog-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.blog-filter-btn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 20px;
  border: 1px solid var(--rule-2);
  background: var(--paper);
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-filter-btn:hover {
  background: var(--paper-2);
  border-color: var(--ink);
  color: var(--ink);
}
.blog-filter-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.blog-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(21,23,26,0.08);
}

.blog-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper-2);
  display: block;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.blog-card-category, .blog-card-brand {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--rule-2);
  color: var(--ink-3);
}
.blog-card-brand {
  background: var(--brand-l);
  color: var(--brand-d);
  border-color: var(--brand);
}

.blog-card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.blog-card-title a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card-title a:hover {
  color: var(--brand-d);
}

.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-3);
  margin-bottom: 20px;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.blog-card-date {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-4);
  text-transform: uppercase;
}
.blog-card-link {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  color: var(--brand-d);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-card-link:hover {
  color: var(--ink);
}

/* Blog post page */
.blog-post-header {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--rule);
}
.blog-post-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.blog-post-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.blog-post-excerpt {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-2);
  font-style: italic;
  max-width: 68ch;
}

.blog-post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
}
.blog-post-content h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 28px;
  color: var(--ink);
  margin: 48px 0 20px;
}
.blog-post-content h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin: 36px 0 16px;
}
.blog-post-content p {
  margin-bottom: 20px;
}
.blog-post-content ul, .blog-post-content ol {
  margin: 20px 0 20px 28px;
}
.blog-post-content li {
  margin-bottom: 10px;
}
.blog-post-content strong {
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-content { padding: 32px 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   V4.4 — CLIENTS PAGE (LOGO GRID), MOBILE MENU, DOWNLOAD MODAL,
          SEARCH BAR, CLICKABLE SUBCATS, LINE-OVERLAP FIXES
   ═══════════════════════════════════════════════════════════════ */

/* ── CLIENTS PAGE: sector heads + logo grid ────────────────── */
.client-sector {
  margin-bottom: 72px;
}
.client-sector-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 28px;
}
.client-sector-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--brand-d);
  text-transform: uppercase;
  padding-bottom: 6px;
}
.client-sector-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.client-sector-desc {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-3);
  max-width: 340px;
  text-align: right;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .client-sector-head { grid-template-columns: 1fr; gap: 10px; }
  .client-sector-desc { text-align: left; max-width: none; }
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 900px) { .client-logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .client-logo-grid { grid-template-columns: repeat(2, 1fr); } }

.client-logo-cell {
  aspect-ratio: 5 / 3;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: background 0.2s;
  overflow: hidden;
}
.client-logo-cell:hover { background: var(--paper-2); }
.client-logo-cell img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.client-logo-cell:hover img { transform: scale(1.06); }
.client-logo-cell.client-logo-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  color: var(--ink-2);
  text-align: center;
  letter-spacing: -0.005em;
}

/* Summary card */
.client-summary {
  margin-top: 64px;
  padding: 64px 48px;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.client-summary-number {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(80px, 10vw, 112px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.client-summary-number sup {
  font-size: 42px;
  color: var(--brand);
  top: -0.4em;
}
.client-summary-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-top: 18px;
}
.client-summary-body {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin: 26px auto 0;
  max-width: 580px;
  line-height: 1.7;
}
.client-summary .btn { margin-top: 32px; }

/* ── LINE-OVERLAP FIXES (hover/click zones) ────────────────── */

/* group-card-link: use inline border so arrow and underline stay together,
   prevent overflow into neighbouring content */
.group-card-link {
  padding-bottom: 3px;
  border-bottom-width: 1.5px;
  max-width: calc(100% - 12px);
  white-space: nowrap;
}
/* prevent the subcat-block-image hover-zoom from bleeding outside its cell */
.subcat-block-image { isolation: isolate; z-index: 1; }
/* whole subcat-block acts as a clickable element */
a.subcat-block,
.subcat-block a.subcat-block-wrap {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
a.subcat-block:hover,
.subcat-block a.subcat-block-wrap:hover { text-decoration: none; }

/* The eyebrow has a leading line — stop it bleeding past text boundaries */
.eyebrow { max-width: fit-content; }
.eyebrow::before { flex-shrink: 0; }

/* ── MOBILE MENU: overlay, slide-in, close button ──────────── */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21,23,26,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.nav-mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Override existing .nav-mobile rules at the end (later rules win) */
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(380px, 88vw);
  height: 100%;
  max-height: none;
  background: var(--paper);
  border-left: 1px solid var(--rule);
  box-shadow: -20px 0 60px rgba(21,23,26,0.12);
  padding: 96px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 99;
  overflow-y: auto;
}
.nav-mobile.active { transform: translateX(0); }
.nav-mobile a {
  display: flex;
  align-items: center;
  padding: 14px 4px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.005em;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: color 0.18s, padding-left 0.18s;
}
.nav-mobile a:hover { color: var(--brand-d); padding-left: 10px; }
.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--rule-2);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.nav-mobile-close:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
body.menu-open { overflow: hidden; }

/* Hamburger → X transformation when active */
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.hamburger span { transition: all 0.25s; }

/* ── PRODUCT SEARCH BAR (in header) ────────────────────────── */
.nav-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav-search-btn:hover { color: var(--ink); }

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21,23,26,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 14vh;
}
.search-overlay.active { opacity: 1; pointer-events: all; }
.search-box {
  width: min(720px, 92vw);
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: 0 30px 80px rgba(21,23,26,0.35);
  transform: translateY(-12px);
  transition: transform 0.28s;
}
.search-overlay.active .search-box { transform: translateY(0); }
.search-input-wrap {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
  gap: 14px;
}
.search-input-wrap svg { color: var(--ink-3); flex-shrink: 0; }
.search-input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-family: var(--sans);
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.search-input::placeholder { color: var(--ink-4); }
.search-close {
  background: none;
  border: none;
  color: var(--ink-3);
  cursor: pointer;
  font-size: 22px;
  padding: 4px 8px;
  transition: color 0.2s;
}
.search-close:hover { color: var(--ink); }
.search-results {
  max-height: 60vh;
  overflow-y: auto;
  padding: 12px 0;
}
.search-result {
  display: block;
  padding: 14px 24px;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  transition: background 0.15s;
}
.search-result:last-child { border-bottom: none; }
.search-result:hover { background: var(--paper-2); }
.search-result-cat {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--brand-d);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.search-result-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.search-empty {
  padding: 40px 24px;
  text-align: center;
  color: var(--ink-4);
  font-family: var(--serif);
  font-style: italic;
}

/* ── DOWNLOAD GATE MODAL ───────────────────────────────────── */
.download-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21,23,26,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 220;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.download-modal-overlay.active { opacity: 1; pointer-events: all; }
.download-modal {
  width: min(520px, 100%);
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 40px;
  box-shadow: 0 30px 80px rgba(21,23,26,0.4);
  transform: translateY(20px);
  transition: transform 0.3s;
}
.download-modal-overlay.active .download-modal { transform: translateY(0); }
.download-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  color: var(--ink-3);
  font-size: 22px;
  transition: color 0.2s;
}
.download-modal-close:hover { color: var(--ink); }
.download-modal .eyebrow { margin-bottom: 12px; }
.download-modal h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.download-modal h3 em { font-style: italic; color: var(--ink-3); }
.download-modal-sub {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
  margin-bottom: 24px;
}
.download-form { display: flex; flex-direction: column; gap: 14px; }
.download-form label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
  display: block;
}
.download-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule-2);
  background: #fff;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s;
}
.download-form input:focus { border-color: var(--brand); }
.download-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) { .download-form-row { grid-template-columns: 1fr; } }
.download-form-submit {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  cursor: pointer;
}
.download-form-error {
  color: var(--accent);
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

/* ── SUBCAT BLOCK AS LINK (keeps layout, makes entire block clickable) ── */
a.subcat-block {
  cursor: pointer;
}
a.subcat-block .subcat-block-link::after { transition: transform 0.2s; display: inline-block; }
a.subcat-block:hover .subcat-block-link { color: var(--brand); }
a.subcat-block:hover .subcat-block-link::after { transform: translateX(3px); }

/* ── PARTNER LOGO LINKING ──────────────────────────────────── */
a.partner-block {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

/* ── NAV CTA has a search button between phone and button ───── */
.nav-cta { display: flex; align-items: center; gap: 14px; }
@media (max-width: 1100px) { .nav-phone { display: none; } }


/* ═══════════════════════════════════════════════════════════════
   V4.5 — NEOTECH ENLARGED LOGO (20% LARGER), COVER PANE IMPACT
   ═══════════════════════════════════════════════════════════════ */

/* NEOTECH brand block on partner grid — 20% larger visual prominence */
.partner-block-neotech {
  background: linear-gradient(135deg, var(--ink) 0%, #2a2d33 100%);
  position: relative;
  overflow: hidden;
}
.partner-block-neotech::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at top right, rgba(0, 170, 221, 0.3) 0%, transparent 60%);
  pointer-events: none;
}
.partner-block-text-neotech {
  position: relative;
  z-index: 1;
  font-family: var(--cond);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.partner-block-text-neotech small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--brand);
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 500;
}
.partner-block-neotech:hover .partner-block-text-neotech { color: var(--brand); }

@media (max-width: 720px) {
  .partner-block-text-neotech { font-size: 28px; }
}

/* Cover impact: NEOTECH wordmark in the hero/footer slightly larger */
.foot-brand-name {
  font-size: 22px !important;
  letter-spacing: -0.005em;
}
.foot-brand-tag {
  font-size: 12px !important;
}

/* ── NEOTECH brand mark — 20% larger across nav + footer (point #7) ── */
.nav-logo img { height: 46px !important; }            /* was 38px → +21% */
.nav-logo-name { font-size: 17px !important; }        /* was 14px → +21% */
.nav-logo-tag { font-size: 10px !important; }
.foot-brand-logo { height: 53px !important; }         /* was 44px → +20% */

/* ════════════════════════════════════════════════════════════════
   V5.0 — PAGE BANNERS, CAT COVERS, HOVER DESCRIPTIONS, IMG MARGIN
   ════════════════════════════════════════════════════════════════ */

/* ── ROTATING PAGE BANNER (non-home pages) ─────────────────── */
.page-banner-rotator {
  position: relative;
  height: 360px;
  overflow: hidden;
  margin-top: 76px;
  background: var(--ink);
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  filter: brightness(0.62) saturate(0.95);
}
.page-banner-slide.active { opacity: 1; }
.page-banner-rotator::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(21,23,26,0.5) 0%, rgba(21,23,26,0.65) 100%);
  pointer-events: none;
}
.page-banner-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}
.page-banner-inner .breadcrumb { color: rgba(255,255,255,0.75); }
.page-banner-inner .breadcrumb a { color: rgba(255,255,255,0.85); }
.page-banner-inner .eyebrow { color: var(--brand); }
.page-banner-inner .eyebrow::before { background: var(--brand); }
.page-banner-inner .display {
  color: #fff;
  font-size: clamp(40px, 5vw, 68px);
}
.page-banner-inner .display em { color: var(--brand); font-style: italic; }
@media (max-width: 768px) {
  .page-banner-rotator { height: 280px; }
}

/* ── CATEGORY COVER (per category on products page) ──────── */
.prod-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 32px;
}
@media (max-width: 1100px) {
  .prod-header-grid { grid-template-columns: 1fr; gap: 32px; }
}

.cat-cover-wrap {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--rule);
}
.cat-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Collage grid for categories without single cover */
.cat-cover-collage { background: #ffffff; }
.cat-collage-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  padding: 4px;
}
.cat-collage-cell {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6px;
}
.cat-collage-cell img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cat-cover-cta {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 5;
  padding: 12px 24px;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.22s;
  box-shadow: 0 6px 20px rgba(21,23,26,0.25);
}
.cat-cover-cta:hover {
  background: var(--brand-d);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(21,23,26,0.35);
}

/* ── SUBCAT BLOCK PRODUCT IMAGE — 1.5mm (~5px) margin from edge ─ */
/* Override prior aggressive scaling: contain product fully with breathing room */
.subcat-block-image {
  aspect-ratio: 4 / 3;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  padding: 6px;  /* ~1.5mm at 96dpi */
}
.subcat-block-image img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  transform: scale(1) !important;
  padding: 0 !important;
  transition: transform 0.3s ease;
}
.subcat-block:hover .subcat-block-image img { transform: scale(1.04) !important; }

/* ── SUBCAT HOVER FULL-DESC OVERLAY ──────────────────────── */
.subcat-block { position: relative; }
.subcat-block-fulldesc {
  position: absolute;
  inset: 0;
  background: rgba(21, 23, 26, 0.96);
  color: rgba(255, 255, 255, 0.95);
  padding: 22px 22px 56px;  /* bottom padding reserves space for CTA strip */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  overflow-y: auto;
  z-index: 10;
}
.subcat-block:hover .subcat-block-fulldesc {
  opacity: 1;
  pointer-events: auto;
}
.subcat-block-fulldesc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.subcat-block-fulldesc li {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.55;
  padding: 7px 0 7px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.subcat-block-fulldesc li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--brand);
}
.subcat-block-fulldesc li:last-child { border-bottom: none; }
.subcat-block-fulldesc p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin: 0;
}
/* CTA STRIP — sibling element, NOT pseudo. Pinned to subcat-block bottom.
   Sits ABOVE the fulldesc overlay (z-index higher) so scrolling text passes
   underneath it. Solid background. Visible only on hover (with the overlay). */
.subcat-block-cta-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44px;
  background: rgb(15, 16, 18);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--brand);
  text-transform: uppercase;
  font-weight: 500;
  z-index: 11;            /* ABOVE fulldesc which is z-index 10 */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.subcat-block:hover .subcat-block-cta-strip {
  opacity: 1;
}
@media (hover: none) {
  /* On touch devices, fulldesc overlay is hidden — show CTA strip always */
  .subcat-block-cta-strip { opacity: 1; }
  .subcat-block-fulldesc { display: none; }
}

/* On touch devices, replace hover with always-visible faded overlay button */
@media (hover: none) {
  .subcat-block-fulldesc { display: none; }
}

/* ── ABOUT BANNER (used on About page or banks where blank) ─ */
.about-page-banner {
  height: 380px;
  background-size: cover;
  background-position: center;
  margin-top: 76px;
  position: relative;
}
.about-page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21,23,26,0.4) 0%, rgba(21,23,26,0.7) 100%);
}

/* ── DOWNLOAD CARD THUMBNAIL — 25-30% smaller per request #12 ── */
.dl-card { padding: 24px 22px !important; }
.dl-thumb,
.dl-card-cover,
.dl-card .preview {
  max-width: 96px !important;
  max-height: 128px !important;
  margin-bottom: 14px !important;
}

/* ════════════════════════════════════════════════════════════════
   V5.0 — DOWNLOADS PAGE (partner-grouped layout)
   ════════════════════════════════════════════════════════════════ */

/* Intro stats */
.dl-intro {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 56px;
  align-items: center;
  padding: 32px 0 56px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 64px;
}
.dl-intro-stat { text-align: center; }
.dl-intro-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.dl-intro-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: 6px;
}
.dl-intro-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  font-weight: 300;
}
@media (max-width: 768px) {
  .dl-intro { grid-template-columns: 1fr 1fr; gap: 28px; }
  .dl-intro-text { grid-column: 1 / -1; }
}

/* Brand section */
.dl-section {
  margin-bottom: 56px;
}
.dl-section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--ink);
}
.dl-section-logo {
  height: 56px;
  display: flex;
  align-items: center;
}
.dl-section-logo img {
  max-height: 56px;
  max-width: 200px;
  object-fit: contain;
}
.dl-section-cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--brand-d);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.dl-section-brand {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.dl-section-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 3px;
  font-weight: 600;
  transition: all 0.18s;
}
.dl-section-link:hover { color: var(--brand-d); border-color: var(--brand); }
.dl-section-link .arrow { display: inline-block; transition: transform 0.18s; }
.dl-section-link:hover .arrow { transform: translateX(3px); }
@media (max-width: 720px) {
  .dl-section-head { grid-template-columns: 1fr; gap: 12px; }
  .dl-section-link { justify-self: start; }
}

/* Card grid */
.dl-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

/* Card — overrides legacy .dl-card */
.dl-card {
  display: flex !important;
  gap: 20px;
  padding: 22px !important;
  background: var(--paper);
  border: 1px solid var(--rule);
  transition: all 0.22s;
  align-items: flex-start;
}
.dl-card:hover {
  background: var(--paper-2);
  border-color: var(--rule-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(21,23,26,0.06);
}

/* Thumbnail (~25-30% smaller than legacy) */
.dl-thumb-wrap {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.dl-card .dl-thumb {
  width: 64px !important;
  height: 80px !important;
  max-width: 64px !important;
  max-height: 80px !important;
  margin-bottom: 0 !important;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  position: relative;
}
.dl-meta-tag {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  text-transform: uppercase;
  text-align: center;
}

/* Card body */
.dl-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.dl-card .dl-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.dl-card .dl-desc {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.dl-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 16px;
}
.dl-card .dl-link.primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.18s;
}
.dl-card .dl-link.primary:hover { background: var(--brand-d); }
.dl-size {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-4);
  text-transform: uppercase;
}

/* Bottom CTA */
.dl-cta {
  margin-top: 64px;
  padding: 56px 48px;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.dl-cta h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #fff;
}
.dl-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.dl-cta .btn { background: var(--brand); color: #fff; }
.dl-cta .btn:hover { background: var(--brand-d); }

/* ════════════════════════════════════════════════════════════════
   V5.1 — GOOGLE MAPS CARDS (Contact page) + PRODUCTS DROPDOWN NAV
   ════════════════════════════════════════════════════════════════ */

/* ── CONTACT MAP CARDS ─────────────────────────────────── */
.contact-maps {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.contact-map-item .contact-info-label {
  margin-bottom: 8px;
}
.contact-map-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.18s ease;
}
.contact-map-card:hover {
  background: var(--paper-2);
  border-color: var(--ink);
  transform: translateX(2px);
}
.contact-map-thumb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--ink);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-map-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.contact-map-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.contact-map-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-d);
  font-weight: 500;
}

/* ── PRODUCTS DROPDOWN NAV (desktop hover, mobile tap) ──── */
.nav-links { position: relative; display: flex; align-items: center; gap: 4px; }
.nav-link-with-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-link-with-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  margin-top: 8px;
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: 0 18px 50px rgba(21,23,26,0.18);
  min-width: 320px;
  max-width: 90vw;
  max-height: 70vh;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 1100;
  padding: 10px 0;
}
.nav-link-with-dropdown:hover .nav-dropdown,
.nav-link-with-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 22px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: background 0.14s ease, padding-left 0.14s ease;
}
.nav-dropdown-item:hover {
  background: var(--paper-2);
  color: var(--brand-d);
  padding-left: 28px;
}
.nav-dropdown-num {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--ink-4);
  flex-shrink: 0;
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--rule);
  margin: 8px 16px;
}

/* Mobile: Products dropdown rendered as nested list inside slide-in menu */
@media (max-width: 980px) {
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--paper-2);
    margin-top: 0;
    margin-bottom: 0;
    padding: 4px 0;
    opacity: 1;
    pointer-events: auto;
    max-height: none;
    min-width: 0;
    /* Hidden by default in mobile slideout — only shown when toggled */
    display: none;
    width: 100%;
  }
  .nav-link-with-dropdown.mobile-open .nav-dropdown {
    display: block;
  }
  .nav-dropdown-item {
    padding: 11px 20px 11px 32px;
    font-size: 13px;
    border-bottom: 1px solid var(--rule);
  }
  /* Add caret to the parent menu item on mobile */
  .nav-mobile .nav-link-with-dropdown > a::after {
    content: '⌄';
    margin-left: auto;
    font-size: 18px;
    color: var(--ink-3);
    transition: transform 0.2s;
  }
  .nav-mobile .nav-link-with-dropdown.mobile-open > a::after {
    transform: rotate(180deg);
  }
  .nav-mobile .nav-link-with-dropdown > a {
    display: flex !important;
    align-items: center;
    width: 100%;
  }
}

/* Chevron — inline-flex, no impact on parent height */
.nav-link-with-dropdown .chevron {
  display: inline-block;
  margin-left: 4px;
  font-size: 8px;
  line-height: 1;
  vertical-align: middle;
  color: var(--ink-3);
  transition: transform 0.2s;
  position: relative;
  top: -1px;
}
.nav-link-with-dropdown:hover .chevron { transform: rotate(180deg); }
@media (max-width: 980px) { .nav-link-with-dropdown .chevron { display: none; } }
