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

    :root {
      --gold: #c9a84c;
      --gold-light: #f0d060;
      --dark: #0d0a06;
      --dark2: #160e04;
      --brown: #2a1a0a;
      --red: #c0392b;
      --text: #e8dcc8;
      --muted: #8a7a60;
      --white: #fff;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--dark);
      color: var(--text);
      font-family: 'Rajdhani', sans-serif;
      font-size: 17px;
      line-height: 1.6;
      overflow-x: hidden;
      cursor: none;
    }

    /* Custom Cursor */
    .cursor {
      width: 12px; height: 12px;
      background: var(--gold);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s ease;
      mix-blend-mode: difference;
    }
    .cursor-ring {
      width: 36px; height: 36px;
      border: 1.5px solid var(--gold);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9998;
      transform: translate(-50%, -50%);
      transition: all 0.18s ease;
      opacity: 0.6;
    }

    /* 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: 0;
      opacity: 0.4;
    }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 6vw;
      background: linear-gradient(to bottom, rgba(13,10,6,0.98), transparent);
      transition: background 0.3s;
    }
    nav.scrolled { background: rgba(13,10,6,0.97); border-bottom: 1px solid rgba(201,168,76,0.15); }

    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.7rem;
      letter-spacing: 3px;
      color: var(--gold);
      text-decoration: none;
    }
    .nav-logo span { color: var(--white); }

    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
      background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.25s ease;
    }
    .nav-links a:hover { color: var(--gold-light); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: none; }
    .nav-toggle span { display: block; width: 26px; height: 2px; background: var(--gold); transition: all 0.3s; }

    /* HERO */
    #home {
      min-height: 100vh;
      display: flex; align-items: center;
      position: relative;
      padding: 0 6vw;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(192,57,43,0.06) 0%, transparent 60%),
        linear-gradient(160deg, #160e04 0%, #0d0a06 50%, #12080a 100%);
    }

    .hero-lines {
      position: absolute; inset: 0;
      background-image:
        repeating-linear-gradient(90deg, rgba(201,168,76,0.04) 0px, rgba(201,168,76,0.04) 1px, transparent 1px, transparent 80px),
        repeating-linear-gradient(0deg, rgba(201,168,76,0.04) 0px, rgba(201,168,76,0.04) 1px, transparent 1px, transparent 80px);
    }

    .hero-content { position: relative; z-index: 2; max-width: 700px; }

    .hero-tag {
      display: inline-block;
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.4);
      padding: 0.35rem 1rem;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.8s ease both;
    }

    .hero-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 10vw, 8rem);
      line-height: 0.92;
      letter-spacing: 4px;
      color: var(--white);
      animation: fadeUp 0.8s 0.1s ease both;
    }
    .hero-name .accent { color: var(--gold); display: block; }

    .hero-desc {
      margin-top: 1.5rem;
      font-size: 1.1rem;
      color: var(--muted);
      max-width: 500px;
      line-height: 1.8;
      animation: fadeUp 0.8s 0.2s ease both;
    }

    .hero-cta {
      margin-top: 2.5rem;
      display: flex; gap: 1rem; flex-wrap: wrap;
      animation: fadeUp 0.8s 0.3s ease both;
    }

    .btn {
      display: inline-block;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 0.9rem 2rem;
      text-decoration: none;
      transition: all 0.25s;
      cursor: none;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--dark);
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-outline {
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.5);
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    }
    .btn-outline:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }

    .hero-stats {
      position: absolute; right: 6vw; bottom: 15%;
      display: flex; flex-direction: column; gap: 2rem;
      z-index: 2;
      animation: fadeUp 0.8s 0.4s ease both;
    }
    .stat { text-align: right; }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

    .scroll-hint {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
      font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--muted);
      animation: bounce 2s infinite;
      z-index: 2;
    }
    .scroll-hint::after {
      content: '↓';
      font-size: 1rem; color: var(--gold);
    }

    @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
    @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

    /* SECTION COMMON */
    section { position: relative; z-index: 1; }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    .section-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 0.75rem;
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      color: var(--white);
      letter-spacing: 3px;
      line-height: 1;
    }
    .section-line {
      width: 60px; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 1rem auto 0;
    }

    /* ABOUT */
    #about {
      padding: 8rem 6vw;
      background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
    }

    .about-visual {
      position: relative;
    }
    .about-box {
      width: 100%;
      aspect-ratio: 1;
      background: linear-gradient(135deg, var(--brown) 0%, #1a0e05 100%);
      border: 1px solid rgba(201,168,76,0.2);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 8rem;
      color: rgba(201,168,76,0.08);
      letter-spacing: 5px;
      position: relative;
      overflow: hidden;
    }
    .about-box::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .about-box-label {
      position: absolute; bottom: 1.5rem; left: 1.5rem;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem;
      letter-spacing: 3px;
      color: var(--gold);
    }
    .about-corner {
      position: absolute;
      width: 20px; height: 20px;
      border-color: var(--gold);
      border-style: solid;
      opacity: 0.6;
    }
    .about-corner.tl { top: -10px; left: -10px; border-width: 2px 0 0 2px; }
    .about-corner.br { bottom: -10px; right: -10px; border-width: 0 2px 2px 0; }

    .about-text h2 {
      font-family: 'Syne', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }
    .about-text h2 em { color: var(--gold); font-style: normal; }
    .about-text p { color: var(--muted); margin-bottom: 1.2rem; line-height: 1.9; }

    .skills-list {
      display: flex; flex-wrap: wrap; gap: 0.6rem;
      margin-top: 2rem;
    }
    .skill-tag {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0.4rem 0.9rem;
      border: 1px solid rgba(201,168,76,0.3);
      color: var(--gold);
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
      background: rgba(201,168,76,0.05);
    }

    /* PORTFOLIO */
    #portfolio {
      padding: 8rem 6vw;
      background: var(--dark);
    }

    .portfolio-filters {
      display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
      margin-bottom: 3rem;
    }
    .filter-btn {
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0.5rem 1.5rem;
      border: 1px solid rgba(201,168,76,0.3);
      background: transparent;
      color: var(--muted);
      cursor: none;
      transition: all 0.2s;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    }
    .filter-btn.active, .filter-btn:hover {
      background: var(--gold);
      color: var(--dark);
      border-color: var(--gold);
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .port-card {
      position: relative;
      overflow: hidden;
      background: var(--brown);
      border: 1px solid rgba(201,168,76,0.12);
      aspect-ratio: 1;
      transition: transform 0.3s ease, border-color 0.3s;
      cursor: none;
    }
    .port-card:nth-child(3n+1) { grid-row: span 1; }
    .port-card.wide { grid-column: span 2; aspect-ratio: 2/1; }
    .port-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.4); }

    .port-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease, filter 0.3s;
      filter: brightness(0.9) saturate(1.1);
    }
    .port-card:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.2); }

    .port-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(13,10,6,0.95) 0%, rgba(13,10,6,0.3) 50%, transparent 100%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 1.5rem;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .port-card:hover .port-overlay { opacity: 1; }

    .port-cat {
      font-size: 0.7rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.3rem;
    }
    .port-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      letter-spacing: 2px;
      color: var(--white);
    }

    /* placeholder cards */
    .port-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 0.5rem;
      background: linear-gradient(135deg, #1a0e05, #120808);
      color: rgba(201,168,76,0.15);
    }
    .port-placeholder svg { width: 40px; height: 40px; opacity: 0.2; }
    .port-placeholder span { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(201,168,76,0.2); }

    /* SERVICES */
    #services {
      padding: 8rem 6vw;
      background: var(--dark2);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .service-card {
      padding: 2.5rem 2rem;
      border: 1px solid rgba(201,168,76,0.12);
      background: rgba(201,168,76,0.02);
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, background 0.3s;
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      transform: scaleX(0);
      transition: transform 0.4s;
    }
    .service-card:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.04); }
    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      font-size: 2.2rem;
      margin-bottom: 1.2rem;
      display: block;
    }
    .service-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 2px;
      color: var(--white);
      margin-bottom: 0.8rem;
    }
    .service-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.8; }

    /* CONTACT */
    #contact {
      padding: 8rem 6vw;
      background: var(--dark);
    }

    .contact-wrapper {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
    }

    .contact-info h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: 3px;
      color: var(--white);
      margin-bottom: 0.5rem;
    }
    .contact-info p { color: var(--muted); margin-bottom: 2.5rem; line-height: 1.8; }

    .contact-item {
      display: flex; align-items: flex-start; gap: 1rem;
      margin-bottom: 1.8rem;
    }
    .contact-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: rgba(201,168,76,0.08);
      border: 1px solid rgba(201,168,76,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    }
    .contact-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
    .contact-value { color: var(--text); font-weight: 600; }
    .contact-value a { color: var(--text); text-decoration: none; }
    .contact-value a:hover { color: var(--gold-light); }

    .social-links {
      display: flex; gap: 0.8rem; margin-top: 2.5rem;
    }
    .social-link {
      width: 44px; height: 44px;
      background: rgba(201,168,76,0.05);
      border: 1px solid rgba(201,168,76,0.2);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted);
      text-decoration: none;
      font-size: 1.1rem;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
      transition: all 0.2s;
    }
    .social-link:hover { background: var(--gold); color: var(--dark); }

    /* Contact Form */
    .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
    .form-input, .form-textarea {
      background: rgba(201,168,76,0.04);
      border: 1px solid rgba(201,168,76,0.2);
      color: var(--text);
      font-family: 'Rajdhani', sans-serif;
      font-size: 1rem;
      padding: 0.85rem 1rem;
      outline: none;
      transition: border-color 0.2s;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    }
    .form-input:focus, .form-textarea:focus { border-color: var(--gold); background: rgba(201,168,76,0.07); }
    .form-textarea { resize: vertical; min-height: 120px; }
    .form-input::placeholder, .form-textarea::placeholder { color: rgba(138,122,96,0.5); }

    /* FOOTER */
    footer {
      padding: 2rem 6vw;
      border-top: 1px solid rgba(201,168,76,0.1);
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem;
      background: var(--dark2);
    }
    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.3rem;
      letter-spacing: 3px;
      color: var(--gold);
    }
    .footer-logo span { color: var(--muted); }
    .footer-copy { font-size: 0.8rem; color: var(--muted); letter-spacing: 1px; }

    /* Mobile */
    @media (max-width: 900px) {
      .about-grid, .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
      .hero-stats { display: none; }
      .port-card.wide { grid-column: span 1; aspect-ratio: 1; }
    }
    @media (max-width: 640px) {
      .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark2); padding: 1.5rem 6vw; gap: 1.2rem; border-bottom: 1px solid rgba(201,168,76,0.1); }
      .nav-links.open { display: flex; }
      .nav-toggle { display: flex; }
      .portfolio-grid { grid-template-columns: 1fr 1fr; }
    }

    /* Scroll reveal */
    .reveal { opacity: 0; transform: translateY(40px); transition: all 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  