/* ======================================================================
   G.U. INDUSTRIES — v2 / Industrial Bauhaus poster system
   Sharp-edged grotesque + concrete/graphite + electric lime + forest
   ====================================================================== */

:root {
  /* palette */
  --bg:        #E8E3D6;
  --bg-2:      #DCD6C5;
  --bg-3:      #F1ECE0;
  --ink:       #14140F;
  --ink-2:     #1F1F19;
  --ink-3:     #2C2C24;
  --mute:      #6B6B5F;
  --mute-2:    #8A8A7C;
  --lime:      #C2EE3B;
  --lime-2:    #D6FE3F;
  --lime-deep: #8FB917;
  --forest:    #0E3B2B;
  --forest-2:  #163F2F;
  --warn:      #E83815;
  --line:      rgba(20,20,15,0.18);
  --line-2:    rgba(20,20,15,0.32);
  --line-dim:  rgba(20,20,15,0.08);
  --line-lt:   rgba(241,236,224,0.16);

  /* typography */
  --f-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --f-body:    'DM Sans', system-ui, sans-serif;
  --f-mono:    'IBM Plex Mono', ui-monospace, monospace;

  /* misc */
  --shell-pad: clamp(20px, 4vw, 64px);
  --shell-max: 1440px;
  --ease:      cubic-bezier(.22,.61,.36,1);
  --ease-out:  cubic-bezier(.16,1,.3,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: transparent; border: 0; cursor: pointer; }
address, em, i { font-style: normal; }
ul, ol { list-style: none; }
::selection { background: var(--lime); color: var(--ink); }

/* --- shared shell --- */
.bk-shell, .hd-shell, .ts-shell, .sb-shell, .ft-shell {
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 var(--shell-pad);
}

/* ======================================================================
   Display + body type
====================================================================== */
.big {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 780;
  font-weight: 800;
  font-size: clamp(2rem, 5.4vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--ink);
}
.big .punch {
  background: var(--lime);
  padding: 0 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: var(--ink);
}
.big .punch.lime { background: var(--lime); }
.big .punch.forest { background: var(--forest); color: var(--lime-2); }

.bk-lead {
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.18vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
  margin-top: 16px;
}

/* mono labels */
.mono, .bk-tag, .ts-cell, .kv, .cap-tile-num, .cap-tile-tag, .row-idx,
.bp-num i, .ct-lbl, .ft-lbl, .ft-mono, .pj-id, .sb-lbl, .qc-img-tag,
.bp-tags span, .row-tags span, .ct-coord span, .rail-mark, .rail-lbl, .hero-row .kv {
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
}

/* ======================================================================
   Edge progress
====================================================================== */
.edge-progress {
  position: fixed; left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 200;
  transition: transform 80ms linear;
}
.edge-progress::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 0;
  width: 24px; background: var(--lime);
}

/* ======================================================================
   Top strip
====================================================================== */
.top-strip {
  background: var(--ink);
  color: var(--bg);
  border-bottom: 1px solid var(--ink);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ts-shell {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: stretch;
  gap: 0;
}
.ts-cell { padding: 10px 18px; display: flex; align-items: center; gap: 10px; }
.ts-marquee {
  border-right: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  padding-left: 0;
}
.ts-mq-track {
  display: inline-flex;
  white-space: nowrap;
  animation: tsmq 45s linear infinite;
  gap: 24px;
  align-items: center;
}
.ts-mq-track i { color: var(--lime); padding: 0 2px; }
.ts-mq-track span { opacity: 0.85; }
@keyframes tsmq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.ts-dot {
  background: var(--forest);
  color: var(--lime-2);
  border-left: 1px solid var(--forest);
}
.ts-pulse {
  display: inline-block; width: 6px; height: 6px; background: var(--lime);
  animation: tspulse 1.3s infinite ease-out;
}
@keyframes tspulse {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}
.ts-link {
  background: var(--lime);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: background .2s;
}
.ts-link:hover { background: var(--lime-2); }

/* ======================================================================
   Header
====================================================================== */
.site-header {
  position: sticky;
  top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--ink);
  transition: background .25s var(--ease);
}
.site-header.is-scrolled { background: var(--bg-3); }

.hd-shell {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.logo-mark {
  width: 36px; height: 36px;
  color: var(--ink);
  flex-shrink: 0;
}
.logo-mark.big { width: 52px; height: 52px; }
.logo-text {
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1;
}
.logo-text strong {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 24, "wght" 800;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-text strong i { color: var(--lime-deep); margin: 0 1px; font-weight: 600; }
.logo-text span {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--mute);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav {
  display: flex; gap: 2px; justify-content: center; flex-wrap: wrap;
}
.nav a {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .2s, background .2s;
  border: 1px solid transparent;
}
.nav a i {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--lime-deep);
  font-weight: 600;
}
.nav a:hover { background: var(--ink); color: var(--lime-2); }
.nav-privacy {
  margin-left: 6px;
  border: 1px solid var(--ink) !important;
  font-size: 12px !important;
  letter-spacing: 0.02em;
}

/* CTA buttons */
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
}
.cta:hover {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}
.cta-hd { padding: 10px 16px; font-size: 12.5px; }
.cta-lime { background: var(--lime); color: var(--ink); }
.cta-lime:hover { background: var(--ink); color: var(--lime); box-shadow: 4px 4px 0 var(--lime); }
.cta-line { background: transparent; color: var(--bg); border-color: var(--bg); }
.cta-line:hover { background: var(--bg); color: var(--ink); box-shadow: 4px 4px 0 var(--bg); }
.cta-dark { background: var(--ink); color: var(--bg); }

.burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 4px;
  border: 1px solid var(--ink);
  background: var(--bg);
}
.burger span { width: 18px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--ink);
  color: var(--bg);
  border-top: 1px solid var(--ink);
}
.mobile-menu a {
  padding: 16px var(--shell-pad);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500;
  color: var(--bg);
}
.mobile-menu a i {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--lime);
  letter-spacing: 0.12em;
  font-weight: 600;
}
.mobile-menu .mobile-cta {
  margin: 16px var(--shell-pad);
  justify-content: center;
  background: var(--lime); color: var(--ink); border-color: var(--lime);
}
.mobile-menu.is-open { display: flex; }

@media (max-width: 1100px) {
  .hd-shell { grid-template-columns: 1fr auto; }
  .nav, .cta-hd { display: none; }
  .burger { display: flex; }
}

/* ======================================================================
   HERO POSTER
====================================================================== */
.hero {
  position: relative;
  min-height: clamp(640px, 90vh, 880px);
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  isolation: isolate;
}
.hero-img { position: absolute; inset: 0; z-index: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.62; }
.hero-tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 0% 100%, rgba(14,59,43,0.55) 0%, transparent 55%),
    linear-gradient(180deg, rgba(20,20,15,0.5) 0%, rgba(20,20,15,0.85) 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px) 0 0/100% 80px,
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0/120px 100%;
  mix-blend-mode: overlay;
}

.hero-overlay {
  position: relative; z-index: 2;
  height: 100%;
  min-height: inherit;
  padding: clamp(40px, 6vw, 70px) var(--shell-pad);
  max-width: var(--shell-max);
  margin: 0 auto;
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}

.hero-row {
  display: flex; flex-wrap: wrap; gap: 14px 26px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241,236,224,0.7);
  border-top: 1px solid rgba(241,236,224,0.18);
  border-bottom: 1px solid rgba(241,236,224,0.18);
  padding: 12px 0;
}
.kv strong { color: var(--lime-2); margin-left: 6px; font-weight: 600; }

.hero-h1 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 800;
  font-weight: 800;
  font-size: clamp(2.8rem, 11vw, 11rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--bg);
}
.hero-h1 .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero-h1 .line > span {
  display: inline-block;
  transform: translateY(110%) skewY(8deg);
  transition: transform 1.1s var(--ease-out);
  transform-origin: left bottom;
}
.hero-h1 .line.is-in > span { transform: translateY(0) skewY(0); }
.hero-h1 .line:nth-child(1) > span { transition-delay: 0.05s; }
.hero-h1 .line:nth-child(2) > span { transition-delay: 0.18s; color: var(--lime); }
.hero-h1 .line:nth-child(3) > span { transition-delay: 0.32s; }
.hero-h1 .line:nth-child(4) > span {
  transition-delay: 0.46s;
  -webkit-text-stroke: 2px var(--bg);
  color: transparent;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: flex-end;
}
.hero-lead p {
  max-width: 48ch;
  color: rgba(241,236,224,0.85);
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  line-height: 1.55;
  margin-bottom: 26px;
}
.hero-acts { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-rail {
  display: flex; flex-direction: column;
  align-items: flex-end;
  text-align: right;
  border-left: 1px solid rgba(241,236,224,0.2);
  padding-left: 30px;
  gap: 4px;
}
.rail-mark {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mute-2);
}
.rail-num {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 800;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.85;
  color: var(--lime);
  letter-spacing: -0.03em;
}
.rail-lbl {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(241,236,224,0.55);
}

@media (max-width: 800px) {
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-rail { align-items: flex-start; border-left: 0; border-top: 1px solid rgba(241,236,224,0.2); padding-left: 0; padding-top: 18px; text-align: left; }
}

/* ======================================================================
   STAT BAR
====================================================================== */
.stat-bar {
  background: var(--lime);
  border-bottom: 1px solid var(--ink);
  border-top: 1px solid var(--ink);
  color: var(--ink);
  overflow: hidden;
}
.sb-shell {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.sb-item {
  padding: 22px 18px;
  border-right: 1px solid var(--ink);
  display: flex; flex-direction: column; gap: 4px;
  position: relative;
}
.sb-item:last-child { border-right: 0; }
.sb-flash { background: var(--ink); color: var(--lime); }
.sb-num {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 60, "wght" 800;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
.sb-num i {
  color: var(--lime-deep);
  font-size: 0.55em;
  margin-left: 2px;
}
.sb-flash .sb-num i { color: var(--lime-2); }
.sb-lbl {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(20,20,15,0.7);
}
.sb-flash .sb-lbl { color: rgba(194,238,59,0.85); }

@media (max-width: 1000px) { .sb-shell { grid-template-columns: repeat(3, 1fr); } .sb-item:nth-child(3) { border-right: 0; } .sb-item:nth-child(n+4) { border-top: 1px solid var(--ink); } }
@media (max-width: 600px)  { .sb-shell { grid-template-columns: repeat(2, 1fr); } .sb-item { border-right: 1px solid var(--ink) !important; border-top: 1px solid var(--ink) !important; } .sb-item:nth-child(2n) { border-right: 0 !important; } .sb-item:nth-child(-n+2) { border-top: 0 !important; } }

/* ======================================================================
   BLOCKS — shared
====================================================================== */
.block { padding: clamp(80px, 10vw, 150px) 0; position: relative; }
.bk-head { margin-bottom: clamp(50px, 6vw, 80px); }
.bk-head .bk-num {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 800;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: inline-block;
  margin-right: 18px;
  vertical-align: baseline;
}
.bk-head .bk-num.lime { color: var(--lime-deep); }
.bk-head .bk-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  display: inline-block;
  border-top: 1px solid var(--ink);
  padding-top: 4px;
}
.bk-head .big { margin-top: 26px; max-width: 24ch; }
.bk-head.split {
  display: grid;
  grid-template-columns: auto 1.5fr 1fr;
  gap: 40px;
  align-items: end;
}
.bk-head.split > div:first-child { display: flex; flex-direction: column; gap: 8px; }
.bk-head.split .big { margin-top: 0; }
@media (max-width: 900px) {
  .bk-head.split { grid-template-columns: 1fr; }
  .bk-head.split .big, .bk-head.split .bk-lead { max-width: 100%; }
}

/* ======================================================================
   OVERVIEW
====================================================================== */
.block-overview { background: var(--bg); border-top: 1px solid var(--ink); }
.ov-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.ov-text { max-width: 60ch; }
.ov-cols {
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  font-size: 15px;
  color: var(--ink-2);
}
.ov-cols p { line-height: 1.6; }

.spec-sheet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--ink);
  background: var(--bg-3);
  margin: 30px 0;
}
.spec-sheet > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  gap: 12px;
}
.spec-sheet > div:nth-child(2n) { border-right: 0; }
.spec-sheet > div:nth-last-child(-n+2) { border-bottom: 0; }
.spec-sheet dt {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.spec-sheet dd {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}

.link-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px 11px 18px;
  background: var(--ink); color: var(--bg);
  border: 1px solid var(--ink);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
}
.link-pill:hover {
  background: var(--lime); color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.ov-media {
  display: flex; flex-direction: column; gap: 18px;
}
.ov-fig {
  position: relative;
  border: 1px solid var(--ink);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ink);
}
.ov-fig.sm { aspect-ratio: 4/3; align-self: flex-end; width: 75%; margin-top: -50px; }
.ov-fig img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.95);
  transition: transform 1.4s var(--ease-out);
}
.ov-fig:hover img { transform: scale(1.05); }
.ov-fig figcaption {
  position: absolute; bottom: 12px; left: 12px;
  padding: 5px 10px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ov-fig figcaption span {
  font-weight: 700;
  margin-right: 6px;
  padding-right: 6px;
  border-right: 1px solid rgba(20,20,15,0.4);
}

@media (max-width: 900px) {
  .ov-layout, .ov-cols { grid-template-columns: 1fr; }
  .spec-sheet { grid-template-columns: 1fr; }
  .spec-sheet > div { border-right: 0; }
  .spec-sheet > div:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .ov-fig.sm { width: 92%; margin-top: 0; }
}

/* ======================================================================
   CAPABILITIES — horizontal snap scroll
====================================================================== */
.block-cap {
  background: var(--forest);
  color: var(--bg);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.block-cap .bk-tag { color: rgba(241,236,224,0.7); border-color: rgba(241,236,224,0.4); }
.block-cap .bk-num { color: var(--lime); }
.block-cap .big { color: var(--bg); }
.block-cap .big .punch.lime { background: var(--lime); color: var(--ink); }
.block-cap .bk-lead { color: rgba(241,236,224,0.78); }

.cap-track-wrap { position: relative; }
.cap-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 28vw, 380px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 30px;
}
.cap-track::-webkit-scrollbar { display: none; }
.cap-tile {
  scroll-snap-align: start;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--ink);
  display: flex; flex-direction: column;
  min-height: 540px;
  transition: transform .4s var(--ease-out);
}
.cap-tile:hover { transform: translateY(-6px); }
.cap-tile-dark { background: var(--ink); color: var(--bg); }
.cap-tile-dark h3 { color: var(--bg); }
.cap-tile-dark p { color: rgba(241,236,224,0.78); }
.cap-tile-dark .cap-tile-ul li::before { background: var(--lime); }
.cap-tile-dark .cap-tile-num,
.cap-tile-dark .cap-tile-tag { color: var(--lime); border-color: var(--lime); }
.cap-tile-dark .cap-tile-head { border-bottom-color: rgba(241,236,224,0.18); }
.cap-tile-dark .cap-tile-ul { border-top-color: rgba(241,236,224,0.18); }

.cap-tile-lime { background: var(--lime); color: var(--ink); }
.cap-tile-lime .cap-tile-num,
.cap-tile-lime .cap-tile-tag { color: var(--forest); border-color: var(--forest); }
.cap-tile-lime .cap-tile-head { border-bottom-color: rgba(20,20,15,0.32); }
.cap-tile-lime .cap-tile-ul { border-top-color: rgba(20,20,15,0.28); }
.cap-tile-lime .cap-tile-ul li::before { background: var(--forest); }

.cap-tile-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mute);
}
.cap-tile-num { color: var(--ink); }
.cap-tile-tag {
  padding: 3px 8px;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.cap-tile-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--ink);
}
.cap-tile-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.95);
  transition: transform 1.4s var(--ease-out);
}
.cap-tile:hover .cap-tile-img img { transform: scale(1.07); }

.cap-tile-body {
  padding: 22px 20px;
  flex: 1;
  display: flex; flex-direction: column;
  gap: 12px;
}
.cap-tile-body h3 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 36, "wght" 720;
  font-weight: 800;
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.cap-tile-body p {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 38ch;
}
.cap-tile-ul {
  display: flex; flex-direction: column; gap: 5px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.cap-tile-ul li {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding-left: 14px;
  position: relative;
  color: var(--ink-2);
}
.cap-tile-ul li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 2px;
  background: var(--forest);
}

.cap-controls {
  display: flex; align-items: center; gap: 16px;
  margin-top: 8px;
}
.cap-arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--bg);
  color: var(--bg);
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  transition: background .2s, color .2s;
}
.cap-arrow:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.cap-progress {
  flex: 1;
  height: 2px;
  background: rgba(241,236,224,0.18);
  position: relative;
}
.cap-progress i {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 12%;
  background: var(--lime);
  transition: left .4s var(--ease-out), width .4s var(--ease-out);
}

@media (max-width: 700px) {
  .cap-track { grid-auto-columns: 86vw; }
}

/* ======================================================================
   PROCESS — blueprint timeline
====================================================================== */
.block-process {
  background: var(--bg);
  border-top: 1px solid var(--ink);
}

.bp-list { display: flex; flex-direction: column; gap: 0; position: relative; }
.bp-list::before {
  content: "";
  position: absolute;
  left: 64px; top: 0; bottom: 0;
  width: 1px;
  background: var(--line-2);
}
.bp-step {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: stretch;
  position: relative;
  padding: 30px 0;
}
.bp-num {
  position: relative;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-top: 10px;
}
.bp-num::after {
  content: "";
  position: absolute;
  left: 60px;
  top: 24px;
  width: 14px; height: 14px;
  background: var(--lime);
  border: 1px solid var(--ink);
}
.bp-num span {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 800;
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.bp-num i {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

.bp-card {
  background: var(--bg-3);
  border: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
  position: relative;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.bp-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}
.bp-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ink);
  border-right: 1px solid var(--ink);
}
.bp-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.92);
  transition: transform 1.4s var(--ease-out);
}
.bp-card:hover .bp-card-img img { transform: scale(1.06); }

.bp-card-body { padding: 24px 28px; display: flex; flex-direction: column; gap: 12px; }
.bp-card-body h3 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 60, "wght" 760;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.1vw, 1.95rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.bp-card-body p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 46ch;
}
.bp-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.bp-tags span {
  padding: 4px 10px;
  border: 1px solid var(--ink);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--ink);
}

@media (max-width: 900px) {
  .bp-list::before { left: 28px; }
  .bp-step { grid-template-columns: 70px 1fr; }
  .bp-num::after { left: 24px; }
  .bp-card { grid-template-columns: 1fr; }
  .bp-card-img { aspect-ratio: 16/10; border-right: 0; border-bottom: 1px solid var(--ink); }
}

/* ======================================================================
   QUALITY — checkerboard
====================================================================== */
.block-quality { background: var(--bg-2); border-top: 1px solid var(--ink); }
.qc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 0;
  border: 1px solid var(--ink);
}
.qc-tile {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 28px;
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
}
.qc-tile:nth-child(3n) { border-right: 0; }
.qc-tile:nth-last-child(-n+3) { border-bottom: 0; }

.qc-img { padding: 0; overflow: hidden; background: var(--ink); }
.qc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
  transition: transform 1.4s var(--ease-out);
}
.qc-img:hover img { transform: scale(1.05); }
.qc-img-tall { grid-row: span 1; }
.qc-img-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--lime);
  color: var(--ink);
  padding: 4px 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.qc-stat { font-family: var(--f-display); }
.qc-dark { background: var(--ink); color: var(--bg); }
.qc-lime { background: var(--lime); color: var(--ink); }
.qc-stat-num {
  font-variation-settings: "opsz" 96, "wght" 800;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.qc-stat-num i {
  font-size: 0.45em;
  letter-spacing: 0;
}
.qc-dark .qc-stat-num i { color: var(--lime); }
.qc-lime .qc-stat-num i { color: var(--forest); }
.qc-stat-lbl {
  font-family: var(--f-mono);
  font-size: 11.5px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 28ch;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .qc-grid { grid-template-columns: 1fr 1fr; }
  .qc-tile { min-height: 220px; }
  .qc-tile:nth-child(3n) { border-right: 1px solid var(--ink); }
  .qc-tile:nth-child(2n) { border-right: 0; }
  .qc-tile:nth-last-child(-n+3) { border-bottom: 1px solid var(--ink); }
  .qc-tile:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 560px) {
  .qc-grid { grid-template-columns: 1fr; }
  .qc-tile { border-right: 0 !important; border-bottom: 1px solid var(--ink) !important; }
  .qc-tile:last-child { border-bottom: 0 !important; }
}

/* ======================================================================
   MATERIALS — stripe rows
====================================================================== */
.block-materials { background: var(--bg); border-top: 1px solid var(--ink); }

.rows {
  display: flex; flex-direction: column;
  border: 1px solid var(--ink);
}
.row {
  display: grid;
  grid-template-columns: 80px 220px 1fr 240px;
  align-items: center;
  gap: 28px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--ink);
  transition: background .25s;
  position: relative;
}
.row:last-child { border-bottom: 0; }
.row:hover { background: var(--bg-3); }
.row-flash { background: var(--ink); color: var(--bg); }
.row-flash:hover { background: var(--ink-2); }

.row-idx {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 800;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1;
}
.row-flash .row-idx { color: var(--lime); }

.row-media {
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--ink-2);
  border: 1px solid currentColor;
}
.row-flash .row-media { border-color: rgba(241,236,224,0.4); }
.row-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
  transition: transform 1.3s var(--ease-out);
}
.row:hover .row-media img { transform: scale(1.08); }

.row-text h3 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 60, "wght" 720;
  font-weight: 800;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.row-text p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
}
.row-flash .row-text p { color: rgba(241,236,224,0.78); }

.row-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  justify-content: flex-end;
}
.row-tags span {
  padding: 4px 9px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid currentColor;
}

@media (max-width: 1100px) {
  .row { grid-template-columns: 60px 200px 1fr; }
  .row-tags { grid-column: 2 / -1; justify-content: flex-start; padding-top: 10px; border-top: 1px solid var(--line); margin-top: 4px; }
  .row-flash .row-tags { border-top-color: rgba(241,236,224,0.2); }
}
@media (max-width: 700px) {
  .row { grid-template-columns: 1fr; gap: 14px; }
  .row-media { aspect-ratio: 16/10; width: 100%; }
  .row-tags { grid-column: 1 / -1; padding-top: 12px; }
}

/* ======================================================================
   PROJECTS — poster cards
====================================================================== */
.block-projects {
  background: var(--bg-2);
  border-top: 1px solid var(--ink);
}
.pj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pj-card {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--ink);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 18px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  min-height: 580px;
}
.pj-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--ink);
}
.pj-lime { background: var(--lime); }
.pj-dark { background: var(--ink); color: var(--bg); }
.pj-dark h3 { color: var(--bg); }
.pj-dark p { color: rgba(241,236,224,0.78); }
.pj-dark .pj-id { color: var(--lime); }
.pj-dark dl dt { color: var(--lime); }
.pj-dark dl > div { border-color: rgba(241,236,224,0.18); }

.pj-id {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime-deep);
  align-self: flex-start;
  padding: 4px 10px;
  border: 1px solid currentColor;
}
.pj-img {
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--ink);
  border: 1px solid var(--ink);
}
.pj-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
  transition: transform 1.4s var(--ease-out);
}
.pj-card:hover .pj-img img { transform: scale(1.06); }

.pj-body { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.pj-body h3 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 60, "wght" 760;
  font-weight: 800;
  font-size: clamp(1.3rem, 1.9vw, 1.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 22ch;
}
.pj-body p { font-size: 14.5px; line-height: 1.55; max-width: 56ch; }
.pj-body dl {
  display: grid;
  gap: 0;
  margin-top: auto;
  border-top: 1px solid var(--line);
}
.pj-body dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.pj-body dl > div:last-child { border-bottom: 0; }
.pj-body dt {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.pj-body dd { font-size: 13.5px; font-weight: 500; }

@media (max-width: 800px) {
  .pj-grid { grid-template-columns: 1fr; }
}

/* ======================================================================
   CONTACT
====================================================================== */
.block-contact { background: var(--ink); color: var(--bg); border-top: 1px solid var(--ink); }
.block-contact .bk-tag { color: rgba(241,236,224,0.7); border-color: rgba(241,236,224,0.4); }
.block-contact .bk-num { color: var(--lime); }
.block-contact .big { color: var(--bg); }
.block-contact .big .punch.lime { background: var(--lime); color: var(--ink); }
.block-contact .bk-lead { color: rgba(241,236,224,0.78); }

.ct-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.ct-card {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--bg);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 16px;
  position: relative;
}
.ct-phone {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background: var(--lime);
  border-color: var(--lime);
  justify-content: space-between;
}
.ct-addr   { grid-column: 2 / 3; grid-row: 1 / 2; }
.ct-img    { grid-column: 3 / 4; grid-row: 1 / 3; padding: 0; overflow: hidden; background: var(--ink); }
.ct-note   { grid-column: 2 / 3; grid-row: 2 / 3; background: var(--forest); color: var(--bg); border-color: var(--forest); }

.ct-lbl {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-2);
}
.ct-note .ct-lbl { color: var(--lime); }
.ct-phone .ct-lbl { color: var(--forest); }

.ct-phone-num {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 800;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: block;
}
.ct-phone-num i {
  color: var(--forest);
  font-size: 0.5em;
  vertical-align: middle;
  margin: 0 3px;
}
.ct-phone-num:hover { color: var(--forest); }
.ct-sub {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.ct-addr address {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 36, "wght" 600;
  font-weight: 600;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ct-coord {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.ct-coord span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.ct-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
  transition: transform 1.5s var(--ease-out);
}
.ct-img:hover img { transform: scale(1.06); }
.ct-img figcaption {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--lime); color: var(--ink);
  padding: 5px 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ct-img figcaption span {
  font-weight: 700; margin-right: 6px; padding-right: 6px;
  border-right: 1px solid rgba(20,20,15,0.4);
}

.ct-note p { font-size: 14.5px; line-height: 1.55; color: rgba(241,236,224,0.85); }
.ct-pp-link {
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 12px;
  border: 1px solid var(--lime);
  color: var(--lime);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.ct-pp-link:hover { background: var(--lime); color: var(--forest); }

@media (max-width: 1000px) {
  .ct-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
  .ct-phone { grid-column: 1 / -1; grid-row: auto; }
  .ct-addr  { grid-column: 1 / 2; grid-row: auto; }
  .ct-note  { grid-column: 2 / 3; grid-row: auto; }
  .ct-img   { grid-column: 1 / -1; grid-row: auto; min-height: 320px; }
}
@media (max-width: 640px) {
  .ct-grid { grid-template-columns: 1fr; }
  .ct-card { grid-column: auto !important; grid-row: auto !important; }
}

/* ======================================================================
   FOOTER
====================================================================== */
.ft { background: #07070A; color: var(--bg); border-top: 1px solid var(--ink); }

.ft-banner {
  background: var(--lime);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  padding: 14px 0;
}
.ft-banner-track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  font-family: var(--f-display);
  font-variation-settings: "opsz" 60, "wght" 800;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  animation: ftbn 50s linear infinite;
}
.ft-banner-track i { color: var(--forest); font-size: 0.55em; }
@keyframes ftbn { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.ft-shell { padding-top: 70px; padding-bottom: 26px; }
.ft-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(241,236,224,0.16);
}
.ft-brand .logo-mark { color: var(--lime); margin-bottom: 12px; }
.ft-brand h3 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 36, "wght" 800;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 12px;
}
.ft-brand p { font-size: 13.5px; color: rgba(241,236,224,0.7); line-height: 1.55; max-width: 38ch; }

.ft-col { display: flex; flex-direction: column; gap: 10px; }
.ft-lbl {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 10px;
}
.ft-col a {
  font-size: 13.5px;
  color: rgba(241,236,224,0.78);
  transition: color .2s, padding .2s;
  display: inline-flex; gap: 8px; align-items: baseline;
}
.ft-col a:hover { color: var(--lime); padding-left: 4px; }
.ft-pp {
  margin-top: 8px;
  padding: 6px 12px !important;
  border: 1px solid var(--lime);
  color: var(--lime) !important;
  text-transform: uppercase;
  font-family: var(--f-mono);
  font-size: 11px !important;
  letter-spacing: 0.12em;
  width: max-content;
}
.ft-pp:hover { background: var(--lime); color: var(--ink) !important; padding-left: 12px !important; }

.ft-reach address { color: rgba(241,236,224,0.78); font-size: 13.5px; line-height: 1.55; }
.ft-phone {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 48, "wght" 700;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--bg);
  margin-top: 6px;
  letter-spacing: -0.01em;
}
.ft-phone:hover { color: var(--lime); }

.ft-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11.5px;
  color: rgba(241,236,224,0.55);
  font-family: var(--f-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ft-bottom-pp {
  color: var(--lime);
  border-bottom: 1px solid var(--lime);
  padding-bottom: 2px;
}
.ft-bottom-pp:hover { color: var(--bg); border-color: var(--bg); }

@media (max-width: 900px) {
  .ft-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ft-grid { grid-template-columns: 1fr; }
}

/* ======================================================================
   Reveal animations
====================================================================== */
.reveal, .reveal-up, .reveal-r {
  opacity: 0;
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
.reveal { transform: translateY(14px); }
.reveal-up { transform: translateY(40px); }
.reveal-r { transform: translateX(40px); }
.reveal.is-in, .reveal-up.is-in, .reveal-r.is-in { opacity: 1; transform: translate(0,0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-up, .reveal-r,
  .hero-h1 .line > span { opacity: 1; transform: none !important; }
}

/* ======================================================================
   PRIVACY POLICY page
====================================================================== */
.pp-hero {
  padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 5vw, 60px);
  background: var(--bg);
  border-bottom: 1px solid var(--ink);
}
.pp-hero .bk-num { color: var(--lime-deep); }
.pp-hero h1 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96, "wght" 800;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 24px 0;
}
.pp-hero h1 .punch { background: var(--lime); padding: 0 0.12em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.pp-hero p { color: var(--ink-2); font-size: clamp(1rem, 1.18vw, 1.18rem); max-width: 60ch; line-height: 1.55; }
.pp-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-top: 28px;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pp-meta strong { color: var(--lime); font-weight: 600; margin-right: 4px; }

.pp-body {
  padding: clamp(50px, 7vw, 90px) 0 clamp(60px, 8vw, 110px);
  background: var(--bg);
}
.pp-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(30px, 4vw, 70px);
  align-items: start;
}
.pp-nav {
  position: sticky;
  top: 110px;
  display: flex; flex-direction: column; gap: 2px;
  background: var(--bg-3);
  border: 1px solid var(--ink);
  padding: 18px;
}
.pp-nav span {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.pp-nav a {
  padding: 7px 8px;
  font-size: 12.5px;
  color: var(--ink-2);
  font-family: var(--f-mono);
  transition: background .2s, color .2s;
}
.pp-nav a:hover { background: var(--lime); color: var(--ink); }

.pp-content {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 72ch;
}
.pp-content section { margin-bottom: 48px; scroll-margin-top: 110px; }
.pp-content h2 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 60, "wght" 760;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}
.pp-content h2 .pn {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--bg);
  background: var(--ink);
  letter-spacing: 0.1em;
  padding: 3px 8px;
}
.pp-content h3 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin: 22px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pp-content p { margin-bottom: 14px; }
.pp-content ul, .pp-content ol { padding-left: 22px; margin: 8px 0 16px; list-style: square; }
.pp-content li { margin-bottom: 6px; }
.pp-content a {
  color: var(--lime-deep);
  border-bottom: 1px solid var(--lime-deep);
  font-weight: 500;
}
.pp-content a:hover { color: var(--forest); border-color: var(--forest); }

.pp-callout {
  margin: 18px 0;
  padding: 22px 24px;
  background: var(--ink);
  color: var(--bg);
  border-left: 6px solid var(--lime);
  font-size: 14.5px;
  line-height: 1.6;
}
.pp-callout strong { color: var(--lime); }
.pp-callout a { color: var(--lime); border-color: var(--lime); }

@media (max-width: 900px) {
  .pp-layout { grid-template-columns: 1fr; }
  .pp-nav { position: static; }
}
