/* ==========================================================================
   Harlem Paper LLC - Design System
   Monochrome editorial / industrial "spec-sheet" language.
   Palette: white + #0b0e1d only, warm paper neutrals. No accent color.
   ========================================================================== */

:root {
  --ink: #0b0e1d;
  --ink-soft: #14182a;
  --paper: #ffffff;
  --bone: #f3f1ec;        /* warm paper off-white */
  --bone-2: #e9e5dd;
  --line: #d8d3c8;        /* warm hairline */
  --line-soft: #e7e3da;
  --text: #1c1f2a;
  --muted: #63656f;
  --muted-2: #9a9ba3;

  --radius: 2px;
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 56px);

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head: "Archivo", var(--font-body);
  --font-mono: "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

/* Reset ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.02; font-weight: 800; letter-spacing: -.02em; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* Layout helpers ---------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 120px); }
.bleed { width: 100vw; margin-left: calc(50% - 50vw); }
.center { text-align: center; }

.kicker {
  font-family: var(--font-mono); font-size: .74rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.kicker--ink { color: var(--ink); }
.rule { height: 1px; background: var(--line); border: 0; }

.section__head { display: grid; gap: 18px; max-width: 760px; margin-bottom: clamp(34px, 5vw, 60px); }
.section__head.center { margin-inline: auto; justify-items: center; }
.section__title { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.section__intro { color: var(--muted); font-size: 1.06rem; max-width: 60ch; }

/* index label like "01 / 07" */
.meta { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 16px 26px; border-radius: var(--radius); border: 1px solid var(--ink);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.btn svg { width: 16px; height: 16px; transition: transform .18s ease; }
.btn:hover svg { transform: translateX(4px); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #05070f; }
.btn--outline { background: transparent; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--onink { border-color: #fff; background: #fff; color: var(--ink); }
.btn--onink:hover { background: transparent; color: #fff; }
.btn--onink-outline { border-color: rgba(255,255,255,.4); background: transparent; color: #fff; }
.btn--onink-outline:hover { border-color: #fff; }
.btn--lg { padding: 19px 32px; font-size: .84rem; }

.textlink {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
  padding-bottom: 4px; border-bottom: 2px solid var(--ink);
}
.textlink svg { width: 15px; height: 15px; transition: transform .18s ease; }
.textlink:hover svg { transform: translateX(5px); }

/* Header ------------------------------------------------------------------ */
.site-head { position: sticky; top: 0; z-index: 70; background: var(--paper); border-bottom: 1px solid var(--ink); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 78px; }
.nav__logo img { height: 42px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-family: var(--font-head); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 0; position: relative;
}
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--ink); transition: width .2s ease; }
.nav__link:hover::after { width: 100%; }
.nav__link svg { width: 13px; height: 13px; }
.nav__right { display: flex; align-items: center; gap: 22px; }
.nav__mail { font-family: var(--font-mono); font-size: .76rem; color: var(--muted); letter-spacing: .04em; }
.nav__mail:hover { color: var(--ink); }

/* Products dropdown */
.nav__item { position: relative; }
.nav__panel {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 520px; background: var(--paper); border: 1px solid var(--ink); padding: 8px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px; opacity: 0; visibility: hidden; transition: opacity .16s ease, transform .16s ease; z-index: 80;
}
.nav__item:hover .nav__panel, .nav__item:focus-within .nav__panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__panel a { display: flex; align-items: baseline; gap: 10px; padding: 13px 14px; transition: background .14s ease; }
.nav__panel a:hover { background: var(--bone); }
.nav__panel .pn { font-family: var(--font-mono); font-size: .7rem; color: var(--muted-2); }
.nav__panel .pt { font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--ink); }

.nav__toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--ink); align-items: center; justify-content: center; }
.nav__toggle svg { width: 22px; height: 22px; }
.nav__toggle .x { display: none; }
body.nav-open .nav__toggle .m { display: none; }
body.nav-open .nav__toggle .x { display: block; }

/* Hero -------------------------------------------------------------------- */
.hero { padding-top: clamp(32px, 5vw, 64px); }
.hero__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 22px; }
.hero__title { font-size: clamp(2.6rem, 8.4vw, 6.6rem); line-height: .96; letter-spacing: -.035em; max-width: 16ch; }
.hero__title .thin { -webkit-text-stroke: 1.4px var(--ink); color: transparent; }
.hero__lower { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; margin-top: clamp(24px, 4vw, 44px); }
.hero__sub { font-size: 1.14rem; color: var(--muted); max-width: 46ch; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__figure { position: relative; margin-top: clamp(28px, 4vw, 48px); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); overflow: hidden; }
.hero__figure img { width: 100%; height: clamp(300px, 52vh, 600px); object-fit: cover; }
.hero__caption { position: absolute; inset: auto 0 0 0; display: flex; justify-content: space-between; gap: 16px; padding: 12px var(--gutter); background: linear-gradient(0deg, rgba(11,14,29,.72), transparent); color: #fff; }
.hero__caption span { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }

/* Marquee ----------------------------------------------------------------- */
.marquee { background: var(--ink); color: #fff; overflow: hidden; border-block: 1px solid var(--ink); }
.marquee__track { display: inline-flex; align-items: center; white-space: nowrap; animation: marquee 34s linear infinite; }
.marquee__track > span { font-family: var(--font-mono); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; padding: 15px 0; }
.marquee__track .sep { padding-inline: 26px; opacity: .4; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* Catalog index ----------------------------------------------------------- */
.catalog__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.catalog__preview { position: sticky; top: 108px; border: 1px solid var(--ink); aspect-ratio: 4 / 5; overflow: hidden; background: var(--bone); }
.catalog__preview img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s ease, transform 6s ease; }
.catalog__preview img.is-active { opacity: 1; transform: scale(1.06); }
.catalog__tag { position: absolute; left: 14px; top: 14px; z-index: 2; background: var(--paper); border: 1px solid var(--ink); padding: 7px 12px; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }

.cat-row { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; padding: clamp(20px, 2.4vw, 30px) 6px; border-top: 1px solid var(--line); cursor: pointer; transition: padding .2s ease, background .2s ease; }
.cat-row:last-child { border-bottom: 1px solid var(--line); }
.cat-row:hover, .cat-row.is-active { padding-left: 18px; }
.cat-row__n { font-family: var(--font-mono); font-size: .8rem; color: var(--muted-2); align-self: start; padding-top: 6px; }
.cat-row.is-active .cat-row__n { color: var(--ink); }
.cat-row__title { font-size: clamp(1.4rem, 2.6vw, 2.15rem); transition: transform .2s ease; }
.cat-row__spec { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.cat-row__thumb { display: none; }
.cat-row__arrow { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: background .2s ease, border-color .2s ease; }
.cat-row__arrow svg { width: 18px; height: 18px; transition: transform .2s ease; }
.cat-row:hover .cat-row__arrow, .cat-row.is-active .cat-row__arrow { background: var(--ink); border-color: var(--ink); color: #fff; }
.cat-row:hover .cat-row__arrow svg { transform: translateX(3px); }

/* Statement + pillars ----------------------------------------------------- */
.statement { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -.02em; color: var(--ink); max-width: 20ch; }
.statement em { font-style: normal; color: var(--muted-2); }
.split2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); margin-top: clamp(30px, 4vw, 50px); }
.pillar { padding: 30px 26px 8px 0; }
.pillar__n { font-family: var(--font-mono); font-size: .74rem; color: var(--muted-2); }
.pillar h3 { font-size: 1.16rem; margin-top: 12px; }
.pillar p { color: var(--muted); font-size: .93rem; margin-top: 10px; }
.figure-img { border: 1px solid var(--ink); overflow: hidden; }
.figure-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.04); transition: filter .5s ease; }
.figure-img:hover img { filter: grayscale(0); }

/* Figures band ------------------------------------------------------------ */
.figures { background: var(--ink); color: #fff; }
.figures__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fig { padding: clamp(34px, 5vw, 70px) clamp(20px, 3vw, 40px); border-left: 1px solid rgba(255,255,255,.14); }
.fig:first-child { border-left: 0; }
.fig b { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.8rem); display: block; letter-spacing: -.03em; color: #fff; }
.fig span { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 8px; display: block; }

/* Industries -------------------------------------------------------------- */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); }
.ind { border-left: 1px solid var(--line); }
.ind:first-child { border-left: 0; }
.ind__img { aspect-ratio: 3 / 4; overflow: hidden; }
.ind__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: filter .5s ease, transform .6s ease; }
.ind:hover .ind__img img { filter: grayscale(0); transform: scale(1.05); }
.ind__cap { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; padding: 16px 18px; border-top: 1px solid var(--line); }
.ind__cap b { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--ink); }
.ind__cap span { font-family: var(--font-mono); font-size: .68rem; color: var(--muted-2); }

/* Steps ------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); }
.stp { padding: 30px 24px 30px 0; border-top: 2px solid var(--ink); }
.stp__n { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--ink); letter-spacing: -.03em; }
.stp h3 { font-size: 1.14rem; margin-top: 14px; }
.stp p { color: var(--muted); font-size: .92rem; margin-top: 8px; padding-right: 10px; }

/* CTA --------------------------------------------------------------------- */
.cta { background: var(--ink); color: #fff; }
.cta__inner { display: grid; gap: 26px; justify-items: start; }
.cta h2 { color: #fff; font-size: clamp(2rem, 5.2vw, 4rem); letter-spacing: -.03em; max-width: 16ch; }
.cta p { color: rgba(255,255,255,.72); font-size: 1.08rem; max-width: 54ch; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Footer ------------------------------------------------------------------ */
.footer { background: var(--paper); border-top: 1px solid var(--ink); }
.footer__word { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 9vw, 7rem); letter-spacing: -.04em; color: var(--ink); line-height: .9; padding-block: clamp(30px, 4vw, 54px); border-bottom: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-block: clamp(38px, 5vw, 60px); }
.footer__about { color: var(--muted); font-size: .93rem; max-width: 34ch; margin-top: 16px; }
.footer__logo img { height: 38px; width: auto; }
.footer__col h4 { font-family: var(--font-mono); font-weight: 400; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }
.footer__col ul { margin-top: 18px; display: grid; gap: 12px; }
.footer__col a { font-size: .94rem; color: var(--text); }
.footer__col a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.footer__contact { font-style: normal; display: grid; gap: 14px; margin-top: 18px; font-size: .94rem; color: var(--text); }
.footer__contact .lbl { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); display: block; margin-bottom: 4px; }
.footer__bottom { border-top: 1px solid var(--line); padding-block: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__bottom, .footer__legal a { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal a:hover { color: var(--ink); }

/* Reveal ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 1024px) {
  .figures__grid { grid-template-columns: repeat(2, 1fr); }
  .fig:nth-child(3) { border-left: 0; }
  .fig:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.14); }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .ind:nth-child(3) { border-left: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__menu, .nav__mail { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__right .btn { display: none; }
  .catalog__grid { grid-template-columns: 1fr; }
  .catalog__preview { display: none; }
  .cat-row { grid-template-columns: auto 1fr auto; }
  .cat-row__thumb { display: block; width: 66px; height: 52px; object-fit: cover; border: 1px solid var(--line); filter: grayscale(1); }
  .split2 { grid-template-columns: 1fr; }
  .split2--flip .figure-img { order: -1; }
  .hero__lower { grid-template-columns: 1fr; gap: 22px; }

  .nav__menu.is-open {
    display: flex; position: fixed; inset: 79px 0 0 0; flex-direction: column; align-items: stretch;
    background: var(--paper); padding: 16px var(--gutter); gap: 2px; overflow-y: auto; z-index: 60;
  }
  .nav__menu.is-open .nav__link { padding: 16px 4px; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav__menu.is-open .nav__link::after { display: none; }
  .nav__menu.is-open .nav__item { position: static; }
  .nav__menu.is-open .nav__panel { position: static; transform: none; opacity: 1; visibility: visible; width: 100%; border: 0; padding: 6px 0 12px 14px; grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .figures__grid { grid-template-columns: 1fr; }
  .fig { border-left: 0 !important; border-top: 1px solid rgba(255,255,255,.14); }
  .fig:first-child { border-top: 0; }
  .ind-grid { grid-template-columns: 1fr; }
  .ind { border-left: 0; border-top: 1px solid var(--line); }
  .ind:first-child { border-top: 0; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__caption { flex-direction: column; gap: 4px; }
}

/* ==========================================================================
   Interior pages
   ========================================================================== */

/* Page hero */
.pagehero { background: var(--bone); border-bottom: 1px solid var(--ink); }
.pagehero__inner { padding-block: clamp(40px, 6vw, 88px); display: grid; gap: 18px; }
.breadcrumb { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--muted-2); }
.pagehero h1 { font-size: clamp(2.2rem, 5.6vw, 4.2rem); letter-spacing: -.03em; max-width: 20ch; }
.pagehero p { color: var(--muted); font-size: 1.08rem; max-width: 64ch; }

/* Prose */
.prose { max-width: 74ch; }
.prose > * + * { margin-top: 18px; }
.prose h2 { font-size: 1.5rem; margin-top: 44px; }
.prose h3 { font-size: 1.15rem; margin-top: 28px; }
.prose p, .prose li { color: var(--text); }
.prose ul, .prose ol { display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 24px; }
.prose ul li::before { content: ""; position: absolute; left: 2px; top: 11px; width: 8px; height: 8px; background: var(--ink); }
.prose ol { counter-reset: li; }
.prose ol li { position: relative; padding-left: 34px; counter-increment: li; }
.prose ol li::before { content: counter(li, decimal-leading-zero); position: absolute; left: 0; top: 0; font-family: var(--font-mono); font-size: .8rem; color: var(--muted); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose .lede { font-size: 1.14rem; color: var(--ink); }

/* Generic grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: start; }
.grid-sidebar { display: grid; grid-template-columns: 240px 1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
@media (max-width: 860px) { .grid-2, .grid-sidebar { grid-template-columns: 1fr; } }

/* Sticky side nav (legal / products) */
.sidenav { position: sticky; top: 108px; display: grid; gap: 2px; }
.sidenav a { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .04em; color: var(--muted); padding: 10px 12px; border-left: 2px solid var(--line); }
.sidenav a:hover, .sidenav a.is-active { color: var(--ink); border-color: var(--ink); background: var(--bone); }
@media (max-width: 860px) { .sidenav { position: static; grid-auto-flow: column; overflow-x: auto; } }

/* Spec table */
.spec { width: 100%; border-collapse: collapse; border-top: 1px solid var(--ink); }
.spec th, .spec td { text-align: left; padding: 15px 14px; border-bottom: 1px solid var(--line); font-size: .94rem; vertical-align: top; }
.spec th { font-family: var(--font-mono); font-weight: 400; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); width: 36%; }
.spec td { color: var(--ink); }

/* Chips + use list */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; border: 1px solid var(--line); padding: 8px 12px; color: var(--ink); }
.uses { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 34px; }
.uses li { padding: 13px 0; border-bottom: 1px solid var(--line); display: flex; gap: 12px; align-items: baseline; color: var(--text); }
.uses li::before { content: "—"; color: var(--muted-2); }
@media (max-width: 600px) { .uses { grid-template-columns: 1fr; } }

/* Product media */
.prod-media { border: 1px solid var(--ink); overflow: hidden; aspect-ratio: 4 / 3; position: relative; }
.prod-media img { width: 100%; height: 100%; object-fit: cover; }
.prod-media__tag { position: absolute; left: 14px; top: 14px; background: var(--paper); border: 1px solid var(--ink); padding: 7px 12px; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }

/* Products overview grid */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pitem { display: flex; flex-direction: column; border: 1px solid var(--line); transition: border-color .2s ease, transform .2s ease; }
.pitem:hover { border-color: var(--ink); transform: translateY(-3px); }
.pitem__img { aspect-ratio: 16 / 11; overflow: hidden; border-bottom: 1px solid var(--line); }
.pitem__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.04); transition: filter .4s ease, transform .5s ease; }
.pitem:hover .pitem__img img { filter: grayscale(0); transform: scale(1.05); }
.pitem__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pitem__n { font-family: var(--font-mono); font-size: .7rem; color: var(--muted-2); }
.pitem__body h3 { font-size: 1.24rem; }
.pitem__spec { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.pitem__body p { color: var(--muted); font-size: .9rem; flex: 1; }
.pitem__foot { margin-top: 4px; }
@media (max-width: 1024px) { .pgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pgrid { grid-template-columns: 1fr; } }

/* Forms */
.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea { font: inherit; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 15px; width: 100%; transition: border-color .15s ease, box-shadow .15s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.consent a { text-decoration: underline; text-underline-offset: 3px; color: var(--ink); }
.form__note { font-family: var(--font-mono); font-size: .72rem; color: var(--muted-2); }
.alert { border: 1px solid var(--ink); background: var(--bone); padding: 14px 16px; font-size: .92rem; }

/* Contact aside */
.contact-aside { border: 1px solid var(--line); padding: 28px; display: grid; gap: 22px; align-content: start; }
.contact-aside .lbl { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); display: block; margin-bottom: 6px; }
.contact-aside a { text-decoration: underline; text-underline-offset: 3px; }
.contact-aside address { font-style: normal; line-height: 1.7; }

/* FAQ accordion */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 22px 4px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.faq__q .ic { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq__q .ic::before, .faq__q .ic::after { content: ""; position: absolute; background: var(--ink); }
.faq__q .ic::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__q .ic::after { left: 7px; top: 0; width: 2px; height: 16px; transition: transform .2s ease; }
.faq__item.is-open .ic::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 4px 24px; color: var(--muted); max-width: 72ch; }

/* Strip CTA */
.stripcta { border: 1px solid var(--ink); padding: clamp(28px, 4vw, 52px); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.stripcta h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); max-width: 22ch; }

/* Value/feature cards */
.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.vitem { padding: 30px 26px 30px 0; border-top: 0; }
.vitem__n { font-family: var(--font-mono); font-size: .74rem; color: var(--muted-2); }
.vitem h3 { font-size: 1.16rem; margin-top: 12px; }
.vitem p { color: var(--muted); font-size: .93rem; margin-top: 10px; }
@media (max-width: 860px) { .vgrid { grid-template-columns: 1fr; } .vitem { border-top: 1px solid var(--line); } }

/* Timeline (about) */
.tl { display: grid; gap: 0; }
.tl__row { display: grid; grid-template-columns: 130px 1fr; gap: 24px; padding: 26px 0; border-top: 1px solid var(--line); }
.tl__row:last-child { border-bottom: 1px solid var(--line); }
.tl__yr { font-family: var(--font-mono); font-size: .8rem; color: var(--ink); letter-spacing: .06em; }
.tl__row h3 { font-size: 1.2rem; }
.tl__row p { color: var(--muted); margin-top: 8px; }
@media (max-width: 600px) { .tl__row { grid-template-columns: 1fr; gap: 8px; } }
