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

    :root {
      --green:   #2C3B2D;
      --green-mid: #3D5040;
      --cream:   #F0EBE1;
      --rust:    #B85C38;
      --ink:     #1A1A18;
      --warm-mid:#8C7B6B;
      --off-white:#FAF7F2;
      --serif: 'Playfair Display', Georgia, serif;
      --sans:  'DM Sans', sans-serif;
      --mono:  'DM Mono', monospace;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--off-white);
      color: var(--ink);
      font-family: var(--sans);
      font-size: 17px;
      line-height: 1.65;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.1rem 2.5rem;
      background: var(--off-white);
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .nav-name {
      font-family: var(--serif);
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.01em;
      color: var(--ink);
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      font-family: var(--mono);
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink);
      text-decoration: none;
      opacity: 0.7;
      transition: opacity 0.2s;
    }

    .nav-links a:hover { opacity: 1; }

    /* ── HERO ── */
    .hero {
      display: grid;
      grid-template-columns: 1fr 420px;
      align-items: center;
      padding-top: 60px;
      border-bottom: 1px solid rgba(0,0,0,0.08);
      width: 100%;
    }

    .hero-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 1.5rem 3rem 1.5rem 5rem;
    }

    .hero-image {
      position: relative;
      overflow: hidden;
      width: 420px;
      flex-shrink: 0;
      background: var(--off-white);
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center bottom;
      display: block;
      filter: saturate(0.82);
      max-height: 480px;
    }

    .hero-eyebrow {
      font-family: var(--mono);
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--rust);
      margin-bottom: 1.5rem;
    }

    .hero-name {
      font-family: var(--serif);
      font-size: clamp(2.5rem, 4vw, 4rem);
      font-weight: 900;
      line-height: 1.0;
      color: var(--ink);
      margin-bottom: 1.2rem;
    }

    .hero-name em {
      font-style: italic;
      color: var(--green);
    }

    .hero-tagline {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--ink);
      opacity: 0.85;
      max-width: 480px;
      margin-bottom: 2rem;
      font-weight: 300;
    }

    .hero-actions {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 0.55rem 1.2rem;
      font-family: var(--mono);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-primary {
      background: var(--green);
      color: var(--cream);
      border: 2px solid var(--green);
    }

    .btn-primary:hover {
      background: var(--green-mid);
      border-color: var(--green-mid);
    }

    .btn-secondary {
      background: transparent;
      color: var(--ink);
      border: 2px solid var(--ink);
    }

    .btn-secondary:hover {
      background: var(--ink);
      color: var(--off-white);
    }

    .hero-image-caption { display: none; }

    /* ── SECTION SHARED ── */
    section { padding: 6rem 5rem; }

    .section-label {
      font-family: var(--mono);
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--rust);
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 2rem;
    }

    /* ── ABOUT STRIP ── */
    .about {
      background: var(--green);
      color: var(--cream);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about .section-title { color: var(--cream); }
    .about .section-label { color: rgba(240,235,225,0.5); }

    .about-body {
      font-size: 1.05rem;
      line-height: 1.8;
      opacity: 0.9;
    }

    .about-body p + p { margin-top: 1.2rem; }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .stat {
      border-top: 1px solid rgba(240,235,225,0.25);
      padding-top: 1.2rem;
    }

    .stat-number {
      font-family: var(--serif);
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--cream);
      line-height: 1;
      margin-bottom: 0.3rem;
    }

    .stat-label {
      font-family: var(--mono);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.55;
    }

    /* ── WHERE TO START ── */
    .start {
      background: var(--off-white);
    }

    .start-intro {
      max-width: 600px;
      margin-bottom: 3.5rem;
      opacity: 0.8;
      font-size: 1.05rem;
    }

    .hits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(0,0,0,0.08);
    }

    .hit-card {
      background: var(--off-white);
      padding: 2rem;
      text-decoration: none;
      color: var(--ink);
      transition: background 0.2s;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .hit-card:hover {
      background: var(--cream);
    }

    .hit-tag {
      font-family: var(--mono);
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--rust);
    }

    .hit-title {
      font-family: var(--serif);
      font-size: 1.15rem;
      font-weight: 700;
      line-height: 1.3;
    }

    .hit-pub {
      font-size: 0.82rem;
      opacity: 0.5;
      margin-top: auto;
      font-family: var(--mono);
      font-size: 0.7rem;
      letter-spacing: 0.06em;
    }

    /* ── WORK ── */
    .work {
      background: var(--cream);
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 5rem;
      align-items: start;
    }

    .work-sticky {
      position: sticky;
      top: 5rem;
    }

    .work-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .work-item {
      border-top: 1px solid rgba(0,0,0,0.1);
      padding: 1.8rem 0;
    }

    .work-item:last-child {
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .work-item-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 0.5rem;
    }

    .work-item-name {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 700;
    }

    .work-item-type {
      font-family: var(--mono);
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.45;
    }

    .work-item-desc {
      font-size: 0.95rem;
      opacity: 0.7;
      line-height: 1.6;
      margin-bottom: 0.8rem;
    }

    .work-item-link {
      font-family: var(--mono);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--rust);
      text-decoration: none;
    }

    .work-item-link:hover { text-decoration: underline; }

    /* ── CHANGELOG ── */
    .changelog {
      background: var(--ink);
      color: var(--cream);
    }

    .changelog .section-title { color: var(--cream); }
    .changelog .section-label { color: rgba(240,235,225,0.4); }

    .changelog-intro {
      max-width: 520px;
      opacity: 0.65;
      font-size: 0.92rem;
      margin-bottom: 3rem;
      font-style: italic;
    }

    .log-entries {
      max-width: 680px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .log-entry {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 2rem;
      padding: 1.8rem 0;
      border-top: 1px solid rgba(240,235,225,0.1);
    }

    .log-entry:last-child {
      border-bottom: 1px solid rgba(240,235,225,0.1);
    }

    .log-date {
      font-family: var(--mono);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      opacity: 0.4;
      padding-top: 0.15rem;
    }

    .log-text {
      font-size: 0.98rem;
      line-height: 1.7;
      opacity: 0.85;
    }

    /* ── CONTACT ── */
    .contact {
      background: var(--off-white);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .contact-body {
      font-size: 1.05rem;
      line-height: 1.8;
      opacity: 0.8;
    }

    .contact-body p + p { margin-top: 1rem; }

    .contact-body a {
      color: var(--rust);
      text-decoration: none;
    }

    .contact-body a:hover { text-decoration: underline; }

    .contact-links {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .contact-link {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      padding: 1.2rem 1.5rem;
      border: 1px solid rgba(0,0,0,0.1);
      text-decoration: none;
      color: var(--ink);
      transition: all 0.2s;
    }

    .contact-link:hover {
      background: var(--green);
      color: var(--cream);
      border-color: var(--green);
    }

    .contact-link-label {
      font-family: var(--mono);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .contact-link-desc {
      font-size: 0.85rem;
      opacity: 0.6;
      margin-left: auto;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--green);
      color: var(--cream);
      padding: 2rem 5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-name {
      font-family: var(--serif);
      font-weight: 700;
      opacity: 0.8;
    }

    .footer-copy {
      font-family: var(--mono);
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      opacity: 0.4;
    }

    /* ── HAMBURGER ── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--ink);
      transition: all 0.2s;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; align-items: center; }

      .nav-hamburger { display: flex; }

      .nav-links {
        display: none;
        position: fixed;
        top: 56px;
        left: 0; right: 0;
        background: var(--off-white);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        z-index: 99;
      }

      .nav-links.open { display: flex; }

      .nav-links li { border-top: 1px solid rgba(0,0,0,0.06); }

      .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
      }

      .hero { grid-template-columns: 1fr; }
      .hero-text { padding: 5rem 1.5rem 1.5rem; }
      .hero-image { width: 100%; height: auto; }
      .hero-image img { max-height: 70vw; object-fit: cover; object-position: center 20%; }

      section { padding: 3rem 1.5rem; }
      .about { grid-template-columns: 1fr; gap: 2.5rem; }
      .hits-grid { grid-template-columns: 1fr; }
      .work { grid-template-columns: 1fr; gap: 2rem; }
      .work-sticky { position: static; }
      .contact { grid-template-columns: 1fr; gap: 2rem; }
      footer { padding: 1.5rem 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
      .log-entry { grid-template-columns: 1fr; gap: 0.5rem; }
    }
  