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

    :root {
      --bg: #0a0a0a;
      --text: #f0ede8;
      --text-muted: #b0aca6;
      --text-faint: #666260;
      --underline: rgba(240,237,232,0.4);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 16px;
      line-height: 1.7;
      color: var(--text);
      background: var(--bg);
      min-height: 100vh;
    }

    a { color: var(--text); text-decoration: none; }

    /* ── NAV ── */
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 48px;
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--bg);
    }

    .nav-name {
      font-family: 'Cormorant Garant', Georgia, serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--text);
      cursor: pointer;
      letter-spacing: 0.01em;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }

    .nav-links li a {
      font-size: 14px;
      font-weight: 400;
      color: var(--text);
      letter-spacing: 0.02em;
      padding-bottom: 3px;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
      border-bottom-color: var(--text);
    }

    .nav-icons {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .nav-icons a {
      display: flex;
      align-items: center;
      opacity: 0.7;
      transition: opacity 0.2s;
    }

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

    .nav-icons svg {
      width: 16px;
      height: 16px;
      fill: var(--text);
    }

    /* ── PAGES ── */
    .page { display: none; }
    .page.active { display: block; }

    /* ── HOME ── */
    .home-heading {
      padding: 24px 48px 32px;
    }

    .home-heading h1 {
      font-family: 'Cormorant Garant', Georgia, serif;
      font-size: clamp(42px, 5.5vw, 72px);
      font-weight: 400;
      line-height: 1.15;
      color: var(--text);
      max-width: 900px;
      letter-spacing: -0.01em;
    }

    .home-split {
      display: grid;
      grid-template-columns: 42% 58%;
      min-height: 480px;
      padding-left: 48px;
      align-items: start;
    }

    .home-photo {
      width: 100%;
      background: #1a1816;
      overflow: hidden;
      font-size: 13px;
      color: var(--text-faint);
      font-style: italic;
    }

    .home-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }

    .about-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .home-bio {
      padding: 0 48px 48px 32px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .home-bio p {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.9;
      margin-bottom: 20px;
      max-width: 100%;
      font-weight: 300;
      letter-spacing: 0.01em;
    }

    .home-bio p.bio-lead {
      font-family: 'Cormorant Garant', Georgia, serif;
      font-size: clamp(20px, 2.2vw, 26px);
      font-weight: 400;
      font-style: italic;
      color: var(--text);
      line-height: 1.5;
      margin-bottom: 24px;
      letter-spacing: 0;
    }

    .home-bio-social {
      display: flex;
      gap: 16px;
      margin-top: 24px;
    }

    .home-bio-social a {
      display: flex;
      align-items: center;
      opacity: 0.6;
      transition: opacity 0.2s;
    }

    .home-bio-social a:hover { opacity: 1; }

    .home-bio-social svg {
      width: 20px;
      height: 20px;
      fill: var(--text);
    }

    /* ── HOME ROUTING ── */
    .home-routing {
      display: grid;
      grid-template-columns: 1fr 1fr;
      margin-top: 40px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 2px;
    }
    .route-card {
      padding: 36px 32px 40px;
      text-decoration: none;
      display: block;
      border-bottom: 3px solid transparent;
      transition: background 0.2s, border-color 0.2s;
    }
    .route-card.qa {
      border-right: 1px solid rgba(255,255,255,0.12);
    }
    .route-card:hover { background: rgba(255,255,255,0.03); }
    .route-card.qa:hover { border-bottom-color: var(--teal); }
    .route-card.pm:hover { border-bottom-color: var(--amber); }
    .route-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .route-card.qa .route-label { color: var(--teal); }
    .route-card.pm .route-label { color: var(--amber); }
    .route-heading {
      font-family: 'Cormorant Garant', Georgia, serif;
      font-size: 34px;
      font-weight: 400;
      color: var(--text);
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .route-roles {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
    }
    .route-role-tag {
      font-size: 12px;
      padding: 6px 14px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      color: var(--text-muted);
    }
    .route-arrow {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-faint);
      transition: color 0.2s;
    }
    .route-card.qa:hover .route-arrow { color: var(--teal); }
    .route-card.pm:hover .route-arrow { color: var(--amber); }

    /* ── BLOG ── */
    .blog-intro {
      padding: 64px 48px 48px;
      text-align: center;
    }

    .blog-intro p {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 680px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .wavy-divider {
      width: 100%;
      height: 80px;
      margin: 16px 0;
    }

    .blog-posts {
      padding: 0 48px 80px;
    }

    .blog-post {
      display: grid;
      grid-template-columns: 52% 44%;
      gap: 0 4%;
      padding: 64px 0;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .blog-post:last-child {
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .blog-post h2 {
      font-family: 'Cormorant Garant', Georgia, serif;
      font-size: clamp(28px, 3.5vw, 46px);
      font-weight: 400;
      color: var(--text);
      line-height: 1.2;
      letter-spacing: -0.01em;
    }

    .blog-post-right {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .blog-post p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .blog-post .meta {
      font-size: 12px;
      color: var(--text-faint);
      margin-bottom: 8px;
      letter-spacing: 0.04em;
    }

    .read-link {
      font-size: 14px;
      color: var(--text);
      text-decoration: underline;
      text-underline-offset: 4px;
      text-decoration-color: var(--underline);
      transition: text-decoration-color 0.2s;
    }

    .read-link:hover {
      text-decoration-color: var(--text);
    }

    /* ── ABOUT ── */
    :root {
      --teal: #4ecdc4;
      --amber: #e8a86a;
    }

    .about-page {
      padding: 72px 80px 120px;
    }

    /* ── Hero ── */
    .about-hero {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
      margin-bottom: 32px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .about-title {
      font-family: 'Cormorant Garant', Georgia, serif;
      font-size: clamp(60px, 7vw, 100px);
      font-weight: 400;
      color: var(--text);
      line-height: 1;
      letter-spacing: -0.03em;
    }

    .about-downloads {
      display: flex;
      gap: 12px;
      flex-shrink: 0;
    }

    .dl-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 22px;
      border-radius: 3px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
      cursor: pointer;
      text-decoration: none;
    }

    .dl-btn.qa {
      background: rgba(78,205,196,0.12);
      border: 1px solid rgba(78,205,196,0.45);
      color: var(--teal);
    }
    .dl-btn.qa:hover {
      background: rgba(78,205,196,0.22);
      border-color: rgba(78,205,196,0.8);
      box-shadow: 0 0 18px rgba(78,205,196,0.18);
      transform: translateY(-1px);
    }

    .dl-btn.pm {
      background: rgba(232,168,106,0.12);
      border: 1px solid rgba(232,168,106,0.45);
      color: var(--amber);
    }
    .dl-btn.pm:hover {
      background: rgba(232,168,106,0.22);
      border-color: rgba(232,168,106,0.8);
      box-shadow: 0 0 18px rgba(232,168,106,0.18);
      transform: translateY(-1px);
    }

    .dl-btn .dl-arrow { font-size: 15px; }

    /* ── Intro 2-col ── */
    .about-intro-wrap {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 0 80px;
      align-items: start;
      margin-bottom: 28px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .about-intro-text p {
      font-size: 18px;
      color: var(--text-muted);
      line-height: 1.95;
      margin-bottom: 22px;
    }

    .about-intro-text p:first-child {
      font-family: 'Cormorant Garant', Georgia, serif;
      font-size: clamp(22px, 2.4vw, 28px);
      font-weight: 400;
      color: var(--text);
      line-height: 1.5;
      letter-spacing: -0.01em;
      margin-bottom: 28px;
    }

    .about-intro-text p:last-child { margin-bottom: 0; }
    .about-intro-text em { font-style: italic; color: var(--text); }

    .about-intro-stats {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 2px;
      overflow: hidden;
      position: sticky;
      top: 88px;
    }

    .stat-item {
      padding: 24px 28px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .stat-item:last-child { border-bottom: none; }

    .stat-num {
      font-family: 'Cormorant Garant', Georgia, serif;
      font-size: 48px;
      font-weight: 300;
      color: var(--text);
      line-height: 1;
      letter-spacing: -0.02em;
      margin-bottom: 6px;
    }

    .stat-label {
      font-size: 12px;
      color: var(--text-faint);
      line-height: 1.5;
      letter-spacing: 0.02em;
    }

    /* ── Tabs ── */
    .about-tabs-wrap {
      margin-bottom: 80px;
      padding-bottom: 80px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .about-tabs {
      display: flex;
      margin-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .tab-btn {
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      padding: 14px 0;
      margin-right: 40px;
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-faint);
      cursor: pointer;
      transition: color 0.2s, border-color 0.2s;
    }

    .tab-btn:hover { color: var(--text-muted); }

    .tab-btn.active {
      color: var(--text);
      border-bottom-color: var(--text);
    }

    .tab-panel { display: none; }
    .tab-panel.active { display: block; }

    /* Tab 2-col: prose + callouts */
    .tab-content-grid {
      display: grid;
      grid-template-columns: 1fr 280px;
      gap: 0 72px;
      align-items: start;
    }

    .tab-prose p {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.95;
      margin-bottom: 22px;
    }

    .tab-prose p:last-child { margin-bottom: 0; }

    .tab-cta {
      font-size: 15px !important;
      color: var(--text-faint) !important;
      margin-top: 32px !important;
    }
    .tab-cta a {
      color: var(--teal);
      text-decoration: none;
      border-bottom: 1px solid rgba(78,205,196,0.3);
      transition: border-color 0.2s;
    }
    .tab-cta a:hover { border-color: var(--teal); }

    .tab-callouts {
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 2px;
      overflow: hidden;
      position: sticky;
      top: 88px;
    }

    .callout {
      padding: 22px 24px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      background: rgba(255,255,255,0.015);
    }

    .callout:last-child { border-bottom: none; }

    .callout-num {
      font-family: 'Cormorant Garant', Georgia, serif;
      font-size: 40px;
      font-weight: 300;
      color: var(--text);
      line-height: 1;
      letter-spacing: -0.02em;
      margin-bottom: 6px;
    }

    .callout-num.teal { color: var(--teal); }
    .callout-num.amber { color: var(--amber); }

    .callout-desc {
      font-size: 12px;
      color: var(--text-faint);
      line-height: 1.5;
    }

    /* Stack / tools row */
    .tab-stack {
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.07);
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .stack-row {
      display: grid;
      grid-template-columns: 100px 1fr;
      gap: 0 24px;
      align-items: start;
    }

    .stack-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      padding-top: 6px;
    }

    .stack-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .stack-tag {
      font-size: 12px;
      padding: 5px 13px;
      border-radius: 100px;
      line-height: 1;
      white-space: nowrap;
    }

    #tab-qa .stack-tag {
      border: 1px solid rgba(78,205,196,0.25);
      color: rgba(78,205,196,0.8);
      background: rgba(78,205,196,0.05);
    }

    #tab-pm .stack-tag {
      border: 1px solid rgba(232,168,106,0.25);
      color: rgba(232,168,106,0.8);
      background: rgba(232,168,106,0.05);
    }

    /* ── Experience ── */
    .about-section {
      margin-bottom: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .about-section:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .section-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-faint);
      margin-bottom: 48px;
    }

    .exp-list { display: flex; flex-direction: column; }

    /* ── Experience ── */
    .exp-item {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 0 56px;
      padding: 40px 0;
      border-top: 1px solid rgba(255,255,255,0.08);
      align-items: start;
    }

    /* Column A */
    .exp-col-a { padding-top: 3px; }

    .exp-era-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      display: inline-block;
      margin-right: 9px;
      vertical-align: middle;
      position: relative;
      top: -1px;
    }

    .exp-item.exp-pm .exp-era-dot { background: var(--amber); box-shadow: 0 0 8px rgba(232,168,106,0.5); }
    .exp-item.exp-qa .exp-era-dot { background: var(--teal); box-shadow: 0 0 6px rgba(78,205,196,0.3); }

    .exp-company {
      font-family: 'Cormorant Garant', Georgia, serif;
      font-size: 26px;
      font-weight: 500;
      color: var(--text);
      letter-spacing: -0.01em;
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .exp-dates {
      font-size: 12px;
      color: var(--text-faint);
      margin-bottom: 4px;
    }

    .exp-location {
      font-size: 12px;
      color: var(--text-faint);
    }

    /* Column B */
    .exp-col-b { }

    .exp-role-block {
      margin-bottom: 24px;
    }

    .exp-role-block:last-child { margin-bottom: 0; }

    .exp-role {
      font-size: 15px;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .exp-role-dates {
      font-size: 12px;
      color: var(--text-faint);
      font-weight: 400;
      margin-left: 10px;
    }

    .exp-bullets {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .exp-bullets li {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
      padding-left: 16px;
      position: relative;
    }

    .exp-bullets li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--text-faint);
      font-size: 10px;
      top: 5px;
    }

    .exp-role-divider {
      border: none;
      border-top: 1px solid rgba(255,255,255,0.06);
      margin: 24px 0;
    }

    .exp-initiative {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--text);
      margin-top: 20px;
      margin-bottom: 8px;
    }

    .exp-initiative:first-child { margin-top: 0; }

    .exp-narrative {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 12px;
    }

    .exp-metrics {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px 24px;
      margin-top: 10px;
      margin-bottom: 4px;
    }

    .exp-metrics li {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
      padding-left: 14px;
      position: relative;
    }

    .exp-metrics li::before {
      content: '↑';
      position: absolute;
      left: 0;
      color: var(--amber);
      font-size: 10px;
      top: 3px;
    }

    .exp-item.exp-qa .exp-metrics li::before { color: var(--teal); }

    /* ── Education strip ── */
    .edu-strip {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      align-items: start;
      gap: 0;
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 0;
    }

    .edu-col {
      padding: 36px 48px 36px 0;
      border-right: 1px solid rgba(255,255,255,0.08);
    }

    .edu-col:last-child {
      border-right: none;
      padding-left: 48px;
      padding-right: 0;
    }

    .edu-col:nth-child(2) {
      padding-left: 48px;
    }

    .edu-col-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-faint);
      margin-bottom: 20px;
    }

    .edu-degree-title {
      font-family: 'Cormorant Garant', Georgia, serif;
      font-size: 20px;
      font-weight: 400;
      color: var(--text);
      line-height: 1.3;
      margin-bottom: 6px;
    }

    .edu-degree-sub {
      font-size: 13px;
      color: var(--text-muted);
    }

    .edu-certs {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .cert-pill {
      display: inline-flex;
      align-items: center;
      padding: 9px 18px;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 2px;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: var(--text-muted);
      width: fit-content;
      transition: border-color 0.2s, color 0.2s;
    }

    .cert-pill:hover { border-color: rgba(255,255,255,0.35); color: var(--text); }

    .badges-row {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 16px;
    }

    .badge-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      transition: transform 0.2s;
      width: 90px;
    }

    .badge-card:hover { transform: translateY(-3px); }

    .badge-card img {
      width: 90px;
      height: 90px;
      max-width: 90px;
      max-height: 90px;
      object-fit: contain;
      filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
    }

    .badge-card span {
      font-size: 11px;
      color: var(--text-faint);
      letter-spacing: 0.04em;
      text-align: center;
      width: 90px;
    }

    /* ── PROJECTS ── */
    .projects-intro {
      padding: 64px 48px 32px;
    }

    .projects-intro p {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 600px;
      line-height: 1.8;
    }

    .projects-list {
      padding: 0 48px 80px;
    }

    .project-item {
      display: grid;
      grid-template-columns: 52% 44%;
      gap: 0 4%;
      padding: 64px 0;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .project-item:last-child {
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .project-item h2 {
      font-family: 'Cormorant Garant', Georgia, serif;
      font-size: clamp(26px, 3vw, 42px);
      font-weight: 400;
      color: var(--text);
      line-height: 1.2;
      letter-spacing: -0.01em;
    }

    .project-right {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .project-item .meta {
      font-size: 12px;
      color: var(--text-faint);
      margin-bottom: 12px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .project-item p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .project-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 16px;
    }

    .project-tag {
      font-size: 11px;
      color: var(--text-faint);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      padding: 3px 10px;
      letter-spacing: 0.03em;
    }

    /* ── COMING SOON ── */
    .coming-soon-wrap {
      display: flex;
      align-items: stretch;
      height: calc(100vh - 78px);
      overflow: hidden;
    }

    .cs-content {
      padding: 80px 48px 80px 48px;
      width: 38%;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .cs-canvas {
      flex: 1;
      display: block;
    }

    .cs-label {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-faint);
      margin-bottom: 24px;
    }

    .cs-heading {
      font-family: 'Cormorant Garant', Georgia, serif;
      font-size: clamp(44px, 5.5vw, 76px);
      font-weight: 400;
      line-height: 1.1;
      color: var(--text);
      letter-spacing: -0.02em;
      margin-bottom: 28px;
    }

    .cs-sub {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.85;
      font-weight: 300;
      margin-bottom: 36px;
    }

    .cs-status {
      font-size: 12px;
      color: var(--text-faint);
      letter-spacing: 0.06em;
      display: flex;
      align-items: center;
      gap: 6px;
      animation: blink 2s infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    /* ── CONTACT ── */
    .contact-inner {
      padding: 120px 48px 80px;
    }

    .contact-inner h1 {
      font-family: 'Cormorant Garant', Georgia, serif;
      font-size: clamp(48px, 6vw, 80px);
      font-weight: 400;
      color: var(--text);
      margin-bottom: 40px;
      letter-spacing: -0.02em;
    }

    .email-btn {
      display: inline-block;
      padding: 14px 32px;
      background: rgba(255,255,255,0.12);
      color: var(--text);
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.04em;
      transition: background 0.2s;
      cursor: pointer;
    }

    .email-btn:hover {
      background: rgba(255,255,255,0.2);
      text-decoration: none;
    }

    .contact-links {
      margin-top: 48px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .contact-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      max-width: 480px;
    }

    .contact-row:first-child {
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .contact-row-label {
      font-size: 13px;
      color: var(--text-faint);
      letter-spacing: 0.04em;
    }

    .contact-row a {
      font-size: 15px;
      color: var(--text);
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-color: var(--underline);
    }

    .contact-row a:hover {
      text-decoration-color: var(--text);
    }

    /* ── HAMBURGER ── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      z-index: 200;
    }
    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--bg);
      z-index: 150;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 0;
    }
    .mobile-nav-overlay.open { display: flex; }
    .mobile-nav-overlay a {
      font-family: 'Cormorant Garant', Georgia, serif;
      font-size: 36px;
      font-weight: 400;
      color: var(--text);
      padding: 16px 0;
      letter-spacing: 0.01em;
      opacity: 0.85;
      transition: opacity 0.2s;
    }
    .mobile-nav-overlay a:hover { opacity: 1; }
    .mobile-nav-social {
      display: flex;
      gap: 20px;
      margin-top: 40px;
    }
    .mobile-nav-social a { opacity: 0.6; }
    .mobile-nav-social svg { width: 20px; height: 20px; fill: var(--text); }

    /* ── MOBILE ── */
    @media (max-width: 768px) {
      /* Nav */
      nav { padding: 20px 24px; }
      .nav-right { display: none; }
      .nav-hamburger { display: flex; }

      /* Home */
      .home-heading { padding: 28px 24px 28px; }
      .home-split { grid-template-columns: 1fr; }
      .home-photo { height: 360px; }
      .home-bio { padding: 28px 24px 0; }
      .home-routing { grid-template-columns: 1fr; margin-top: 28px; }
      .route-card.qa { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
      .route-card { padding: 24px 20px; }
      .route-heading { font-size: 26px; }

      /* Blog */
      .blog-intro { padding: 40px 24px 32px; text-align: left; }
      .blog-posts { padding: 0 24px 48px; }
      .blog-post { grid-template-columns: 1fr; gap: 20px; padding: 40px 0; }

      /* About page */
      .about-inner { grid-template-columns: 1fr; padding: 32px 24px 40px; }
      .about-photo { position: static; aspect-ratio: 4/3; }
      .about-intro-wrap { grid-template-columns: 1fr; gap: 0; }
      .about-intro-text p { font-size: 16px; }

      /* Tabs */
      .tab-btn { font-size: 14px; padding: 16px 20px; }
      .tab-content-grid { grid-template-columns: 1fr; }
      .tab-callouts { position: static; margin-top: 40px; }

      /* Experience */
      .exp-item { grid-template-columns: 1fr; gap: 12px 0; padding: 40px 0; }
      .exp-col-a { padding-top: 0; }
      .exp-era-dot { display: none; }
      .exp-metrics { grid-template-columns: 1fr; }

      /* Education */
      .edu-strip { grid-template-columns: 1fr; }
      .edu-col { padding: 24px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
      .edu-col:last-child { border-bottom: none; padding-left: 0; }

      /* Projects */
      .projects-intro { padding: 40px 24px 24px; }
      .projects-list { padding: 0 24px 48px; }
      .project-item { grid-template-columns: 1fr; gap: 20px; padding: 40px 0; }

      /* Contact */
      .contact-inner { padding: 48px 24px 48px; }
    }
