/* ====================================================================
   BILD AGRO — DIRECTION 06 · BRAND-ALIGNED (matches logo.png)
   Cream paper + #FFC72C harvest yellow + #16A34A leaf green + charcoal.
   Warm Pakistani-SME premium feel.
==================================================================== */

:root {
  --bg: #F7F2E3;
  --paper: #FBF8EE;
  --paper-2: #FFFBF0;
  --ink: #2A2826;
  --ink-soft: #4A4642;
  --muted: #6E665C;
  --muted-2: #9A9182;
  --rule: #E3DABF;
  --rule-strong: #B8AC8A;

  --yellow: #FFC72C;
  --yellow-deep: #E6AC15;
  --yellow-soft: #FFE89E;
  --yellow-tint: rgba(255, 199, 44, 0.20);

  --green: #16A34A;
  --green-deep: #0E7A38;
  --green-soft: rgba(22, 163, 74, 0.10);

  --shadow-warm: 0 1px 0 rgba(58, 45, 18, 0.05), 0 24px 60px -24px rgba(58, 45, 18, 0.18);

  --maxw: 1320px;
  --gutter: clamp(20px, 3.4vw, 48px);

  --t-display: 'Fraunces', Georgia, serif;
  --t-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --t-mono: 'JetBrains Mono', ui-monospace, monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.42, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--t-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100dvh;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; font-family: var(--t-body); }
::selection { background: var(--yellow); color: var(--ink); }

main { overflow-x: hidden; }

/* Soft grain */
.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.3;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.16  0 0 0 0 0.14  0 0 0 0 0.08  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 16px; top: 16px; padding: 10px 14px;
  background: var(--ink); color: var(--paper-2); z-index: 200;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ TOP YELLOW STRIP ============ */
.bar {
  background: var(--yellow);
  border-bottom: 1px solid var(--yellow-deep);
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.bar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 9px 0;
}
.bar__l, .bar__r { display: flex; gap: 22px; flex-wrap: wrap; }
.bar a:hover { color: var(--green-deep); }
.bar__l span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.bar__l span:first-child::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: dot 2.2s ease-in-out infinite;
}
@keyframes dot {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* ============ NAV ============ */
.nav {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--rule);
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  height: 52px;
  width: auto;
}
@media (max-width: 640px) { .brand img { height: 42px; } }

.nav__links {
  display: none;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
  align-items: center;
}
@media (min-width: 980px) { .nav__links { display: flex; } }
.nav__links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color 0.25s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--yellow-deep);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 100px;
  letter-spacing: 0.005em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s var(--ease-spring);
  box-shadow: 0 6px 20px -8px rgba(58, 45, 18, 0.3);
}
.nav__cta:hover { background: var(--yellow); color: var(--ink); transform: translateY(-2px); }
.nav__cta:active { transform: translateY(0) scale(0.97); }
.nav__cta svg { width: 14px; height: 14px; }

/* ============ HERO ============ */
.hero {
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero__leaves {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 360px;
  height: 360px;
  pointer-events: none;
  opacity: 0.18;
  z-index: 0;
}
.hero__leaves svg { width: 100%; height: 100%; color: var(--green); }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 64px; align-items: end; }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  font-family: var(--t-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  box-shadow: 2px 2px 0 var(--ink);
}
.hero__eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: dot 2.2s ease-in-out infinite;
}

.hero__title {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.028em;
  color: var(--ink);
  max-width: 14ch;
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--green-deep);
}
.hero__title b {
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.hero__title b::before {
  content: "";
  position: absolute;
  left: -0.05em;
  right: -0.05em;
  bottom: 0.06em;
  height: 0.32em;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
}

.hero__lede {
  margin-top: 36px;
  max-width: 54ch;
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero__lede strong { color: var(--ink); font-weight: 600; }

.hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--t-body);
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.005em;
  transition: transform 0.2s var(--ease-spring), background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper-2);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--yellow);
}
.btn--primary:hover { background: var(--yellow); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0) scale(0.98); box-shadow: 2px 2px 0 var(--ink); }
.btn--ghost {
  background: var(--paper-2);
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--yellow); transform: translateY(-2px); }
.btn svg { width: 15px; height: 15px; }

.hero__trust {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  max-width: 520px;
}
.hero__trust > div { display: flex; flex-direction: column; gap: 4px; }
.hero__trust b {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero__trust b em { font-style: italic; color: var(--green-deep); }
.hero__trust span {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 16ch;
  font-weight: 500;
}

/* HERO STAMP CARD — featured product */
.stamp {
  background: var(--yellow);
  border: 2.5px solid var(--ink);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  box-shadow: 8px 8px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stamp::before {
  content: "";
  position: absolute;
  top: -1px; left: 22px;
  width: 60px; height: 8px;
  background: var(--ink);
  border-radius: 0 0 4px 4px;
}
.stamp__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.stamp__head span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.stamp__head span:first-child::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--ink);
  border-radius: 50%;
}
.stamp__title {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.stamp__title em { font-style: italic; }
.stamp__desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38ch;
  font-weight: 500;
}
.stamp__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stamp__metric {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stamp__metric dt {
  font-family: var(--t-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.stamp__metric dd {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.018em;
  color: var(--green-deep);
}
.stamp__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 14px;
  border-top: 1.5px solid var(--ink);
  font-weight: 600;
}
.stamp__foot a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  transition: gap 0.3s var(--ease-out);
}
.stamp__foot a:hover { gap: 10px; }
.stamp__foot svg { width: 13px; height: 13px; }

/* ============ MARQUEE PARTNERS ============ */
.marq {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  overflow: hidden;
  background: var(--paper);
}
.marq__l {
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.marq__track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: scroll 32s linear infinite;
  width: max-content;
}
.marq__track:hover { animation-play-state: paused; }
.marq__i {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--t-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.018em;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color 0.25s ease;
}
.marq__i:hover { color: var(--green-deep); }
.marq__i em {
  font-family: var(--t-mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.06em;
  background: var(--yellow);
  color: var(--ink);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}
@keyframes scroll {
  to { transform: translateX(calc(-50% - 28px)); }
}

/* ============ SECTION ============ */
.section {
  padding: 120px 0;
  position: relative;
}
.section--paper { background: var(--paper); }
.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 72px;
}
@media (min-width: 920px) {
  .section__head {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 64px;
    align-items: end;
  }
}
.section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: 18px;
}
.section__kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
}
.section__title {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.024em;
  color: var(--ink);
  max-width: 18ch;
}
.section__title em { font-style: italic; color: var(--green-deep); }
.section__title b {
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.section__title b::before {
  content: "";
  position: absolute;
  left: -0.05em;
  right: -0.05em;
  bottom: 0.08em;
  height: 0.3em;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
}
.section__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 50ch;
  align-self: end;
}

/* ============ INDUSTRIES — WARM CARDS ============ */
.ind {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .ind { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .ind { grid-template-columns: repeat(4, 1fr); } }

.ind__c {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out);
  box-shadow: 4px 4px 0 var(--ink);
}
.ind__c:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }

.ind__media {
  position: relative;
  aspect-ratio: 6 / 5;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}
.ind__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.ind__c:hover .ind__media img { transform: scale(1.05); }

.ind__no {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 4px 11px;
  border-radius: 100px;
  font-family: var(--t-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.ind__leaf {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  color: var(--green);
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.ind__leaf svg { width: 18px; height: 18px; }

.ind__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.ind__t {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.016em;
  color: var(--ink);
}
.ind__t em { font-style: italic; color: var(--green-deep); }
.ind__d {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 38ch;
}
.ind__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1.5px dashed var(--rule);
}
.ind__chip {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: var(--yellow-tint);
  border-radius: 100px;
  color: var(--ink);
  font-weight: 600;
}

/* ============ PRODUCTS — FEATURED + 4 ============ */
.cat {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 960px) {
  .cat {
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }
  .cat__feature { grid-row: 1 / span 2; }
}

.cat__feature {
  background: var(--yellow);
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  box-shadow: 6px 6px 0 var(--ink);
  overflow: hidden;
  min-height: 360px;
}
.cat__feature::before {
  content: "";
  position: absolute;
  top: 12px; right: -12px;
  width: 110px; height: 110px;
  background:
    radial-gradient(circle, var(--green) 28%, transparent 30%) 0 0/22px 22px;
  opacity: 0.25;
  pointer-events: none;
}
.cat__feature-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.cat__feature-tag {
  background: var(--ink);
  color: var(--yellow);
  padding: 5px 11px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cat__feature-tag::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}
.cat__feature-t {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.024em;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.cat__feature-t em { font-style: italic; }
.cat__feature-d {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 38ch;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.cat__feature-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
.cat__feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cat__feature-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 100px;
  font-family: var(--t-body);
  font-weight: 600;
  font-size: 13.5px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s var(--ease-spring);
  position: relative;
  z-index: 1;
}
.cat__feature-link:hover { background: var(--paper-2); color: var(--ink); transform: translateY(-2px); }
.cat__feature-link svg { width: 13px; height: 13px; }

.cat__c {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out);
  position: relative;
  min-height: 200px;
}
.cat__c:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.cat__c-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.cat__c-no {
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 3px 9px;
  border-radius: 100px;
  color: var(--ink);
  font-weight: 700;
}
.cat__c-name {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.cat__c-name em { font-style: italic; color: var(--green-deep); }
.cat__c-d {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 38ch;
}
.cat__c-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 700;
  padding-top: 12px;
  border-top: 1.5px dashed var(--rule);
}
.cat__c-link svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease-out); }
.cat__c:hover .cat__c-link svg { transform: translate(3px, -3px); }

/* ============ WHY — 4 columns ============ */
.why {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 2px solid var(--ink);
}
@media (min-width: 720px) { .why { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .why { grid-template-columns: repeat(4, 1fr); } }
.why__c {
  padding: 36px 28px 36px 0;
  border-right: 1.5px dashed var(--rule);
  border-bottom: 1.5px dashed var(--rule);
}
.why__c:last-child { border-right: none; }
@media (max-width: 1099px) { .why__c:nth-child(2) { border-right: none; } }
@media (max-width: 719px) { .why__c { border-right: none; } }
.why__c { padding-left: 28px; }
.why__c:first-child { padding-left: 0; }

.why__icon {
  width: 48px; height: 48px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--ink);
  margin-bottom: 18px;
  box-shadow: 3px 3px 0 var(--ink);
}
.why__icon svg { width: 22px; height: 22px; stroke-width: 2; }

.why__t {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.why__t em { font-style: italic; color: var(--green-deep); }
.why__p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ============ STATS BAND ============ */
.stats {
  padding: 80px 0;
  background: var(--ink);
  color: var(--paper-2);
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 199, 44, 0.07) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.6;
  pointer-events: none;
}
.stats__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 720px) { .stats__row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats__row { grid-template-columns: repeat(4, 1fr); } }
.stats__c {
  padding: 0 28px;
  border-right: 1px solid rgba(255, 199, 44, 0.2);
}
.stats__c:first-child { padding-left: 0; }
.stats__c:last-child { border-right: none; padding-right: 0; }
@media (max-width: 1023px) {
  .stats__c:nth-child(2) { border-right: none; }
  .stats__c:nth-child(1), .stats__c:nth-child(2) {
    border-bottom: 1px solid rgba(255, 199, 44, 0.2);
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
}
.stats__n {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--yellow);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.stats__n em {
  font-family: var(--t-display);
  font-style: italic;
  color: var(--paper-2);
  font-size: 0.55em;
  font-weight: 500;
}
.stats__l {
  margin-top: 12px;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 248, 238, 0.7);
  max-width: 24ch;
  line-height: 1.5;
  font-weight: 600;
}

/* ============ PROCESS — STAMPED STEPS ============ */
.proc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .proc { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .proc { grid-template-columns: repeat(4, 1fr); } }
.proc__c {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out);
  min-height: 280px;
}
.proc__c:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.proc__n {
  width: 64px; height: 64px;
  background: var(--yellow);
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--t-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.018em;
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 4px;
}
.proc__t {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.proc__t em { font-style: italic; color: var(--green-deep); }
.proc__d {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}
.proc__tol {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1.5px dashed var(--rule);
  font-family: var(--t-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 600;
}

/* ============ TESTIMONIALS ============ */
.tests {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 920px) { .tests { grid-template-columns: repeat(3, 1fr); } }

.t {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 320px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out);
  position: relative;
}
.t:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.t__leaf {
  position: absolute;
  top: 24px; right: 24px;
  width: 28px; height: 28px;
  color: var(--green);
  opacity: 0.4;
}
.t__leaf svg { width: 100%; height: 100%; }

.t__q {
  font-family: var(--t-display);
  font-weight: 500;
  font-size: 18.5px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--ink);
  flex: 1;
  padding-right: 36px;
}
.t__q em { font-style: italic; color: var(--green-deep); }
.t__attr {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}
.t__avatar {
  width: 44px; height: 44px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--t-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.t__name {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.t__role {
  font-family: var(--t-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 600;
}

/* ============ CTA / CONTACT ============ */
.cta {
  padding: 120px 0;
  background: var(--yellow);
  border-top: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.cta::before {
  top: -40px; right: -40px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--green) 30%, transparent 31%) 0 0/30px 30px;
  opacity: 0.20;
}
.cta::after {
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--ink) 28%, transparent 30%) 0 0/26px 26px;
  opacity: 0.12;
}
.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 1024px) { .cta__inner { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; } }

.cta__title {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.8vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 16ch;
}
.cta__title em { font-style: italic; color: var(--green-deep); }
.cta__p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
  font-weight: 500;
}
.cta__bul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}
.cta__bul li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.cta__bul-icon {
  width: 22px; height: 22px;
  background: var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--yellow);
  margin-top: 2px;
}
.cta__bul-icon svg { width: 12px; height: 12px; stroke-width: 3; }

.form {
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  box-shadow: 8px 8px 0 var(--ink);
}
.form::before {
  content: "Inquiry · BAQ-2026";
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--ink);
  color: var(--yellow);
  padding: 4px 12px;
  border-radius: 100px;
  font-family: var(--t-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__g { display: flex; flex-direction: column; gap: 6px; }
.form__l {
  font-family: var(--t-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.form__l em { font-style: normal; color: var(--green-deep); }
.form__i, .form__s, .form__a {
  padding: 13px 14px;
  background: var(--paper);
  border: 1.5px solid var(--rule-strong);
  border-radius: 8px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}
.form__i:focus, .form__s:focus, .form__a:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper-2);
  box-shadow: 0 0 0 3px var(--yellow);
}
.form__a { min-height: 110px; resize: vertical; }
.form__send {
  align-self: flex-start;
  margin-top: 6px;
}
.form__ok {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--green-soft);
  border: 2px solid var(--green);
  border-radius: 8px;
  font-family: var(--t-body);
  font-size: 13.5px;
  color: var(--green-deep);
  font-weight: 600;
  margin-top: 6px;
}
.form.is-ok .form__send { display: none; }
.form.is-ok .form__ok { display: inline-flex; }

/* ============ FOOTER ============ */
.foot {
  background: var(--ink);
  color: var(--paper-2);
  padding: 64px 0 28px;
}
.foot__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 56px;
}
@media (min-width: 720px) { .foot__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; } }
.foot__logo {
  background: var(--paper-2);
  border-radius: 16px;
  padding: 12px 16px;
  display: inline-block;
  max-width: fit-content;
}
.foot__logo img { height: 56px; width: auto; }
.foot__tag {
  margin-top: 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(251, 248, 238, 0.7);
  max-width: 38ch;
}
.foot__h {
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
  font-weight: 700;
}
.foot__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot__col a {
  font-size: 14.5px;
  color: rgba(251, 248, 238, 0.82);
  transition: color 0.2s ease;
}
.foot__col a:hover { color: var(--yellow); }
.foot__contact {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(251, 248, 238, 0.7);
}
.foot__contact a { color: rgba(251, 248, 238, 0.85); }
.foot__bot {
  padding-top: 24px;
  border-top: 1px solid rgba(251, 248, 238, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--t-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 248, 238, 0.55);
}
.foot__bot a:hover { color: var(--yellow); }
.foot__set { color: var(--yellow); }

/* ============ REVEALS ============ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal--late { transition-delay: 0.12s; }
.reveal--later { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marq__track { animation: none; }
  .ind__c:hover .ind__media img { transform: none; }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ====================================================================
   MULTI-PAGE ADDITIONS — shared shell, inner pages, product catalogue
   (extends the brand design system above; same tokens, same language)
==================================================================== */

/* ---- NAV: active link + mobile menu ---- */
.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after { transform: scaleX(1); }

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--paper-2);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-spring);
}
.nav__toggle:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--ink); }
.nav__toggle svg { width: 22px; height: 22px; }
.nav__toggle .nav__toggle-close { display: none; }
.nav.is-open .nav__toggle .nav__toggle-open { display: none; }
.nav.is-open .nav__toggle .nav__toggle-close { display: block; }
@media (min-width: 980px) { .nav__toggle { display: none; } }

/* On mobile, the links collapse into a dropdown panel */
@media (max-width: 979px) {
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 2px solid var(--ink);
    box-shadow: var(--shadow-warm);
    padding: 8px var(--gutter) 16px;
    display: none;
  }
  .nav.is-open .nav__links { display: flex; }
  .nav__links a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1.5px dashed var(--rule);
  }
  .nav__links a::after { display: none; }
  .nav__links a.is-active { color: var(--green-deep); }
}
.nav__row { position: relative; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
@media (max-width: 979px) { .nav__cta { display: none; } }

/* ---- PAGE HEADER (inner page intro) ---- */
.phead {
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.phead::before {
  content: "";
  position: absolute;
  top: -60px; right: -40px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--green) 28%, transparent 30%) 0 0/26px 26px;
  opacity: 0.10;
  pointer-events: none;
}
.phead__inner { position: relative; z-index: 1; max-width: 60ch; }
.phead__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 22px;
}
.phead__crumb a { color: var(--muted); transition: color 0.2s ease; }
.phead__crumb a:hover { color: var(--green-deep); }
.phead__crumb span { color: var(--ink); }
.phead__title {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.026em;
  color: var(--ink);
  max-width: 16ch;
}
.phead__title em { font-style: italic; color: var(--green-deep); }
.phead__title b {
  font-weight: 600; position: relative; display: inline-block;
}
.phead__title b::before {
  content: ""; position: absolute; left: -0.05em; right: -0.05em;
  bottom: 0.08em; height: 0.3em; background: var(--yellow);
  z-index: -1; border-radius: 4px;
}
.phead__lede {
  margin-top: 26px;
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ---- PRODUCT CATALOGUE ---- */
.cata { padding: 56px 0 120px; }

/* Toolbar: search + category pills + selects */
.cata__bar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 4px 4px 0 var(--ink);
  margin-bottom: 14px;
  position: sticky;
  top: 88px;
  z-index: 20;
}
@media (max-width: 979px) { .cata__bar { position: static; } }

.cata__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--t-body);
  font-weight: 600;
  font-size: 13.5px;
  transition: transform 0.18s var(--ease-spring), background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.pill:hover { transform: translateY(-1px); color: var(--ink); }
.pill.is-active {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.pill__count {
  font-family: var(--t-mono);
  font-size: 10.5px;
  font-weight: 700;
  background: var(--ink);
  color: var(--yellow);
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.pill.is-active .pill__count { background: var(--ink); color: var(--yellow); }

.cata__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cata__search {
  position: relative;
  flex: 1 1 240px;
  min-width: 200px;
}
.cata__search svg {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 17px; height: 17px;
  color: var(--muted);
  pointer-events: none;
}
.cata__search input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  background: var(--paper);
  border: 1.5px solid var(--rule-strong);
  border-radius: 10px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.cata__search input:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper-2);
  box-shadow: 0 0 0 3px var(--yellow);
}
.cata__select {
  position: relative;
}
.cata__select select {
  appearance: none;
  -webkit-appearance: none;
  padding: 12px 38px 12px 14px;
  background: var(--paper);
  border: 1.5px solid var(--rule-strong);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cata__select select:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px var(--yellow); }
.cata__select::after {
  content: "";
  position: absolute;
  right: 15px; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.cata__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 6px 4px 18px;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.cata__reset {
  color: var(--green-deep);
  font-weight: 700;
  display: none;
  align-items: center;
  gap: 6px;
}
.cata__reset.is-shown { display: inline-flex; }
.cata__reset:hover { color: var(--ink); }

/* Product grid + cards */
.cata__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 560px) { .cata__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cata__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1180px) { .cata__grid { grid-template-columns: repeat(4, 1fr); } }

.pcard {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-out);
}
.pcard:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.pcard__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--yellow-soft);
}
.pcard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.9s var(--ease-out);
}
.pcard:hover .pcard__media img { transform: scale(1.05); }
/* image-less placeholder: a leaf mark on tinted paper */
/* image-less products: a designed typographic "house poster" */
.pcard__media--ph {
  background:
    radial-gradient(135px 135px at 84% 16%, rgba(255, 199, 44, 0.60), transparent 68%),
    radial-gradient(circle, rgba(22, 163, 74, 0.10) 1.4px, transparent 1.5px) 0 0 / 15px 15px,
    var(--paper);
}
.pcard__ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  gap: 8px;
}
.pcard__ph-kicker {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 700;
}
.pcard__ph-name {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pcard__ph-name::after {
  content: "";
  display: block;
  width: 40px; height: 4px;
  background: var(--yellow);
  border-radius: 3px;
  margin-top: 12px;
}
.pcard__ph-leaf {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  color: var(--green);
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.pcard__ph-leaf svg { width: 17px; height: 17px; }

.pcard__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 4px 11px;
  border-radius: 100px;
  font-family: var(--t-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.pcard__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pcard__name {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.pcard__name em { font-style: italic; color: var(--green-deep); }
.pcard__principal {
  font-family: var(--t-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: -4px;
}
.pcard__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.pcard__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pcard__chip {
  font-family: var(--t-mono);
  font-size: 9.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: var(--yellow-tint);
  border-radius: 100px;
  color: var(--ink);
  font-weight: 600;
}
.pcard__foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1.5px dashed var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pcard__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 700;
}
.pcard__link svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease-out); }
.pcard:hover .pcard__link svg { transform: translate(2px, 0); }
.pcard__pdf {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.pcard__pdf svg { width: 13px; height: 13px; }
.pcard__pdf:hover { color: var(--ink); }

/* Empty state */
.cata__empty {
  display: none;
  text-align: center;
  padding: 72px 24px;
  border: 2px dashed var(--rule-strong);
  border-radius: 18px;
  background: var(--paper);
}
.cata__empty.is-shown { display: block; }
.cata__empty svg { width: 48px; height: 48px; color: var(--muted-2); margin: 0 auto 18px; }
.cata__empty h3 {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 8px;
}
.cata__empty p { color: var(--muted); font-size: 15px; max-width: 40ch; margin: 0 auto 20px; }

/* ---- PRODUCT DETAIL MODAL ---- */
.pmodal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  padding: 24px;
  align-items: center;
  justify-content: center;
}
.pmodal.is-open { display: flex; }
.pmodal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(42, 40, 38, 0.55);
  backdrop-filter: blur(2px);
}
.pmodal__card {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  box-shadow: 10px 10px 0 var(--ink);
}
.pmodal__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 2.5px solid var(--ink);
  background: var(--yellow-soft);
}
.pmodal__media img { width: 100%; height: 100%; object-fit: contain; }
.pmodal__body { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.pmodal__tag {
  align-self: flex-start;
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 4px 12px;
  border-radius: 100px;
  font-family: var(--t-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.pmodal__title {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pmodal__title em { font-style: italic; color: var(--green-deep); }
.pmodal__desc { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }
.pmodal__dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.pmodal__dl > div {
  background: var(--paper);
  border: 1.5px solid var(--rule-strong);
  border-radius: 12px;
  padding: 12px 14px;
}
.pmodal__dl dt {
  font-family: var(--t-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.pmodal__dl dd { font-size: 14px; color: var(--ink); font-weight: 500; }
.pmodal__actions { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 6px; }

/* clickable card */
.pcard { cursor: pointer; }
.pcard:focus-visible { outline: 3px solid var(--yellow-deep); outline-offset: 3px; }

/* modal key-benefits */
.pmodal__ben { display: flex; flex-direction: column; gap: 8px; }
.pmodal__ben-h {
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 700;
}
.pmodal__ben ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
@media (max-width: 520px) { .pmodal__ben ul { grid-template-columns: 1fr; } }
.pmodal__ben li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-soft);
}
.pmodal__ben li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0;
  color: var(--green-deep);
  font-weight: 700;
}
.pmodal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  z-index: 2;
}
.pmodal__close:hover { background: var(--yellow); }
.pmodal__close svg { width: 18px; height: 18px; }

/* ---- GENERIC PROSE / CONTENT (inner pages) ---- */
.prose { max-width: 68ch; }
.prose p { font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 18px; }
.prose h3 {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 34px 0 12px;
}
