
  :root {
    --gold: #BEF574;
    --gold-light: #BEF574;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --white: #F5F0E8;
    --grey: #888888;
    --border: rgba(201,168,76,0.2);
  }

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

  html { scroll-behavior: smooth; }

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

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    position: fixed;
    width: 40px; height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0.5;
  }
  .cursor.hover { width: 20px; height: 20px; }
  .cursor-ring.hover { width: 60px; height: 60px; opacity: 0.2; }

  /* NOISE TEXTURE */
  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.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s, background 0.4s;
  }
  nav.scrolled {
    background: rgba(10,10,10,0.95);
    border-color: var(--border);
    backdrop-filter: blur(20px);
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--white);
    text-decoration: none;
  }
  .logo span { color: var(--gold); }

  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    color: var(--grey);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--gold);
    color: var(--dark) !important;
    padding: 10px 24px !important;
    border-radius: 2px;
  }
  .nav-cta:hover { background: var(--gold-light); color: var(--dark) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 60px 100px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
  }

  .hero-lines {
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    opacity: 0.06;
  }
  .hero-lines::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 80px solid var(--gold);
  }
  .hero-lines::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 40px solid var(--gold);
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }
  .hero-tag span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }
  .hero-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 8vw, 110px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -2px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
  }
  .hero-desc {
    max-width: 420px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey);
    font-weight: 300;
  }

  .hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 16px 40px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-outline {
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: border-color 0.3s, color 0.3s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s 1.2s forwards;
  }
  .scroll-indicator span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); }
  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
  }

  /* STATS */
  .stats {
    padding: 80px 60px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--dark-2);
  }
  .stat {
    padding: 40px;
    border-right: 1px solid var(--border);
    text-align: center;
  }
  .stat:last-child { border-right: none; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
  }
  .stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
  }

  /* SERVICES */
  .section {
    padding: 120px 60px;
  }
  .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 80px;
  }
  .section-tag {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
  }
  .section-title em { font-style: italic; color: var(--gold); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .service-card {
    background: var(--dark);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
  }
  .service-card:hover { background: var(--dark-3); }
  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.4s;
  }
  .service-card:hover::after { width: 100%; }

  .service-num {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    color: rgba(201,168,76,0.08);
    position: absolute;
    top: 20px; right: 30px;
    line-height: 1;
  }
  .service-icon {
    width: 48px; height: 48px;
    margin-bottom: 24px;
    color: var(--gold);
  }
  .service-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
  }
  .service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--grey);
    font-weight: 300;
  }

  /* PORTFOLIO */
  .portfolio { background: var(--dark-2); }
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .portfolio-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--dark-3);
    transition: border-color 0.3s, transform 0.4s;
    cursor: none;
  }
  .portfolio-card:hover { border-color: var(--gold); transform: translateY(-6px); }
  .portfolio-preview {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--dark);
  }
  .portfolio-preview iframe {
    width: 200%;
    height: 200%;
    transform: scale(0.5);
    transform-origin: top left;
    pointer-events: none;
    border: none;
  }
  .portfolio-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--dark-3));
  }
  .portfolio-info { padding: 24px; }
  .portfolio-domain {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .portfolio-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .tag {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--grey);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 2px;
  }
  .portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    transition: gap 0.3s;
  }
  .portfolio-link:hover { gap: 14px; }
  .portfolio-link svg { width: 14px; height: 14px; }

  /* PROCESS */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border);
    z-index: 0;
  }
  .process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  .step-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    background: var(--dark);
    position: relative;
  }
  .step-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
  }
  .step-desc {
    font-size: 12px;
    color: var(--grey);
    line-height: 1.6;
  }

  /* CONTACT */
  .contact { background: var(--dark-3); }
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
  }
  .contact-info p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 40px;
    font-weight: 300;
  }
  .contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--grey);
    font-size: 14px;
  }
  .contact-detail svg { color: var(--gold); flex-shrink: 0; }

  .contact-form { display: flex; flex-direction: column; gap: 20px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    background: var(--dark);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s;
    resize: vertical;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--gold); }
  .form-group select option { background: var(--dark); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  /* FOOTER */
  footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-left .logo { font-size: 20px; display: block; margin-bottom: 8px; }
  .footer-copy { font-size: 12px; color: var(--grey); }
  .footer-links { display: flex; gap: 32px; }
  .footer-links a {
    font-size: 12px;
    color: var(--grey);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    to { opacity: 1; }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* MOBILE */
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    .hero { padding: 0 24px 80px; }
    .hero h1 { font-size: 48px; letter-spacing: -1px; }
    .hero-bottom { flex-direction: column; gap: 32px; align-items: flex-start; }
    .stats { grid-template-columns: repeat(2, 1fr); padding: 40px 24px; }
    .stat { border-right: 1px solid var(--border); }
    .stat:nth-child(2n) { border-right: none; }
    .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
    .section { padding: 80px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 32px; }
    .process-steps::before { display: none; }
    .contact-inner { grid-template-columns: 1fr; gap: 60px; }
    footer { flex-direction: column; gap: 24px; text-align: center; }
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
  }
