  :root {
    --cream: #f4ede1;
    --cream-2: #ebe2d2;
    --paper: #faf6ee;
    --ink: #1a1612;
    --ink-2: #3a322a;
    --ink-3: #6b5f52;
    --rule: #d9cdb8;
    --terra: #c2553d;
    --terra-deep: #9e3f2b;
    --olive: #6b6a3d;
    --serif: "Instrument Serif", "Times New Roman", serif;
    --sans: "Geist", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    --hand: "Caveat", cursive;
    --mono: "JetBrains Mono", ui-monospace, monospace;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  ::selection { background: var(--terra); color: var(--paper); }
  a { color: inherit; text-decoration: none; }

  /* ---- subtle paper grain ---- */
  body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    background-image:
      radial-gradient(rgba(120,90,50,0.04) 1px, transparent 1px),
      radial-gradient(rgba(80,60,30,0.03) 1px, transparent 1px);
    background-size: 3px 3px, 7px 7px;
    background-position: 0 0, 1px 1px;
    mix-blend-mode: multiply;
    z-index: 1;
  }

  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 2; }
  @media (max-width: 720px) { .wrap { padding: 0 24px; } }

  /* ============ NAV ============ */
  nav.top {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in srgb, var(--cream) 88%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, background .3s;
  }
  nav.top.scrolled { border-bottom-color: var(--rule); }
  nav.top .inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
  }
  nav.top .mark {
    font-family: var(--serif);
    font-size: 22px;
    letter-spacing: -0.01em;
    display: flex; align-items: center; gap: 10px;
  }
  nav.top .mark .dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--terra);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--terra) 20%, transparent);
    animation: pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--terra) 20%, transparent); }
    50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--terra) 8%, transparent); }
  }
  nav.top ul { display: flex; gap: 28px; list-style: none; }
  nav.top ul a {
    font-size: 14px;
    color: var(--ink-2);
    position: relative;
    padding-bottom: 3px;
    transition: color .2s;
  }
  nav.top ul a:hover { color: var(--terra); }
  nav.top ul a::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 0; height: 1px; background: var(--terra);
    transition: width .25s ease;
  }
  nav.top ul a:hover::after { width: 100%; }
  @media (max-width: 640px) {
    nav.top ul { gap: 16px; }
    nav.top ul a { font-size: 13px; }
  }

  /* ============ HERO ============ */
  .hero {
    padding: 80px 0 100px;
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(380px, 1.4fr) minmax(300px, 0.95fr);
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
  }
  .hero-visual {
    position: relative;
    width: 100%;
    min-height: min(520px, 58vh);
  }
  .hero-photo {
    margin: 0;
    width: 100%;
    min-height: min(520px, 58vh);
    aspect-ratio: 4 / 5;
    border: 1px solid var(--rule);
    border-radius: 8px;
    overflow: hidden;
    background: var(--cream-2);
    box-shadow: 0 8px 24px -12px rgba(60,40,20,0.18), 0 2px 0 rgba(60,40,20,0.06);
    transform: rotate(-1deg);
  }
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* You on the left; tree area on the right for stickers */
    object-position: 30% 42%;
    display: block;
  }
  .hero .stickers {
    position: absolute;
    top: 6%;
    bottom: 6%;
    left: 36%;
    right: 4%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: 14px;
    pointer-events: none;
    z-index: 2;
  }
  .hero-copy {
    position: relative;
    z-index: 1;
  }
  .hero .greeting {
    font-family: var(--hand);
    font-size: 32px;
    color: var(--terra);
    margin-bottom: 4px;
    transform: rotate(-2deg);
    display: inline-block;
  }
  .hero h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(56px, 9vw, 148px);
    line-height: 0.92;
    letter-spacing: -0.03em;
    margin: 12px 0 36px;
  }
  .hero h1 .italic { font-style: italic; color: var(--ink-2); }
  .hero h1 .accent {
    position: relative;
    display: inline-block;
  }
  .hero h1 .accent svg.scribble {
    position: absolute;
    left: -4%; right: -4%;
    bottom: -8px;
    width: 108%; height: 22px;
    pointer-events: none;
  }
  .hero .lede {
    max-width: 560px;
    font-size: 22px;
    line-height: 1.5;
    color: var(--ink-2);
    margin-bottom: 36px;
  }
  .hero .lede em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink);
  }

  .currently {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 10px 18px 10px 14px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 100px;
    font-size: 14px;
    color: var(--ink-2);
    box-shadow: 0 2px 0 var(--rule);
  }
  .currently .live {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--terra);
    position: relative;
  }
  .currently .live::after {
    content: ""; position: absolute; inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--terra);
    opacity: 0;
    animation: ping 2s ease-out infinite;
  }
  @keyframes ping {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(2.4); opacity: 0; }
  }
  .currently strong { color: var(--ink); font-weight: 500; }
  .currently .where { font-family: var(--mono); font-size: 12px; color: var(--terra); }

  .sticker {
    position: relative;
    flex-shrink: 0;
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 0 8px 24px -12px rgba(60,40,20,0.18), 0 2px 0 rgba(60,40,20,0.06);
    max-width: min(220px, 100%);
    width: max-content;
    pointer-events: auto;
    transition: transform .3s cubic-bezier(.2,.8,.2,1);
  }
  .sticker:hover { transform: rotate(0deg) translateY(-3px) !important; }
  .sticker .label {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-3);
    margin-bottom: 6px;
    display: flex; align-items: center; gap: 6px;
  }
  .sticker .label::before {
    content: ""; width: 14px; height: 1px; background: var(--ink-3);
  }
  .sticker p { color: var(--ink-2); font-size: 13px; line-height: 1.45; }
  .sticker .hand { font-family: var(--hand); font-size: 18px; color: var(--terra); display: block; margin-top: 4px; }

  /* Stickers on tree side — flex stack prevents overlap */
  .sticker.s1 { transform: rotate(3deg); align-self: flex-end; }
  .sticker.s2 { transform: rotate(-4deg); align-self: center; margin-right: 8px; }
  .sticker.s3 { transform: rotate(2deg); align-self: flex-end; }
  @media (max-width: 980px) {
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .hero-visual {
      max-width: 560px;
      min-height: 480px;
      margin: 0 auto;
    }
    .hero-photo { min-height: 480px; }
    .hero-copy { text-align: left; }
    .hero h1 { font-size: clamp(56px, 13vw, 120px); }
    .hero .lede { max-width: none; }
  }
  @media (max-width: 640px) {
    .hero .stickers { display: none; }
  }

  /* ============ SECTION HEAD ============ */
  .section { padding: 90px 0; position: relative; }
  .section + .section { border-top: 1px solid var(--rule); }
  .section.alt { background: var(--cream-2); }
  .eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--terra);
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 12px;
  }
  .eyebrow::before {
    content: ""; width: 28px; height: 1px; background: var(--terra);
  }
  .section h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .section h2 em { font-style: italic; color: var(--ink-2); }
  .section .kicker {
    font-size: 18px;
    color: var(--ink-3);
    max-width: 600px;
    margin-bottom: 56px;
  }
  .section .kicker em {
    font-family: var(--hand);
    font-style: normal;
    font-size: 24px;
    color: var(--terra);
  }

  /* ============ ABOUT ============ */
  .about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
  }
  @media (max-width: 880px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
  }
  .about-prose p {
    font-family: var(--serif);
    font-size: 26px;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 18px;
  }
  .about-prose p + p { font-size: 18px; font-family: var(--sans); color: var(--ink-2); }
  .about-prose .marker {
    background: linear-gradient(transparent 62%, color-mix(in srgb, var(--terra) 35%, transparent) 62%, color-mix(in srgb, var(--terra) 35%, transparent) 92%, transparent 92%);
    padding: 0 2px;
  }

  .factcard {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 24px;
    position: relative;
  }
  .factcard h4 {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-3);
    margin-bottom: 18px;
  }
  .factcard ul { list-style: none; display: grid; gap: 14px; }
  .factcard li {
    display: grid; grid-template-columns: 90px 1fr; gap: 14px;
    font-size: 15px;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--rule);
  }
  .factcard li:last-child { border-bottom: none; padding-bottom: 0; }
  .factcard li .k {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-3);
    padding-top: 3px;
  }
  .factcard li .v { color: var(--ink); }
  .factcard li .v .note { font-family: var(--hand); color: var(--terra); font-size: 18px; display: block; line-height: 1; margin-top: 2px; }
  .factcard .tape {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 90px; height: 24px;
    background: color-mix(in srgb, var(--terra) 28%, transparent);
    border-left: 1px dashed color-mix(in srgb, var(--ink) 12%, transparent);
    border-right: 1px dashed color-mix(in srgb, var(--ink) 12%, transparent);
  }

  /* ============ JOURNEY ============ */
  .journey {
    position: relative;
    padding-left: 0;
  }
  .journey .spine {
    position: absolute;
    left: 19px; top: 8px; bottom: 8px;
    width: 1px;
    background: repeating-linear-gradient(to bottom, var(--rule) 0 6px, transparent 6px 12px);
  }
  .stop {
    position: relative;
    display: grid;
    grid-template-columns: 60px 220px 1fr;
    gap: 32px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid var(--rule);
    cursor: pointer;
    transition: background .2s;
  }
  .stop:hover { background: color-mix(in srgb, var(--paper) 60%, transparent); }
  .stop:hover .thumb { transform: rotate(-2deg) scale(1.03); }
  .stop:hover .stop-title { color: var(--terra); }
  .stop:last-child { border-bottom: none; }

  .stop .marker {
    grid-column: 1;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--rule);
    display: grid; place-items: center;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink-3);
    z-index: 2;
    margin-top: 4px;
    position: relative;
  }
  .stop.current .marker {
    background: var(--terra);
    border-color: var(--terra);
    color: var(--paper);
  }
  .stop.current .marker::after {
    content: ""; position: absolute; inset: -6px;
    border: 1px solid var(--terra);
    border-radius: 50%;
    opacity: 0.4;
    animation: ping 2.4s ease-out infinite;
  }

  .stop .thumb {
    width: 220px; height: 150px;
    background: var(--cream-2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--rule);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
    box-shadow: 0 6px 16px -10px rgba(60,40,20,0.25);
  }
  .stop .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .stop .thumb .ph {
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(135deg, transparent 0 14px, color-mix(in srgb, var(--ink) 4%, transparent) 14px 15px),
      var(--cream-2);
    display: grid; place-items: center;
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-3);
  }

  .stop .body {
    padding-top: 4px;
  }
  .stop .when {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--terra);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
  }
  .stop .stop-title {
    font-family: var(--serif);
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    transition: color .2s;
  }
  .stop .stop-title .role {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink-3);
    margin-left: 12px;
    letter-spacing: 0;
    vertical-align: middle;
    font-weight: 400;
  }
  .stop .desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-2);
    max-width: 640px;
  }
  .stop .tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 14px;
  }
  .stop .tags span {
    font-family: var(--mono);
    font-size: 10px;
    padding: 4px 9px;
    border: 1px solid var(--rule);
    border-radius: 100px;
    color: var(--ink-3);
    background: var(--paper);
    text-transform: lowercase;
  }
  .stop .more {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--terra);
    border-bottom: 1px solid color-mix(in srgb, var(--terra) 30%, transparent);
    padding-bottom: 2px;
  }
  .stop .more:hover { border-bottom-color: var(--terra); }

  @media (max-width: 900px) {
    .stop { grid-template-columns: 40px 1fr; gap: 18px; }
    .stop .thumb { display: none; }
    .stop .marker { width: 32px; height: 32px; }
    .journey .spine { left: 15px; }
  }

  /* ============ PROJECTS ============ */
  .filters {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .filters button {
    font-family: var(--mono);
    font-size: 12px;
    padding: 8px 14px;
    border: 1px solid var(--rule);
    background: transparent;
    border-radius: 100px;
    color: var(--ink-2);
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: all .2s;
  }
  .filters button:hover { border-color: var(--ink-2); color: var(--ink); }
  .filters button.active {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
  }
  .filters button .count {
    margin-left: 6px;
    opacity: 0.5;
    font-size: 10px;
  }

  .projects {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }
  .proj {
    border: 1px solid var(--rule);
    background: var(--paper);
    border-radius: 10px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
    cursor: pointer;
    position: relative;
  }
  .proj.proj-static { cursor: default; }
  .proj:hover { transform: translateY(-4px); box-shadow: 0 14px 30px -16px rgba(60,40,20,0.25); }
  .proj:hover .proj-img { transform: scale(1.03); }

  .proj.size-lg { grid-column: span 7; }
  .proj.size-md { grid-column: span 5; }
  .proj.size-sm { grid-column: span 4; }
  .proj.size-wide { grid-column: span 8; }
  @media (max-width: 980px) {
    .proj.size-lg, .proj.size-md, .proj.size-sm, .proj.size-wide { grid-column: span 6; }
  }
  @media (max-width: 640px) {
    .proj.size-lg, .proj.size-md, .proj.size-sm, .proj.size-wide { grid-column: span 12; }
  }

  .proj .img-wrap {
    aspect-ratio: 16 / 10;
    background: var(--cream-2);
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--rule);
  }
  .proj-img {
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(45deg, transparent 0 18px, color-mix(in srgb, var(--ink) 4%, transparent) 18px 19px),
      var(--cream-2);
    display: grid; place-items: center;
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
  }
  .proj-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .proj.portrait-photo .img-wrap {
    aspect-ratio: 2 / 3;
  }
  .proj.portrait-photo .proj-img {
    background: var(--cream-2);
  }
  .proj.portrait-photo .proj-img img {
    object-fit: contain;
    object-position: center top;
  }
  .proj.has-photo .proj-img .ph { display: none; }
  .proj-img .ph {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-3);
    background: var(--paper);
    padding: 6px 10px;
    border: 1px solid var(--rule);
    border-radius: 4px;
  }
  .proj.cover-tone-1 .proj-img { background: linear-gradient(135deg, #d8c4a8, #b89773); }
  .proj.cover-tone-2 .proj-img { background: linear-gradient(135deg, #b8c4a8, #7d9a73); }
  .proj.cover-tone-3 .proj-img { background: linear-gradient(135deg, #e0b8a8, #c2553d); }
  .proj.cover-tone-4 .proj-img { background: linear-gradient(135deg, #b8a8d8, #7d73a0); }
  .proj.cover-tone-1 .proj-img .ph,
  .proj.cover-tone-2 .proj-img .ph,
  .proj.cover-tone-3 .proj-img .ph,
  .proj.cover-tone-4 .proj-img .ph { color: rgba(0,0,0,0.55); border-color: rgba(0,0,0,0.12); background: rgba(255,255,255,0.55); }

  .proj .meta {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px 0;
  }
  .proj .meta .cat {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--terra);
  }
  .proj .meta .date {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-3);
  }
  .proj h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    padding: 8px 22px 6px;
  }
  .proj .blurb {
    padding: 0 22px 22px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-2);
    flex: 1;
  }
  .proj .footer {
    padding: 0 22px 22px;
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-3);
  }
  .proj .footer .arrow {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--cream);
    display: grid; place-items: center;
    transition: transform .3s;
  }
  .proj:hover .footer .arrow { transform: rotate(-45deg); }

  /* ============ ELSEWHERE ============ */
  .elsewhere {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }
  .else-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 22px;
    transition: transform .25s, border-color .25s;
    cursor: pointer;
  }
  .else-card:hover { transform: translateY(-3px); border-color: var(--ink-2); }
  .else-card .icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--cream-2);
    border: 1px solid var(--rule);
    display: grid; place-items: center;
    font-family: var(--serif);
    font-size: 16px;
    margin-bottom: 14px;
  }
  .else-card h5 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 6px;
  }
  .else-card p {
    font-size: 13px;
    color: var(--ink-3);
    line-height: 1.4;
  }

  /* ============ FOOTER ============ */
  footer.foot {
    background: var(--ink);
    color: var(--cream);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
  }
  footer.foot::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 4px 4px;
    pointer-events: none;
  }
  footer.foot .big {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(56px, 10vw, 144px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 48px;
  }
  footer.foot .big em { font-style: italic; color: color-mix(in srgb, var(--terra) 80%, var(--cream)); }
  footer.foot .big a {
    border-bottom: 2px solid var(--terra);
    transition: color .2s;
  }
  footer.foot .big a:hover { color: var(--terra); }
  footer.foot .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  @media (max-width: 720px) { footer.foot .row { grid-template-columns: 1fr; gap: 28px; } }
  footer.foot .col h6 {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 14px;
    font-weight: 500;
  }
  footer.foot .col a, footer.foot .col p {
    display: block;
    color: var(--cream);
    font-size: 15px;
    margin-bottom: 6px;
    opacity: 0.9;
    transition: opacity .2s, color .2s;
  }
  footer.foot .col a:hover { color: var(--terra); opacity: 1; }
  footer.foot .col .hand { font-family: var(--hand); color: color-mix(in srgb, var(--terra) 80%, var(--cream)); font-size: 22px; }
  footer.foot .colophon {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between;
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.04em;
    flex-wrap: wrap;
    gap: 12px;
  }
  footer.foot .colophon span { display: flex; align-items: center; gap: 8px; }

  /* fade-in on scroll */
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
  .reveal.in { opacity: 1; transform: none; }

  /* subpages (grad reflections, etc.) */
  .subpage-main {
    padding: 48px 0 90px;
    position: relative;
    z-index: 2;
  }
  .subpage-main h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(40px, 6vw, 56px);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .subpage-main .subpage-lede {
    font-size: 18px;
    color: var(--ink-3);
    max-width: 640px;
    margin-bottom: 48px;
  }
  .subpage-main .content {
    max-width: 720px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-2);
  }
  .subpage-main .content h2,
  .subpage-main .content h3,
  .subpage-main .content h4,
  .subpage-main .content h5 {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--ink);
    margin: 2em 0 0.5em;
  }
  .subpage-main .content h4 { font-size: 22px; }
  .subpage-main .content h5 { font-size: 20px; }
  .subpage-main .content ul { margin: 1em 0 1em 1.25em; }
  .subpage-main .content a {
    color: var(--terra);
    border-bottom: 1px solid color-mix(in srgb, var(--terra) 35%, transparent);
  }
  .subpage-main .content a:hover { border-bottom-color: var(--terra); }
  .reflection-post {
    margin-bottom: 20px;
    border: 1px solid var(--rule);
    border-radius: 8px;
    overflow: hidden;
    background: var(--paper);
  }
  .reflection-header {
    cursor: pointer;
    padding: 18px 22px;
    background: var(--paper);
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
  }
  .reflection-header h5 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    display: inline;
    color: var(--ink);
  }
  .reflection-header .date {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-3);
    display: block;
    margin-top: 6px;
  }
  .reflection-header .toggle {
    float: right;
    font-weight: 500;
    color: var(--ink-3);
  }
  .reflection-body {
    display: none;
    padding: 0 22px 22px;
    border-top: 1px dashed var(--rule);
  }
  .reflection-body.open { display: block; padding-top: 18px; }

  /* birthday goals */
  .goal-year {
    margin-bottom: 72px;
    padding-bottom: 72px;
    border-bottom: 1px solid var(--rule);
  }
  .goal-year:last-of-type { border-bottom: none; padding-bottom: 0; }
  .goal-year-head { max-width: 720px; margin-bottom: 40px; }
  .goal-year h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .goal-year-tagline {
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
    color: var(--ink-2);
    line-height: 1.35;
    margin-bottom: 12px;
  }
  .goal-year-dates {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--terra);
    margin-bottom: 20px;
  }
  .goal-section-banner {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin: 56px 0 28px;
    padding: 20px 24px;
    border-radius: 10px;
    border: 1px solid var(--rule);
    line-height: 1;
  }
  .goal-section-banner:first-of-type { margin-top: 0; }
  .goal-section-banner.section-internal {
    background: color-mix(in srgb, var(--terra) 10%, var(--paper));
    border-color: color-mix(in srgb, var(--terra) 35%, var(--rule));
    color: var(--ink);
  }
  .goal-section-banner.section-internal::after {
    content: "Inside";
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--terra);
    margin-top: 10px;
  }
  .goal-section-banner.section-external {
    background: color-mix(in srgb, var(--olive) 14%, var(--paper));
    border-color: color-mix(in srgb, var(--olive) 40%, var(--rule));
    color: var(--ink);
  }
  .goal-section-banner.section-external::after {
    content: "Out in the world";
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--olive);
    margin-top: 10px;
  }
  .goal-category-label {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .goal-num {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-3);
    margin-right: 6px;
  }
  .goal-seasons {
    margin-top: 64px;
    max-width: 720px;
  }
  .goal-seasons-title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 8px;
  }
  .goal-seasons-lede {
    font-size: 16px;
    color: var(--ink-3);
    margin-bottom: 20px;
  }
  .goal-season {
    border: 1px solid var(--rule);
    border-radius: 8px;
    background: var(--paper);
    margin-bottom: 10px;
    overflow: hidden;
  }
  .goal-season summary {
    cursor: pointer;
    padding: 16px 20px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    list-style: none;
  }
  .goal-season summary::-webkit-details-marker { display: none; }
  .goal-season summary::after {
    content: "▼";
    float: right;
    font-size: 11px;
    color: var(--ink-3);
  }
  .goal-season[open] summary::after { content: "▲"; }
  .goal-season p {
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-2);
    border-top: 1px dashed var(--rule);
    margin: 0;
  }
  .goal-year-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-3);
  }
  .goal-year-stats strong { color: var(--ink); font-weight: 500; }
  .stat-pill {
    padding: 4px 10px;
    border: 1px solid var(--rule);
    border-radius: 100px;
    background: var(--paper);
  }
  .progress {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .progress-year { max-width: 480px; margin-top: 4px; }
  .progress-track {
    flex: 1;
    height: 8px;
    background: var(--cream-2);
    border: 1px solid var(--rule);
    border-radius: 100px;
    overflow: hidden;
  }
  .progress-fill {
    height: 100%;
    background: var(--terra);
    border-radius: 100px;
    transition: width .6s cubic-bezier(.2,.8,.2,1);
  }
  .progress-label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-3);
    min-width: 36px;
    text-align: right;
  }
  .goal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
  .goal-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .goal-photo {
    aspect-ratio: 16 / 10;
    background: var(--cream-2);
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
  }
  .goal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .goal-photo--contain {
    background: var(--cream-2);
  }
  .goal-photo--contain img {
    object-fit: contain;
    padding: 16px;
  }
  .goal-accountability {
    margin-top: 64px;
    max-width: 720px;
    padding: 28px 32px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 10px;
    box-shadow: 0 2px 0 var(--rule);
  }
  .goal-accountability-kicker {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--terra);
    margin-bottom: 12px;
  }
  .goal-accountability-text {
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-2);
    margin-bottom: 12px;
  }
  .goal-accountability-text em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink);
  }
  .goal-accountability-hand {
    font-family: var(--hand);
    font-size: 24px;
    color: var(--terra);
    line-height: 1.3;
  }
  .goal-accountability-hand a {
    color: var(--terra);
    border-bottom: 2px solid color-mix(in srgb, var(--terra) 40%, transparent);
  }
  .goal-accountability-hand a:hover {
    border-bottom-color: var(--terra);
  }
  .goal-photo a { display: block; height: 100%; }
  .goal-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
  .goal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
  }
  .goal-head h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
  }
  .goal-head h3 a {
    color: var(--ink);
    border-bottom: none;
  }
  .goal-head h3 a:hover { color: var(--terra); }
  .goal-status {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-3);
    padding: 4px 8px;
    border: 1px solid var(--rule);
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .goal-card.status-done .goal-status {
    background: color-mix(in srgb, var(--terra) 12%, var(--paper));
    color: var(--terra-deep);
    border-color: color-mix(in srgb, var(--terra) 35%, var(--rule));
  }
  .goal-card.status-in_progress .goal-status {
    background: var(--cream-2);
    color: var(--ink-2);
  }
  .goal-desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-2);
    margin-bottom: 16px;
    flex: 1;
  }
  .goal-card.status-done .progress-fill { background: var(--terra-deep); }
  .goal-card.status-not_started .progress-fill {
    background: color-mix(in srgb, var(--ink-3) 50%, var(--rule));
  }
  .goal-empty {
    font-size: 16px;
    color: var(--ink-3);
    font-style: italic;
    padding: 24px;
    background: var(--paper);
    border: 1px dashed var(--rule);
    border-radius: 8px;
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    nav.top .mark .dot,
    .currently .live::after,
    .stop.current .marker::after { animation: none; }
    .sticker,
    .proj,
    .else-card,
    .stop .thumb { transition: none; }
  }
