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

    :root {
      --bg: #f9f8f5;
      --bg-alt: #f0ede6;
      --ink: #1a1917;
      --ink-muted: #6a6762;
      --ink-faint: #c4c1b9;
      --accent: #d05a28;
      --accent-soft: #f5ede8;
      --border: rgba(26, 25, 23, 0.09);
      --border-hover: rgba(26, 25, 23, 0.24);
      --nav-bg: rgba(249, 248, 245, 0.9);
      --card-bg: #ffffff;
      --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    [data-theme="dark"] {
      --bg: #060606;
      --bg-alt: #0d0d0d;
      --ink: #ededeb;
      --ink-muted: #7a7a78;
      --ink-faint: #2a2a2a;
      --accent: #e06a3a;
      --accent-soft: #1a1008;
      --border: rgba(255, 255, 255, 0.07);
      --border-hover: rgba(255, 255, 255, 0.18);
      --nav-bg: rgba(6, 6, 6, 0.9);
      --card-bg: #0d0d0d;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--ink);
      cursor: none;
      overflow-x: hidden;
      transition: background var(--transition), color var(--transition);
    }

    /* ── GRAIN OVERLAY ─────────────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 9998;
      pointer-events: none;
      opacity: 0.028;
      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-repeat: repeat;
      background-size: 180px;
    }

    /* ── SCROLL PROGRESS BAR ───────────────────── */
    #progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      width: 0%;
      background: var(--accent);
      z-index: 9999;
      transition: width 0.1s linear;
    }

    /* ── CURSOR ────────────────────────────────── */
    #cursor {
      width: 9px;
      height: 9px;
      background: var(--accent);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width 0.18s, height 0.18s, opacity 0.18s;
      mix-blend-mode: multiply;
    }

    [data-theme="dark"] #cursor {
      mix-blend-mode: screen;
    }

    #cursor.expand {
      width: 28px;
      height: 28px;
      opacity: 0.35;
    }

    /* ── NAV ───────────────────────────────────── */
    body>nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 3rem;
      background: var(--nav-bg);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      transition: background var(--transition);
    }

    .nav-logo {
      font-family: 'DM Serif Display', serif;
      font-size: 1.1rem;
      color: var(--ink);
      text-decoration: none;
      letter-spacing: -0.02em;
    }

    .nav-logo span {
      color: var(--accent);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.6rem;
      list-style: none;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-links a {
      font-size: 0.82rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      color: var(--ink-muted);
      text-decoration: none;
      transition: color 0.2s;
    }

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

    .theme-toggle {
      background: none;
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 0.3rem 0.85rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem;
      color: var(--ink-muted);
      cursor: none;
      transition: border-color 0.2s, color 0.2s;
    }

    .theme-toggle:hover {
      border-color: var(--border-hover);
      color: var(--ink);
    }

    /* status pill */
    .hero-status {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.7rem;
      letter-spacing: 0.06em;
      color: var(--ink-muted);
      margin-bottom: 2rem;
      padding-left: 1.4rem;
    }

    .hero-status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #4caf7d;
      flex-shrink: 0;
      animation: pulse-dot 2.4s ease-in-out infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(0.75);
      }
    }

    /* ── HERO ───────────────────────────────────── */
    #hero {
      padding-top: 58px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    /* Interactive Spotlight Background */
    .hero-interactive-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image:
        radial-gradient(var(--ink-faint) 1px, transparent 1px),
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 24px 24px, 96px 96px, 96px 96px;
      background-position: center center;
      opacity: 0.9;
      -webkit-mask-image: radial-gradient(circle 350px at var(--hero-mouse-x, 50vw) var(--hero-mouse-y, 50vh), black 0%, transparent 100%);
      mask-image: radial-gradient(circle 350px at var(--hero-mouse-x, 50vw) var(--hero-mouse-y, 50vh), black 0%, transparent 100%);
    }


    .gallery-wrap {
      position: relative;
      width: 100%;
      overflow: hidden;
      flex-shrink: 0;
    }

    .gallery {
      columns: 5;
      column-gap: 4px;
      width: 100%;
    }

    @media (max-width: 900px) {
      .gallery {
        columns: 3;
      }
    }

    @media (max-width: 560px) {
      .gallery {
        columns: 2;
      }
    }

    .g-tile {
      break-inside: avoid;
      margin-bottom: 4px;
      overflow: hidden;
      cursor: none;
      background: var(--bg-alt);
      display: block;
      position: relative;
    }

    .g-tile img {
      width: 100%;
      height: auto;
      display: block;
      filter: saturate(0.45) brightness(0.85);
      transition: filter 0.4s ease, transform 0.5s ease;
    }

    .g-tile:hover img {
      filter: saturate(1) brightness(1);
      transform: scale(1.05);
    }

    .g-ph {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 4px;
      font-size: 0.58rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-faint);
      background: var(--bg-alt);
    }

    .g-tile.has-image .g-ph {
      display: none;
    }

    .g-ph-plus {
      font-size: 1rem;
      color: var(--ink-faint);
      line-height: 1;
    }

    .gallery-wrap::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 130px;
      background: linear-gradient(to bottom, transparent, var(--bg));
      pointer-events: none;
      transition: background var(--transition);
    }

    [data-theme="dark"] .gallery-wrap::after {
      background: linear-gradient(to bottom, transparent, var(--bg));
    }

    .hero-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 3.5rem 3rem 5rem;
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
      position: relative;
    }

    /* decorative ruled line left of hero */
    .hero-text::before {
      content: '';
      position: absolute;
      left: 3rem;
      top: 3.5rem;
      bottom: 5rem;
      width: 1px;
      background: linear-gradient(to bottom, var(--accent), transparent);
      opacity: 0.25;
    }

    .hero-label {
      font-size: 0.73rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.25rem;
      padding-left: 1.4rem;
    }

    .hero-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(3rem, 7vw, 6rem);
      line-height: 1.0;
      letter-spacing: -0.03em;
      color: var(--ink);
      margin-bottom: 1.75rem;
      padding-left: 1.4rem;
    }

    .hero-title em {
      font-style: italic;
      color: var(--ink-muted);
    }

    .hero-sub {
      font-size: 1rem;
      color: var(--ink-muted);
      max-width: 480px;
      line-height: 1.75;
      margin-bottom: 2.5rem;
      padding-left: 1.4rem;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--ink);
      text-decoration: none;
      border-bottom: 1px solid var(--accent);
      padding-bottom: 2px;
      transition: gap 0.2s;
      margin-left: 1.4rem;
    }

    .hero-cta:hover {
      gap: 0.9rem;
    }

    .hero-line {
      width: 48px;
      height: 2px;
      background: var(--accent);
      margin-left: 1.4rem;
      margin-top: 1rem;
    }

    /* ── MODAL ─────────────────────────────────── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.88);
      z-index: 500;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
      cursor: none;
    }

    .modal-overlay.open {
      display: flex;
    }

    .modal-content {
      max-width: 92vw;
      max-height: 92vh;
      border-radius: 10px;
      overflow: hidden;
      animation: mIn 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative;
    }

    .modal-content img {
      max-width: 92vw;
      max-height: 92vh;
      display: block;
      object-fit: contain;
    }

    .modal-close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.55);
      border: none;
      color: white;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: none;
      transition: background 0.2s;
    }

    .modal-close:hover {
      background: rgba(0, 0, 0, 0.85);
    }

    @keyframes mIn {
      from {
        opacity: 0;
        transform: scale(0.93);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* ── SECTIONS ──────────────────────────────── */
    section {
      padding: 7rem 3rem;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    /* decorative dash before section labels */
    .section-label::before {
      content: '';
      display: inline-block;
      width: 18px;
      height: 1px;
      background: var(--accent);
      flex-shrink: 0;
    }

    .section-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    /* ── ABOUT ─────────────────────────────────── */
    #about {
      background: var(--bg-alt);
      position: relative;
      overflow: hidden;
    }

    /* decorative dot-grid for about */
    #about::before {
      content: '';
      position: absolute;
      right: -60px;
      top: -60px;
      width: 320px;
      height: 320px;
      background-image: radial-gradient(circle, var(--ink-faint) 1px, transparent 1px);
      background-size: 18px 18px;
      opacity: 0.35;
      pointer-events: none;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 5rem;
      align-items: start;
    }

    .about-heading {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      line-height: 1.2;
      letter-spacing: -0.02em;
      position: sticky;
      top: 6rem;
    }

    .about-body p {
      font-size: 1.05rem;
      line-height: 1.9;
      color: var(--ink-muted);
      margin-bottom: 1.4rem;
      max-width: 580px;
    }

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

    .about-body p strong {
      color: var(--ink);
      font-weight: 500;
    }

    /* ── WORK ──────────────────────────────────── */
    #work {
      position: relative;
      overflow: hidden;
    }

    /* large ghost text ornament */
    #work::before {
      content: 'Work';
      position: absolute;
      right: -0.05em;
      top: 4rem;
      font-family: 'DM Serif Display', serif;
      font-size: clamp(8rem, 18vw, 16rem);
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1px var(--border-hover);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      letter-spacing: -0.04em;
      opacity: 0.6;
    }

    .work-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 3.5rem;
    }

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

    .project-item {
      display: grid;
      grid-template-columns: 52px 1fr auto;
      align-items: start;
      gap: 2rem;
      padding: 2.5rem 0;
      border-top: 1px solid var(--border);
      transition: background 0.2s;
      position: relative;
    }

    .project-item:last-child {
      border-bottom: 1px solid var(--border);
    }

    /* accent hover bar on projects */
    .project-item::before {
      content: '';
      position: absolute;
      left: -3rem;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--accent);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .project-item:hover::before {
      transform: scaleY(1);
    }

    .project-num {
      font-size: 0.72rem;
      color: var(--ink-faint);
      padding-top: 3px;
      font-variant-numeric: tabular-nums;
    }

    .project-info h3 {
      font-size: 1.1rem;
      font-weight: 500;
      letter-spacing: -0.01em;
      margin-bottom: 0.5rem;
    }

    .project-context {
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.3rem;
    }

    .project-problem {
      font-size: 0.87rem;
      color: var(--ink-muted);
      line-height: 1.65;
      margin-bottom: 0.6rem;
      max-width: 520px;
    }

    .project-how {
      font-size: 0.82rem;
      color: var(--ink-faint);
      line-height: 1.6;
      max-width: 500px;
      margin-bottom: 1rem;
    }

    .project-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

    .project-tag {
      font-size: 0.68rem;
      padding: 3px 9px;
      border-radius: 100px;
      border: 1px solid var(--border);
      color: var(--ink-muted);
      letter-spacing: 0.03em;
    }

    .project-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.78rem;
      color: var(--accent);
      text-decoration: none;
      font-weight: 500;
      white-space: nowrap;
      align-self: start;
      margin-top: 3px;
      padding: 3px 10px;
      border: 1px solid var(--border);
      border-radius: 100px;
      transition: border-color 0.2s, gap 0.2s;
    }

    .project-link:hover {
      border-color: var(--accent);
      gap: 8px;
    }

    /* ── EXPERIENCE ────────────────────────────── */
    #experience {
      background: var(--bg-alt);
      position: relative;
      overflow: hidden;
    }

    /* subtle cross-hatch in corner */
    #experience::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      width: 200px;
      height: 200px;
      background-image:
        linear-gradient(var(--border-hover) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-hover) 1px, transparent 1px);
      background-size: 24px 24px;
      opacity: 0.5;
      pointer-events: none;
      mask-image: radial-gradient(ellipse at top right, black 30%, transparent 75%);
      -webkit-mask-image: radial-gradient(ellipse at top right, black 30%, transparent 75%);
    }

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

    .exp-item {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 2rem;
      padding: 2rem 0;
      border-top: 1px solid var(--border);
      align-items: start;
    }

    .exp-item:last-child {
      border-bottom: 1px solid var(--border);
    }

    .exp-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--ink-faint);
      margin-top: 7px;
      flex-shrink: 0;
      transition: background 0.2s;
    }

    .exp-item:hover .exp-dot {
      background: var(--accent);
    }

    .exp-top {
      display: flex;
      align-items: baseline;
      gap: 0.75rem;
      margin-bottom: 0.35rem;
      flex-wrap: wrap;
    }

    .exp-org {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: -0.01em;
    }

    .exp-role {
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .exp-period {
      font-size: 0.72rem;
      color: var(--ink-faint);
      letter-spacing: 0.03em;
      margin-left: auto;
    }

    .exp-desc {
      font-size: 0.85rem;
      color: var(--ink-muted);
      line-height: 1.7;
      max-width: 520px;
    }

    /* ── WRITING ───────────────────────────────── */
    #writing {
      background: var(--bg);
    }

    .writing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
      gap: 18px;
      margin-top: 3rem;
    }

    .writing-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.6rem;
      text-decoration: none;
      color: var(--ink);
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      transition: border-color 0.2s, transform 0.2s;
      position: relative;
      overflow: hidden;
    }

    /* top accent line on writing cards */
    .writing-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 1.6rem;
      right: 1.6rem;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .writing-card:hover::before {
      transform: scaleX(1);
    }

    .writing-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-3px);
    }

    .writing-date {
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-faint);
    }

    .writing-title {
      font-size: 0.97rem;
      font-weight: 500;
      line-height: 1.4;
      letter-spacing: -0.01em;
    }

    .writing-excerpt {
      font-size: 0.83rem;
      color: var(--ink-muted);
      line-height: 1.65;
      flex: 1;
    }

    .writing-read {
      font-size: 0.76rem;
      color: var(--accent);
      font-weight: 500;
      margin-top: 0.4rem;
    }

    /* ── CONTACT ───────────────────────────────── */
    #contact {
      background: var(--bg-alt);
      position: relative;
      overflow: hidden;
    }

    #contact-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }

    .contact-inner {
      max-width: 640px;
      position: relative;
      z-index: 1;
    }

    .contact-big {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 1.75rem;
    }

    .contact-big em {
      font-style: italic;
      color: var(--ink-muted);
    }

    .contact-sub {
      font-size: 0.95rem;
      color: var(--ink-muted);
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .contact-email {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 0.97rem;
      font-weight: 500;
      color: var(--ink);
      text-decoration: none;
      border-bottom: 1px solid var(--accent);
      padding-bottom: 3px;
      transition: color 0.2s;
    }

    .contact-email:hover {
      color: var(--accent);
    }

    .contact-photo-wrap {
      margin: 2rem 0;
      width: 100%;
      max-width: 420px;
      position: relative;
    }

    /* decorative corner bracket on photo */
    .contact-photo-wrap::before,
    .contact-photo-wrap::after {
      content: '';
      position: absolute;
      width: 22px;
      height: 22px;
      pointer-events: none;
      z-index: 2;
    }

    .contact-photo-wrap::before {
      top: -6px;
      left: -6px;
      border-top: 1px solid var(--accent);
      border-left: 1px solid var(--accent);
    }

    .contact-photo-wrap::after {
      bottom: -6px;
      right: -6px;
      border-bottom: 1px solid var(--accent);
      border-right: 1px solid var(--accent);
    }

    .contact-photo {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 16px;
      transition: transform 0.5s ease;
    }

    .contact-photo-wrap:hover .contact-photo {
      transform: scale(1.02);
    }

    /* ── FOOTER ────────────────────────────────── */
    footer {
      padding: 2.5rem 3rem;
      border-top: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      text-align: center;
    }

    .footer-copy {
      font-size: 0.74rem;
      color: var(--ink-faint);
    }

    .footer-icons {
      display: flex;
      align-items: center;
      gap: 1.35rem;
    }

    .footer-icons a {
      color: var(--ink-faint);
      text-decoration: none;
      display: flex;
      align-items: center;
      transition: color 0.2s;
    }

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

    .footer-icons svg {
      width: 16px;
      height: 16px;
    }

    .footer-products {
      display: flex;
      gap: 1.5rem;
      font-size: 0.85rem;
    }

    .footer-products a {
      color: var(--ink-faint);
      text-decoration: none;
      transition: color 0.2s;
      font-weight: 500;
      letter-spacing: 0.03em;
    }

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

    /* ── FADE IN ───────────────────────────────── */
    .fade-in {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fd1 {
      transition-delay: 0.1s;
    }

    .fd2 {
      transition-delay: 0.2s;
    }

    .fd3 {
      transition-delay: 0.32s;
    }

    .fd4 {
      transition-delay: 0.44s;
    }

    /* ── RESPONSIVE ────────────────────────────── */
    @media (max-width: 768px) {
      nav {
        padding: 1rem 1.5rem;
      }

      .nav-links {
        display: none;
      }

      section {
        padding: 5rem 1.5rem;
      }

      .hero-text {
        padding: 2.5rem 1.5rem 4rem;
      }

      .hero-text::before {
        left: 1.5rem;
      }

      .hero-label,
      .hero-title,
      .hero-sub,
      .hero-cta {
        padding-left: 1rem;
      }

      .hero-cta {
        margin-left: 1rem;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .project-item {
        grid-template-columns: 36px 1fr;
      }

      .project-link {
        grid-column: 2;
      }

      .project-item::before {
        left: -1.5rem;
      }

      .exp-item {
        grid-template-columns: 20px 1fr;
        gap: 1rem;
      }

      footer {
        padding: 2rem 1.5rem;
      }

      #about::before {
        display: none;
      }
    }

/* Blog content styling */
.blog-content p {
  margin-bottom: 1.5rem;
}
.blog-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
}
.blog-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--ink);
  margin: 2rem 0 1rem;
}
.blog-content a {
  color: var(--accent);
  text-decoration: underline;
}
