 :root {
    --black: #0a0a0a;
    --white: #f5f5f0;
    --gray-1: #1a1a1a;
    --gray-2: #2a2a2a;
    --gray-3: #555;
    --gray-4: #888;
    --gray-5: #bbb;
    --gray-6: #ddd;
    --accent: #e8e8e0;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Mono', monospace;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--white);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
  }
  .cursor-follower {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(245,245,240,0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.12s ease;
    mix-blend-mode: difference;
  }

  /* 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: 9997;
    opacity: 0.35;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 28px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: normal;
  }
  nav::after {
    content: '';
    position: absolute;
    bottom: 0; left: 60px; right: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,245,240,0.15), transparent);
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: var(--white);
  }
  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    color: var(--gray-4);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    padding: 10px 24px;
    border: 1px solid var(--gray-3);
    color: var(--white) !important;
    font-size: 11px !important;
    letter-spacing: 0.15em;
    transition: background 0.3s, border-color 0.3s !important;
  }
  .nav-cta:hover { background: var(--white); color: var(--black) !important; border-color: var(--white); }

  /* HERO */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 160px 60px 80px;
    position: relative;
    z-index: 2;
  }
  .hero-tag {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-4);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .hero-tag::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gray-4);
  }
  .hero-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(56px, 7vw, 100px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
  }
  .hero-name em {
    font-style: italic;
    color: var(--gray-4);
  }
  .hero-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--gray-4);
    max-width: 380px;
    margin-bottom: 56px;
  }
  .hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .btn-primary {
    padding: 16px 40px;
    background: var(--white);
    color: var(--black);
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--gray-3); }
  .btn-ghost {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-4);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s, gap 0.3s;
  }
  .btn-ghost:hover { color: var(--white); gap: 16px; }
  .hero-right {
    position: relative;
    overflow: hidden;
  }
  .hero-img-wrap {
    position: absolute;
    inset: 0;
    background: var(--gray-1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .hero-img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--gray-1) 0%, var(--gray-2) 50%, #111 100%);
    position: relative;
  }
  /* Portrait placeholder */
 .portrait-art {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(160deg, #1c1c1c 0%, #0f0f0f 100%); */
    overflow: hidden;
  }
  .portrait-art::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse at center bottom, #2a2a2a 0%, transparent 70%);
    border-radius: 50% 50% 0 0;
  }
  .portrait-art::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* Ukuran Foto */
    width: 800px; 
    height: 800px;
    
    /* Setting Gambar Biar Tajam */
    background-image: url('https://herlambang.biz.id/upload/profilqq.png');
    background-size: contain; /* Pakai contain biar foto nggak kepotong */
    background-repeat: no-repeat;
    background-position: center;
    
    /* Perbaikan Kualitas (Anti-Pecah) */
    image-rendering: -webkit-optimize-contrast; /* Buat Chrome/Safari biar makin tajam */
    opacity: 1; 
    
    /* Catatan: Hapus font-size & color kalau ini cuma buat foto, Boss */
}
  .hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    right: 60px;
    writing-mode: vertical-rl;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--gray-3);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
  }
  .hero-scroll-hint::after {
    content: '';
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gray-3), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
  }
  .hero-stats {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 3;
  }
  .stat-item {
    background: var(--black);
    border: 1px solid var(--gray-2);
    padding: 20px 24px;
    text-align: center;
    width: 90px;
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    display: block;
  }
  .stat-label {
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--gray-4);
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
  }

  /* SECTION BASE */
  section { padding: 120px 60px; }
  .section-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 80px;
  }
  .section-num {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gray-4);
  }
  .section-line {
    flex: 1;
    height: 1px;
    background: var(--gray-2);
    max-width: 60px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1;
  }
  .section-title em { font-style: italic; color: var(--gray-4); }

  /* ABOUT */
  #about { background: var(--gray-1); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .about-text {
    font-size: 15px;
    line-height: 2;
    color: var(--gray-5);
  }
  .about-text p + p { margin-top: 24px; }
  .about-text strong { color: var(--white); font-weight: 500; }
  .skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .skill-item {
    padding: 20px;
    background: var(--gray-2);
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .skill-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    background: var(--white);
    width: 0;
    transition: width 0.4s ease;
  }
  .skill-item:hover { background: #2f2f2f; }
  .skill-item:hover::before { width: 100%; }
  .skill-name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
  }
  .skill-level {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--gray-4);
    text-transform: uppercase;
  }

  /* PORTFOLIO */
  #portfolio { background: var(--black); }
  .portfolio-filter {
    display: flex;
    gap: 4px;
    margin-bottom: 48px;
  }
  .filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--gray-2);
    background: transparent;
    color: var(--gray-4);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: none;
    transition: all 0.2s;
  }
  .filter-btn.active, .filter-btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
  }
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .portfolio-item {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--gray-1);
    overflow: hidden;
    cursor: none;
  }
  .portfolio-item:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
  .portfolio-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(100%) brightness(0.6);
  }
  .p1 { background: linear-gradient(135deg, #1a1a1a, #2a2a2a); }
  .p2 { background: linear-gradient(45deg, #111, #222); }
  .p3 { background: linear-gradient(225deg, #1e1e1e, #0e0e0e); }
  .p4 { background: linear-gradient(315deg, #151515, #252525); }
  .p5 { background: linear-gradient(180deg, #1a1a1a, #0f0f0f); }
  .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.4s;
  }
  .portfolio-item:hover .portfolio-overlay { opacity: 1; }
  .portfolio-item:hover .portfolio-bg { transform: scale(1.05); filter: grayscale(80%) brightness(0.4); }
  /* Pattern backgrounds */
  .p1::after, .p2::after, .p3::after, .p4::after, .p5::after {
    content: '';
    position: absolute;
    inset: 0;
  }
  .p1::after { background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 41px); }
  .p2::after { background-image: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.06) 0%, transparent 60%); }
  .p3::after { background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 21px); }
  .p4::after { background-image: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%); }
  .p5::after { background-image: repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 31px); }
  .portfolio-cat {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-4);
    margin-bottom: 8px;
  }
  .portfolio-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .portfolio-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--gray-4);
  }

  /* SERVICES */
  #services { background: var(--gray-1); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .service-card {
    padding: 48px 36px;
    background: var(--black);
    border: 1px solid var(--gray-2);
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .service-card:hover { border-color: var(--gray-3); transform: translateY(-4px); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    font-size: 28px;
    margin-bottom: 24px;
    display: block;
    filter: grayscale(1);
  }
  .service-num {
    position: absolute;
    top: 24px; right: 24px;
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    color: rgba(255,255,255,0.04);
    font-weight: 900;
    line-height: 1;
  }
  .service-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .service-desc {
    font-size: 12px;
    line-height: 1.9;
    color: var(--gray-4);
  }

  /* CLIENTS */
  #clients { background: var(--black); padding: 80px 60px; }
  .clients-inner {
    border-top: 1px solid var(--gray-2);
    border-bottom: 1px solid var(--gray-2);
    padding: 60px 0;
  }
  .clients-label {
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-4);
    margin-bottom: 48px;
  }
  .clients-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .client-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-3);
    letter-spacing: -0.02em;
    transition: color 0.3s;
    white-space: nowrap;
  }
  .client-logo:hover { color: var(--white); }

  /* TESTIMONIALS */
  #testimonials { background: var(--gray-1); }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
  .testimonial-card {
    padding: 48px 40px;
    background: var(--black);
    border: 1px solid var(--gray-2);
    position: relative;
    transition: border-color 0.3s;
  }
  .testimonial-card:hover { border-color: var(--gray-3); }
  .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: rgba(255,255,255,0.06);
    line-height: 0.7;
    margin-bottom: 24px;
    display: block;
  }
  .testimonial-text {
    font-size: 14px;
    line-height: 1.9;
    color: var(--gray-5);
    margin-bottom: 32px;
    font-style: italic;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-2);
  }
  .author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gray-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-4);
    flex-shrink: 0;
  }
  .author-name {
    font-size: 13px;
    font-weight: 500;
    display: block;
  }
  .author-role {
    font-size: 10px;
    color: var(--gray-4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
    display: block;
  }
  .star-rating {
    margin-top: 8px;
    font-size: 12px;
    color: var(--gray-5);
    letter-spacing: 3px;
  }

  /* BLOG */
  #blog { background: var(--black); }
  .blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2px;
  }
  .blog-card {
    background: var(--gray-1);
    overflow: hidden;
    transition: transform 0.4s;
    cursor: none;
  }
  .blog-card:hover { transform: translateY(-4px); }
  .blog-thumb {
    height: 200px;
    background: var(--gray-2);
    position: relative;
    overflow: hidden;
  }
  .blog-card:first-child .blog-thumb { height: 280px; }
  .blog-thumb-art {
    position: absolute;
    inset: 0;
  }
  .bt1 { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #111 100%); }
  .bt1::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px),
    repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px);
  }
  .bt2 { background: radial-gradient(circle at 40% 60%, #222 0%, #0d0d0d 100%); }
  .bt3 { background: linear-gradient(45deg, #111 0%, #1e1e1e 100%); }
  .bt3::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.07) 0%, transparent 40%);
  }
  .blog-content { padding: 28px; }
  .blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    align-items: center;
  }
  .blog-tag {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 10px;
    background: var(--gray-2);
    color: var(--gray-4);
  }
  .blog-date {
    font-size: 10px;
    color: var(--gray-4);
    letter-spacing: 0.1em;
  }
  .blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 700;
  }
  .blog-card:first-child .blog-title { font-size: 24px; }
  .blog-excerpt {
    font-size: 12px;
    line-height: 1.8;
    color: var(--gray-4);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-4);
    text-decoration: none;
    transition: color 0.3s, gap 0.3s;
  }
  .blog-read-more:hover { color: var(--white); gap: 14px; }

/* PRODUCT */
#product { 
  background: var(--black); }
.container {
  max-width: 1850px;
  margin: 0 auto;
  padding: 0 20px;
}

#product { 
  background: var(--gray-1); 
  padding: 120px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; /* Kasih jarak biar antar produk bernapas */
}

.product-card {
  padding: 40px;
  background: var(--black);
  border: 1px solid var(--gray-2);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

/* Visual Product (Showcase Element) */
.product-visual {
  margin: 30px -40px -40px -40px; /* Narik gambar ke pinggir card */
  height: 200px;
  overflow: hidden;
  background: #1a1a1a;
  border-top: 1px solid var(--gray-2);
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) opacity(0.6);
  transition: all 0.6s ease;
}

/* Hover State */
.product-card:hover {
  border-color: var(--gray-3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.product-card:hover .product-visual img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}

.product-initial {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 40px;
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.03);
  font-weight: 900;
}

.product-category {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-4);
  margin-bottom: 12px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
}

.product-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-5);
  margin-bottom: 30px;
  flex-grow: 1;
}

.product-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.product-link:hover {
  letter-spacing: 0.2em;
  color: var(--gray-4);
}

/* Responsive buat Mobile */
@media (max-width: 992px) {
  .product-grid { grid-template-columns: 1fr; }
}

  /* CONTACT */
  #contact {
    background: var(--black);
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .contact-left .section-title { font-size: clamp(40px, 5vw, 72px); }
  .contact-tagline {
    font-size: 14px;
    line-height: 1.9;
    color: var(--gray-4);
    margin-top: 32px;
    max-width: 400px;
  }
  .contact-links {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .contact-link {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--gray-4);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.1em;
    transition: color 0.3s;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-2);
  }
  .contact-link:hover { color: var(--white); }
  .contact-link-icon { font-size: 16px; filter: grayscale(1); width: 24px; }
  .contact-form { display: flex; flex-direction: column; gap: 2px; }

  /* ICON */
  .contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  }

  .contact-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
  .form-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-4);
  }
  .form-input, .form-textarea {
    background: var(--gray-1);
    border: 1px solid var(--gray-2);
    color: var(--white);
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    padding: 16px 20px;
    outline: none;
    transition: border-color 0.3s;
    resize: none;
  }
  .form-input:focus, .form-textarea:focus { border-color: var(--gray-4); }
  .form-textarea { min-height: 140px; }
  .form-submit {
    margin-top: 4px;
    padding: 18px 40px;
    background: var(--white);
    color: var(--black);
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: none;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
  }
  .form-submit:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--gray-3); }

  /* FOOTER */
  footer {
    background: var(--gray-1);
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--gray-2);
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
  }
  .footer-copy {
    font-size: 11px;
    color: var(--gray-4);
    letter-spacing: 0.05em;
  }
  .social-links {
    display: flex;
    gap: 20px;
  }
  .social-links a {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-4);
    text-decoration: none;
    transition: color 0.3s;
  }
  .social-links a:hover { color: var(--white); }

  /* ANIMATIONS */
  .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* MARQUEE */
  .marquee-wrap {
    overflow: hidden;
    padding: 32px 0;
    background: var(--white);
    display: flex;
  }
  .marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
    flex-shrink: 0;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .marquee-item {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .marquee-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gray-3);
    flex-shrink: 0;
  }

  @media (max-width: 1024px) {
    nav { padding: 24px 32px; }
    #hero { grid-template-columns: 1fr; }
    .hero-right { height: 50vh; }
    .hero-left { padding: 120px 32px 60px; }
    .hero-stats { right: 16px; }
    section { padding: 80px 32px; }
    .about-grid, .portfolio-grid, .services-grid,
    .testimonials-grid, .blog-grid, #contact { grid-template-columns: 1fr; }
    .portfolio-item:first-child { grid-column: span 1; }
    footer { padding: 32px; flex-wrap: wrap; gap: 16px; }
    .nav-links { display: none; }
  }