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

    :root {
      --bg: #080807;
      --bg2: #0f0f0d;
      --surface: #161614;
      --border: #2a2a26;
      --accent: #c4a96a;
      --accent2: #ecdcb4;
      --accent-dim: rgba(196, 169, 106, 0.12);
      --text: #f0ede4;
      --text-muted: #a09d94;
      --text-dim: #625f58;
      --white: #f8f6f0;

      /* CD-appropriate editorial pairing */
      --font-display: 'Fraunces', Georgia, serif;
      --font-sans: 'Outfit', sans-serif;
      --font-mono: 'DM Mono', monospace;
    }

    /* scroll-behavior is handled by JS to avoid race conditions with dynamic content */
    /* html { scroll-behavior: smooth; } */

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-sans);
      font-weight: 300;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
      width: 3px;
    }

    ::-webkit-scrollbar-track {
      background: var(--bg);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--accent);
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--accent2);
    }

    /* Selection */
    ::selection {
      background: var(--accent);
      color: var(--bg);
    }

    ::-moz-selection {
      background: var(--accent);
      color: var(--bg);
    }

    a {
      text-decoration: none;
      cursor: pointer;
    }

    /* Film-grain noise 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");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.45;
    }

    /* ===================== NAV ===================== */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 800;
      padding: 0 6vw;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition:
        background 0.4s ease,
        border-color 0.4s ease;
      border-bottom: 1px solid transparent;
    }

    nav.scrolled {
      background: rgba(8, 8, 7, 0.95);
      border-bottom-color: var(--border);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .nav-logo img {
      height: 48px;
      width: auto;
    }

    .logo-text {
      font-size: 1.25rem;
      color: var(--accent2);
      font-family: var(--font-sans);
      letter-spacing: 0.5px;
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-family: var(--font-sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s ease;
      position: relative;
    }

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

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

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

    .nav-cta {
      font-size: 11px !important;
      font-weight: 500 !important;
      color: var(--accent) !important;
      border: 1px solid rgba(196, 169, 106, 0.3);
      padding: 9px 22px;
      transition: all 0.3s ease !important;
    }

    .nav-cta:hover {
      background: var(--accent-dim) !important;
      border-color: var(--accent) !important;
      color: var(--accent2) !important;
    }

    .nav-cta::after {
      display: none !important;
    }

    /* Hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      z-index: 900;
    }

    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--text-muted);
      transition: all 0.3s ease;
      transform-origin: center;
    }

    .nav-hamburger.open span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
      background: var(--accent);
    }

    .nav-hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
      background: var(--accent);
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      top: 68px;
      background: rgba(8, 8, 7, 0.97);
      backdrop-filter: blur(20px);
      z-index: 700;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }

    .mobile-menu.open {
      display: flex;
      opacity: 1;
      pointer-events: all;
    }

    .mobile-menu a {
      font-family: var(--font-display);
      font-size: clamp(28px, 8vw, 48px);
      font-weight: 600;
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .mobile-menu a:hover {
      color: var(--accent2);
    }

    @media (max-width: 700px) {
      .nav-links {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }
    }

    /* ===================== HERO ===================== */
    #hero {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      padding: 68px 6vw 0;
      position: relative;
      overflow: hidden;
    }

    .hero-glow {
      position: absolute;
      width: 900px;
      height: 900px;
      border-radius: 50%;
      background: radial-gradient(circle,
          rgba(196, 169, 106, 0.055) 0%,
          transparent 65%);
      top: -250px;
      right: -250px;
      pointer-events: none;
    }

    .hero-glow-2 {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle,
          rgba(196, 169, 106, 0.035) 0%,
          transparent 70%);
      bottom: 80px;
      left: -150px;
      pointer-events: none;
    }

    .hero-vert {
      position: absolute;
      right: 6vw;
      top: 50%;
      transform: translateY(-50%) rotate(90deg);
      transform-origin: center center;
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--text-muted);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .hero-vert::before {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--text-muted);
    }

    .available {
      color: var(--accent);
    }

    .hero-body {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 4vw;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 640px;
      flex-shrink: 0;
    }

    /* ── Right panel: staggered service tags ── */
    .hero-services {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
      gap: 12px;
      padding-right: 2vw;
    }

    .hs-tag {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-muted);
      border: 1px solid var(--border);
      padding: 10px 20px;
      position: relative;
      opacity: 0;
      transform: translateX(28px);
      transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
      cursor: default;
      white-space: nowrap;
    }

    .hs-tag::before {
      content: '';
      position: absolute;
      left: -1px;
      top: 50%;
      transform: translateY(-50%);
      width: 2px;
      height: 0;
      background: var(--accent);
      transition: height 0.3s ease;
    }

    .hs-tag:hover {
      color: var(--accent2);
      border-color: rgba(196, 169, 106, 0.35);
      background: var(--accent-dim);
    }

    .hs-tag:hover::before {
      height: 60%;
    }

    .hs-tag.hs-active {
      color: var(--accent);
      border-color: rgba(196, 169, 106, 0.3);
      background: var(--accent-dim);
    }

    .hs-tag.hs-active::before {
      height: 50%;
    }

    .hs-tag.visible {
      animation: hsSlide 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes hsSlide {
      from {
        opacity: 0;
        transform: translateX(28px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Mobile: hide services, restore single-column centred layout */
    @media (max-width: 860px) {
      .hero-body {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
      }

      .hero-services {
        display: none;
      }

      .hero-content {
        max-width: 100%;
      }
    }

    .hero-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--accent);
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    }

    .hero-eyebrow::before {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--accent);
    }

    .hero-name {
      font-family: var(--font-display);
      font-size: clamp(56px, 10.5vw, 136px);
      font-weight: 700;
      line-height: 0.88;
      letter-spacing: -0.03em;
      color: var(--white);
      margin-bottom: 32px;
      white-space: nowrap;
      /* horizontal on desktop */
      opacity: 0;
      animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
    }

    .hero-name em {
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1px var(--accent2);
      display: inline;
      /* stays on same line as "Joel" on desktop */
      font-weight: 300;
    }

    /* On mobile, break into two lines */
    @media (max-width: 600px) {
      .hero-name {
        white-space: normal;
        font-size: clamp(52px, 16vw, 80px);
      }

      .hero-name em {
        display: block;
        /* "Anang" drops to its own line */
      }
    }

    .hero-desc {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--accent);
      max-width: 440px;
      line-height: 1;
      margin-bottom: 52px;
      display: flex;
      align-items: center;
      gap: 14px;
      opacity: 0;
      animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    }

    .hero-desc::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--accent);
      flex-shrink: 0;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
    }

    .btn-primary {
      font-family: var(--font-sans);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--bg);
      background: var(--accent);
      border: 1px solid var(--accent);
      padding: 16px 34px;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .btn-primary:hover {
      background: var(--accent2);
      border-color: var(--accent2);
    }

    .btn-ghost {
      font-family: var(--font-sans);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      background: none;
      border: 1px solid var(--border);
      padding: 16px 34px;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .btn-ghost:hover {
      border-color: var(--accent);
      color: var(--accent2);
      background: var(--accent-dim);
    }

    /* Hero Stats Bar */
    .hero-stats {
      border-top: 1px solid var(--border);
      padding: 28px 0;
      display: flex;
      gap: 52px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .stat-number {
      font-family: var(--font-display);
      font-size: 30px;
      font-weight: 600;
      font-style: italic;
      color: var(--accent2);
      line-height: 1;
    }

    .stat-label {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

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

    /* ===================== MARQUEE ===================== */
    .marquee-wrap {
      overflow: hidden;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 16px 0;
      background: var(--bg2);
    }

    .marquee-track {
      display: flex;
      gap: 32px;
      align-items: center;
      white-space: nowrap;
      animation: marquee 45s linear infinite;
      width: max-content;
    }

    .marquee-track span {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      flex-shrink: 0;
    }

    .marquee-track .dot {
      color: var(--accent);
      font-size: 8px;
      flex-shrink: 0;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ===================== SECTION SHARED ===================== */
    .section-header {
      padding: 88px 6vw 60px;
      position: relative;
      border-bottom: 1px solid var(--border);
    }

    .section-eyebrow {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--accent);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(44px, 8vw, 100px);
      font-weight: 600;
      line-height: 0.95;
      letter-spacing: -0.025em;
      color: var(--white);
      margin-bottom: 24px;
    }

    .section-title em {
      font-style: italic;
      color: var(--accent2);
      font-weight: 300;
    }

    .section-sub {
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 300;
      color: var(--text-muted);
      max-width: 400px;
      line-height: 1.8;
    }

    .section-deco {
      position: absolute;
      right: 6vw;
      top: 50%;
      transform: translateY(-50%);
      font-family: var(--font-display);
      font-size: clamp(100px, 18vw, 220px);
      font-weight: 700;
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1px var(--border);
      line-height: 1;
      user-select: none;
      pointer-events: none;
      letter-spacing: -0.04em;
    }

    /* ===================== WORK / ACCORDION ===================== */
    #work {
      padding-top: 0;
    }

    .accordion {
      border-bottom: 1px solid var(--border);
    }

    main {
      padding: 0 6vw 100px;
      max-width: 1440px;
      margin: 0 auto;
    }

    .accordion-item {
      border-top: 1px solid var(--border);
      overflow: hidden;
      opacity: 0;
      transform: translateY(20px);
    }

    .accordion-item.visible {
      animation: revealItem 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

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

    .accordion-trigger {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      padding: 36px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      position: relative;
      transition: padding 0.3s ease;
    }

    .accordion-trigger:hover .trigger-title {
      color: var(--accent2);
    }

    .trigger-left {
      display: flex;
      align-items: baseline;
      gap: 20px;
    }

    .trigger-index {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.15em;
      color: var(--text-muted);
      min-width: 28px;
    }

    .trigger-title {
      font-family: var(--font-display);
      font-size: clamp(22px, 4vw, 46px);
      font-weight: 600;
      color: var(--text);
      letter-spacing: -0.01em;
      line-height: 1.1;
      transition: color 0.3s ease;
      text-align: left;
    }

    .trigger-right {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-shrink: 0;
    }

    .trigger-count {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      text-transform: uppercase;
    }

    .trigger-icon {
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
    }

    .trigger-icon::before,
    .trigger-icon::after {
      content: '';
      position: absolute;
      background: var(--accent);
      transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.3s;
    }

    .trigger-icon::before {
      width: 12px;
      height: 1.5px;
    }

    .trigger-icon::after {
      width: 1.5px;
      height: 12px;
    }

    .accordion-trigger:hover .trigger-icon {
      border-color: var(--accent);
      background: var(--accent-dim);
    }

    .accordion-item.open .trigger-title {
      color: var(--accent2);
    }

    .accordion-item.open .trigger-index {
      color: var(--accent);
    }

    .accordion-item.open .trigger-icon {
      border-color: var(--accent);
      background: var(--accent-dim);
    }

    .accordion-item.open .trigger-icon::after {
      transform: rotate(90deg);
      opacity: 0;
    }

    .accordion-panel {
      height: 0;
      overflow: hidden;
      transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .panel-inner {
      padding-bottom: 52px;
    }

    /* Subcategory pills */
    .subcategory-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
      padding-top: 4px;
    }

    .sub-pill {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 7px 16px;
      border: 1px solid var(--border);
      border-radius: 100px;
      background: none;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .sub-pill:hover,
    .sub-pill.active {
      border-color: var(--accent);
      color: var(--accent2);
    }

    /* Project grid */
    .project-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    @media (max-width: 900px) {
      .project-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 560px) {
      .project-grid {
        grid-template-columns: 1fr;
      }
    }

    .project-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 4 / 3;
      background: var(--surface);
      animation: cardReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    @keyframes cardReveal {
      from {
        opacity: 0;
        transform: scale(0.97);
      }

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

    .project-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      display: block;
    }

    .project-card:hover img {
      transform: scale(1.06);
    }

    .card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(8, 8, 7, 0.85) 0%, transparent 55%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
      opacity: 0;
      transition: opacity 0.35s ease;
    }

    .project-card:hover .card-overlay {
      opacity: 1;
    }

    .card-title {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 4px;
    }

    .card-sub {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
    }

    /* Load more */
    .load-more-wrap {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 40px;
    }

    .load-more-wrap.hidden {
      display: none;
    }

    .load-more-btn {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      background: none;
      border: 1px solid var(--border);
      padding: 12px 28px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .load-more-btn:hover {
      border-color: var(--accent);
      color: var(--accent2);
      background: var(--accent-dim);
    }

    .load-more-info {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    /* ===================== PHILOSOPHY SECTION ===================== */
    #philosophy {
      padding: 100px 6vw;
      border-top: 1px solid var(--border);
      position: relative;
    }

    .philosophy-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      max-width: 1440px;
      margin: 0 auto;
    }

    .philosophy-left {
      position: sticky;
      top: 120px;
      height: fit-content;
    }

    @media (max-width: 900px) {
      .philosophy-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .philosophy-left {
        position: static;
        top: auto;
      }
    }

    .philosophy-heading {
      font-family: var(--font-display);
      font-size: clamp(30px, 4vw, 52px);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-top: 24px;
    }

    .philosophy-heading em {
      font-style: italic;
      color: var(--accent2);
      font-weight: 300;
    }

    .philosophy-right {
      display: flex;
      flex-direction: column;
      gap: 1px;
      background: var(--border);
    }

    .philosophy-card {
      background: var(--bg);
      padding: 40px;
      border-left: 3px solid transparent;
      transition:
        border-color 0.3s ease,
        background 0.3s ease;
    }

    .philosophy-card:hover {
      border-left-color: var(--accent);
      background: var(--bg2);
    }

    .philo-num {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.2em;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .philo-title {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }

    .philo-body {
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.85;
    }

    /* ===================== ABOUT ===================== */
    #about {
      padding: 100px 6vw;
      border-top: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

    .about-bg-text {
      position: absolute;
      bottom: -30px;
      left: -10px;
      font-family: var(--font-display);
      font-size: clamp(120px, 22vw, 280px);
      font-weight: 700;
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1px rgba(37, 37, 33, 0.6);
      pointer-events: none;
      user-select: none;
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
      position: relative;
      z-index: 1;
      max-width: 1440px;
      margin: 0 auto;
    }

    @media (max-width: 900px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 52px;
      }
    }

    .about-img-wrap {
      position: relative;
      display: inline-block;
    }

    .about-avatar {
      width: 100%;
      max-width: 380px;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      object-position: top;
      display: block;
      filter: grayscale(15%);
      transition: filter 0.5s ease;
    }

    .about-avatar:hover {
      filter: grayscale(0%);
    }

    .about-badge {
      position: absolute;
      bottom: -16px;
      right: -16px;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: var(--accent);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 3px solid var(--bg);
    }

    .about-badge-num {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 700;
      color: var(--bg);
      line-height: 1;
    }

    .about-badge-text {
      font-family: var(--font-mono);
      font-size: 7px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(8, 8, 7, 0.7);
      text-align: center;
      line-height: 1.3;
    }

    .about-eyebrow {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .about-eyebrow::before {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--accent);
    }

    .about-heading {
      font-family: var(--font-display);
      font-size: clamp(28px, 3.5vw, 46px);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 28px;
    }

    .about-heading em {
      font-style: italic;
      color: var(--accent2);
      font-weight: 300;
    }

    .about-body {
      font-family: var(--font-sans);
      font-size: 15px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.9;
      margin-bottom: 20px;
    }

    .about-skills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 32px 0;
    }

    .skill-tag {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      border: 1px solid var(--border);
      padding: 7px 14px;
      transition: all 0.2s ease;
    }

    .skill-tag:hover {
      border-color: var(--accent);
      color: var(--accent2);
    }

    .about-links {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .about-link {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--bg);
      background: var(--accent);
      border: 1px solid var(--accent);
      padding: 12px 26px;
      transition: all 0.3s ease;
    }

    .about-link:hover {
      background: var(--accent2);
      border-color: var(--accent2);
    }

    .about-link-ghost {
      color: var(--text-muted) !important;
      background: none !important;
      border-color: var(--border) !important;
    }

    .about-link-ghost:hover {
      border-color: var(--accent) !important;
      color: var(--accent2) !important;
      background: var(--accent-dim) !important;
    }

    /* ===================== CONTACT ===================== */
    #contact {
      padding: 100px 6vw;
      border-top: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

    .contact-bg-text {
      position: absolute;
      bottom: 0;
      right: 4vw;
      font-family: var(--font-display);
      font-size: clamp(80px, 16vw, 180px);
      font-weight: 700;
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1px rgba(37, 37, 33, 0.5);
      pointer-events: none;
      user-select: none;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      max-width: 1440px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 900px) {
      .contact-inner {
        grid-template-columns: 1fr;
        gap: 52px;
      }
    }

    .contact-eyebrow {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .contact-eyebrow::before {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--accent);
    }

    .contact-heading {
      font-family: var(--font-display);
      font-size: clamp(30px, 4vw, 52px);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.025em;
      color: var(--white);
      margin-bottom: 24px;
    }

    .contact-heading em {
      font-style: italic;
      color: var(--accent2);
      font-weight: 300;
    }

    .contact-body {
      font-size: 15px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.85;
      margin-bottom: 44px;
      max-width: 360px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .contact-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .contact-item-icon {
      width: 40px;
      height: 40px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: border-color 0.3s;
    }

    .contact-item:hover .contact-item-icon {
      border-color: var(--accent);
    }

    .contact-item-icon svg {
      width: 16px;
      height: 16px;
      fill: none;
      stroke: var(--text-muted);
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .contact-item-icon svg.whatsapp-ico {
      fill: var(--text-muted);
      stroke: none;
      width: 18px;
      height: 18px;
    }

    .contact-item-label {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 4px;
    }

    .contact-item-value {
      font-family: var(--font-sans);
      font-size: 14px;
      color: var(--text-muted);
    }

    .contact-item-value a {
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .contact-item-value a:hover {
      color: var(--accent2);
    }

    /* Contact Form */
    .contact-form {
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    @media (max-width: 500px) {
      .form-row {
        grid-template-columns: 1fr;
      }
    }

    .form-group {
      position: relative;
      border: 1px solid var(--border);
      margin: -1px 0 0 -1px;
    }

    .form-group label {
      position: absolute;
      top: 16px;
      left: 20px;
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-dim);
      transition: all 0.2s ease;
      pointer-events: none;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: transparent;
      border: none;
      outline: none;
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 300;
      color: var(--text);
      padding: 36px 20px 14px;
      resize: none;
    }

    .form-group select {
      -webkit-appearance: none;
      appearance: none;
      cursor: pointer;
    }

    .form-group select option {
      background: var(--surface);
      color: var(--text);
    }

    .form-group textarea {
      min-height: 140px;
    }

    .form-group:focus-within {
      border-color: var(--accent);
      z-index: 1;
    }

    .form-group:focus-within label {
      color: var(--accent);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: transparent;
    }

    .form-submit-row {
      margin-top: 1px;
      border: 1px solid var(--border);
      margin-left: -1px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 20px 24px;
    }

    .form-submit-btn {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--bg);
      background: var(--accent);
      border: 1px solid var(--accent);
      padding: 14px 28px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .form-submit-btn:hover {
      background: var(--accent2);
      border-color: var(--accent2);
    }

    .form-success {
      display: none;
      padding: 40px;
      border: 1px solid rgba(196, 169, 106, 0.3);
      background: rgba(196, 169, 106, 0.04);
      text-align: center;
    }

    .form-success.show {
      display: block;
    }

    .form-success-icon {
      font-size: 28px;
      margin-bottom: 12px;
      color: var(--accent);
    }

    .form-success-title {
      font-family: var(--font-display);
      font-size: 22px;
      font-style: italic;
      color: var(--accent2);
      margin-bottom: 8px;
    }

    .form-success-sub {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      text-transform: uppercase;
    }

    /* ===================== FOOTER ===================== */
    footer {
      border-top: 1px solid var(--border);
      padding: 40px 6vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-copy {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    .footer-mark {
      font-family: var(--font-display);
      font-size: 13px;
      font-style: italic;
      color: var(--accent);
    }

    /* ===================== LIGHTBOX ===================== */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: rgba(8, 8, 7, 0.96);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
      backdrop-filter: blur(10px);
    }

    .lightbox.active {
      opacity: 1;
      pointer-events: all;
    }

    .lightbox-inner {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .lightbox-img {
      max-width: 90vw;
      max-height: 80vh;
      object-fit: contain;
      border: 1px solid var(--border);
      transform: scale(0.94);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .lightbox.active .lightbox-img {
      transform: scale(1);
    }

    .lightbox-caption {
      margin-top: 20px;
      text-align: center;
    }

    .lightbox-caption-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 600;
      color: var(--white);
    }

    .lightbox-caption-sub {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-top: 5px;
    }

    .lightbox-close {
      position: fixed;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      background: rgba(22, 22, 20, 0.8);
      border: 1px solid var(--border);
      color: var(--text-muted);
      cursor: pointer;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      border-radius: 50%;
      backdrop-filter: blur(4px);
      z-index: 9100;
    }

    .lightbox-close:hover {
      border-color: var(--accent);
      color: var(--accent2);
    }

    .lightbox-nav {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(22, 22, 20, 0.7);
      border: 1px solid var(--border);
      color: var(--text-muted);
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 20px;
      transition: all 0.2s;
      border-radius: 50%;
      backdrop-filter: blur(4px);
      z-index: 9100;
    }

    .lightbox-nav:hover {
      border-color: var(--accent);
      color: var(--accent2);
    }

    .lightbox-prev {
      left: 24px;
    }

    .lightbox-next {
      right: 24px;
    }

    /* ===================== SCROLL REVEAL ===================== */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    /* ===================== BACK TO TOP ===================== */
    #btt {
      position: fixed;
      bottom: 32px;
      right: 48px;
      width: 48px;
      height: 48px;
      border: 1px solid var(--border);
      background: var(--surface);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      overflow: hidden;
      z-index: 200;
      opacity: 0;
      transform: translateY(12px);
      pointer-events: none;
      transition:
        border-color 0.3s,
        opacity 0.4s,
        transform 0.4s;
    }

    #btt::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--accent);
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      z-index: 0;
    }

    #btt:hover::before {
      transform: translateY(0);
    }

    #btt:hover {
      border-color: var(--accent);
    }

    #btt:hover svg path {
      stroke: var(--bg);
    }

    #btt svg {
      position: relative;
      z-index: 1;
    }

    #btt.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 600px) {
      .section-deco {
        display: none;
      }

      .trigger-count {
        display: none;
      }

      .lightbox-prev {
        left: 10px;
      }

      .lightbox-next {
        right: 10px;
      }

      .hero-vert {
        display: none;
      }

      .about-badge {
        width: 80px;
        height: 80px;
        right: 0;
        bottom: -10px;
      }

      .about-badge-num {
        font-size: 22px;
      }
    }

    /* ===================== HERO SKETCH CANVAS ===================== */
    #heroCanvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      display: block;
    }

    .hero-glow,
    .hero-glow-2,
    .hero-vert,
    .hero-content,
    .hero-stats {
      position: relative;
      z-index: 2;
    }

    .hero-glow {
      position: absolute;
      z-index: 1;
    }

    .hero-glow-2 {
      position: absolute;
      z-index: 1;
    }
