 /* ─── TOKENS ─────────────────────────────────────────────── */
    :root {
      --bg:        #0b0d14;
      --bg2:       #0f1220;
      --bg3:       #141828;
      --surface:   #181d2e;
      --border:    rgba(255,255,255,0.07);
      --orange:    #f96a2b;
      --orange2:   #ffb347;
      --text:      #e8e8f0;
      --muted:     #7a7d90;
      --light:     #f0f0f8;
      --ff-head:   'Cormorant Garamond', Georgia, serif;
      --ff-body:   'Outfit', sans-serif;
    }

    /* ─── RESET & BASE ───────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0; padding: 0;
      background: var(--bg);
      color: var(--text);
      font-family: var(--ff-body);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
      cursor: none;
    }
    html, body { min-height: 100dvh; }

    /* ─── CUSTOM CURSOR ──────────────────────────────────────── */
    .cursor-dot {
      width: 8px; height: 8px;
      background: var(--orange);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%);
      transition: transform .1s;
    }
    .cursor-ring {
      width: 36px; height: 36px;
      border: 1.5px solid var(--orange);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9998;
      transform: translate(-50%,-50%);
      transition: transform .18s ease, width .2s, height .2s, opacity .2s;
      opacity: 0.5;
    }
    body:hover .cursor-ring { opacity: 1; }

    /* ─── GRAIN OVERLAY ─────────────────────────────────────── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      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)' opacity='0.04'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }

    /* ─── NAVBAR ─────────────────────────────────────────────── */
    #mainNav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 20px 0;
      transition: background .4s, padding .4s, box-shadow .4s;
    }
    #mainNav.scrolled {
      background: rgba(11,13,20,0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      /* padding: 12px 0; */
      box-shadow: 0 1px 0 var(--border);
    }
    .nav-logo {
      font-family: var(--ff-head);
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--light) !important;
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .nav-logo span { color: var(--orange); }
    .navbar-nav .nav-link {
      color: var(--muted) !important;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 500;
      padding: 6px 14px !important;
      transition: color .25s;
      position: relative;
    }
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute; bottom: 0; left: 50%; right: 50%;
      height: 1.5px; background: var(--orange);
      transition: left .25s, right .25s;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--light) !important;
    }
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      left: 14px; right: 14px;
    }
    .navbar-toggler {
      border: 1px solid var(--border);
      padding: 6px 10px;
      cursor: pointer;
    }
    .navbar-toggler-icon {
      background-image: none;
      display: flex; flex-direction: column; justify-content: space-between;
      width: 22px; height: 14px;
    }
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after,
    .navbar-toggler-icon span {
      content: '';
      display: block;
      height: 1.5px; width: 100%;
      background: var(--text);
      transition: transform .3s;
    }

    /* ─── SECTIONS ───────────────────────────────────────────── */
    .section { padding: 110px 0; position: relative; }
    .section-tag {
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--orange);
      font-weight: 600;
      margin-bottom: 12px;
      display: flex; align-items: center; gap: 12px;
    }
    .section-tag::before {
      content: '';
      display: block; width: 28px; height: 1.5px;
      background: var(--orange);
    }
    .section-heading {
      font-family: var(--ff-head);
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 600;
      line-height: 1.1;
      color: var(--light);
      margin-bottom: 0;
    }
    .section-heading em {
      font-style: italic;
      color: var(--orange);
    }

    /* ─── DOT GRID DECORATION ───────────────────────────────── */
    .dot-grid {
      position: absolute;
      display: grid;
      gap: 10px;
      pointer-events: none;
    }
    .dot-grid span {
      display: block;
      width: 3px; height: 3px;
      border-radius: 50%;
      background: rgba(249,106,43,0.25);
    }

    /* ─── HERO ───────────────────────────────────────────────── */
    #home {
      min-height: 100dvh;
      display: flex; align-items: center;
      padding: 120px 0 60px;
      position: relative;
      overflow: hidden;
    }
    .hero-bg-circle {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-bg-circle-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(249,106,43,0.12) 0%, transparent 70%);
      top: -100px; right: -100px;
    }
    .hero-bg-circle-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(100,100,255,0.07) 0%, transparent 70%);
      bottom: -50px; left: -80px;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(249,106,43,0.12);
      border: 1px solid rgba(249,106,43,0.3);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--orange);
      font-weight: 500;
      margin-bottom: 24px;
    }
    .hero-badge::before {
      content: '';
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--orange);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }
    .hero-name {
      font-family: var(--ff-head);
      font-size: clamp(3rem, 8vw, 6.5rem);
      font-weight: 700;
      line-height: 0.95;
      color: var(--light);
      margin-bottom: 8px;
    }
    .hero-name .line-italic {
      font-style: italic;
      color: var(--orange);
    }
    .hero-role {
      font-size: clamp(0.9rem, 2vw, 1.05rem);
      color: var(--muted);
      letter-spacing: 0.05em;
      margin-bottom: 28px;
    }
    .hero-role span { color: var(--text); font-weight: 500; }
    .hero-desc {
      font-size: 0.95rem;
      color: var(--muted);
      max-width: 420px;
      line-height: 1.8;
      margin-bottom: 36px;
    }
    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary-orange {
      background: var(--orange);
      color: #fff;
      border: none;
      padding: 13px 30px;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
      font-family: var(--ff-body);
      border-radius: 4px;
      transition: background .25s, transform .2s, box-shadow .25s;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      min-height: 48px;
      cursor: pointer;
    }
    .btn-primary-orange:hover {
      background: var(--orange2);
      color: #fff;
      text-decoration: none;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(249,106,43,0.35);
    }
    .btn-outline-light-custom {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border);
      padding: 13px 30px;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
      font-family: var(--ff-body);
      border-radius: 4px;
      transition: border-color .25s, color .25s, transform .2s;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      min-height: 48px;
      cursor: pointer;
    }
    .btn-outline-light-custom:hover {
      border-color: var(--orange);
      color: var(--orange);
      text-decoration: none;
      transform: translateY(-2px);
    }
    .hero-stats {
      display: flex; gap: 32px; flex-wrap: wrap;
      margin-top: 48px;
      padding-top: 36px;
      border-top: 1px solid var(--border);
    }
    .hero-stat-num {
      font-family: var(--ff-head);
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--light);
      line-height: 1;
    }
    .hero-stat-num span { color: var(--orange); }
    .hero-stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 4px;
    }

    /* HERO IMAGE */
    .hero-img-wrap {
      position: relative;
      display: flex; justify-content: center; align-items: flex-end;
    }
    .hero-img-bg-shape {
      position: absolute;
      bottom: 0; left: 50%;
      transform: translateX(-50%);
      width: 85%;
      height: 88%;
      background: linear-gradient(160deg, var(--surface) 0%, var(--bg3) 100%);
      border-radius: 60% 40% 40% 60% / 50% 50% 70% 50%;
      z-index: 0;
      animation: morphShape 8s ease-in-out infinite alternate;
    }
    @keyframes morphShape {
      0%   { border-radius: 60% 40% 40% 60% / 50% 50% 70% 50%; }
      50%  { border-radius: 40% 60% 55% 45% / 60% 40% 60% 40%; }
      100% { border-radius: 55% 45% 38% 62% / 55% 45% 65% 45%; }
    }
    .hero-img-border {
      position: absolute;
      bottom: 10px; right: 20px;
      width: 70%;
      height: 82%;
      border: 1.5px solid rgba(249,106,43,0.3);
      border-radius: 60% 40% 40% 60% / 50% 50% 70% 50%;
      z-index: 0;
      animation: morphShape 8s ease-in-out infinite alternate-reverse;
    }
    .hero-portrait {
      position: relative; z-index: 1;
      width: 100%;
      max-width: 360px;
      height: auto;
      border-radius: 10%;
      filter: grayscale(20%) contrast(1.05);
      /* mix-blend-mode: luminosity; */
      mask-image: linear-gradient(to top, transparent 0%, black 20%);
      -webkit-mask-image: linear-gradient(to top, transparent 0%, black 20%);
    }
    .hero-floating-card {
      position: absolute;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px 18px;
      display: flex; align-items: center; gap: 12px;
      backdrop-filter: blur(12px);
      z-index: 2;
      animation: floatCard 4s ease-in-out infinite;
    }
    .hero-floating-card.card-exp {
      bottom: 30px; left: -10px;
    }
    .hero-floating-card.card-proj {
      top: 60px; right: -10px;
      animation-delay: -2s;
    }
    @keyframes floatCard {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    .fc-icon {
      width: 38px; height: 38px;
      background: rgba(249,106,43,0.15);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--orange);
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .fc-label { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }
    .fc-value { font-size: 1rem; font-weight: 700; color: var(--light); line-height: 1.2; font-family: var(--ff-head); }

    /* hero dot grids */
    .hero .dot-grid {
      grid-template-columns: repeat(8, 1fr);
      grid-template-rows: repeat(6, 1fr);
    }

    /* ─── ABOUT ──────────────────────────────────────────────── */
    #about { background: var(--bg2); }
    .about-img-frame {
      position: relative;
      display: inline-block;
    }
    .about-img-frame img {
      width: 100%;
      max-width: 380px;
      border-radius: 4px;
      filter: grayscale(15%) contrast(1.05);
      position: relative; z-index: 1;
    }
    .about-img-accent {
      position: absolute;
      top: 20px; left: 20px;
      right: -20px; bottom: -20px;
      border: 1.5px solid rgba(249,106,43,0.35);
      border-radius: 4px;
      z-index: 0;
    }
    .about-exp-badge {
      position: absolute;
      bottom: -10px; right: 20px;
      background: var(--orange);
      color: #fff;
      padding: 14px 22px;
      border-radius: 4px;
      text-align: center;
      z-index: 2;
    }
    .about-exp-badge .num {
      font-family: var(--ff-head);
      font-size: 2rem;
      font-weight: 700;
      line-height: 1;
    }
    .about-exp-badge .lbl {
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .about-info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin: 28px 0;
    }
    .about-info-item {
      padding: 16px;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 6px;
    }
    .about-info-label {
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 4px;
    }
    .about-info-value {
      font-size: 0.9rem;
      color: var(--light);
      font-weight: 500;
    }
    .skill-item { margin-bottom: 18px; }
    .skill-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
    .skill-name { font-size: 0.82rem; font-weight: 500; color: var(--text); letter-spacing: 0.05em; }
    .skill-pct { font-size: 0.78rem; color: var(--orange); font-weight: 600; font-family: var(--ff-head); }
    .skill-track {
      height: 3px;
      background: rgba(255,255,255,0.08);
      border-radius: 2px;
      overflow: hidden;
    }
    .skill-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--orange), var(--orange2));
      border-radius: 2px;
      width: 0;
      transition: width 1.2s cubic-bezier(.4,0,.2,1);
    }

    /* ─── RESUME ─────────────────────────────────────────────── */
    #resume { background: var(--bg); }
    .resume-col-title {
      font-family: var(--ff-head);
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--light);
      margin-bottom: 32px;
      display: flex; align-items: center; gap: 12px;
    }
    .resume-col-title i { color: var(--orange); font-size: 1.1rem; }
    .timeline { position: relative; padding-left: 28px; }
    .timeline::before {
      content: '';
      position: absolute;
      left: 0; top: 8px; bottom: 0;
      width: 1.5px;
      background: linear-gradient(to bottom, var(--orange), transparent);
    }
    .timeline-item {
      position: relative;
      margin-bottom: 36px;
      padding-left: 20px;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -34px; top: 6px;
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 0 3px rgba(249,106,43,0.2);
    }
    .timeline-period {
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      font-weight: 600;
      margin-bottom: 6px;
    }
    .timeline-role {
      font-family: var(--ff-head);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--light);
      margin-bottom: 2px;
    }
    .timeline-org {
      font-size: 0.82rem;
      color: var(--muted);
      margin-bottom: 10px;
      font-weight: 500;
    }
    .timeline-desc {
      font-size: 0.87rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ─── PORTFOLIO ──────────────────────────────────────────── */
    #portfolio { background: var(--bg2); }
    .filter-bar {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-bottom: 40px;
    }
    .filter-btn {
      padding: 8px 20px;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
      border-radius: 100px;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      transition: all .25s;
      font-family: var(--ff-body);
      min-height: 44px;
    }
    .filter-btn:hover, .filter-btn.active {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
    }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
    }
    .portfolio-card {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      background: var(--surface);
      border: 1px solid var(--border);
      cursor: pointer;
      transition: transform .3s, box-shadow .3s;
    }
    .portfolio-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }
    .portfolio-thumb {
      width: 100%; aspect-ratio: 16/10;
      background-size: 100% 100%;  /* Forces the image to stretch and fit the container exactly */
      background-position: center; /* Centers the image content */
      background-repeat: no-repeat;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
      position: relative;
    }
    .portfolio-thumb-pattern {
      position: absolute; inset: 0;
      opacity: 0.5;
    }
    .portfolio-thumb-icon {
      font-size: 2.5rem;
      color: var(--orange);
      opacity: 0.6;
      position: relative; z-index: 1;
      transition: transform .3s, opacity .3s;
    }
    .portfolio-card:hover .portfolio-thumb-icon {
      transform: scale(1.15);
      opacity: 1;
    }
    .portfolio-overlay {
      position: absolute; inset: 0;
      background: rgba(249,106,43,0.88);
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      transition: opacity .3s;
    }
    .portfolio-card:hover .portfolio-overlay { opacity: 1; }
    .portfolio-overlay-icon { font-size: 2rem; color: #fff; }
    .portfolio-body { padding: 20px; }
    .portfolio-cat {
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      font-weight: 600;
      margin-bottom: 6px;
    }
    .portfolio-title {
      font-family: var(--ff-head);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--light);
      margin-bottom: 6px;
    }
    .portfolio-subtitle {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.6;
    }
    .portfolio-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
    .portfolio-tag {
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 3px 10px;
      font-size: 0.68rem;
      color: var(--muted);
      letter-spacing: 0.06em;
    }

    /* ─── CONTACT ────────────────────────────────────────────── */
    #contact { background: var(--bg); }
    .contact-info-item {
      display: flex; align-items: flex-start; gap: 16px;
      margin-bottom: 28px;
    }
    .contact-icon {
      width: 46px; height: 46px;
      background: rgba(249,106,43,0.12);
      border: 1px solid rgba(249,106,43,0.25);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--orange);
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .contact-label {
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 4px;
    }
    .contact-value { font-size: 0.93rem; color: var(--light); font-weight: 500; }
    .social-links { display: flex; gap: 10px; margin-top: 36px; }
    .social-link {
      width: 44px; height: 44px;
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--muted);
      font-size: 1rem;
      text-decoration: none;
      transition: all .25s;
    }
    .social-link:hover {
      border-color: var(--orange);
      color: var(--orange);
      background: rgba(249,106,43,0.08);
    }
    .contact-form .form-group { margin-bottom: 20px; }
    .contact-form label {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
      font-weight: 500;
    }
    .contact-form .form-control {
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--text);
      border-radius: 6px;
      padding: 13px 16px;
      font-family: var(--ff-body);
      font-size: 0.9rem;
      transition: border-color .25s, box-shadow .25s;
      min-height: 48px;
    }
    .contact-form .form-control:focus {
      background: var(--surface);
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(249,106,43,0.15);
      color: var(--text);
      outline: none;
    }
    .contact-form textarea.form-control { resize: none; min-height: 130px; }
    .contact-form .form-control::placeholder { color: var(--muted); opacity: 0.7; }

    /* ─── FOOTER ─────────────────────────────────────────────── */
    footer {
      background: var(--bg2);
      padding: 32px 0;
      border-top: 1px solid var(--border);
      text-align: center;
    }
    .footer-text { font-size: 0.8rem; color: var(--muted); }
    .footer-text span { color: var(--orange); }

    /* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .reveal-left {
      opacity: 0;
      transform: translateX(-30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal-left.visible { opacity: 1; transform: none; }
    .reveal-right {
      opacity: 0;
      transform: translateX(30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal-right.visible { opacity: 1; transform: none; }

    /* delay helpers */
    .d1 { transition-delay: .1s; }
    .d2 { transition-delay: .2s; }
    .d3 { transition-delay: .3s; }
    .d4 { transition-delay: .4s; }
    .d5 { transition-delay: .5s; }
    .d6 { transition-delay: .6s; }

    /* ─── SCROLLBAR ──────────────────────────────────────────── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

    /* ─── MOBILE ─────────────────────────────────────────────── */
    @media (max-width: 991px) {
        #mainNav { background: var(--bg); padding:0 20px;}
      .hero-img-wrap { margin-top: 48px; }
      .hero-floating-card.card-exp { left: 0; bottom: 10px; }
      .hero-floating-card.card-proj { right: 0; top: 10px; }
      .hero-portrait { max-width: 280px; }
    }
    @media (max-width: 640px) {
      #mainNav { background: var(--bg); padding:0 20px;}
      .section { padding: 80px 0; }
      .hero-ctas { flex-direction: column; }
      .btn-primary-orange, .btn-outline-light-custom { width: 100%; justify-content: center; }
      .about-info-grid { grid-template-columns: 1fr; }
      .portfolio-grid { grid-template-columns: 1fr; }
      .hero-stats { gap: 20px; }
      .hero-floating-card { display: none; }
      .about-img-accent { display: none; }
    }
    @media (max-width: 480px) {
        #mainNav { background: var(--bg); padding: 10px 50px 10px 20px; /* Clockwise: Top, Right, Bottom, Left */}
      .hero-name { font-size: clamp(2.4rem, 10vw, 3.5rem); }
    }

    /* touch: no cursor dots */
    @media (pointer: coarse) {
      .cursor-dot, .cursor-ring { display: none; }
      body { cursor: auto; }
    }
     /* ─── COLLABORATE CTA ─── */
    #collaborate {
      background: var(--red);
      padding: 70px 0;
    }
    .collab-title {
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
    }
    .collab-sub {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.75);
      margin-top: 0.5rem;
    }
    .btn-collab {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 2rem;
      background: #fff;
      color: var(--red);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 2px;
      text-decoration: none;
      border: 2px solid #fff;
      transition: all 0.2s;
      min-height: 44px;
    }
    .btn-collab:hover { background: transparent; color: #fff; text-decoration: none; }
    .btn-collab-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 2rem;
      background: transparent;
      color: #fff;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 2px;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.5);
      transition: all 0.2s;
      min-height: 44px;
    }
    .btn-collab-ghost:hover { border-color: #fff; color: #fff; text-decoration: none; }