/* ══════════════════════════════════════════════════
       DESIGN TOKENS
    ══════════════════════════════════════════════════ */
    :root {
      --green:       #18453B;
      --green-dark:  #0f2d26;
      --green-mid:   #1e5547;
      --green-tint:  #eaf1ef;
      --green-pale:  #f3f8f6;

      --ink:         #111827;
      --ink-2:       #374151;
      --muted:       #6b7280;
      --subtle:      #9ca3af;
      --border:      #e5e7eb;
      --border-2:    #d1d5db;
      --bg:          #fafafa;
      --white:       #ffffff;

      --font-serif: 'Playfair Display', 'Georgia', serif;
      --font-sans:  'Inter', system-ui, sans-serif;
      --font-mono:  'JetBrains Mono', monospace;

      --r-xs:   6px;
      --r-sm:   10px;
      --r-md:   16px;
      --r-lg:   20px;
      --r-xl:   28px;
      --r-pill: 999px;

      --sh-xs: 0 1px 2px rgba(0,0,0,.05);
      --sh-sm: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
      --sh-md: 0 4px 20px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
      --sh-lg: 0 16px 48px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.05);

      --ease: cubic-bezier(.25,.46,.45,.94);
    }

    /* ══════════════════════════════════════════════════
       RESET
    ══════════════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-sans);
      background: var(--bg);
      color: var(--ink);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    img { display: block; max-width: 100%; }

    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 99px; }

    .wrap { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }

    /* ══════════════════════════════════════════════════
       NAVIGATION
    ══════════════════════════════════════════════════ */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0 2rem;
      transition: background .3s, border-color .3s, box-shadow .3s;
      border-bottom: 1px solid transparent;
    }
    #nav.scrolled {
      background: rgba(250,250,250,.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-color: var(--border);
      box-shadow: var(--sh-xs);
    }
    .nav-inner {
      max-width: 1080px; margin: 0 auto;
      height: 64px;
      display: flex; align-items: center; justify-content: space-between;
    }

    .nav-brand {
      display: flex; align-items: center; gap: .75rem;
    }
    .nav-monogram {
      width: 34px; height: 34px;
      background: var(--green); border-radius: var(--r-sm);
      display: grid; place-items: center;
      font-family: var(--font-serif); font-size: .85rem;
      color: #fff; font-weight: 600; letter-spacing: -.02em;
    }
    .nav-name {
      font-size: .88rem; font-weight: 600; color: var(--ink);
      letter-spacing: -.01em;
    }
    .nav-title-small {
      font-size: .72rem; color: var(--muted); font-weight: 400;
    }

    .nav-links {
      display: flex; align-items: center; gap: 1.75rem;
    }
    .nav-links a {
      font-size: .82rem; font-weight: 500; color: var(--muted);
      letter-spacing: .01em;
      transition: color .2s;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
      height: 1px; background: var(--green);
      transform: scaleX(0); transition: transform .2s var(--ease);
    }
    .nav-links a:hover { color: var(--green); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-resume {
      font-size: .8rem; font-weight: 600;
      padding: .45rem 1.1rem;
      background: var(--green); color: #fff;
      border-radius: var(--r-sm);
      transition: background .2s, transform .15s var(--ease);
    }
    .nav-resume:hover { background: var(--green-dark); transform: translateY(-1px); }

    /* Hamburger */
    .nav-burger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer;
      padding: .4rem; z-index: 101;
    }
    .nav-burger span {
      display: block; width: 20px; height: 1.5px;
      background: var(--ink); border-radius: 99px;
      transition: all .3s var(--ease);
    }
    .nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-burger.open span:nth-child(2) { opacity: 0; }
    .nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Mobile overlay */
    .mob-menu {
      display: none; position: fixed; inset: 0; z-index: 99;
      background: var(--white);
      flex-direction: column; align-items: center; justify-content: center;
      gap: 2rem; opacity: 0; pointer-events: none;
      transition: opacity .25s;
    }
    .mob-menu.open { opacity: 1; pointer-events: all; }
    .mob-menu a {
      font-family: var(--font-serif);
      font-size: 2.2rem; color: var(--ink);
      transition: color .2s;
    }
    .mob-menu a:hover { color: var(--green); }

    /* ══════════════════════════════════════════════════
       HERO
    ══════════════════════════════════════════════════ */
    #hero {
      min-height: 88svh;
      display: flex; align-items: flex-start;
      padding-top: 96px;
      position: relative;
      overflow: hidden;
    }

    /* Geometric background accent */
    .hero-geo {
      position: absolute; top: 0; right: 0;
      width: 46%; height: 100%;
      background: linear-gradient(90deg, rgba(243,248,246,0), var(--green-pale) 26%, var(--green-pale));
      clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
      pointer-events: none;
    }
    .hero-geo-line {
      display: none;
      pointer-events: none;
    }

    .hero-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
      max-width: 1080px; margin: 0 auto;
      padding: 3.5rem 2rem 4.5rem; width: 100%;
      position: relative; z-index: 1;
    }

    .hero-eyebrow {
      display: flex; align-items: center; gap: .65rem;
      margin-bottom: 1.75rem;
      opacity: 0; animation: fadeUp .6s .1s var(--ease) forwards;
    }
    .hero-eyebrow-line {
      width: 32px; height: 1px; background: var(--green);
    }
    .hero-eyebrow-text {
      font-size: .75rem; font-weight: 600; color: var(--green);
      letter-spacing: .12em; text-transform: uppercase;
    }

    .hero-name {
      font-family: var(--font-serif);
      font-size: clamp(2.8rem, 5.5vw, 4.5rem);
      line-height: 1.1; letter-spacing: -.02em;
      color: var(--ink);
      margin-bottom: 1rem;
      opacity: 0; animation: fadeUp .6s .25s var(--ease) forwards;
    }
    .hero-name em { color: var(--green); font-style: italic; }

    .hero-tagline {
      font-size: 1rem; color: var(--muted);
      line-height: 1.75; max-width: 44ch;
      margin-bottom: 2.25rem;
      opacity: 0; animation: fadeUp .6s .4s var(--ease) forwards;
    }

    .hero-actions {
      display: flex; gap: .75rem; flex-wrap: wrap;
      opacity: 0; animation: fadeUp .6s .55s var(--ease) forwards;
    }

    .btn {
      display: inline-flex; align-items: center; gap: .45rem;
      padding: .72rem 1.5rem;
      font-family: var(--font-sans); font-size: .82rem; font-weight: 600;
      border-radius: var(--r-sm); cursor: pointer;
      transition: all .2s var(--ease); white-space: nowrap;
    }
    .btn-primary {
      background: var(--green); color: #fff;
      box-shadow: 0 2px 8px rgba(24,69,59,.25);
    }
    .btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(24,69,59,.3); }
    .btn-ghost {
      background: transparent; color: var(--ink);
      border: 1px solid var(--border-2);
    }
    .btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-1px); }

    /* Hero right panel — portrait + details */
    .hero-right {
      display: flex; flex-direction: column; align-items: center; gap: 2rem;
      opacity: 0; animation: fadeIn .8s .3s var(--ease) forwards;
    }
    .hero-portrait {
      width: 260px;
      height: 260px;
      aspect-ratio: 1 / 1;
      background: var(--green-tint);
      border-radius: var(--r-xl);
      overflow: hidden;
      box-shadow: var(--sh-md);
      position: relative;
    }
    .hero-portrait-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: .5rem; color: var(--green); opacity: .35;
      font-size: .72rem; font-family: var(--font-mono);
    }
    .hero-portrait::after {
      content: '';
      position: absolute; inset: 0;
      border-radius: var(--r-xl);
      box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
    }


    .hero-photo,
    .about-photo-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      background: var(--green-tint);
    }

    .hero-details {
      display: flex; flex-direction: column; gap: .75rem; width: 100%; max-width: 260px;
    }
    .hero-detail-row {
      display: flex; align-items: center; gap: .75rem;
      padding: .7rem .9rem;
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--r-md); box-shadow: var(--sh-xs);
    }
    .hero-detail-icon {
      width: 30px; height: 30px; border-radius: var(--r-xs);
      background: var(--green-pale);
      display: grid; place-items: center; flex-shrink: 0;
      color: var(--green);
    }
    .hero-detail-label { font-size: .67rem; color: var(--subtle); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
    .hero-detail-val { font-size: .82rem; font-weight: 600; color: var(--ink); }

    /* ══════════════════════════════════════════════════
       SECTION SHARED
    ══════════════════════════════════════════════════ */
    section { padding: 5.5rem 0; }

    .section-label {
      display: flex; align-items: center; gap: .75rem;
      margin-bottom: 1rem;
    }
    .section-label-line { width: 28px; height: 1px; background: var(--green); }
    .section-label-text {
      font-size: .7rem; font-weight: 700; color: var(--green);
      letter-spacing: .14em; text-transform: uppercase;
    }

    .section-heading {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      letter-spacing: -.02em; line-height: 1.15;
      color: var(--ink); margin-bottom: .65rem;
    }
    .section-sub {
      font-size: .9rem; color: var(--muted);
      line-height: 1.75; max-width: 52ch;
      margin-bottom: 3rem;
    }

    /* Alternating section backgrounds */
    #about      { background: var(--white); }
    #experience { background: var(--bg); }
    #education  { background: var(--white); }
    #projects   { background: var(--bg); }
    #contact    { background: var(--white); }

    /* ══════════════════════════════════════════════════
       ABOUT
    ══════════════════════════════════════════════════ */
    .about-grid {
      display: grid; grid-template-columns: 260px 1fr;
      gap: 4rem; align-items: start;
    }

    .about-photo-col { position: relative; }
    .about-photo {
      width: 100%;
      aspect-ratio: 1 / 1;
      background: var(--green-tint);
      border-radius: var(--r-xl);
      overflow: hidden; box-shadow: var(--sh-md);
    }
    .about-photo-ph {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: .5rem; color: var(--green); opacity: .3;
      font-size: .72rem; font-family: var(--font-mono);
    }
    .about-accent {
      position: absolute; bottom: -12px; right: -12px;
      background: var(--green);
      color: #fff; padding: .6rem 1rem;
      border-radius: var(--r-md); font-size: .72rem; font-weight: 600;
      line-height: 1.4; text-align: center; box-shadow: var(--sh-sm);
    }

    .about-lead {
      font-family: var(--font-serif);
      font-size: 1.25rem; line-height: 1.65;
      color: var(--ink-2); margin-bottom: 1.1rem;
    }
    .about-body {
      font-size: .9rem; color: var(--muted);
      line-height: 1.8; margin-bottom: 2rem;
    }

    .skills-section { margin-bottom: 1.4rem; }
    .skills-label {
      font-size: .68rem; font-weight: 700; color: var(--green);
      letter-spacing: .12em; text-transform: uppercase;
      margin-bottom: .5rem;
      display: flex; align-items: center; gap: .5rem;
    }
    .skills-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    .chips-row { display: flex; flex-wrap: wrap; gap: .35rem; }
    .chip {
      font-family: var(--font-mono); font-size: .68rem; font-weight: 500;
      padding: .28rem .7rem; border-radius: var(--r-pill);
      background: var(--bg); border: 1px solid var(--border-2);
      color: var(--ink-2);
      transition: all .18s var(--ease);
    }
    .chip:hover { background: var(--green); color: #fff; border-color: var(--green); transform: translateY(-1px); }

    /* ══════════════════════════════════════════════════
       ALTERNATING TIMELINE
    ══════════════════════════════════════════════════ */
    .tl {
      position: relative;
    }
    /* Centre rail */
    .tl::before {
      content: '';
      position: absolute; top: 8px; bottom: 8px;
      left: 50%; transform: translateX(-50%);
      width: 1px;
      background: var(--border-2);
    }

    .tl-item {
      display: grid;
      grid-template-columns: 1fr 48px 1fr;
      align-items: start;
      margin-bottom: 3rem;
    }
    .tl-item:last-child { margin-bottom: 0; }

    /* Centre dot column */
    .tl-dot-col {
      display: flex; justify-content: center;
      padding-top: 1.1rem;
    }
    .tl-dot {
      width: 12px; height: 12px; border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--green);
      flex-shrink: 0;
      transition: background .2s, transform .2s var(--ease);
    }
    .tl-item:hover .tl-dot { background: var(--green); transform: scale(1.3); }

    /* Meta block */
    .tl-meta { padding-top: .9rem; }
    .tl-year {
      font-family: var(--font-serif);
      font-size: 1.3rem; color: var(--green);
      line-height: 1; margin-bottom: .3rem;
    }
    .tl-role {
      font-size: .78rem; font-weight: 600; color: var(--muted);
      line-height: 1.4;
    }

    /* ODD: meta left (right-align), card right */
    .tl-item:nth-child(odd) .tl-meta    { grid-column:1; grid-row:1; text-align:right; padding-right:1.25rem; }
    .tl-item:nth-child(odd) .tl-dot-col { grid-column:2; grid-row:1; }
    .tl-item:nth-child(odd) .tl-card    { grid-column:3; grid-row:1; }

    /* EVEN: card left, meta right (left-align) */
    .tl-item:nth-child(even) .tl-card    { grid-column:1; grid-row:1; }
    .tl-item:nth-child(even) .tl-dot-col { grid-column:2; grid-row:1; }
    .tl-item:nth-child(even) .tl-meta    { grid-column:3; grid-row:1; text-align:left; padding-left:1.25rem; }

    /* Card */
    .tl-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 1.4rem 1.5rem;
      box-shadow: var(--sh-sm);
      transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s;
    }
    #experience .tl-card { background: var(--white); }
    #education  .tl-card { background: var(--bg); }

    .tl-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: var(--green); }

    .tl-card-title {
      font-family: var(--font-serif);
      font-size: 1.05rem; color: var(--ink);
      margin-bottom: .2rem;
      display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap;
    }
    .tl-badge {
      font-family: var(--font-sans);
      font-size: .6rem; font-weight: 700;
      padding: .15rem .5rem; border-radius: var(--r-pill);
      background: var(--green-tint); color: var(--green);
      text-transform: uppercase; letter-spacing: .06em;
      vertical-align: middle;
    }
    .tl-card-loc {
      font-size: .75rem; color: var(--subtle);
      font-weight: 500; margin-bottom: .7rem;
      display: flex; align-items: center; gap: .35rem;
    }
    .tl-card-desc {
      font-size: .85rem; color: var(--muted);
      line-height: 1.75; margin-bottom: .9rem;
    }
    .tl-tags { display: flex; flex-wrap: wrap; gap: .3rem; }
    .tl-tag {
      font-family: var(--font-mono); font-size: .62rem;
      padding: .18rem .5rem; border-radius: var(--r-pill);
      background: var(--bg); border: 1px solid var(--border);
      color: var(--muted);
    }

    /* Minors row inside edu card */
    .tl-minors-label {
      font-size: .62rem; font-weight: 700; color: var(--green);
      text-transform: uppercase; letter-spacing: .1em; margin-bottom: .4rem;
    }
    .tl-minor-chips { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .75rem; }
    .tl-minor-chip {
      font-family: var(--font-mono); font-size: .62rem; font-weight: 500;
      padding: .18rem .5rem; border-radius: var(--r-pill);
      background: var(--green-tint); border: 1px solid var(--green-tint);
      color: var(--green);
    }

    /* Mobile collapse */
    @media (max-width: 680px) {
      .tl::before { left: 7px; transform: none; }
      .tl-item { grid-template-columns: 1fr; padding-left: 2rem; margin-bottom: 2rem; position: relative; }
      .tl-dot-col { display: none; }
      .tl-item::before {
        content: ''; position: absolute; left: 0; top: 1rem;
        width: 12px; height: 12px; border-radius: 50%;
        background: var(--white); border: 2px solid var(--green);
      }
      .tl-item:nth-child(odd)  .tl-meta,
      .tl-item:nth-child(even) .tl-meta {
        grid-column:1 !important; grid-row:1 !important;
        text-align:left !important; padding: 0 0 .6rem !important;
      }
      .tl-item:nth-child(odd)  .tl-card,
      .tl-item:nth-child(even) .tl-card {
        grid-column:1 !important; grid-row:2 !important;
      }
    }

    /* ══════════════════════════════════════════════════
       PROJECTS
    ══════════════════════════════════════════════════ */
    .proj-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.1rem;
    }

    .proj-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 1.6rem;
      display: flex; flex-direction: column;
      box-shadow: var(--sh-sm);
      transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s;
    }
    .proj-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); border-color: var(--green); }

    .proj-header {
      display: flex; align-items: flex-start;
      justify-content: space-between; gap: .75rem; margin-bottom: 1rem;
    }
    .proj-icon-wrap {
      width: 44px; height: 44px;
      border-radius: var(--r-md); background: var(--green-pale);
      display: grid; place-items: center; flex-shrink: 0;
      color: var(--green);
    }
    .proj-links { display: flex; gap: .35rem; }
    .proj-link {
      width: 30px; height: 30px;
      border: 1px solid var(--border); border-radius: var(--r-xs);
      background: var(--bg); display: grid; place-items: center;
      color: var(--muted); transition: all .18s;
    }
    .proj-link:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }

    .proj-title {
      font-family: var(--font-serif);
      font-size: 1.05rem; margin-bottom: .4rem; color: var(--ink);
    }
    .proj-desc {
      font-size: .84rem; color: var(--muted);
      line-height: 1.7; flex: 1; margin-bottom: 1rem;
    }
    .proj-tags { display: flex; flex-wrap: wrap; gap: .3rem; }
    .proj-tag {
      font-family: var(--font-mono); font-size: .62rem;
      padding: .18rem .5rem; border-radius: var(--r-pill);
      background: var(--green-tint); color: var(--green); font-weight: 500;
    }

    /* ══════════════════════════════════════════════════
       CONTACT
    ══════════════════════════════════════════════════ */
    .contact-wrap {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
    }

    .contact-heading {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      letter-spacing: -.02em; line-height: 1.2;
      margin-bottom: .75rem;
    }
    .contact-heading em { font-style: italic; color: var(--green); }
    .contact-sub {
      font-size: .9rem; color: var(--muted);
      line-height: 1.78; margin-bottom: 1.75rem;
    }

    .contact-items { display: flex; flex-direction: column; gap: .65rem; }
    .contact-row {
      display: flex; align-items: center; gap: 1rem;
      padding: .9rem 1.1rem;
      background: var(--bg); border: 1px solid var(--border);
      border-radius: var(--r-lg);
      transition: all .2s var(--ease);
    }
    .contact-row:hover { border-color: var(--green); background: var(--green-pale); transform: translateX(4px); }
    .contact-row:hover .contact-arrow { color: var(--green); }

    .contact-icon {
      width: 36px; height: 36px; border-radius: var(--r-xs); flex-shrink: 0;
      background: var(--white); border: 1px solid var(--border);
      display: grid; place-items: center; color: var(--muted);
    }
    .contact-info { flex: 1; min-width: 0; }
    .contact-name { font-size: .82rem; font-weight: 600; color: var(--ink); }
    .contact-val {
      font-family: var(--font-mono); font-size: .68rem; color: var(--subtle);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .contact-arrow { color: var(--border); font-size: .9rem; transition: color .2s; }

    /* ══════════════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════════════ */
    footer {
      background: var(--ink); padding: 1.75rem 2rem;
    }
    .footer-inner {
      max-width: 1080px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: .75rem;
    }
    .footer-left { font-size: .75rem; color: rgba(255,255,255,.35); }
    .footer-right {
      display: flex; align-items: center; gap: .6rem;
      font-size: .75rem; color: rgba(255,255,255,.35);
    }
    .footer-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--green); }

    /* ══════════════════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════════════════ */
    @keyframes fadeUp {
      from { opacity:0; transform:translateY(14px); }
      to   { opacity:1; transform:none; }
    }
    @keyframes fadeIn {
      from { opacity:0; }
      to   { opacity:1; }
    }

    .reveal { opacity:0; transform:translateY(16px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
    .reveal.in { opacity:1; transform:none; }

    /* ══════════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════════ */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
      .hero-geo, .hero-geo-line { display: none; }
      .hero-tagline { max-width: 100%; }
      .hero-actions { justify-content: center; }
      .hero-right { flex-direction: row; flex-wrap: wrap; justify-content: center; }
      .hero-portrait { width: 190px; height: 190px; }
      .hero-details { flex-direction: row; flex-wrap: wrap; max-width: 100%; justify-content: center; }
      .hero-detail-row { flex: 1 1 180px; }
      .hero-eyebrow { justify-content: center; }

      .about-grid { grid-template-columns: 1fr; }
      .about-photo-col { display: flex; flex-direction: column; align-items: center; }
      .about-photo { max-width: 220px; aspect-ratio: 1 / 1; border-radius: var(--r-xl); }
      .about-accent { position: static; margin-top: .75rem; }

      .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-resume { display: none; }
      .nav-burger { display: flex; }
      .mob-menu { display: flex; }
      section { padding: 4rem 0; }
      .footer-inner { justify-content: center; text-align: center; }
    }

    @media (max-width: 480px) {
      .wrap { padding: 0 1.25rem; }
      .hero-inner { padding: 3.5rem 1.25rem; }
      .proj-grid { grid-template-columns: 1fr; }
    }

    .hero-portrait-mark {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: .55rem;
      padding: 1.35rem;
      color: var(--green-dark);
      background: linear-gradient(145deg, var(--green-pale), var(--green-tint));
      font-family: var(--font-serif);
      font-size: 1.35rem;
      line-height: 1;
      letter-spacing: -.02em;
    }

    .hero-portrait-mark span:first-child {
      font-family: var(--font-mono);
      font-size: .8rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--green);
    }

    .hero-portrait-mark span:nth-child(2) {
      font-size: 2rem;
    }

    .hero-portrait-mark span:last-child {
      font-family: var(--font-sans);
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .about-focus-card {
      align-items: flex-start;
      justify-content: flex-end;
      text-align: left;
      padding: 1.5rem;
      gap: .7rem;
      opacity: 1;
      color: var(--ink);
      background:
        linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.85)),
        var(--green-tint);
    }

    .about-focus-card .focus-kicker {
      font-family: var(--font-mono);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green);
    }

    .about-focus-card strong {
      font-family: var(--font-serif);
      font-size: 1.55rem;
      line-height: 1.1;
      color: var(--green-dark);
    }

    .about-focus-card span:last-child {
      font-family: var(--font-sans);
      font-size: .85rem;
      line-height: 1.65;
      color: var(--ink-2);
    }


    .photo-pending::before {
      content: 'photo.jpg';
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      font-family: var(--font-mono);
      font-size: .75rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--green);
      background: linear-gradient(145deg, var(--green-pale), var(--green-tint));
    }
