/* ProCollecta — site styles. Palette taken from the ProCollecta wordmark (navy + red). */

:root {
  --ground: #f6f5f1;
  --surface: #ffffff;
  --surface-2: #ecebe6;
  --ink: #1e2130;
  --muted: #5a5e72;
  --faint: #8b8fa3;
  --line: #d9d8df;
  --navy: #2b2a7a;
  --navy-deep: #1f1e5c;
  --red: #d8151c;
  --red-soft: #fbe9ea;
  --navy-soft: #e8e8f4;

  --sans: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ground: #15161c;
    --surface: #1d1f28;
    --surface-2: #262833;
    --ink: #e9e8e2;
    --muted: #a9acba;
    --faint: #7c8094;
    --line: #30323e;
    --navy: #9c9be0;
    --navy-deep: #b9b8ef;
    --red: #f0555b;
    --red-soft: #3a2224;
    --navy-soft: #262744;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--sans);
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 700; letter-spacing: -0.015em; }
h2 { font-size: 1.6rem; font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 600; }
p { margin: 0.8rem 0; max-width: 66ch; }
ul, ol { padding-left: 1.3rem; max-width: 66ch; }
li { margin: 0.3rem 0; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section { padding: 3.5rem 0; }
.section + .section { border-top: 1px solid var(--line); }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.lede { font-size: 1.2rem; color: var(--muted); max-width: 58ch; }
.mono { font-family: var(--mono); font-size: 0.82em; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: #fff; padding: 0.5rem 1rem; z-index: 100;
}
.skip:focus { left: 8px; top: 8px; }

/* Header ---------------------------------------------------------------- */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  border-top: 4px solid var(--navy);
}
.header-row {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding-top: 0.9rem; padding-bottom: 0.9rem;
}
.brand img { width: 150px; height: auto; }
.main-nav { display: flex; gap: 0.2rem; flex-wrap: wrap; margin-left: auto; }
.main-nav a {
  font-family: var(--sans);
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none; color: var(--ink);
  padding: 0.45rem 0.7rem;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--navy); }
.main-nav a[aria-current="page"] { border-bottom-color: var(--red); color: var(--navy); }
.lang-nav { display: flex; gap: 0.15rem; }
.lang-nav a {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em;
  text-decoration: none; color: var(--muted);
  padding: 0.3rem 0.45rem; border: 1px solid transparent; border-radius: 2px;
}
.lang-nav a:hover { color: var(--navy); }
.lang-nav a[aria-current="true"] { color: var(--navy); border-color: var(--line); background: var(--navy-soft); }

/* Buttons --------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  padding: 0.7rem 1.2rem; border-radius: 3px; text-decoration: none;
  border: 1px solid var(--navy); color: var(--navy); background: transparent;
  cursor: pointer;
}
.btn:hover { background: var(--navy-soft); }
.btn.primary { background: var(--navy); color: #fff; }
.btn.primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.4rem; }

/* Hero ------------------------------------------------------------------ */
.hero { padding: 3.5rem 0 3rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: center;
}
.hero-figure { margin: 0; position: relative; }
.hero-figure img {
  width: 100%; max-height: 540px; object-fit: cover; object-position: top;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -24px rgba(30, 33, 48, 0.45);
  background: var(--surface);
}
.hero-figure figcaption {
  font-family: var(--sans); font-size: 0.78rem; color: var(--faint); margin-top: 0.6rem;
}
.hero-facts {
  display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 1.8rem;
  padding-top: 1.2rem; border-top: 1px solid var(--line);
}
.hero-facts div { font-family: var(--sans); font-size: 0.85rem; color: var(--muted); }
.hero-facts strong { display: block; font-size: 1.05rem; color: var(--ink); font-weight: 700; }

/* Pillars --------------------------------------------------------------- */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); margin-top: 1.6rem;
}
.pillar { background: var(--surface); padding: 1.4rem 1.4rem 1.5rem; }
.pillar h3 { color: var(--navy); margin-bottom: 0.5rem; }
.pillar p { font-size: 0.96rem; color: var(--muted); margin: 0; }

/* Wanted teaser / groups ------------------------------------------------ */
.groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 1.6rem; }
.group {
  background: var(--surface); border: 1px solid var(--line);
  padding: 1.2rem 1.4rem 1.3rem;
  border-left: 3px solid var(--navy);
}
.group h3 { margin-bottom: 0.5rem; }
.group ul { margin: 0; padding-left: 1.1rem; font-size: 0.97rem; }
.group li { margin: 0.25rem 0; }
.group .note { font-size: 0.9rem; color: var(--muted); margin: 0.7rem 0 0; font-style: italic; }
.teaser-list { columns: 2; column-gap: 2rem; list-style: none; padding: 0; margin: 1.2rem 0 0; max-width: none; }
.teaser-list li {
  break-inside: avoid; font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 0.55rem 0; border-bottom: 1px solid var(--line);
}
.teaser-list li span { display: block; font-family: var(--serif); font-weight: 400; font-size: 0.92rem; color: var(--muted); }

.updated {
  font-family: var(--sans); font-size: 0.8rem; color: var(--muted);
  display: inline-block; padding: 0.25rem 0.6rem; border: 1px solid var(--line); border-radius: 2px;
  background: var(--surface);
}
.callout {
  border-left: 3px solid var(--red); background: var(--surface);
  padding: 1rem 1.3rem; margin: 2rem 0 0; max-width: 72ch;
}
.callout p { margin: 0.4rem 0; }
.grading { display: grid; grid-template-columns: max-content 1fr; gap: 0.3rem 1.2rem; margin: 0.6rem 0 0; font-size: 0.95rem; }
.grading dt { font-family: var(--sans); font-weight: 600; }
.grading dd { margin: 0; color: var(--muted); }

/* Steps ----------------------------------------------------------------- */
.steps { list-style: none; padding: 0; margin: 1.6rem 0 0; max-width: 72ch; counter-reset: step; }
.steps li {
  counter-increment: step; position: relative; padding: 0 0 1.4rem 3.4rem; margin: 0;
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0.1rem;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-family: var(--sans); font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
}
.steps li + li::after {
  content: ""; position: absolute; left: 1.05rem; top: -1.2rem; height: 1.2rem; width: 2px; background: var(--line);
}
.steps h3 { margin-bottom: 0.3rem; }
.steps p { margin: 0; color: var(--muted); }
.terms { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 2rem; margin-top: 1.2rem; }
.terms div { background: var(--surface); border: 1px solid var(--line); padding: 1rem 1.2rem; }
.terms h3 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.terms p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* Timeline -------------------------------------------------------------- */
.timeline { list-style: none; padding: 0; margin: 1.8rem 0 0; max-width: 78ch; }
.timeline li {
  display: grid; grid-template-columns: 7.5rem 1fr; gap: 1.5rem;
  padding: 1rem 0; border-top: 1px solid var(--line);
}
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline .year { font-family: var(--sans); font-weight: 700; color: var(--navy); font-variant-numeric: tabular-nums; }
.timeline h3 { margin-bottom: 0.25rem; }
.timeline p { margin: 0; color: var(--muted); font-size: 0.97rem; }

/* Lot cards ------------------------------------------------------------- */
.lots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1.8rem; }
.lot { background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; }
.lot figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-2); }
.lot figure img { width: 100%; height: 100%; object-fit: cover; }
.lot .lot-body { padding: 0.9rem 1rem 1rem; display: flex; flex-direction: column; gap: 0.3rem; flex: 1; }
.lot .lot-ref {
  font-family: var(--mono); font-size: 0.72rem; color: var(--faint); letter-spacing: 0.04em;
  display: flex; justify-content: space-between; gap: 0.5rem;
}
.lot h3 { font-size: 1rem; }
.lot p { margin: 0; font-size: 0.92rem; color: var(--muted); }
.lot .lot-source {
  margin-top: auto; padding-top: 0.6rem;
  font-family: var(--sans); font-size: 0.74rem; color: var(--navy); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}

/* Contact --------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; margin-top: 1.4rem; }
.contact-side p { font-size: 1rem; }
.contact-side .big { font-family: var(--sans); font-size: 1.25rem; font-weight: 700; }
form.contact { display: grid; gap: 1rem; background: var(--surface); border: 1px solid var(--line); padding: 1.5rem; }
form.contact label { font-family: var(--sans); font-size: 0.85rem; font-weight: 600; display: grid; gap: 0.35rem; }
form.contact input, form.contact textarea {
  font: inherit; font-size: 1rem; padding: 0.6rem 0.7rem;
  border: 1px solid var(--line); border-radius: 3px; background: var(--ground); color: var(--ink);
}
form.contact textarea { min-height: 9rem; resize: vertical; }
form.contact .hp { position: absolute; left: -9999px; }
.notice { padding: 0.9rem 1.1rem; border-radius: 3px; font-family: var(--sans); font-size: 0.95rem; }
.notice.ok { background: var(--navy-soft); color: var(--navy); border: 1px solid var(--navy); }
.notice.err { background: var(--red-soft); color: var(--red); border: 1px solid var(--red); }

/* CTA band -------------------------------------------------------------- */
.cta-band { background: var(--navy); color: #fff; padding: 2.8rem 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.82); }
.cta-band .btn { border-color: #fff; color: #fff; }
.cta-band .btn:hover { background: rgba(255, 255, 255, 0.12); }
.cta-band .btn.primary { background: #fff; color: var(--navy-deep); }
.cta-band .btn.primary:hover { background: #ecebe6; }
@media (prefers-color-scheme: dark) {
  .cta-band { background: #23225e; }
}

/* Footer ---------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); margin-top: 2rem; }
.footer-row {
  display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  padding-top: 1.8rem; padding-bottom: 1.8rem;
  font-family: var(--sans); font-size: 0.86rem; color: var(--muted);
}
.footer-langs { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-langs a { color: var(--muted); text-decoration: none; }
.footer-langs a:hover { color: var(--navy); }
.footer-note { flex-basis: 100%; font-size: 0.78rem; color: var(--faint); }

/* Responsive ------------------------------------------------------------ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pillars { grid-template-columns: 1fr; }
  .lots { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .main-nav { margin-left: 0; flex-basis: 100%; order: 3; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .groups, .lots, .terms { grid-template-columns: 1fr; }
  .teaser-list { columns: 1; }
  .timeline li { grid-template-columns: 1fr; gap: 0.2rem; }
  .grading { grid-template-columns: 1fr; gap: 0.1rem 0; }
  .grading dd { margin-bottom: 0.5rem; }
  .section { padding: 2.5rem 0; }
}

/* ===== v2: operator positioning ======================================= */

.hero-plain { padding: 4rem 0 2.5rem; }
.hero-plain .display { max-width: 18ch; }
.hero-plain .lede { max-width: 62ch; }

/* Proof strip */
.proof-band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
}
.proof-grid.inline { border: 1px solid var(--line); margin: 1.6rem 0 0; }
.proof { background: var(--surface); padding: 1.2rem 1.4rem; }
.proof strong {
  display: block; font-family: var(--sans); font-size: 1.7rem; font-weight: 700;
  color: var(--navy); letter-spacing: -0.01em; font-variant-numeric: tabular-nums; line-height: 1.1;
}
.proof span { font-family: var(--sans); font-size: 0.82rem; color: var(--muted); display: block; margin-top: 0.3rem; }

/* Areas (What I run) */
.areas { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 2.2rem; border-top: 1px solid var(--line); }
.area { padding: 1.8rem 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 16rem 1fr; gap: 2rem; }
.area h2 { font-size: 1.15rem; color: var(--navy); }
.area p { margin: 0 0 0.6rem; }
.facts { margin: 0.4rem 0 0; padding-left: 1.1rem; font-size: 0.95rem; color: var(--muted); columns: 2; column-gap: 2rem; max-width: none; }
.facts li { break-inside: avoid; margin: 0.25rem 0; }

/* Promises */
.promise-list { list-style: none; padding: 0; margin: 1.4rem 0 0; max-width: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.promise-list li { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--navy); padding: 1rem 1.1rem; margin: 0; }
.promise-list strong { display: block; font-family: var(--sans); font-size: 1rem; margin-bottom: 0.3rem; }
.promise-list span { font-size: 0.93rem; color: var(--muted); }
.promises { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin: 1.8rem 0 0; }
.promise { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--navy); padding: 1.3rem 1.4rem; }
.promise h2 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.promise p { margin: 0; font-size: 0.97rem; color: var(--muted); }
.section-title { margin-top: 3rem; }

/* Case studies */
.cases { display: grid; gap: 2rem; margin-top: 2rem; }
.case { background: var(--surface); border: 1px solid var(--line); padding: 1.6rem 1.8rem 1.8rem; }
.case-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.6rem; }
.tag {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--navy); background: var(--navy-soft); padding: 0.2em 0.55em; border-radius: 2px;
}
.case h2 { font-size: 1.35rem; }
.case-context { color: var(--muted); font-style: italic; margin: 0.4rem 0 0; }
.case-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 1.6rem; margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.case-grid h3 { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.case-grid p, .case-grid ul { margin: 0; font-size: 0.95rem; }
.case-grid ul { padding-left: 1.1rem; }
.case-grid li { margin: 0.3rem 0; }
.results li { color: var(--ink); font-weight: 600; font-family: var(--sans); font-size: 0.92rem; }
.footnote { font-size: 0.88rem; color: var(--muted); margin: 1.4rem 0 0; }

/* About */
.about-grid { display: grid; grid-template-columns: 16rem 1fr; gap: 3rem; align-items: start; }
.about-side { position: sticky; top: 1.5rem; }
.portrait { width: 100%; max-width: 16rem; aspect-ratio: 1; object-fit: cover; border: 1px solid var(--line); background: var(--surface-2); }
.portrait.placeholder {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 5rem; font-weight: 700; color: var(--navy); background: var(--navy-soft);
}
.about-name { font-family: var(--sans); font-size: 1.15rem; font-weight: 700; margin: 0.9rem 0 0.1rem; }
.about-role { font-family: var(--sans); font-size: 0.85rem; color: var(--muted); margin: 0 0 0.6rem; line-height: 1.4; }
.about-teaser { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: center; }
.about-figure { margin: 0; }
.about-figure img { width: 100%; max-height: 380px; object-fit: cover; object-position: top; border: 1px solid var(--line); }
.about-figure figcaption { font-family: var(--sans); font-size: 0.78rem; color: var(--faint); margin-top: 0.5rem; }
.collect-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: start; margin-top: 1rem; }
.collect-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.collect-strip img { aspect-ratio: 3 / 4; object-fit: cover; border: 1px solid var(--line); width: 100%; }

@media (max-width: 900px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .area { grid-template-columns: 1fr; gap: 0.6rem; }
  .promise-list { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .about-grid, .about-teaser, .collect-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .about-side { position: static; }
}
@media (max-width: 600px) {
  .proof-grid { grid-template-columns: 1fr; }
  .promises { grid-template-columns: 1fr; }
  .facts { columns: 1; }
  .hero-plain { padding: 2.5rem 0 1.5rem; }
}

/* Proof band: no gutter bleed outside the cells */
.proof-band .proof-grid { background: transparent; gap: 0; }
.proof-band .proof + .proof { border-left: 1px solid var(--line); }

/* Hero alternative link + quote form checkboxes */
.hero-alt { font-family: var(--sans); font-size: 0.92rem; color: var(--muted); margin: 1.1rem 0 0; }
.hero-alt a { color: var(--navy); font-weight: 600; }
.promises.thrive .promise { border-top-color: var(--red); }
.checks { border: 1px solid var(--line); padding: 0.8rem 1rem 0.6rem; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.35rem 1rem; }
.checks legend { font-family: var(--sans); font-size: 0.85rem; font-weight: 600; padding: 0 0.3rem; }
.check { display: flex !important; flex-direction: row; align-items: center; gap: 0.5rem; font-family: var(--serif) !important; font-weight: 400 !important; font-size: 0.95rem !important; }
.check input { accent-color: var(--navy); width: 1rem; height: 1rem; margin: 0; }
@media (max-width: 600px) { .checks { grid-template-columns: 1fr; } }

/* About side block (no portrait) */
.about-logo { width: 100%; max-width: 13rem; height: auto; }

/* Phone (assembled client-side) */
.phone-line { font-family: var(--sans); font-weight: 600; }
.ph a { white-space: nowrap; text-decoration: none; }
.ph a:hover { text-decoration: underline; }

/* ===== Header v2: sticky bar, hamburger on small screens =============== */
.site-header { position: sticky; top: 0; z-index: 50; }
.header-row { position: relative; }
.nav-toggle {
  display: none; align-items: center; gap: 0.55rem;
  margin-left: auto; padding: 0.55rem 0.7rem;
  background: transparent; border: 1px solid var(--line); border-radius: 6px;
  color: var(--ink); font-family: var(--sans); font-size: 0.85rem; font-weight: 600; cursor: pointer;
}
.nav-toggle:hover { border-color: var(--navy); color: var(--navy); }
.bars { display: inline-flex; flex-direction: column; justify-content: space-between; width: 18px; height: 13px; }
.bars i { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.site-header.open .bars i:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.site-header.open .bars i:nth-child(2) { opacity: 0; }
.site-header.open .bars i:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .header-row { flex-wrap: nowrap; gap: 0.8rem; padding-top: 0.55rem; padding-bottom: 0.55rem; }
  .brand img { width: 112px; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    order: 3; flex-basis: 100%; margin-left: 0;
    flex-direction: column; gap: 0;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 32px -20px rgba(30, 33, 48, 0.45);
    padding: 0.4rem 24px 0.8rem;
  }
  .js .main-nav { display: none; }
  .js .site-header.open .main-nav { display: flex; animation: navdown 0.18s ease-out; }
  .main-nav a {
    padding: 0.85rem 0.2rem; border-bottom: 1px solid var(--line);
    font-size: 1.05rem; border-left: 3px solid transparent; padding-left: 0.6rem;
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav a[aria-current="page"] { border-bottom-color: var(--line); border-left-color: var(--red); background: var(--navy-soft); }
  .nav-open body { overflow: hidden; }
  .no-js .main-nav { position: static; display: flex; box-shadow: none; padding: 0 0 0.4rem; }
  .no-js .nav-toggle { display: none; }

  /* Hero on small screens */
  .hero-plain { padding: 2.2rem 0 1.6rem; }
  .btn-row .btn { flex: 1 1 auto; text-align: center; }
  .eyebrow { letter-spacing: 0.08em; }
}
@keyframes navdown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .js .site-header.open .main-nav { animation: none; }
  .bars i { transition: none; }
}
@media (max-width: 600px) {
  .proof-band .proof + .proof { border-left: none; border-top: 1px solid var(--line); }
}

/* ===== Imagery ========================================================= */
.hero-photo {
  background-image:
    linear-gradient(90deg, rgba(246,245,241,0.97) 0%, rgba(246,245,241,0.92) 45%, rgba(246,245,241,0.70) 100%),
    url('../img/photos/album-blur.jpg');
  background-size: cover; background-position: center;
  border-bottom: 1px solid var(--line);
}
@media (prefers-color-scheme: dark) {
  .hero-photo {
    background-image:
      linear-gradient(90deg, rgba(21,22,28,0.97) 0%, rgba(21,22,28,0.92) 45%, rgba(21,22,28,0.72) 100%),
      url('../img/photos/album-blur.jpg');
  }
}
.banner { margin: 1.6rem 0 0; }
.banner img {
  width: 100%; max-height: 360px; object-fit: cover; object-position: center 30%;
  border: 1px solid var(--line); background: var(--surface-2);
}
.banner figcaption { font-family: var(--sans); font-size: 0.8rem; color: var(--faint); margin-top: 0.5rem; max-width: 70ch; }
.mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.mosaic img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border: 1px solid var(--line); max-height: none; }
.mosaic img:nth-child(2) { object-position: center; }
.mosaic figcaption { grid-column: 1 / -1; }
.case-head { display: grid; grid-template-columns: 1fr 160px; gap: 1.2rem; align-items: start; }
.case-head > .case-tags { grid-column: 1; }
.case-head > h2, .case-head > .case-context { grid-column: 1; }
.case-thumb { grid-column: 2; grid-row: 1 / span 3; width: 160px; height: 120px; object-fit: cover; border: 1px solid var(--line); background: var(--surface-2); }
@media (max-width: 600px) {
  .case-head { grid-template-columns: 1fr; }
  .case-thumb { grid-column: 1; grid-row: auto; width: 100%; height: 160px; }
  .banner img { max-height: 240px; }
}

/* What we do: text and facts share the second grid column */
.area-body p { margin-top: 0; }
.facts { margin-top: 0.8rem; }
