    :root {
      --pine: #1C3B2F;
      --pine-deep: #122A20;
      --copper: #B87333;
      --copper-soft: rgba(184, 115, 51, 0.55);
      --ivory: #F8F7F3;
      --white: #FFFFFF;
      --body: #485D51;
      --muted: #84988C;
      --hairline: rgba(28, 59, 47, 0.14);
      --hairline-soft: rgba(28, 59, 47, 0.08);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      background: var(--ivory);
      color: var(--body);
      line-height: 1.75;
      font-size: 1.02rem;
      overflow-x: hidden;
    }

    .serif { font-family: 'Marcellus', serif; }
    .mono {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    .wrap { max-width: 1120px; margin: 0 auto; padding: 0 2.5rem; }

    /* ============ NAV ============ */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 100;
      background: rgba(248, 247, 243, 0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--hairline-soft);
    }
    .nav-inner {
      max-width: 1120px; margin: 0 auto; padding: 1.35rem 2.5rem;
      display: flex; justify-content: space-between; align-items: center;
    }
    .wordmark {
      font-family: 'Marcellus', serif;
      font-size: 1.02rem; letter-spacing: 0.28em; text-transform: uppercase;
      color: var(--pine); text-decoration: none; white-space: nowrap;
    }
    .wordmark em { font-style: normal; color: var(--copper); }
    .nav-cta {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--pine); text-decoration: none;
      padding: 0.6rem 1.4rem;
      border: 1px solid var(--hairline);
      transition: all 0.25s ease;
    }
    .nav-cta:hover { border-color: var(--copper); color: var(--copper); }

    /* ============ HERO ============ */
    .hero {
      min-height: 92vh;
      display: flex; align-items: center;
      padding: 9rem 0 5rem;
      position: relative;
    }
    .hero-grid {
      display: grid; grid-template-columns: 7fr 5fr; gap: 4rem; align-items: center;
    }
    .eyebrow {
      color: var(--copper);
      margin-bottom: 2.2rem;
      display: flex; align-items: center; gap: 1rem;
    }
    .eyebrow::before {
      content: ''; display: block; width: 2.6rem; height: 1px; background: var(--copper-soft);
    }
    .hero h1 {
      font-family: 'Marcellus', serif;
      font-weight: 400;
      font-size: clamp(3rem, 5.6vw, 4.6rem);
      line-height: 1.08;
      color: var(--pine);
      margin-bottom: 1.8rem;
    }
    .hero h1 .accent { color: var(--copper); }
    .hero p.lede {
      font-size: 1.13rem; font-weight: 300; line-height: 1.85;
      max-width: 34rem; margin-bottom: 2.8rem;
    }
    .hero-facts {
      border-top: 1px solid var(--hairline);
      padding-top: 1.4rem;
      display: flex; gap: 3rem;
    }
    .hero-facts .fact { color: var(--muted); }
    .hero-facts .fact b {
      display: block; font-family: 'Marcellus', serif; font-weight: 400;
      font-size: 1.05rem; letter-spacing: 0.02em; color: var(--pine);
      text-transform: none; margin-bottom: 0.1rem;
    }

    /* lattice */
    .lattice-box { position: relative; height: 460px; }
    .lattice-box svg { width: 100%; height: 100%; }

    /* ============ SECTIONS ============ */
    section { padding: 6.5rem 0; }
    .section-head {
      display: flex; align-items: baseline; gap: 1.4rem;
      margin-bottom: 3.5rem;
      border-bottom: 1px solid var(--hairline);
      padding-bottom: 1.2rem;
    }
    .section-head .num { color: var(--copper); }
    .section-head .label { color: var(--muted); }

    h2.statement {
      font-family: 'Marcellus', serif; font-weight: 400;
      font-size: clamp(1.9rem, 3.4vw, 2.7rem);
      line-height: 1.28; color: var(--pine);
    }

    /* In Production — editorial statement */
    .production { background: var(--white); border-top: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); }
    .production-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 4.5rem; }
    .production-grid p {
      font-size: 1.08rem; font-weight: 300; line-height: 1.95;
    }
    .production-grid p + p { margin-top: 1.4rem; }
    .production-grid p strong { font-weight: 700; color: var(--pine); }

    /* Capabilities */
    .cap-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 3.5rem;
    }
    .cap {
      border-top: 1px solid var(--hairline);
      padding-top: 2rem;
    }
    .cap .icon { margin-bottom: 1.6rem; }
    .cap .icon svg { width: 44px; height: 44px; }
    .cap h3 {
      font-family: 'Marcellus', serif; font-weight: 400;
      font-size: 1.35rem; color: var(--pine); margin-bottom: 0.9rem;
      letter-spacing: 0.01em;
    }
    .cap p { font-size: 0.98rem; font-weight: 300; }

    /* Why — numbered editorial list */
    .why { background: var(--white); border-top: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); }
    .why-row {
      display: grid; grid-template-columns: 1fr 4fr 7fr; gap: 2.5rem;
      padding: 2.4rem 0;
      border-bottom: 1px solid var(--hairline-soft);
      align-items: baseline;
    }
    .why-row:last-child { border-bottom: none; }
    .why-row .n { color: var(--copper); }
    .why-row h3 {
      font-family: 'Marcellus', serif; font-weight: 400;
      font-size: 1.3rem; color: var(--pine);
    }
    .why-row p { font-size: 0.98rem; font-weight: 300; }

    /* Team */
    .team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
    .member { display: grid; grid-template-columns: 150px 1fr; gap: 1.8rem; align-items: start; }
    .member img {
      width: 150px; height: 180px; object-fit: cover;
      filter: saturate(0.92);
    }
    .member .role { color: var(--copper); margin-bottom: 0.5rem; font-size: 0.66rem; }
    .member h3 {
      font-family: 'Marcellus', serif; font-weight: 400;
      font-size: 1.4rem; color: var(--pine); margin-bottom: 0.7rem;
    }
    .member p { font-size: 0.94rem; font-weight: 300; line-height: 1.7; }

    /* CTA */
    .cta {
      background: var(--pine-deep);
      padding: 7rem 0;
      position: relative; overflow: hidden;
    }
    .cta .wrap { position: relative; z-index: 2; text-align: center; }
    .cta .eyebrow { justify-content: center; }
    .cta .eyebrow::before { background: var(--copper); }
    .cta h2 {
      font-family: 'Marcellus', serif; font-weight: 400;
      font-size: clamp(2.4rem, 4.5vw, 3.4rem);
      color: var(--ivory); margin-bottom: 1.4rem;
    }
    .cta p {
      color: rgba(248, 247, 243, 0.75);
      font-weight: 300; max-width: 33rem; margin: 0 auto 3rem;
    }
    .cta a.btn {
      display: inline-block;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--ivory); text-decoration: none;
      padding: 1.1rem 3rem;
      border: 1px solid var(--copper);
      transition: all 0.3s ease;
    }
    .cta a.btn:hover { background: var(--copper); }
    .cta-lattice { position: absolute; inset: 0; opacity: 0.14; z-index: 1; }

    /* Footer */
    footer {
      background: var(--pine-deep);
      border-top: 1px solid rgba(248, 247, 243, 0.12);
      padding: 2.2rem 0;
    }
    .foot {
      max-width: 1120px; margin: 0 auto; padding: 0 2.5rem;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
      color: rgba(248, 247, 243, 0.5);
      font-size: 0.62rem;
    }
    .foot a { color: rgba(248, 247, 243, 0.7); text-decoration: none; }
    .foot a:hover { color: var(--copper); }

    @media (max-width: 900px) {
      .hero-grid, .production-grid, .cap-grid, .team-grid { grid-template-columns: 1fr; }
      .lattice-box { display: none; }
      .why-row { grid-template-columns: 1fr; gap: 0.6rem; }
      .member { grid-template-columns: 120px 1fr; }
    }

    /* ============ SUBPAGES ============ */
    .nav-links { display: flex; align-items: center; gap: 2rem; }
    .nav-links a.nl {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--pine); text-decoration: none; opacity: 0.72;
      transition: opacity 0.2s, color 0.2s;
    }
    .nav-links a.nl:hover { opacity: 1; color: var(--copper); }
    .nav-links a.nl.active { opacity: 1; color: var(--copper); }

    .page-hero { padding: 11rem 0 4.5rem; }
    .page-hero h1 {
      font-family: 'Marcellus', serif; font-weight: 400;
      font-size: clamp(2.5rem, 4.6vw, 3.7rem);
      line-height: 1.12; color: var(--pine);
      margin-bottom: 1.6rem; max-width: 46rem;
    }
    .page-hero h1 .accent { color: var(--copper); }
    .page-hero p.lede {
      font-size: 1.13rem; font-weight: 300; line-height: 1.85; max-width: 37rem;
    }

    .layer-row {
      display: grid; grid-template-columns: 1fr 4fr 7fr; gap: 2.5rem;
      padding: 2.6rem 0; border-bottom: 1px solid var(--hairline-soft);
      align-items: baseline;
    }
    .layer-row:last-child { border-bottom: none; }
    .layer-row .n { color: var(--copper); }
    .layer-row h3 { font-family: 'Marcellus', serif; font-weight: 400; font-size: 1.35rem; color: var(--pine); }
    .layer-row p { font-size: 0.98rem; font-weight: 300; }
    .layer-row p + p { margin-top: 0.8rem; }

    .path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
    .path {
      background: var(--white); border: 1px solid var(--hairline-soft);
      border-top: 2px solid var(--copper);
      padding: 2.8rem 2.6rem;
    }
    .path .tag { color: var(--copper); margin-bottom: 1.4rem; display: block; }
    .path h3 { font-family: 'Marcellus', serif; font-weight: 400; font-size: 1.5rem; color: var(--pine); margin-bottom: 1rem; }
    .path p { font-size: 0.98rem; font-weight: 300; margin-bottom: 1rem; }
    .path ul { list-style: none; margin-top: 1.4rem; }
    .path ul li {
      font-size: 0.94rem; font-weight: 300;
      padding: 0.7rem 0 0.7rem 1.6rem; position: relative;
      border-top: 1px solid var(--hairline-soft);
    }
    .path ul li::before { content: '—'; position: absolute; left: 0; color: var(--copper); }

    .quiet-note {
      margin-top: 3.5rem; padding-top: 1.4rem;
      border-top: 1px solid var(--hairline);
      font-size: 0.9rem; font-weight: 300; color: var(--muted);
      max-width: 40rem;
    }

    .stack-diagram { margin: 3rem 0 1rem; }
    .stack-diagram svg { width: 100%; max-width: 860px; height: auto; display: block; margin: 0 auto; }

    @media (max-width: 900px) {
      .layer-row { grid-template-columns: 1fr; gap: 0.6rem; }
      .path-grid { grid-template-columns: 1fr; }
      .nav-links { gap: 1rem; }
      .nav-links a.nl:not(.nav-cta) { display: none; }
      .nav-links a.nav-cta { display: inline-block; }
    }
