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

    :root {
      --black: #0F0F0F;
      --grey: #6B7280;
      --bg: #F9F8F6;
      --card-bg: #F0EEE9;
      --dark: #111118;
      --indigo: #2B2D6E;
      --amber: #E8A838;
      --font: 'Source Sans 3', Arial, sans-serif;
      --max: 1200px;
      --pad: 80px;
    }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--black);
      cursor: none;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    #cursor {
      position: fixed;
      width: 10px;
      height: 10px;
      background: var(--indigo);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width 0.2s, height 0.2s, background 0.2s;
    }

    #cursor.is-hovering {
      width: 28px;
      height: 28px;
      background: var(--amber);
      mix-blend-mode: multiply;
    }

    #transition {
      position: fixed;
      inset: 0;
      background: var(--indigo);
      z-index: 8888;
      transform: translateX(100%);
      transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #transition .xd-mono {
      font-size: 48px;
      font-weight: 600;
      color: #fff;
      letter-spacing: -0.02em;
      opacity: 0;
      transition: opacity 0.2s ease 0.15s;
    }

    #transition.is-active {
      transform: translateX(0);
    }

    #transition.is-active .xd-mono {
      opacity: 1;
    }

    #transition.is-loaded {
      transform: translateX(0);
    }

    #transition.is-loaded .xd-mono {
      opacity: 1;
    }

    #transition.is-leaving {
      transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
      transform: translateX(-100%);
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 32px var(--pad);
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
    }

    nav.is-past-first-window {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(238, 231, 219, 0.34)),
        rgba(238, 231, 219, 0.58);
      border-bottom: 1px solid rgba(255, 255, 255, 0.58);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 16px 36px rgba(15, 15, 15, 0.08);
      backdrop-filter: saturate(180%) blur(22px);
      -webkit-backdrop-filter: saturate(180%) blur(22px);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .nav-link {
      font-size: 15px;
      color: var(--black);
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--indigo);
      transition: width 0.3s;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-link:hover {
      color: var(--indigo);
    }

    .nav-logo {
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -0.03em;
    }

    .nav-cta {
      color: var(--black);
      position: relative;
    }

    .social-rail {
      position: fixed;
      right: 28px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 100;
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .social-rail a {
      font-size: 14px;
      color: var(--grey);
      letter-spacing: 0.08em;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      transition: color 0.2s;
    }

    .social-rail a:hover {
      color: var(--indigo);
    }

    /* bottom nav removed */

    /* Back to top */
    .back-to-top {
      position: fixed;
      right: 28px;
      bottom: 96px;
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 1px solid rgba(0, 0, 0, 0.14);
      background: rgba(249, 248, 246, 0.92);
      color: var(--indigo);
      font-family: var(--font);
      font-size: 18px;
      line-height: 1;
      cursor: none;
      z-index: 650;
      opacity: 0;
      transform: translateY(10px);
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .back-to-top.is-visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .back-to-top:hover {
      background: rgba(240, 238, 233, 0.96);
      border-color: rgba(0, 0, 0, 0.18);
    }

    /* Hero split */
    .about-hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .about-photo {
      position: relative;
      overflow: hidden;
      min-height: 60vh;
    }

    /* Abstract "photo" placeholder - geometric composition in indigo tones */
    .about-photo-art {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .about-photo-art {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
    }

    .about-hero-text {
      padding: 160px var(--pad) 80px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about-label {
      font-size: 14px;
      letter-spacing: 0.14em;
      color: var(--grey);
      margin-bottom: 32px;
      opacity: 0;
      animation: fadeUp 0.7s ease 0.3s forwards;
    }

    .about-title {
      font-size: clamp(42px, 5vw, 72px);
      font-weight: 300;
      letter-spacing: -0.03em;
      line-height: 1.05;
      margin-bottom: 36px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.45s forwards;
    }

    .about-intro {
      font-size: 17px;
      font-weight: 400;
      color: var(--grey);
      line-height: 1.75;
      max-width: 440px;
      opacity: 0;
      animation: fadeUp 0.7s ease 0.6s forwards;
    }

    /* Bio section */
    .bio-section {
      max-width: var(--max);
      margin: 0 auto;
      padding: 120px var(--pad);
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
    }

    .bio-sidebar {}

    .bio-sidebar-label {
      font-size: 14px;
      letter-spacing: 0.14em;
      color: var(--grey);
      margin-bottom: 40px;
    }

    .bio-facts {
      list-style: none;
    }

    .bio-fact {
      padding: 20px 0;
      border-top: 1px solid rgba(0, 0, 0, 0.1);
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 12px;
      align-items: baseline;
    }

    .bio-fact:last-child {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .bio-fact-num {
      font-size: 14px;
      color: var(--grey);
      letter-spacing: 0.06em;
      padding-top: 2px;
    }

    .bio-fact-text {
      font-size: 15px;
      font-weight: 400;
      line-height: 1.5;
    }

    .bio-fact-label {
      font-size: 14px;
      color: var(--grey);
      letter-spacing: 0.04em;
      margin-top: 2px;
      display: block;
    }

    .bio-text {
      font-size: 17px;
      line-height: 1.85;
      color: var(--grey);
    }

    .bio-text p+p {
      margin-top: 24px;
    }

    .bio-text strong {
      color: var(--black);
      font-weight: 600;
    }

    /* Disciplines grid */
    .disciplines {
      background: var(--dark);
      padding: 100px var(--pad);
    }

    .disciplines-inner {
      max-width: var(--max);
      margin: 0 auto;
    }

    .disciplines-label {
      font-size: 14px;
      letter-spacing: 0.14em;
      color: rgba(255, 255, 255, 0.35);
      margin-bottom: 60px;
    }

    .disciplines-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }

    .disc-item {
      padding: 40px 32px;
      background: rgba(255, 255, 255, 0.04);
      border-radius: 2px;
      transition: background 0.2s;
    }

    .disc-item:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .disc-num {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.3);
      letter-spacing: 0.08em;
      margin-bottom: 16px;
    }

    .disc-name {
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 12px;
    }

    .disc-desc {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.6;
    }

    /* Contact strip */
    .contact-strip {
      padding: 120px var(--pad);
      text-align: center;
      background: var(--bg);
    }

    .contact-strip-label {
      font-size: 14px;
      letter-spacing: 0.14em;
      color: var(--grey);
      margin-bottom: 32px;
    }

    .contact-strip-heading {
      font-size: clamp(32px, 4.5vw, 56px);
      font-weight: 300;
      letter-spacing: -0.03em;
      margin-bottom: 48px;
      line-height: 1.1;
    }

    .contact-strip-link {
      font-size: 15px;
      font-weight: 600;
      color: var(--indigo);
      position: relative;
      display: inline-block;
      border-bottom: 1px solid var(--indigo);
      transition: color 0.2s;
    }

    .contact-strip-link:hover {
      color: var(--amber);
      border-color: var(--amber);
    }

    /* Reveal */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
    }
  }

.delay-80 {
  transition-delay: 0.08s;
}

.delay-150 {
  transition-delay: 0.15s;
}

.delay-160 {
  transition-delay: 0.16s;
}

.delay-240 {
  transition-delay: 0.24s;
}

    @media (max-width: 900px) {
      :root {
        --pad: 24px;
      }

      .about-hero {
        grid-template-columns: 1fr;
      }

      .about-photo {
        min-height: 300px;
      }

      .about-hero-text {
        padding: 60px var(--pad);
      }

      .bio-section {
        grid-template-columns: 1fr;
      }

      .disciplines-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .social-rail {
        display: none;
      }

      nav {
        padding: 24px var(--pad);
        align-items: flex-start;
        gap: 18px;
      }

      .nav-menu {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 14px;
      }

      .nav-cta {
        display: none;
      }
    }
