/* ============================================================
   about.css  ·  page-specific styles for about.html
   ------------------------------------------------------------
   Styles that ONLY the About page uses. Anything shared with
   other pages lives in the shared files instead (tokens/base/
   site). If a rule here would help another page too, move it up
   to a shared file rather than copying it.

   Link after tokens.css, site.css, base.css.
   ============================================================ */



  html, body {
    background: var(--color-bg-page);
    color: var(--color-text-primary);
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .nav-link.active { color: var(--color-text-primary); }


  /* PAGE */
  .page {
    padding: 80px 48px 120px;
  }


  /* INTRO */
  .intro {
    max-width: 560px;
    margin-bottom: 72px;
  }

  .intro h1 {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: var(--color-text-primary);
    margin-bottom: 24px;
  }

  .intro p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    text-wrap: pretty;
  }

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

  .cta-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }

  .resume-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fcfcfc;
    background: var(--color-accent);
    border-radius: 6px;
    text-decoration: none;
    border: 0.5px solid transparent;
    transition: opacity 0.2s ease;
  }

  .resume-btn:hover { opacity: 0.85; }

  .resume-btn--outline {
    background: transparent;
    color: var(--color-text-primary);
    border-color: var(--color-border-hairline);
  }

  .resume-btn--outline:hover { opacity: 0.7; }


  /* SECTIONS */
  .section {
    border-top: 0.5px solid var(--color-border-hairline);
    padding-top: 40px;
    margin-bottom: 32px;
  }

  .section-label {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 32px;
  }


  /* ROWS */
  .row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 24px;
    align-items: baseline;
    margin-bottom: 16px;
  }

  .row:last-child { margin-bottom: 0; }

  .row-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.4;
  }

  .row-sub {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 2px;
    grid-column: 1;
  }

  .row-date {
    font-size: 12px;
    color: var(--color-text-muted);
    white-space: nowrap;
    grid-row: 1;
    grid-column: 2;
  }


  /* FOOTER */
  .site-footer {
    border-top: 0.5px solid var(--color-border-hairline);
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-copy { font-size: 12px; color: var(--color-text-muted); }

  .footer-links { display: flex; align-items: center; gap: 20px; }

  .footer-link { font-size: 12px; font-weight: 600; color: var(--color-text-muted); text-decoration: none; }

  .footer-link:hover { color: var(--color-text-primary); }


  /* Tablet */
  @media (max-width: 960px) {
    .site-nav { padding: 0 32px; }
    .page { padding: 48px 32px 64px; }
  }


  /* Mobile */
  @media (max-width: 640px) {
    .site-nav { padding: 0 20px; }
    .nav-link, .nav-divider { display: none; }
    .page { padding: 48px 20px 64px; }
    .intro { margin-bottom: 48px; }
    .intro h1 { font-size: 26px; }
    .intro p { font-size: 15px; }
    .section { padding-top: 32px; }
    .row { display: flex; flex-direction: column; gap: 2px; }
    .row-title { order: 1; }
    .row-sub { order: 2; }
    .row-date { order: 3; }
    .site-footer { padding: 20px; align-items: center; }
  }

  @font-face { font-family: 'Aretha Bridge'; src: url('../assets/fonts/Aretha Bridge.otf') format('opentype'); }

  html.intro-active, html.intro-active body { overflow: hidden; }

  #intro-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; z-index: 1000; background: #14172A; display: flex; align-items: center; justify-content: center; overflow: hidden; }

  #intro-content { position: relative; z-index: 3; text-align: center; opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }

  #intro-name { display: block; font-family: 'Aretha Bridge', 'Instrument Serif', serif; font-size: clamp(32px, 7vw, 52px); color: #f5f5f0; line-height: 1; letter-spacing: 0.01em; }

  #intro-sub { display: block; font-family: 'Instrument Sans', sans-serif; font-size: 13px; font-weight: 400; color: rgba(245,245,240,0.38); margin-top: 14px; letter-spacing: 0.08em; }

  #page-wrap { opacity: 0; }
