:root {
    --ink: #15140F;
    --paper: #F3F1E9;
    --paper-soft: #ECE8DC;
    --pine: #1F3D2D;
    --pine-deep: #15291F;
    --moss: #5B6552;
    --rule: rgba(21, 20, 15, 0.18);
    --rule-soft: rgba(21, 20, 15, 0.1);
    --rule-paper: rgba(243, 241, 233, 0.2);
    --pine-tint: rgba(31, 61, 45, 0.04);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Newsreader', Georgia, serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  a { color: inherit; text-decoration: none; transition: all 0.3s ease; }

  .rule-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    font-size: 11px;
    color: var(--moss);
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .rule-label::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--moss);
  }

  /* ===== PINE HEADER STRIP ===== */
  .nav {
    background: var(--pine);
    padding: 28px 80px;
  }
  .nav-inner {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
  }
  .nav .wordmark {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--paper);
    letter-spacing: 0;
  }
  .nav .wordmark .prompt {
    color: rgba(243, 241, 233, 0.6);
    margin-right: 0.1em;
  }

  /* ===== HERO — CENTERED ===== */
  .hero {
    padding: 120px 64px 48px;
    max-width: 880px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
  .hero h1 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(44px, 6.2vw, 84px);
    line-height: 1.02;
    letter-spacing: -0.018em;
    color: var(--ink);
    text-wrap: balance;
    margin: 0 auto;
  }
  .hero h1 em {
    font-style: normal;
    font-weight: 400;
    color: var(--ink);
  }

  /* ===== PRACTICE — CENTERED COLUMN ===== */
  .practice {
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 64px 144px;
    width: 100%;
    text-align: center;
  }


  .practice p {
    font-family: 'Newsreader', serif;
    font-size: clamp(16.5px, 1.2vw, 18.5px);
    line-height: 1.72;
    color: var(--ink);
    margin-bottom: 22px;
    text-wrap: pretty;
  }
  .practice p strong {
    font-weight: 400;
    color: var(--pine);
  }

  .practice .grouping {
    padding-top: 44px;
    margin-top: 44px;
    border-top: 1px solid var(--rule-soft);
  }
  .practice .grouping .label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--moss);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }

  .practice .cta-wrap {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--rule-soft);
  }
  .cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px 18px 28px;
    border: 1px solid var(--pine);
    color: var(--pine);
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.02em;
  }
  .cta .arrow {
    display: inline-block;
    transition: transform 0.35s ease;
    font-size: 16px;
    line-height: 1;
  }
  .cta:hover { background: var(--pine); color: var(--paper); }
  .cta:hover .arrow { transform: translateX(8px); }

  /* ===== SELECTED WORK — ASYMMETRIC REGISTRY ===== */
  .works-panel {
    background: var(--paper-soft);
    padding: 120px 0;
    border-top: 1px solid var(--rule-soft);
  }
  .works-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
  }
  .works-head {
    margin-bottom: 72px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 48px;
  }
  .works-head h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.012em;
    color: var(--ink);
    text-align: right;
    max-width: 520px;
    text-wrap: balance;
  }

  .registry {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .registry .entry {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    padding: 36px 0 36px 32px;
    border-left: 2px solid var(--pine);
    background: var(--pine-tint);
    align-items: baseline;
    margin-bottom: 20px;
    transition: background 0.3s ease;
  }
  .registry .entry:last-child {
    margin-bottom: 0;
  }
  .registry .entry:hover {
    background: rgba(31, 61, 45, 0.07);
  }
  .registry .entry-num {
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    font-size: 11px;
    color: var(--pine);
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .registry .entry-num .dim {
    color: var(--moss);
  }
  .registry .entry-brands {
    font-family: 'Newsreader', serif;
    font-weight: 300;
    font-size: clamp(19px, 1.6vw, 24px);
    line-height: 1.4;
    color: var(--ink);
    letter-spacing: -0.005em;
    text-wrap: pretty;
  }

  /* ===== QUOTE — PINE PANEL ===== */
  .quote-panel {
    background: var(--pine);
    color: var(--paper);
    padding: 160px 80px;
    text-align: center;
  }
  .quote-panel .inner {
    max-width: 940px;
    margin: 0 auto;
  }
  .quote-panel blockquote {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(32px, 4.2vw, 60px);
    line-height: 1.12;
    letter-spacing: -0.015em;
    color: var(--paper);
    margin-bottom: 40px;
    text-wrap: balance;
  }
  .quote-panel .attr {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: rgba(243, 241, 233, 0.6);
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  /* ===== FOOTER — THIN INK STRIP ===== */
  footer {
    background: var(--ink);
    color: var(--paper);
    padding: 22px 80px;
  }
  .footer-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: center;
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    font-size: 11px;
    color: rgba(243, 241, 233, 0.65);
    letter-spacing: 0.04em;
  }
  .footer-inner .monogram {
    font-size: 18px;
    color: var(--paper);
    line-height: 1;
    letter-spacing: -0.01em;
    justify-self: end;
  }
  .footer-inner .monogram .slash {
    color: rgba(243, 241, 233, 0.55);
    margin-left: 0.02em;
  }
  .footer-inner .center {
    text-align: center;
  }
  .footer-inner .right {
    text-align: right;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .nav { padding: 22px 28px; }
    .nav .wordmark { font-size: 15px; }

    .hero { padding: 72px 28px 48px; }
    .hero h1 { font-size: clamp(34px, 9vw, 52px); }

    .practice { padding: 16px 28px 96px; }
    .practice .grouping { margin-top: 28px; padding-top: 28px; }
    .practice .cta-wrap { margin-top: 40px; padding-top: 32px; }

    .works-panel { padding: 80px 0; }
    .works-inner { padding: 0 28px; }
    .works-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
    .works-head h2 { text-align: left; font-size: clamp(26px, 7vw, 36px); }
    .registry .entry {
      grid-template-columns: 1fr;
      gap: 14px;
      padding: 26px 0 26px 22px;
      margin-bottom: 14px;
    }
    .registry .entry-brands { font-size: 19px; }

    .quote-panel { padding: 96px 28px; }
    footer { padding: 18px 28px; }
    .footer-inner { grid-template-columns: 1fr; gap: 6px; }
    .footer-inner .center, .footer-inner .right { text-align: left; }
  }
