  :root {
    --ink: #0e1014;
    --panel: #14171d;
    --line: rgba(232,234,237,0.12);
    --text: #e8eaed;
    --dim: rgba(232,234,237,0.58);
    --accent: #a8c8dd;               /* glacial */
    --accent-deep: #7ba6c0;
    --radius: 2px;                   /* shape lock: near-sharp everywhere */
    --font: "Archivo", ui-sans-serif, system-ui, sans-serif;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--ink); color: var(--text);
    font-family: var(--font); font-weight: 400;
    -webkit-font-smoothing: antialiased;
    min-height: 100dvh;
  }
  ::selection { background: var(--accent); color: var(--ink); }
  img { display: block; max-width: 100%; height: auto; }
  a { color: inherit; }

  .wrap { max-width: 1320px; margin: 0 auto; padding-left: clamp(1.25rem, 4vw, 3rem); padding-right: clamp(1.25rem, 4vw, 3rem); }

  /* ── nav ─────────────────────────────────────────── */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    height: 68px; display: flex; align-items: center;
    background: linear-gradient(rgba(14,16,20,0.85), rgba(14,16,20,0));
  }
  header .wrap { width: 100%; display: flex; align-items: center; justify-content: space-between; }
  .wordmark {
    font-weight: 600; font-stretch: 118%; font-size: 0.95rem;
    letter-spacing: 0.34em; text-transform: uppercase; text-decoration: none;
  }
  
  nav { display: flex; gap: 2rem; }
  nav a {
    font-size: 0.78rem; letter-spacing: 0.08em; text-decoration: none;
    color: var(--dim); transition: color 0.25s;
  }
  nav a:hover { color: var(--text); }
  @media (max-width: 680px) {
    nav { gap: 1.1rem; }
    nav a:not(:last-child) { display: none; }   /* mobile: Contact only */
  }

  /* ── hero ────────────────────────────────────────── */
  .hero {
    position: relative; min-height: 100dvh;
    display: flex; align-items: flex-end;
    isolation: isolate;
  }
  .hero img.bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center 55%; z-index: -2;
  }
  .hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background:
      linear-gradient(180deg, rgba(14,16,20,0.35) 0%, rgba(14,16,20,0) 30%, rgba(14,16,20,0.82) 88%),
      linear-gradient(90deg, rgba(14,16,20,0.55) 0%, rgba(14,16,20,0) 55%);
  }
  .hero .wrap { width: 100%; padding-bottom: clamp(3rem, 9vh, 6rem); }
  .eyebrow {
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 1.4rem;
  }
  h1 {
    font-weight: 600; font-stretch: 120%;
    font-size: clamp(1.7rem, 4.6vw, 4.2rem);
    line-height: 1.05; letter-spacing: -0.015em;
    max-width: 21ch;
  }
  .hero p {
    margin-top: 1.6rem; max-width: 42ch;
    font-size: clamp(0.98rem, 1.3vw, 1.12rem); line-height: 1.7; color: var(--dim);
  }
  .btn {
    display: inline-block; margin-top: 2.2rem;
    padding: 0.95rem 1.9rem; border-radius: var(--radius);
    background: var(--accent); color: var(--ink);
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; transition: background 0.25s, transform 0.15s;
    white-space: nowrap;
  }
  .btn:hover { background: #c2dcec; }
  .btn:active { transform: translateY(1px); }

  /* ── manifesto band (texture bg) ─────────────────── */
  .manifesto {
    position: relative; isolation: isolate;
    padding: clamp(6rem, 15vh, 10rem) 0;
  }
  .manifesto img.bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: -2;
  }
  .manifesto::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(90deg, rgba(14,16,20,0.92) 30%, rgba(14,16,20,0.6) 100%);
  }
  .manifesto h2 {
    font-weight: 600; font-stretch: 118%;
    font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.08;
    letter-spacing: -0.01em; max-width: 22ch;
  }
  .manifesto h2 em { font-style: italic; color: var(--accent); }
  .manifesto p {
    margin-top: 1.8rem; max-width: 52ch;
    font-size: 1.02rem; line-height: 1.75; color: var(--dim);
  }

  /* ── ventures ────────────────────────────────────── */
  .venture { padding: clamp(4rem, 9vh, 6rem) 0; }
  .venture .wrap {
    display: grid; grid-template-columns: 1fr 1.15fr;
    gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
  }
  .venture.flip .wrap { grid-template-columns: 0.9fr 1.1fr; }
  .venture.flip .media { order: 2; }
  .venture.flip .media img { aspect-ratio: 3 / 4; }
  .venture .media { position: relative; }
  .venture .media img {
    width: 100%; border-radius: var(--radius);
    aspect-ratio: 4 / 5; object-fit: cover;
    border: 1px solid rgba(168,200,221,0.14);
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
  }
  .venture .media:hover img { transform: scale(1.015); }
  @media (prefers-reduced-motion: reduce) { .venture .media:hover img { transform: none; } }
  .venture h3 {
    font-weight: 600; font-stretch: 120%;
    font-size: clamp(2rem, 4.4vw, 3.6rem); letter-spacing: -0.01em; line-height: 1;
  }
  .venture .role {
    margin-top: 0.9rem; font-size: 0.95rem; color: var(--accent-deep); font-weight: 500;
  }
  .venture p.body { margin-top: 1.5rem; max-width: 46ch; font-size: 1rem; line-height: 1.75; color: var(--dim); }
  .venture a.site {
    display: inline-block; margin-top: 1.9rem;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent); text-decoration: none;
    border-bottom: 1px solid rgba(168,200,221,0.35); padding-bottom: 0.45rem;
    transition: border-color 0.25s, color 0.25s;
  }
  .venture a.site:hover { color: var(--text); border-color: var(--text); }
  .venture span.site-soon {
    display: inline-block; margin-top: 1.9rem;
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--dim);
  }
  @media (max-width: 820px) {
    .venture .wrap { grid-template-columns: 1fr; }
    .venture.flip .media { order: 0; }
  }

  /* ── standards ───────────────────────────────────── */
  .standards {
    padding: clamp(5rem, 12vh, 9rem) 0;
    background: linear-gradient(180deg, #131820 0%, var(--panel) 100%);
    border-top: 1px solid rgba(168,200,221,0.1);
  }
  .standards h2 {
    font-weight: 600; font-stretch: 118%;
    font-size: clamp(1.9rem, 4vw, 3.2rem); letter-spacing: -0.01em;
  }
  .standards ol { list-style: none; margin-top: clamp(2.5rem, 6vh, 4rem); }
  .standards li {
    display: grid; grid-template-columns: minmax(64px, 120px) 1fr;
    gap: clamp(1.2rem, 4vw, 3rem);
    padding: clamp(1.8rem, 4vh, 2.6rem) 0;
  }
  .standards li + li { border-top: 1px solid var(--line); }
  .standards .no {
    font-weight: 300; font-stretch: 75%;
    font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1; color: var(--accent-deep);
  }
  .standards h4 { font-weight: 600; font-size: clamp(1.15rem, 2vw, 1.5rem); }
  .standards li p { margin-top: 0.6rem; max-width: 52ch; font-size: 0.98rem; line-height: 1.7; color: var(--dim); }

  /* ── contact ─────────────────────────────────────── */
  .contact {
    position: relative; isolation: isolate;
    padding: clamp(8rem, 22vh, 14rem) 0 0;
  }
  .contact img.bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center 40%; z-index: -2;
  }
  .contact::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background:
      linear-gradient(180deg, rgba(14,16,20,0.95) 0%, rgba(14,16,20,0.35) 45%, rgba(14,16,20,0.75) 100%),
      linear-gradient(90deg, rgba(14,16,20,0.6) 0%, rgba(14,16,20,0) 60%);
  }
  .contact .eyebrow { color: var(--accent); }
  .contact h2 {
    font-weight: 600; font-stretch: 120%;
    font-size: clamp(2.2rem, 5.5vw, 4.6rem); letter-spacing: -0.015em; line-height: 1.02;
    max-width: 14ch;
  }
  .contact .mail {
    display: inline-block; margin-top: 2.4rem;
    font-size: clamp(1.2rem, 2.6vw, 2rem); font-weight: 500;
    color: var(--accent); text-decoration: none;
    border-bottom: 1px solid rgba(168,200,221,0.35); padding-bottom: 0.6rem;
    transition: color 0.25s, border-color 0.25s;
  }
  .contact .mail:hover { color: var(--text); border-color: var(--text); }
  footer {
    margin-top: clamp(5rem, 14vh, 9rem);
    border-top: 1px solid rgba(232,234,237,0.18);
    padding: 1.6rem 0 2rem;
    background: linear-gradient(rgba(14,16,20,0), rgba(14,16,20,0.55));
  }
  footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; }
  footer span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(232,234,237,0.35); }

  /* ── reveal ──────────────────────────────────────── */
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
  }
