:root {
    --bg: #0c0c0e;
    --fg: #e8e4df;
    --muted: #7a756e;
    --accent: #c9a96e;
    --accent-dim: #8a7348;
    --card-bg: #14141a;
    --border: #2a2a32;
  }

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

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--fg);
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* Grain overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
  }

  .page {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 24px 120px;
    position: relative;
  }

  /* Decorative line */
  .topline {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 48px;
    animation: expandLine 1s ease-out forwards;
    transform-origin: left;
  }

  @keyframes expandLine {
    from { width: 0; opacity: 0; }
    to { width: 40px; opacity: 1; }
  }

  /* Name */
  .name {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2.8rem, 7vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--fg);
    margin-bottom: 12px;
    animation: fadeUp 0.8s ease-out 0.2s both;
  }

  .name em {
    font-style: italic;
    color: var(--accent);
  }

  /* Tagline */
  .tagline {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 56px;
    animation: fadeUp 0.8s ease-out 0.4s both;
  }

  /* Divider */
  .divider {
    height: 1px;
    background: var(--border);
    margin: 0 0 48px;
    animation: fadeUp 0.8s ease-out 0.5s both;
  }

  /* Bio */
  .bio {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    color: #b5b0a8;
    margin-bottom: 56px;
    max-width: 560px;
    text-align: justify;
    animation: fadeUp 0.8s ease-out 0.6s both;
  }

  /* Links */
  .links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 64px;
    animation: fadeUp 0.8s ease-out 0.8s both;
  }

  .links a {
    font-family: 'Instrument Serif', serif;
    font-size: 1.1rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
  }

  .links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
  }

  .links a:hover {
    color: var(--accent);
  }

  .links a:hover::after {
    width: 100%;
  }

  /* Footer */
  .footer {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeUp 0.8s ease-out 1s both;
  }

  .footer-line {
    width: 24px;
    height: 1px;
    background: var(--accent-dim);
  }

  .footer-text {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
  }

  .footer a {
    color: var(--accent-dim);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer a:hover {
    color: var(--accent);
  }

  /* Ambient glow */
  .glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
  }

  .glow-2 {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.02) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
    z-index: 0;
  }

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

  /* Responsive */
  @media (max-width: 520px) {
    .page { padding: 56px 20px 80px; }
  }
