    /* ─── Tokens ─────────────────────────────────────────────── */
    :root {
      --ink:     #1A1816;   /* warm near-black */
      --paper:   #EEE8DC;   /* warm cream */
      --ochre:   #C08A28;   /* muted golden ochre */
      --rust:    #A84235;   /* muted terracotta */
      --teal:    #4A8A82;   /* muted seafoam */
      --slate:   #1F2C40;   /* deep dusty navy */
      --forest:  #3A5840;   /* muted forest */
      --brick:   #6E3225;   /* deep brick */
      --plum:    #7A4A65;   /* muted plum */
      --olive:   #5B6838;   /* muted olive */
      --mid:     #6A6058;   /* warm gray-brown */
      --light:   #ADA499;   /* warm light */
      --white:   #FFFFFF;
      /* straw for experience bg */
      --straw:   #DBBF6A;
      /* section bg shorthands */
      --bg-hero:   #1F2C40;
      --bg-exp:    #DBBF6A;
      --bg-skills: #3A5840;
      --bg-quirk:  #6E3225;
      /* legacy compat */
      --deep:      #1A1816;
      --blush:     #A84235;
      --blush-lt:  rgba(168,66,53,.1);
      --blush-dk:  #872E1E;
      --gold:      #C08A28;
      --gold-lt:   rgba(192,138,40,.15);
      --cream:     #EEE8DC;
      --sage-lt:   rgba(58,88,64,.15);
    }

    /* ─── Reset ──────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--paper);
      color: var(--ink);
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 400;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ─── Typography helpers ─────────────────────────────────── */
    .serif   { font-family: 'Bebas Neue', 'Impact', sans-serif; }
    .display { font-family: 'DM Serif Display', Georgia, serif; }
    a { color: inherit; text-decoration: none; }

    .eyebrow {
      display: inline-block;
      font-family: 'Space Grotesk', sans-serif;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      background: var(--ochre);
      color: var(--ink);
      padding: .2rem .8rem;
      border: 1.5px solid var(--ink);
    }

    /* ─── Nav ────────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 2.5rem;
      background: var(--ink);
      border-bottom: 2px solid transparent;
      transition: border-color .3s;
    }
    nav.scrolled { border-bottom-color: var(--ochre); }
    .nav-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.3rem;
      letter-spacing: .1em;
      color: var(--ochre);
    }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(238,232,220,.55);
      transition: color .18s;
    }
    .nav-links a:hover { color: var(--ochre); }

    /* ─── Hero ───────────────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 2rem 6rem;
      position: relative;
      overflow: hidden;
      background: var(--bg-hero);
    }
    /* Halftone dot grid in ochre — like a printed piece */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(192,138,40,.18) 1.5px, transparent 1.5px);
      background-size: 20px 20px;
      pointer-events: none;
    }
    /* Warm glow circle top-right */
    #hero::after {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      background: var(--ochre);
      border-radius: 50%;
      opacity: .06;
      top: -180px; right: -160px;
      pointer-events: none;
    }

    .hero-tag {
      display: inline-block;
      background: var(--ochre);
      color: var(--ink);
      font-size: .64rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      padding: .25rem 1rem;
      border: 1.5px solid rgba(238,232,220,.2);
      margin-bottom: 1.6rem;
      position: relative; z-index: 1;
    }

    /* Two-tone hero name: italic serif "Jen" + display "Kendall" */
    .hero-name {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: .6rem;
      position: relative; z-index: 1;
      line-height: 1;
    }
    .name-serif {
      font-family: 'DM Serif Display', serif;
      font-style: italic;
      font-size: clamp(3.8rem, 13vw, 8.5rem);
      color: var(--paper);
      display: block;
      line-height: 1.05;
      letter-spacing: .01em;
    }
    .name-display {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(5rem, 18vw, 12rem);
      color: var(--ochre);
      display: block;
      line-height: .9;
      letter-spacing: .05em;
    }

    .hero-subtitle {
      font-family: 'DM Serif Display', serif;
      font-style: italic;
      font-size: clamp(1.1rem, 2.4vw, 1.7rem);
      color: rgba(238,232,220,.55);
      margin-bottom: 2rem;
      letter-spacing: .02em;
      position: relative; z-index: 1;
    }

    .hero-tagline {
      max-width: 520px;
      font-size: .97rem;
      color: rgba(238,232,220,.6);
      line-height: 1.85;
      margin-bottom: 3rem;
      position: relative; z-index: 1;
    }
    .hero-cta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
      position: relative; z-index: 1;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .82rem 2.1rem;
      border-radius: 2px;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      transition: transform .14s, box-shadow .14s;
      cursor: pointer;
    }
    .btn-primary {
      background: var(--ochre);
      color: var(--ink);
      border: 2px solid var(--ochre);
      box-shadow: 4px 4px 0 rgba(192,138,40,.35);
    }
    .btn-primary:hover {
      transform: translate(-2px,-2px);
      box-shadow: 6px 6px 0 rgba(192,138,40,.35);
    }
    .btn-ghost {
      background: transparent;
      color: var(--paper);
      border: 2px solid rgba(238,232,220,.4);
      box-shadow: 4px 4px 0 rgba(238,232,220,.1);
    }
    .btn-ghost:hover {
      background: rgba(238,232,220,.07);
      border-color: var(--paper);
      transform: translate(-2px,-2px);
      box-shadow: 6px 6px 0 rgba(238,232,220,.1);
    }

    /* ─── Section shared ─────────────────────────────────────── */
    section { padding: 6rem 2rem; }
    .container { max-width: 1040px; margin: 0 auto; }
    .section-header { margin-bottom: 3.5rem; }
    .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 7vw, 5.5rem);
      font-weight: 400;
      line-height: .95;
      letter-spacing: .04em;
      margin-top: .6rem;
    }
    .section-header h2 em {
      font-style: normal;
      font-family: 'DM Serif Display', serif;
      font-size: .75em;
      vertical-align: baseline;
      line-height: 1;
    }
    .divider {
      width: 56px; height: 4px;
      margin: 1rem 0;
      background: var(--ochre);
    }

    /* ─── About ──────────────────────────────────────────────── */
    #about {
      background: var(--paper);
      position: relative;
    }
    #about::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(26,24,22,.05) 1px, transparent 1px);
      background-size: 18px 18px;
      pointer-events: none;
    }
    #about .container { position: relative; z-index: 1; }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .about-text p { color: var(--mid); margin-bottom: 1.2rem; font-size: .97rem; }
    .about-text p strong { color: var(--ink); font-weight: 700; }
    .about-text h2 {
      font-family: 'DM Serif Display', serif !important;
      font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
      font-weight: 400 !important;
      line-height: 1.2 !important;
      color: var(--ink);
      margin: .6rem 0 .9rem !important;
    }
    .about-text h2 em { font-style: italic; color: var(--rust); }

    .about-right { display: flex; flex-direction: column; gap: 1.6rem; }
    .jen-photo-wrap { display: flex; justify-content: center; }
    .jen-photo {
      width: 210px; height: 210px;
      border-radius: 0;
      object-fit: cover;
      object-position: center 15%;
      border: 3px solid var(--ink);
      box-shadow: 7px 7px 0 var(--ochre);
      transform: rotate(-1.5deg);
      outline: none;
    }

    .type-badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.2rem; }
    .type-badge {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: var(--straw);
      border: 1.5px solid var(--ink);
      box-shadow: 2px 2px 0 var(--ink);
      border-radius: 0;
      padding: .35rem .8rem;
    }
    .type-badge:nth-child(2) { transform: rotate(-.6deg); }
    .type-badge:nth-child(3) { transform: rotate(.8deg); }
    .type-badge .t-label {
      font-size: .58rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--mid);
    }
    .type-badge .t-value {
      font-family: 'Bebas Neue', sans-serif;
      font-size: .95rem; letter-spacing: .05em; color: var(--ink);
    }

    .stat-cluster { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
    .stat-card {
      background: var(--white);
      border: 2px solid var(--ink);
      box-shadow: 4px 4px 0 var(--ink);
      border-radius: 0;
      padding: 1.4rem 1.2rem;
      transition: transform .13s, box-shadow .13s;
    }
    .stat-card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
    .stat-card .num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.2rem !important;
      color: var(--rust);
      line-height: 1;
      margin-bottom: .3rem;
      padding-top: 0 !important;
    }
    /* Bebas Neue (Dharma Type) has no infinity glyph — render symbols in a font that does */
    .stat-card .num.glyph { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 2.6rem !important; }
    .stat-card .desc { font-size: .78rem; color: var(--mid); line-height: 1.4; }

    /* ─── Experience ─────────────────────────────────────────── */
    #experience {
      background: var(--bg-exp);
      position: relative;
    }
    #experience::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(26,24,22,.1) 1.5px, transparent 1.5px);
      background-size: 14px 14px;
      pointer-events: none;
    }
    #experience .container { position: relative; z-index: 1; }
    #experience .section-header h2 { color: var(--ink); }
    #experience .section-header h2 em { color: var(--rust); }
    #experience .eyebrow { background: var(--ink); color: var(--straw); border-color: var(--ink); }
    #experience .divider { background: var(--ink); }

    .chapters { display: flex; flex-direction: column; gap: 2rem; }
    .chapter {
      background: var(--white);
      border: 2px solid var(--ink);
      box-shadow: 6px 6px 0 var(--ink);
      border-radius: 0;
      padding: 2.4rem 2.6rem;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 2rem;
      align-items: start;
      transition: transform .13s, box-shadow .13s;
    }
    .chapter:nth-child(odd)  { transform: rotate(-.2deg); }
    .chapter:nth-child(even) { transform: rotate(.18deg); }
    .chapter:hover {
      transform: translate(-3px,-3px) rotate(0deg) !important;
      box-shadow: 9px 9px 0 var(--ink);
    }
    .chapter-num {
      font-family: 'DM Serif Display', serif;
      font-style: italic;
      font-size: 3.5rem;
      color: var(--rust);
      line-height: 1;
      min-width: 56px;
    }
    .chapter-era {
      font-size: .66rem; font-weight: 700;
      letter-spacing: .18em; text-transform: uppercase;
      color: var(--ochre);
      margin-bottom: .4rem;
    }
    .chapter h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.1rem; letter-spacing: .05em;
      color: var(--ink); margin-bottom: .6rem; line-height: 1;
    }
    .chapter p { font-size: .93rem; color: var(--mid); line-height: 1.75; }
    .chapter p em { font-style: italic; color: var(--ink); }
    .chapter-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; }
    .tag {
      background: var(--straw);
      color: var(--ink);
      font-size: .64rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      padding: .22rem .7rem;
      border: 1.5px solid var(--ink);
      border-radius: 0;
    }
    .tag.sage { background: var(--teal); color: var(--white); border-color: transparent; }
    .tag.gold { background: var(--rust); color: var(--white); border-color: transparent; }

    /* ─── Portfolio ──────────────────────────────────────────── */
    #portfolio {
      background: var(--ink);
      position: relative;
    }
    #portfolio::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(192,138,40,.1) 1.5px, transparent 1.5px);
      background-size: 20px 20px;
      pointer-events: none;
    }
    #portfolio .container { position: relative; z-index: 1; }
    #portfolio .section-header h2 { color: var(--paper); }
    #portfolio .section-header h2 em { color: var(--teal); font-family: 'DM Serif Display', serif; }
    #portfolio .eyebrow { background: var(--teal); color: var(--ink); border-color: var(--teal); }
    #portfolio .divider { background: var(--teal); }
    #portfolio .section-header p { color: rgba(238,232,220,.5); }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.8rem;
    }
    .port-card {
      background: var(--white);
      border: 2px solid var(--card-accent, var(--ochre));
      box-shadow: 5px 5px 0 var(--card-accent, var(--ochre));
      border-radius: 0;
      cursor: pointer;
      overflow: hidden;
      transition: transform .13s, box-shadow .13s;
    }
    /* Muted palette — each card gets a distinct earthy accent */
    .port-card:nth-child(1) { --card-accent: #C08A28; }  /* ochre */
    .port-card:nth-child(2) { --card-accent: #A84235; }  /* rust */
    .port-card:nth-child(3) { --card-accent: #4A8A82; }  /* teal */
    .port-card:nth-child(4) { --card-accent: #2E4468; }  /* slate */
    .port-card:nth-child(5) { --card-accent: #5B6838; }  /* olive */
    .port-card:nth-child(6) { --card-accent: #7A4A65; }  /* plum */
    .port-card:nth-child(7) { --card-accent: #C08A28; }  /* ochre */
    .port-card:nth-child(8) { --card-accent: #4A8A82; }  /* teal */
    .port-card:hover {
      transform: translate(-3px,-3px);
      box-shadow: 8px 8px 0 var(--card-accent, var(--ochre));
    }

    .port-thumb {
      position: relative;
      height: 260px;
      overflow: hidden;
      background: #1e1c1a;
      display: flex; align-items: center; justify-content: center;
    }
    .port-thumb-img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform .35s;
    }
    .port-card:hover .port-thumb-img { transform: scale(1.04); }
    .port-thumb-canvas { display: block; max-width: 100%; max-height: 100%; }
    .port-thumb-placeholder {
      color: rgba(238,232,220,.3); font-size: .75rem;
      letter-spacing: .14em; text-transform: uppercase;
    }

    .port-card-overlay {
      position: absolute; inset: 0;
      background: rgba(26,24,22,.6);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity .2s;
    }
    .port-card:hover .port-card-overlay { opacity: 1; }
    .port-view-btn {
      color: var(--paper);
      font-size: .68rem; font-weight: 700;
      letter-spacing: .24em; text-transform: uppercase;
      border: 1.5px solid rgba(238,232,220,.7);
      padding: .48rem 1.4rem;
      pointer-events: none;
    }

    .port-card-info {
      padding: .85rem 1rem;
      display: flex; align-items: center; justify-content: space-between; gap: .5rem;
      border-top: 2px solid var(--card-accent, var(--ochre));
    }
    .port-card-title {
      font-size: .8rem; color: var(--ink); font-weight: 600;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .port-card-badge {
      font-size: .57rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      background: var(--paper); color: var(--ink);
      padding: .18rem .55rem;
      border: 1.5px solid rgba(26,24,22,.3);
      border-radius: 0; flex-shrink: 0;
    }
    .port-card-badge.pdf { background: var(--straw); border-color: var(--ink); }

    /* ─── Portfolio Modal ────────────────────────────────────── */
    .port-modal {
      position: fixed; inset: 0; z-index: 500;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity .24s;
    }
    .port-modal.active { opacity: 1; pointer-events: all; }
    .port-modal-overlay {
      position: absolute; inset: 0;
      background: rgba(26,24,22,.88);
    }
    .port-modal-box {
      position: relative; z-index: 1;
      background: var(--white);
      border: 2.5px solid var(--ink);
      box-shadow: 10px 10px 0 var(--ochre);
      border-radius: 0;
      width: min(880px, calc(100vw - 2.5rem));
      max-height: calc(100vh - 3rem);
      display: flex; flex-direction: column; overflow: hidden;
    }
    .port-modal-header {
      padding: 1.1rem 1.6rem;
      border-bottom: 2.5px solid var(--ink);
      background: var(--ink);
      display: flex; align-items: center; justify-content: space-between; gap: 1rem;
      flex-shrink: 0;
    }
    .port-modal-title {
      font-family: 'DM Serif Display', serif;
      font-style: italic;
      font-size: 1.6rem;
      color: var(--straw);
    }
    .port-modal-close {
      background: none;
      border: 1.5px solid rgba(238,232,220,.3);
      cursor: pointer; color: rgba(238,232,220,.7);
      font-size: 1rem; line-height: 1;
      transition: border-color .18s, color .18s;
      display: flex; align-items: center; justify-content: center;
      width: 2rem; height: 2rem; flex-shrink: 0;
    }
    .port-modal-close:hover { border-color: var(--ochre); color: var(--ochre); }
    .port-modal-body {
      overflow-y: auto; -webkit-overflow-scrolling: touch;
      padding: 2rem; flex: 1;
      display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
    }
    .modal-full-img { max-width: 100%; display: block; }
    .modal-pdf-page {
      width: 100%;
      display: flex; flex-direction: column; align-items: center; gap: .6rem;
    }
    .modal-pdf-page canvas { max-width: 100%; display: block; border: 1.5px solid #ddd; }
    .modal-page-label {
      font-size: .64rem; color: var(--light);
      letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
    }
    .modal-loading { color: var(--mid); font-size: .95rem; padding: 3rem; text-align: center; }

    /* ─── Skills ─────────────────────────────────────────────── */
    #skills {
      background: var(--bg-skills);
      position: relative;
    }
    #skills::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(238,232,220,.07) 1.5px, transparent 1.5px);
      background-size: 16px 16px;
      pointer-events: none;
    }
    #skills .container { position: relative; z-index: 1; }
    #skills .section-header h2 { color: var(--paper); }
    #skills .section-header h2 em { color: var(--straw); }
    #skills .eyebrow { background: var(--straw); color: var(--ink); border-color: var(--ink); }
    #skills .divider { background: var(--straw); }

    .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1rem;
    }
    .skill-pill {
      background: rgba(238,232,220,.92);
      border: 1.5px solid rgba(26,24,22,.3);
      box-shadow: 3px 3px 0 rgba(26,24,22,.35);
      border-radius: 0;
      padding: 1.1rem 1.3rem;
      display: flex; align-items: center; gap: .85rem;
      transition: transform .13s, box-shadow .13s, background .13s;
      cursor: default;
    }
    .skill-pill:hover {
      transform: translate(-2px,-2px);
      box-shadow: 5px 5px 0 rgba(26,24,22,.35);
      background: var(--straw);
    }
    .skill-icon { font-size: 1.3rem; flex-shrink: 0; }
    .skill-label { font-size: .83rem; font-weight: 600; color: var(--ink); line-height: 1.3; }

    /* ─── Personality ─────────────────────────────────────────── */
    #personality {
      background: var(--bg-quirk);
      position: relative;
    }
    #personality::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(238,232,220,.08) 1.5px, transparent 1.5px);
      background-size: 15px 15px;
      pointer-events: none;
    }
    #personality .container { position: relative; z-index: 1; }
    #personality .section-header h2 { color: var(--paper) !important; }
    #personality .section-header h2 em {
      color: var(--straw);
      font-family: 'DM Serif Display', serif;
    }
    #personality .eyebrow { background: var(--straw); color: var(--ink); border-color: var(--straw); }
    #personality .divider { background: var(--straw); }

    .personality-intro {
      color: rgba(238,232,220,.75);
      font-size: .97rem;
      max-width: 600px;
      margin-bottom: 3rem;
    }

    .quirk-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1rem;
    }
    .quirk-card {
      background: rgba(238,232,220,.1);
      border: 1.5px solid rgba(238,232,220,.35);
      border-radius: 0;
      padding: 1.2rem 1.4rem;
      display: flex; align-items: flex-start; gap: .7rem;
      transition: background .18s, border-color .18s, transform .13s;
    }
    .quirk-card:hover {
      background: rgba(238,232,220,.18);
      border-color: rgba(238,232,220,.6);
      transform: translate(-2px,-2px);
    }
    .quirk-dot {
      width: 7px; height: 7px;
      background: var(--straw);
      transform: rotate(45deg);
      margin-top: .58rem; flex-shrink: 0;
    }
    .quirk-text { font-size: .85rem; color: rgba(238,232,220,.88); line-height: 1.55; }

    /* ─── Contact ────────────────────────────────────────────── */
    #contact {
      background: var(--paper);
      text-align: center;
      position: relative;
    }
    #contact::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(26,24,22,.04) 1px, transparent 1px);
      background-size: 18px 18px;
      pointer-events: none;
    }
    #contact .container { position: relative; z-index: 1; }
    #contact .section-header { margin-bottom: 2rem; }
    #contact .section-header h2 { font-size: clamp(3rem, 7vw, 5.5rem); }
    #contact .divider { margin: 1rem auto; }
    .contact-sub {
      color: var(--mid); font-size: .97rem;
      max-width: 480px; margin: 0 auto 3rem;
    }
    .contact-links {
      display: flex; justify-content: center;
      gap: 1.2rem; flex-wrap: wrap; margin-bottom: 5rem;
    }
    .contact-chip {
      display: inline-flex; align-items: center; gap: .6rem;
      background: var(--white);
      border: 2px solid var(--ink);
      box-shadow: 4px 4px 0 var(--ink);
      border-radius: 0;
      padding: .78rem 1.7rem;
      font-size: .86rem; font-weight: 600; color: var(--ink);
      transition: transform .13s, box-shadow .13s, background .13s;
    }
    .contact-chip:hover {
      transform: translate(-2px,-2px);
      box-shadow: 6px 6px 0 var(--ink);
      background: var(--straw);
    }
    .contact-chip .icon { font-size: 1rem; }

    /* ─── Footer ─────────────────────────────────────────────── */
    footer {
      background: var(--ink);
      color: rgba(238,232,220,.4);
      text-align: center;
      padding: 2rem;
      font-size: .75rem;
      letter-spacing: .08em;
      border-top: 3px solid var(--ochre);
    }
    footer span { color: var(--ochre); }
    .footnote {
      margin-top: .6rem; font-size: .7rem;
      font-style: italic; color: rgba(238,232,220,.22);
    }

    /* ─── Scroll-reveal ──────────────────────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(22px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    /* ─── Responsive ─────────────────────────────────────────── */
    @media (max-width: 720px) {
      nav { padding: 1rem 1.4rem; }
      .nav-links { gap: 1.2rem; }

      .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .stat-cluster { grid-template-columns: 1fr 1fr; }
      .jen-photo { width: 170px; height: 170px; }

      .chapter {
        grid-template-columns: 1fr; gap: .8rem; padding: 1.8rem 1.6rem;
      }
      .chapter-num { font-size: 2.4rem; }
      .chapter:nth-child(odd), .chapter:nth-child(even) { transform: none; }

      section { padding: 4rem 1.4rem; }
      .contact-links { flex-direction: column; align-items: center; }

      .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
      .port-thumb { height: 190px; }
      .port-modal-box { width: calc(100vw - 1.5rem); box-shadow: 6px 6px 0 var(--ochre); }
    }
    @media (max-width: 480px) {
      .nav-links { display: none; }
      .stat-cluster { grid-template-columns: 1fr; }
      .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    }
