 
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg: #0a0a0a;
      --fg: #ffffff;
      --muted: rgba(255,255,255,0.42);
      --border: rgba(255,255,255,0.07);
      --glass: rgba(255,255,255,0.03);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--fg);
      font-family: 'Sansita', sans-serif;
      min-height: 100vh;
      overflow-x: hidden;
      cursor: none;
    }

    .cursor {
      position: fixed;
      width: 10px; height: 10px;
      background: #ffffff;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      left: 0; top: 0;
      transform: translate(-50%, -50%);
      animation: cursorPulse 1.1s ease-in-out infinite;
      animation-play-state: paused;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .cursor-ring {
      position: fixed;
      width: 34px; height: 34px;
      border: 1.5px solid rgba(255,255,255,0.45);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      left: 0; top: 0;
      transform: translate(-50%, -50%);
      transition: width 0.22s, height 0.22s, opacity 0.22s;
      animation: ringPulse 1.1s ease-in-out infinite;
      animation-play-state: paused;
      opacity: 0;
    }
    .cursor.visible { opacity: 1; animation-play-state: running; }
    .cursor-ring.visible { opacity: 0.45; animation-play-state: running; }

    @keyframes cursorPulse {
      0%, 100% { transform: translate(-50%, -50%) scale(1); }
      50%       { transform: translate(-50%, -50%) scale(1.7); }
    }
    @keyframes ringPulse {
      0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.45; }
      50%       { transform: translate(-50%, -50%) scale(1.18); opacity: 0.18; }
    }

    @media (hover: none) and (pointer: coarse) {
      .cursor, .cursor-ring { display: none; }
      body { cursor: auto; }
    }

    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 0; opacity: 0.3;
    }

    /* ════ FIXED CLOCK + BOOK A CALL — all screens ════ */
    .side-clock {
      position: fixed;
      right: 18px;
      bottom: 24px;
      z-index: 100;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      pointer-events: none;
    }
    .side-clock-time {
      font-family: 'Sirin Stencil', serif;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      color: rgba(255,255,255,0.28);
      line-height: 1;
      white-space: nowrap;
      writing-mode: horizontal-tb;
      text-orientation: mixed;
      transform: none;
    }
    .side-clock-line {
      width: 32px;
      height: 1px;
      background: linear-gradient(to right, rgba(255,255,255,0.1), transparent);
    }
    .book-call-btn {
      pointer-events: all;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 14px;
      border-radius: 10px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.65);
      font-family: 'Sansita', sans-serif;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: none;
      white-space: nowrap;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s, box-shadow 0.22s;
    }
    .book-call-btn i {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.45);
      transition: color 0.22s;
    }
    .book-call-btn:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.25);
      color: var(--fg);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }
    .book-call-btn:hover i { color: rgba(255,255,255,0.8); }

    /* tablet adjustments */
    @media (max-width: 960px) {
      .side-clock {
        right: 14px;
        bottom: 20px;
        gap: 8px;
      }
      .side-clock-time { font-size: 0.65rem; }
      .book-call-btn { padding: 8px 12px; font-size: 0.62rem; }
    }
    /* mobile adjustments */
    @media (max-width: 520px) {
      .side-clock {
        right: 10px;
        bottom: 16px;
        gap: 7px;
      }
      .side-clock-time { font-size: 0.6rem; letter-spacing: 0.12em; }
      .book-call-btn { padding: 7px 10px; font-size: 0.58rem; }
    }

    /* ════ NAVBAR ════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 52px;
      height: 70px;
      background: rgba(10,10,10,0.84);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      border-bottom: 1px solid var(--border);
      transition: border-color 0.3s;
      opacity: 0;
      transform: translateY(-100%);
      animation: navSlideDown 0.7s 0.1s cubic-bezier(.22,.68,0,1.15) forwards;
    }
    @keyframes navSlideDown { to { opacity: 1; transform: translateY(0); } }

    .nav-logo {
      font-family: 'Sirin Stencil', serif;
      font-size: 1.6rem;
      color: var(--fg);
      text-decoration: none;
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: none;
      transition: opacity 0.2s;
    }
    .nav-logo:hover { opacity: 0.65; }

    .logo-dot {
      width: 7px; height: 7px;
      background: #fff;
      border-radius: 50%;
      animation: blinkDot 2.2s ease-in-out infinite;
    }
    @keyframes blinkDot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.12; transform: scale(0.65); }
    }

    .nav-right { display: flex; align-items: center; gap: 4px; }

    .nav-icon-btn {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      width: 40px; height: 40px;
      border-radius: 10px;
      background: transparent;
      border: 1px solid transparent;
      color: var(--muted);
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.2s, background 0.2s, border-color 0.2s;
      cursor: none;
    }
    .nav-icon-btn:hover { color: var(--fg); background: var(--glass); border-color: var(--border); }

    .nav-divider { width: 1px; height: 20px; background: var(--border); margin: 0 6px; }

    .nav-icon-btn .tip {
      position: absolute;
      bottom: -42px; left: 50%;
      transform: translateX(-50%);
      background: #181818;
      border: 1px solid var(--border);
      color: var(--fg);
      font-family: 'Sansita', sans-serif;
      font-size: 0.67rem;
      letter-spacing: 0.06em;
      padding: 4px 10px;
      border-radius: 6px;
      white-space: nowrap;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.18s, bottom 0.18s;
    }
    .nav-icon-btn:hover .tip { opacity: 1; bottom: -46px; }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      border-radius: 8px;
      transition: background 0.2s;
    }
    .nav-hamburger:hover { background: var(--glass); }
    .ham-row { display: flex; gap: 5px; }
    .ham-dot {
      width: 7px; height: 7px;
      background: var(--fg);
      border-radius: 2px;
      transition: opacity 0.2s, transform 0.2s;
    }
    .nav-hamburger.open .ham-dot { opacity: 0.4; }

    /* ── Hamburger X icon shown when menu is open (mobile only) ── */
    .nav-hamburger .ham-x-icon {
      display: none;
      font-size: 1.15rem;
      color: var(--fg);
      line-height: 1;
      width: 26px;
      height: 26px;
      align-items: center;
      justify-content: center;
    }
    @media (max-width: 960px) {
      .nav-hamburger .ham-rows-wrap { display: flex; flex-direction: column; gap: 5px; }
      .nav-hamburger.open .ham-rows-wrap { display: none; }
      .nav-hamburger.open .ham-x-icon { display: flex; }
    }

    .mobile-menu {
      position: fixed;
      top: 70px; left: 0; right: 0;
      z-index: 190;
      height: 60vh;
      background: rgba(10,10,10,0.97);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
      opacity: 0;
      transform: translateY(-20px);
      pointer-events: none;
      transition: opacity 0.32s ease, transform 0.32s cubic-bezier(.22,.68,0,1.15);
      /* decorative tapered line at bottom — mobile only */
      padding-bottom: 28px;
    }
    .mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }

    /* tapered white line at the bottom of the mobile menu */
    @media (max-width: 960px) {
      .mobile-menu::after {
        content: '';
        position: absolute;
        bottom: 14px;
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
        height: 2px;
        background: linear-gradient(
          to right,
          transparent 0%,
          rgba(255,255,255,0.18) 20%,
          rgba(255,255,255,0.72) 50%,
          rgba(255,255,255,0.18) 80%,
          transparent 100%
        );
        border-radius: 100px;
        pointer-events: none;
      }
    }

    .mob-home-row { display: flex; justify-content: center; width: 100%; }
    .mob-icon-btn {
      display: flex; flex-direction: column; align-items: center;
      gap: 6px; color: var(--muted); text-decoration: none;
      font-size: 1.3rem; width: 64px; transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .mob-icon-btn:hover { color: var(--fg); }
    .mob-icon-btn span {
      font-family: 'Sansita', sans-serif;
      font-size: 0.62rem; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--muted);
    }

    /* bordered icon circle for mobile menu icons */
    @media (max-width: 960px) {
      .mob-icon-btn i {
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 12px;
        background: rgba(255,255,255,0.04);
        font-size: 1.15rem;
        transition: border-color 0.22s, background 0.22s, color 0.22s;
      }
      .mob-icon-btn:hover i {
        border-color: rgba(255,255,255,0.32);
        background: rgba(255,255,255,0.09);
        color: var(--fg);
      }
    }

    .mob-divider { width: 40px; height: 1px; background: var(--border); }
    .mob-socials-grid {
      display: grid;
      grid-template-columns: repeat(2, 64px);
      gap: 20px 32px;
      justify-items: center;
    }

    /* ════ HERO ════ */
    #hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 100px 52px 60px;
      position: relative; z-index: 2; overflow: hidden;
    }
    .blob { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; }
    .blob-1 { width: 400px; height: 400px; background: rgba(255,255,255,0.022); top: -50px; right: 18%; }
    .blob-2 { width: 260px; height: 260px; background: rgba(255,255,255,0.013); bottom: 80px; left: 6%; }

    .hero-inner {
      display: grid;
      grid-template-columns: 420px 1fr;
      gap: 80px; align-items: center;
      width: 100%; max-width: 1180px; margin: 0 auto;
    }

    .hero-image-col {
      position: relative; padding-bottom: 28px;
      opacity: 0; transform: translateX(-60px);
      animation: slideInLeft 0.9s 0.55s cubic-bezier(.22,.68,0,1.15) forwards;
    }
    @keyframes slideInLeft { to { opacity: 1; transform: translateX(0); } }

    .hero-photo-frame {
      width: 100%; aspect-ratio: 3/4;
      border-radius: 20px; overflow: hidden;
      background: #161616; border: 1px solid var(--border);
    }
    .hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
    .hero-photo-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 12px;
    }
    .placeholder-icon {
      width: 78px; height: 78px; border-radius: 50%;
      background: rgba(255,255,255,0.04); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.75rem; color: var(--muted);
    }
    .placeholder-text { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
    .hero-photo ~ .hero-photo-placeholder { display: none; }

    .hero-tag {
      position: absolute; bottom: 0; left: 50%;
      transform: translateX(-50%);
      display: inline-flex; align-items: center; gap: 10px;
      background: #111;
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 12px;
      padding: 9px 20px 9px 14px;
      box-shadow: 0 10px 36px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.04) inset;
      white-space: nowrap;
      animation: tagBob 3.8s ease-in-out infinite;
    }
    @keyframes tagBob {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(-7px); }
    }
    .tag-dot-wrap { position: relative; width: 10px; height: 10px; }
    .tag-dot { width: 10px; height: 10px; border-radius: 50%; background: #fff; position: absolute; top: 0; left: 0; }
    .tag-dot-ring {
      width: 10px; height: 10px; border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.55);
      position: absolute; top: 0; left: 0;
      animation: tagRingPulse 2s ease-out infinite;
    }
    @keyframes tagRingPulse {
      0%   { transform: scale(1);   opacity: 0.75; }
      100% { transform: scale(2.7); opacity: 0; }
    }
    .tag-label { font-family: 'Sansita', sans-serif; font-size: 0.77rem; font-weight: 800; color: var(--fg); letter-spacing: 0.07em; text-transform: uppercase; }
    .tag-sep { width: 1px; height: 13px; background: rgba(255,255,255,0.14); }
    .tag-role { font-family: 'Pangolin', cursive; font-size: 0.74rem; color: var(--muted); }

    .hero-text-col {
      text-align: right; opacity: 0; transform: translateX(60px);
      animation: slideInRight 0.9s 0.7s cubic-bezier(.22,.68,0,1.15) forwards;
    }
    @keyframes slideInRight { to { opacity: 1; transform: translateX(0); } }

    .hero-intro {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--muted);
      margin-bottom: 18px; justify-content: flex-end;
      opacity: 0; filter: blur(8px);
      animation: blurReveal 0.8s 1.0s ease forwards;
    }
    .hero-intro::before { content: ''; display: inline-block; width: 26px; height: 1px; background: var(--muted); }

    .hero-heading {
      font-family: 'Merienda', cursive; font-weight: 900;
      font-size: clamp(3rem, 5.6vw, 5.2rem);
      line-height: 1.1; color: var(--fg); margin-bottom: 26px;
    }
    .hero-heading .line { display: block; opacity: 0; filter: blur(14px); transform: translateY(10px); }
    .hero-heading .line-1 { animation: blurRevealUp 0.9s 1.1s cubic-bezier(.22,.68,0,1.15) forwards; }
    .hero-heading .line-2 { animation: blurRevealUp 0.9s 1.35s cubic-bezier(.22,.68,0,1.15) forwards; }
    .hero-heading .line-3 { animation: blurRevealUp 0.9s 1.6s cubic-bezier(.22,.68,0,1.15) forwards; }
    @keyframes blurRevealUp { to { opacity: 1; filter: blur(0px); transform: translateY(0); } }

    .hero-desc {
      font-family: 'Pangolin', cursive; font-size: 1.07rem;
      line-height: 1.82; color: var(--muted);
      max-width: 490px; margin-bottom: 44px; margin-left: auto;
      opacity: 0; filter: blur(10px);
      animation: blurReveal 1s 1.9s ease forwards;
    }
    .hero-desc strong { color: var(--fg); font-weight: 400; }
    @keyframes blurReveal { to { opacity: 1; filter: blur(0px); } }

    .blur-word {
      display: inline-block; color: var(--fg); font-weight: 400;
      transition: opacity 0.5s ease, filter 0.5s ease;
      opacity: 1; filter: blur(0px); white-space: nowrap;
    }
    .blur-word.blurring { opacity: 0; filter: blur(10px); }

    .hero-cta {
      display: flex; gap: 14px; flex-wrap: wrap;
      margin-bottom: 50px; justify-content: flex-end;
      opacity: 0; filter: blur(8px);
      animation: blurReveal 0.8s 2.15s ease forwards;
    }
    .btn {
      display: inline-flex; align-items: center; gap: 9px;
      padding: 13px 26px; border-radius: 10px;
      font-family: 'Sansita', sans-serif; font-size: 0.92rem;
      font-weight: 800; letter-spacing: 0.03em;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s, opacity 0.2s;
      cursor: none;
    }
    .btn-primary { background: #ffffff; color: #0a0a0a; border: 1px solid #fff; }
    .btn-primary:hover { background: rgba(255,255,255,0.86); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,255,255,0.08); }
    .btn-outline { background: transparent; color: var(--fg); border: 1px solid rgba(255,255,255,0.2); }
    .btn-outline:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.38); transform: translateY(-2px); }

    .hero-stats {
      display: flex; gap: 40px; padding-top: 30px;
      border-top: 1px solid var(--border); justify-content: flex-end;
      opacity: 0; filter: blur(8px);
      animation: blurReveal 0.8s 2.4s ease forwards;
    }
    .stat-num { font-family: 'Merienda', cursive; font-size: 1.8rem; font-weight: 900; color: var(--fg); line-height: 1; }
    .stat-num sup { font-size: 0.95rem; color: var(--muted); }
    .stat-label { font-family: 'Sansita', sans-serif; font-size: 0.68rem; color: var(--muted); margin-top: 5px; letter-spacing: 0.09em; text-transform: uppercase; }

    /* ════ RESPONSIVE — HERO ════ */
    @media (max-width: 960px) {
      nav { padding: 0 24px; }
      .nav-right { display: none; }
      .nav-hamburger { display: flex; align-items: center; justify-content: center; }
      #hero { padding: 90px 24px 70px; }
      .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
      .hero-image-col { max-width: 320px; margin: 0 auto; }
      .hero-desc { max-width: 100%; margin-left: 0; }
      .hero-intro { justify-content: center; }
      .hero-cta { justify-content: center; flex-direction: column; align-items: center; }
      .hero-cta .btn { width: 100%; max-width: 280px; justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-text-col { text-align: center; }
    }
    @media (max-width: 520px) {
      nav { padding: 0 16px; }
      .nav-logo { font-size: 1.2rem; }
      #hero { padding: 80px 16px 60px; }
      .hero-stats { gap: 22px; flex-wrap: wrap; }
    }

    /* ════ ABOUT ════ */
    #about { padding: 120px 52px 100px; position: relative; z-index: 2; }
    .about-inner { max-width: 720px; margin: 0 auto; text-align: center; }
    .about-label {
      display: flex; align-items: center; gap: 14px;
      justify-content: center; margin-bottom: 48px;
      opacity: 0; filter: blur(6px);
      transition: opacity 0.7s ease, filter 0.7s ease;
    }
    .about-label.in-view { opacity: 1; filter: blur(0); }
    .label-line { width: 40px; height: 1px; background: var(--border); }
    .label-text { font-family: 'Sansita', sans-serif; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
    .about-content {
      opacity: 0; filter: blur(10px); transform: translateY(20px);
      transition: opacity 0.85s 0.2s ease, filter 0.85s 0.2s ease, transform 0.85s 0.2s cubic-bezier(.22,.68,0,1.15);
    }
    .about-content.in-view { opacity: 1; filter: blur(0); transform: translateY(0); }
    .about-heading { font-family: 'Merienda', cursive; font-weight: 900; font-size: clamp(1.9rem, 3.5vw, 2.9rem); line-height: 1.2; color: var(--fg); margin-bottom: 32px; }
    .about-accent { color: rgba(255,255,255,0.38); }
    .about-body { font-family: 'Pangolin', cursive; font-size: 1.05rem; line-height: 1.9; color: var(--muted); margin-bottom: 18px; }
    .about-body strong { color: var(--fg); font-weight: 400; }
    .about-body em { color: rgba(255,255,255,0.65); font-style: normal; }
    .about-btn { margin-top: 36px; display: inline-flex; }
    @media (max-width: 960px) { #about { padding: 90px 24px 80px; } }
    @media (max-width: 520px) { #about { padding: 70px 16px 60px; } .about-heading { font-size: clamp(1.6rem, 6vw, 2.2rem); } }

    /* ════ SKILLS ════ */
    #skills { padding: 120px 52px 100px; position: relative; z-index: 2; }
    .skills-inner { max-width: 1180px; margin: 0 auto; }
    .skills-label {
      display: flex; align-items: center; gap: 14px;
      justify-content: center; margin-bottom: 28px;
      opacity: 0; filter: blur(6px);
      transition: opacity 0.7s ease, filter 0.7s ease;
    }
    .skills-label.in-view { opacity: 1; filter: blur(0); }
    .skills-heading {
      font-family: 'Merienda', cursive; font-weight: 900;
      font-size: clamp(1.9rem, 3.5vw, 2.9rem); line-height: 1.2;
      color: var(--fg); text-align: center; margin-bottom: 72px;
      opacity: 0; filter: blur(8px); transform: translateY(16px);
      transition: opacity 0.8s 0.1s ease, filter 0.8s 0.1s ease, transform 0.8s 0.1s cubic-bezier(.22,.68,0,1.15);
    }
    .skills-heading.in-view { opacity: 1; filter: blur(0); transform: translateY(0); }
    .skills-accent { color: rgba(255,255,255,0.35); }

    .skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

    .skills-cat-header {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 24px; padding-bottom: 18px;
      border-bottom: 1px solid var(--border);
    }
    .skills-cat-icon {
      width: 42px; height: 42px; border-radius: 10px;
      background: var(--glass); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--muted); flex-shrink: 0;
    }
    .skills-cat-title { font-family: 'Sansita', sans-serif; font-size: 1rem; font-weight: 800; color: var(--fg); letter-spacing: 0.04em; }
    .skills-cat-sub { font-family: 'Pangolin', cursive; font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

    .skill-cards { display: flex; flex-direction: column; gap: 14px; }

    .skill-card {
      background: var(--glass);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 18px 20px;
      transition: border-color 0.25s, background 0.25s, transform 0.25s,
                  opacity 0.7s ease, filter 0.7s ease;
      opacity: 0;
      filter: blur(6px);
    }
    .skill-card:hover {
      border-color: rgba(255,255,255,0.13);
      background: rgba(255,255,255,0.045);
      transform: translateY(-2px);
    }

    @media (min-width: 961px) {
      .skills-category:first-child .skill-card { transform: translateX(-50px); }
      .skills-category:last-child  .skill-card { transform: translateX(50px); }
      .skill-card.card-visible { opacity: 1; filter: blur(0); transform: translateX(0) !important; }
    }
    @media (max-width: 960px) {
      .skill-card { transform: translateY(30px); }
      .skill-card.card-visible { opacity: 1; filter: blur(0); transform: translateY(0) !important; }
    }

    .skill-card-top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
    .skill-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; border: 1px solid var(--border); }
    .skill-html  { background: rgba(228,77,38,0.1);  color: #e44d26; border-color: rgba(228,77,38,0.2); }
    .skill-css   { background: rgba(38,77,228,0.1);  color: #264de4; border-color: rgba(38,77,228,0.2); }
    .skill-js    { background: rgba(247,223,30,0.1); color: #f7df1e; border-color: rgba(247,223,30,0.2); }
    .skill-php   { background: rgba(119,123,179,0.1);color: #777bb3; border-color: rgba(119,123,179,0.2); }
    .skill-mysql { background: rgba(0,117,143,0.1);  color: #00758f; border-color: rgba(0,117,143,0.2); }

    .skill-name { font-family: 'Sansita', sans-serif; font-size: 0.92rem; font-weight: 800; color: var(--fg); margin-bottom: 3px; }
    .skill-desc { font-family: 'Pangolin', cursive; font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

    .skill-bar-wrap { width: 100%; height: 3px; background: var(--border); border-radius: 100px; margin-bottom: 12px; overflow: hidden; }
    .skill-bar { height: 100%; width: 0%; background: rgba(255,255,255,0.55); border-radius: 100px; transition: width 1.1s cubic-bezier(.22,.68,0,1.15); }

    .skill-tags { display: flex; flex-wrap: wrap; gap: 6px; }
    .skill-tags span { font-family: 'Sansita', sans-serif; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); background: var(--glass); border: 1px solid var(--border); border-radius: 100px; padding: 3px 10px; }

    @media (max-width: 960px) { #skills { padding: 90px 24px 80px; } .skills-grid { grid-template-columns: 1fr; gap: 32px; } }
    @media (max-width: 520px) { #skills { padding: 70px 16px 60px; } .skills-heading { font-size: clamp(1.6rem, 6vw, 2.2rem); } }

    /* ════ PROJECTS ════ */
    #projects { padding: 120px 52px 100px; position: relative; z-index: 2; }
    .projects-inner { max-width: 1180px; margin: 0 auto; }

    .projects-label {
      display: flex; align-items: center; gap: 14px;
      justify-content: center; margin-bottom: 28px;
      opacity: 0; filter: blur(6px);
      transition: opacity 0.7s ease, filter 0.7s ease;
    }
    .projects-label.in-view { opacity: 1; filter: blur(0); }

    .projects-heading {
      font-family: 'Merienda', cursive; font-weight: 900;
      font-size: clamp(1.9rem, 3.5vw, 2.9rem); line-height: 1.2;
      color: var(--fg); text-align: center; margin-bottom: 72px;
      opacity: 0; filter: blur(8px); transform: translateY(16px);
      transition: opacity 0.8s 0.1s ease, filter 0.8s 0.1s ease, transform 0.8s 0.1s cubic-bezier(.22,.68,0,1.15);
    }
    .projects-heading.in-view { opacity: 1; filter: blur(0); transform: translateY(0); }
    .projects-accent { color: rgba(255,255,255,0.35); }

    .projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

    .project-card {
      background: var(--glass); border: 1px solid var(--border);
      border-radius: 18px; overflow: hidden;
      opacity: 0; filter: blur(8px); transform: translateY(28px);
      transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s cubic-bezier(.22,.68,0,1.15),
                  border-color 0.25s, background 0.25s;
    }
    .project-card.in-view { opacity: 1; filter: blur(0); transform: translateY(0); }
    .project-card:hover { border-color: rgba(255,255,255,0.13); background: rgba(255,255,255,0.04); }

    .project-img-wrap { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #111; }
    .project-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
    .project-card:hover .project-img { transform: scale(1.04); }

    .project-img-placeholder {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem; color: rgba(255,255,255,0.07); background: #0f0f0f;
    }
    .project-img ~ .project-img-placeholder { display: none; }

    .project-overlay {
      position: absolute; inset: 0;
      background: rgba(0,0,0,0.55);
      display: flex; align-items: center; justify-content: center;
      gap: 12px; opacity: 0; transition: opacity 0.3s ease;
    }
    .project-card:hover .project-overlay { opacity: 1; }

    .project-link-btn {
      width: 42px; height: 42px; border-radius: 10px;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
      color: var(--fg); display: flex; align-items: center; justify-content: center;
      font-size: 0.95rem; text-decoration: none; cursor: none;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .project-link-btn:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }

    .project-body { padding: 22px 24px 24px; }
    .project-number { font-family: 'Sirin Stencil', serif; font-size: 0.65rem; letter-spacing: 0.18em; color: rgba(255,255,255,0.18); margin-bottom: 8px; }
    .project-title { font-family: 'Merienda', cursive; font-weight: 900; font-size: 1.1rem; color: var(--fg); margin-bottom: 10px; line-height: 1.3; }
    .project-desc { font-family: 'Pangolin', cursive; font-size: 0.88rem; line-height: 1.75; color: var(--muted); margin-bottom: 18px; }

    .project-stack { display: flex; flex-wrap: wrap; gap: 6px; }
    .project-stack span {
      font-family: 'Sansita', sans-serif; font-size: 0.6rem; font-weight: 800;
      letter-spacing: 0.09em; text-transform: uppercase;
      color: var(--muted); background: var(--glass);
      border: 1px solid var(--border); border-radius: 100px; padding: 3px 10px;
      transition: color 0.2s, border-color 0.2s;
    }
    .project-card:hover .project-stack span { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.1); }

    .projects-cta {
      display: flex; justify-content: center; margin-top: 60px;
      opacity: 0; filter: blur(6px);
      transition: opacity 0.7s ease, filter 0.7s ease;
    }
    .projects-cta.in-view { opacity: 1; filter: blur(0); }

    @media (max-width: 960px) {
      #projects { padding: 90px 24px 80px; }
      .projects-grid { grid-template-columns: 1fr; gap: 20px; }
      .project-img-wrap { aspect-ratio: 16/10; }
      .project-img { object-fit: contain; background: #111; }
    }
    @media (max-width: 600px) {
      #projects { padding: 70px 16px 60px; }
      .projects-heading { font-size: clamp(1.6rem, 6vw, 2.2rem); }
      .project-img-wrap { aspect-ratio: 16/11; }
      .project-body { padding: 14px 16px 16px; }
      .project-title { font-size: 0.98rem; margin-bottom: 6px; }
      .project-desc { font-size: 0.82rem; margin-bottom: 12px; }
      .project-number { margin-bottom: 4px; }
    }

    /* ════ EXPERIENCE ════ */
    #experience { padding: 120px 52px 100px; position: relative; z-index: 2; }
    .exp-inner { max-width: 780px; margin: 0 auto; }
    .exp-label {
      display: flex; align-items: center; gap: 14px;
      justify-content: center; margin-bottom: 28px;
      opacity: 0; filter: blur(6px);
      transition: opacity 0.7s ease, filter 0.7s ease;
    }
    .exp-label.in-view { opacity: 1; filter: blur(0); }
    .exp-heading {
      font-family: 'Merienda', cursive; font-weight: 900;
      font-size: clamp(1.9rem, 3.5vw, 2.9rem); line-height: 1.2;
      color: var(--fg); text-align: center; margin-bottom: 80px;
      opacity: 0; filter: blur(8px); transform: translateY(16px);
      transition: opacity 0.8s 0.1s ease, filter 0.8s 0.1s ease, transform 0.8s 0.1s cubic-bezier(.22,.68,0,1.15);
    }
    .exp-heading.in-view { opacity: 1; filter: blur(0); transform: translateY(0); }
    .exp-accent { color: rgba(255,255,255,0.35); }
    .exp-timeline { position: relative; display: flex; flex-direction: column; gap: 0; }
    .exp-line { position: absolute; left: 22px; top: 10px; bottom: 10px; width: 1px; background: var(--border); overflow: hidden; }
    .exp-line-fill { width: 100%; height: 0%; background: linear-gradient(to bottom, rgba(255,255,255,0.35), rgba(255,255,255,0.06)); transition: height 1.6s 0.4s cubic-bezier(.22,.68,0,1.15); }
    .exp-line-fill.in-view { height: 100%; }
    .exp-item { display: grid; grid-template-columns: 44px 72px 1fr; gap: 0 20px; align-items: flex-start; padding-bottom: 52px; opacity: 0; filter: blur(8px); transform: translateY(24px); transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s cubic-bezier(.22,.68,0,1.15); }
    .exp-item:last-child { padding-bottom: 0; }
    .exp-item.in-view { opacity: 1; filter: blur(0); transform: translateY(0); }
    .exp-dot-wrap { position: relative; width: 10px; height: 10px; margin-top: 6px; margin-left: auto; margin-right: auto; flex-shrink: 0; }
    .exp-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.2); position: absolute; top: 0; left: 0; transition: background 0.3s, border-color 0.3s; }
    .exp-dot-ring { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.2); position: absolute; top: 0; left: 0; }
    .exp-item--active .exp-dot { background: #fff; border-color: rgba(255,255,255,0.6); }
    .exp-item--active .exp-dot-ring { border-color: rgba(255,255,255,0.45); animation: tagRingPulse 2s ease-out infinite; }
    .exp-year { font-family: 'Sirin Stencil', serif; font-size: 1rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.22); margin-top: 2px; text-align: right; flex-shrink: 0; }
    .exp-item--active .exp-year { color: rgba(255,255,255,0.55); }
    .exp-card { background: var(--glass); border: 1px solid var(--border); border-radius: 16px; padding: 22px 24px; display: flex; gap: 18px; align-items: flex-start; transition: border-color 0.25s, background 0.25s; }
    .exp-card:hover { border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); }
    .exp-item--active .exp-card { border-color: rgba(255,255,255,0.1); }
    .exp-card-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; color: var(--muted); flex-shrink: 0; }
    .exp-item--active .exp-card-icon { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.12); }
    .exp-card-body { flex: 1; }
    .exp-card-title { font-family: 'Merienda', cursive; font-weight: 900; font-size: 1rem; color: var(--fg); margin-bottom: 10px; line-height: 1.35; }
    .exp-card-desc { font-family: 'Pangolin', cursive; font-size: 0.88rem; line-height: 1.8; color: var(--muted); margin-bottom: 14px; }
    .exp-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 0; }
    .exp-card-tags span { font-family: 'Sansita', sans-serif; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); background: var(--glass); border: 1px solid var(--border); border-radius: 100px; padding: 3px 10px; }
    .exp-card-status { display: flex; align-items: center; gap: 8px; margin-top: 14px; }
    .status-dot-wrap { position: relative; width: 8px; height: 8px; flex-shrink: 0; }
    .status-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; position: absolute; top: 0; left: 0; }
    .status-dot-ring { width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.5); position: absolute; top: 0; left: 0; animation: tagRingPulse 2s ease-out infinite; }
    .status-text { font-family: 'Sansita', sans-serif; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
    @media (max-width: 960px) { #experience { padding: 90px 24px 80px; } }
    @media (max-width: 600px) {
      #experience { padding: 70px 16px 60px; }
      .exp-heading { font-size: clamp(1.6rem, 6vw, 2.2rem); }
      .exp-item { grid-template-columns: 30px 58px 1fr; gap: 0 12px; }
      .exp-card { flex-direction: column; gap: 12px; padding: 16px; }
      .exp-year { font-size: 0.85rem; }
      .exp-line { left: 14px; }
    }

    /* ════ FAQ ════ */
    #faq { padding: 120px 52px 100px; position: relative; z-index: 2; }
    .faq-inner { max-width: 780px; margin: 0 auto; }
    .faq-label {
      display: flex; align-items: center; gap: 14px;
      justify-content: center; margin-bottom: 28px;
      opacity: 0; filter: blur(6px);
      transition: opacity 0.7s ease, filter 0.7s ease;
    }
    .faq-label.in-view { opacity: 1; filter: blur(0); }
    .faq-heading {
      font-family: 'Merienda', cursive; font-weight: 900;
      font-size: clamp(1.9rem, 3.5vw, 2.9rem); line-height: 1.2;
      color: var(--fg); text-align: center; margin-bottom: 64px;
      opacity: 0; filter: blur(8px); transform: translateY(16px);
      transition: opacity 0.8s 0.1s ease, filter 0.8s 0.1s ease, transform 0.8s 0.1s cubic-bezier(.22,.68,0,1.15);
    }
    .faq-heading.in-view { opacity: 1; filter: blur(0); transform: translateY(0); }
    .faq-accent { color: rgba(255,255,255,0.35); }
    .faq-list { display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: var(--glass); border: 1px solid var(--border);
      border-radius: 14px; overflow: hidden;
      opacity: 0; filter: blur(6px); transform: translateY(20px);
      transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s cubic-bezier(.22,.68,0,1.15),
                  border-color 0.25s, background 0.25s;
    }
    .faq-item.in-view { opacity: 1; filter: blur(0); transform: translateY(0); }
    .faq-item.open { border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); }
    .faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: none; border: none; cursor: none; text-align: left; }
    .faq-q { font-family: 'Sansita', sans-serif; font-size: 0.95rem; font-weight: 800; color: var(--fg); letter-spacing: 0.02em; line-height: 1.4; flex: 1; }
    .faq-icon { width: 30px; height: 30px; border-radius: 8px; background: var(--glass); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.75rem; flex-shrink: 0; transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.35s cubic-bezier(.22,.68,0,1.15); }
    .faq-item.open .faq-icon { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: var(--fg); transform: rotate(45deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.42s cubic-bezier(.22,.68,0,1.15); }
    .faq-answer-inner { padding: 0 24px 22px; }
    .faq-answer p { font-family: 'Pangolin', cursive; font-size: 0.92rem; line-height: 1.85; color: var(--muted); }
    .faq-answer p strong { color: var(--fg); font-weight: 400; }
    .faq-cta-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-family: 'Sansita', sans-serif; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 2px; transition: border-color 0.2s, opacity 0.2s; cursor: none; }
    .faq-cta-link:hover { border-color: rgba(255,255,255,0.55); opacity: 0.8; }
    @media (max-width: 960px) { #faq { padding: 90px 24px 80px; } }
    @media (max-width: 520px) {
      #faq { padding: 70px 16px 60px; }
      .faq-heading { font-size: clamp(1.6rem, 6vw, 2.2rem); }
      .faq-btn { padding: 16px 18px; }
      .faq-q { font-size: 0.88rem; }
      .faq-answer-inner { padding: 0 18px 18px; }
    }

    /* ════ CONTACT ════ */
    #contact { padding: 120px 52px 100px; position: relative; z-index: 2; }
    .contact-inner { max-width: 620px; margin: 0 auto; }
    .contact-label {
      display: flex; align-items: center; gap: 14px;
      justify-content: center; margin-bottom: 40px;
      opacity: 0; filter: blur(6px);
      transition: opacity 0.7s ease, filter 0.7s ease;
    }
    .contact-label.in-view { opacity: 1; filter: blur(0); }
    .contact-card {
      background: var(--glass); border: 1px solid var(--border);
      border-radius: 22px; padding: 44px 48px;
      opacity: 0; filter: blur(10px); transform: translateY(28px);
      transition: opacity 0.85s 0.15s ease, filter 0.85s 0.15s ease,
                  transform 0.85s 0.15s cubic-bezier(.22,.68,0,1.15);
    }
    .contact-card.in-view { opacity: 1; filter: blur(0); transform: translateY(0); }
    .contact-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
    .contact-icon-wrap { width: 48px; height: 48px; border-radius: 13px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; color: var(--muted); }
    .contact-availability { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 100px; padding: 6px 14px 6px 10px; }
    .contact-avail-dot-wrap { position: relative; width: 8px; height: 8px; flex-shrink: 0; }
    .contact-avail-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; position: absolute; top: 0; left: 0; }
    .contact-avail-ring { width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.5); position: absolute; top: 0; left: 0; animation: tagRingPulse 2s ease-out infinite; }
    .contact-avail-text { font-family: 'Sansita', sans-serif; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
    .contact-heading { font-family: 'Merienda', cursive; font-weight: 900; font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 1.2; color: var(--fg); margin-bottom: 18px; }
    .contact-accent { color: rgba(255,255,255,0.38); }
    .contact-subtext { font-family: 'Pangolin', cursive; font-size: 0.96rem; line-height: 1.85; color: var(--muted); margin-bottom: 0; }
    .contact-divider { width: 100%; height: 1px; background: var(--border); margin: 32px 0; }
    .contact-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
    .contact-opt { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border-radius: 13px; border: 1px solid var(--border); background: rgba(255,255,255,0.02); text-decoration: none; cursor: none; transition: border-color 0.25s, background 0.25s, transform 0.2s; }
    .contact-opt:hover { border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); transform: translateY(-2px); }
    .contact-opt-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--muted); flex-shrink: 0; transition: color 0.25s, border-color 0.25s; }
    .contact-opt-icon--wa { color: #25d366; border-color: rgba(37,211,102,0.2); background: rgba(37,211,102,0.07); }
    .contact-opt:hover .contact-opt-icon { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.12); }
    .contact-opt:hover .contact-opt-icon--wa { color: #25d366; }
    .contact-opt-body { flex: 1; min-width: 0; }
    .contact-opt-label { font-family: 'Sansita', sans-serif; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
    .contact-opt-value { font-family: 'Pangolin', cursive; font-size: 0.9rem; color: var(--fg); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .contact-opt-arrow { font-size: 0.75rem; color: rgba(255,255,255,0.2); transition: color 0.2s, transform 0.2s; flex-shrink: 0; }
    .contact-opt:hover .contact-opt-arrow { color: rgba(255,255,255,0.5); transform: translate(2px, -2px); }
    .contact-btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .contact-btns .btn { flex: 1; justify-content: center; }

    @media (max-width: 960px) {
      #contact { padding: 90px 24px 80px; }
      .contact-card { padding: 32px 28px; }
    }
    @media (max-width: 520px) {
      #contact { padding: 70px 16px 60px; }
      .contact-card { padding: 26px 20px; }
      .contact-heading { font-size: clamp(1.5rem, 6vw, 2rem); }
      .contact-btns { flex-direction: column; }
      .contact-btns .btn { width: 100%; }
      .contact-card-top { flex-direction: column; align-items: flex-start; gap: 14px; }
      .contact-opt-arrow { display: none; }
    }

    /* ════ FOOTER ════ */
    #footer { padding: 60px 52px 40px; position: relative; z-index: 2; }
    .footer-inner { max-width: 1180px; margin: 0 auto; }
    .footer-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
    .footer-logo { font-family: 'Sirin Stencil', serif; font-size: 1.3rem; color: var(--fg); text-decoration: none; letter-spacing: 0.05em; display: flex; align-items: center; gap: 8px; cursor: none; transition: opacity 0.2s; opacity: 0.7; }
    .footer-logo:hover { opacity: 1; }
    .footer-logo-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: blinkDot 2.2s ease-in-out infinite; }
    .footer-tagline { font-family: 'Pangolin', cursive; font-size: 0.85rem; color: var(--muted); letter-spacing: 0.03em; }
    .footer-divider { width: 100%; height: 1px; background: var(--border); margin-bottom: 24px; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
    .footer-copy { font-family: 'Sansita', sans-serif; font-size: 0.72rem; color: rgba(255,255,255,0.22); letter-spacing: 0.04em; }
    .footer-made { font-family: 'Pangolin', cursive; font-size: 0.72rem; color: rgba(255,255,255,0.2); }
    .footer-made span { color: rgba(255,255,255,0.38); }
    @media (max-width: 960px) {
      #footer { padding: 50px 24px 32px; }
      .footer-top { flex-direction: column; align-items: flex-start; gap: 10px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
    }
    @media (max-width: 520px) {
      #footer { padding: 40px 16px 28px; }
      .footer-logo { font-size: 1.1rem; }
    }
  