/* ── VARIABLES ── */
:root {
  --black:      #080808;
  --off-black:  #111111;
  --dark:       #1a1a1a;
  --mid:        #2a2a2a;
  --border:     #2e2e2e;
  --grey:       #888888;
  --light-grey: #bbbbbb;
  --white:      #f5f3ee;
  --cream:      #e8e4dc;
  --accent:     #c8b89a;

  /* Font — mirip Hyperblack: bold condensed sans */
  --font-heading: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-ui:      'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--accent); }

.grain-overlay {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ── NAV ── */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95) 0%, transparent 100%);
  transition: background 0.4s, padding 0.3s;
}
#mainNav.scrolled {
  background: rgba(8,8,8,0.97);
  border-bottom: 1px solid var(--border);
  padding: 16px 48px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); text-decoration: none; flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }
.nav-logo img { height: 36px; width: auto; }
.nav-menu-wrap { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--light-grey); transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .current-menu-item a { color: var(--accent); }
.nav-cta {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--black) !important; background: var(--accent);
  padding: 11px 24px; transition: opacity 0.2s; flex-shrink: 0;
}
.nav-cta:hover { opacity: 0.85; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 1px; background: var(--white); transition: all 0.3s; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--black); background: var(--accent);
  padding: 14px 32px; transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-outline {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--light-grey); border: 1px solid var(--border);
  padding: 14px 32px; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ══════════════════════════════════════════
   HERO — SCATTERED FLOATING IMAGES
   Mirip Hyperblack: foto melayang, teks center
══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* Teks center di atas semua foto */
.hero-content {
  position: relative; z-index: 10;
  text-align: center;
  max-width: 680px;
  padding: 0 24px;
  pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: ''; display: block; width: 24px; height: 1px; background: var(--accent);
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 400;
  line-height: 1.6; color: var(--light-grey);
  max-width: 380px; margin: 0 auto 32px;
}
.hero-actions {
  display: flex; gap: 16px; align-items: center;
  justify-content: center; flex-wrap: wrap;
  pointer-events: all;
}

/* Floating scattered image cards */
.hero-floats {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
}
.hero-float {
  position: absolute;
  overflow: hidden;
  will-change: transform;
}
.hero-float img,
.hero-float .float-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.float-placeholder {
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-ui);
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mid);
}

/* Posisi & ukuran tiap foto — mirip layout Hyperblack */
.hero-float-1 {
  width: 22vw; max-width: 260px; min-width: 140px;
  aspect-ratio: 3/4;
  top: 8%; left: 8%;
  transform: rotate(-3deg);
}
.hero-float-2 {
  width: 18vw; max-width: 220px; min-width: 120px;
  aspect-ratio: 2/3;
  top: 4%; right: 14%;
  transform: rotate(2deg);
}
.hero-float-3 {
  width: 16vw; max-width: 200px; min-width: 110px;
  aspect-ratio: 3/4;
  bottom: 12%; left: 5%;
  transform: rotate(1.5deg);
}
.hero-float-4 {
  width: 20vw; max-width: 240px; min-width: 130px;
  aspect-ratio: 2/3;
  bottom: 8%; right: 8%;
  transform: rotate(-2deg);
}
.hero-float-5 {
  width: 14vw; max-width: 180px; min-width: 100px;
  aspect-ratio: 1/1;
  top: 38%; right: 4%;
  transform: rotate(3deg);
}

/* Parallax on scroll */
.hero-float { transition: transform 0.1s linear; }

/* Subtle vignette overlay */
.hero-vignette {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(8,8,8,0.55) 100%);
  pointer-events: none;
}

/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 14px 0; background: var(--off-black);
}
.marquee-track { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-track span {
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--grey); padding: 0 40px;
}
.marquee-track span.dot { color: var(--accent); padding: 0; font-size: 8px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION DEFAULTS ── */
section { padding: 100px 48px; }
.section-label {
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700; text-transform: uppercase;
  line-height: 0.95; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 20px;
}
.section-title em { font-style: italic; font-weight: 300; color: var(--accent); }
.section-body {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 300;
  line-height: 1.8; color: var(--grey); max-width: 520px;
}

/* ── WORK GRID ── */
.work-section { padding-top: 80px; }
.work-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 24px; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.work-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; background: var(--mid); }
.work-card.wide { grid-column: span 2; aspect-ratio: auto; min-height: 400px; }
.work-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); filter: brightness(0.7) contrast(1.05); }
.work-card:hover .work-card-img { transform: scale(1.04); }
.work-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.8) 0%, transparent 50%); opacity: 0; transition: opacity 0.4s; }
.work-card:hover .work-card-overlay { opacity: 1; }
.work-card-info { position: absolute; bottom: 28px; left: 28px; right: 28px; opacity: 0; transform: translateY(10px); transition: all 0.4s; }
.work-card:hover .work-card-info { opacity: 1; transform: translateY(0); }
.work-card-tag { font-family: var(--font-ui); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.work-card-name { font-family: var(--font-heading); font-size: 26px; font-weight: 700; text-transform: uppercase; color: var(--white); letter-spacing: -0.01em; }
.work-card-link { position: absolute; inset: 0; z-index: 3; }

/* ── SERVICES ── */
.services-section { background: var(--off-black); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 64px; align-items: end; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.service-card { background: var(--off-black); padding: 40px 36px; transition: background 0.3s; cursor: pointer; text-decoration: none; display: block; }
.service-card:hover { background: var(--dark); }
.service-num { font-family: var(--font-ui); font-size: 11px; font-weight: 500; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 20px; opacity: 0.6; }
.service-name { font-family: var(--font-heading); font-size: 28px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; color: var(--white); margin-bottom: 14px; line-height: 1.1; }
.service-desc { font-family: var(--font-body); font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--grey); }
.service-arrow { margin-top: 28px; font-family: var(--font-ui); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); display: flex; align-items: center; gap: 8px; }
.service-arrow::after { content: '→'; transition: transform 0.2s; }
.service-card:hover .service-arrow::after { transform: translateX(4px); }

/* ── METHOD ── */
.method-section { display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
.method-left { padding: 100px 72px; background: var(--black); }
.method-right { position: relative; overflow: hidden; min-height: 700px; background: var(--dark); display: flex; align-items: center; justify-content: center; }
.method-right-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5) contrast(1.1); }
.method-steps { margin-top: 52px; display: flex; flex-direction: column; }
.method-step { padding: 28px 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 36px 1fr; gap: 20px; align-items: start; }
.step-num { font-family: var(--font-ui); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; color: var(--accent); opacity: 0.5; padding-top: 2px; }
.step-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: var(--white); margin-bottom: 8px; }
.step-body { font-family: var(--font-body); font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--grey); }

/* ── STATS ── */
.stats-section { background: var(--off-black); border-top: 1px solid var(--border); display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 72px 48px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-heading); font-size: 72px; font-weight: 800; text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: 12px; letter-spacing: -0.03em; }
.stat-num span { color: var(--accent); }
.stat-label { font-family: var(--font-ui); font-size: 11px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); line-height: 1.5; }

/* ── CLIENTS ── */
.clients-section { padding: 72px 0; border-top: 1px solid var(--border); overflow: hidden; }
.clients-label { font-family: var(--font-ui); font-size: 10px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey); text-align: center; margin-bottom: 40px; }
.clients-track { display: flex; animation: marquee 22s linear infinite; white-space: nowrap; }
.client-logo { font-family: var(--font-heading); font-size: 16px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--border); padding: 0 52px; transition: color 0.3s; cursor: default; }
.client-logo:hover { color: var(--grey); }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 100px 48px; }
.testimonials-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.testimonial-card { background: var(--off-black); padding: 40px 36px; display: flex; flex-direction: column; }
.testimonial-quote { font-family: var(--font-heading); font-size: 52px; font-weight: 800; color: var(--accent); margin-bottom: 20px; opacity: 0.2; line-height: 1; }
.testimonial-text { font-family: var(--font-body); font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--light-grey); flex: 1; margin-bottom: 28px; }
.testimonial-author { font-family: var(--font-ui); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }

/* ── FAQ ── */
.faq-section { background: var(--off-black); border-top: 1px solid var(--border); }
.faq-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 64px; align-items: end; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; cursor: pointer; font-family: var(--font-body); font-size: 15px; font-weight: 400; color: var(--light-grey); transition: color 0.2s; gap: 24px; }
.faq-question:hover, .faq-question.open { color: var(--white); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--accent); transition: transform 0.3s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { font-family: var(--font-body); font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--grey); padding-bottom: 24px; max-width: 680px; }

/* ── CTA ── */
.cta-section { padding: 120px 48px; text-align: center; border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(200,184,154,0.06) 0%, transparent 65%); pointer-events: none; }
.cta-eyebrow { font-family: var(--font-ui); font-size: 10px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.cta-title { font-family: var(--font-heading); font-size: clamp(52px, 7vw, 100px); font-weight: 800; text-transform: uppercase; letter-spacing: -0.03em; line-height: 0.9; color: var(--white); margin-bottom: 16px; }
.cta-title em { font-style: italic; font-weight: 300; color: var(--accent); }
.cta-sub { font-family: var(--font-body); font-size: 14px; font-weight: 300; color: var(--grey); margin-bottom: 48px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
#siteFooter { background: var(--off-black); border-top: 1px solid var(--border); padding: 72px 48px 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.footer-logo { font-family: var(--font-heading); font-size: 16px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; display: block; }
.footer-logo span { color: var(--accent); }
.footer-logo img { height: 32px; width: auto; }
.footer-tagline { font-family: var(--font-body); font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--grey); max-width: 280px; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 16px; }
.footer-social { font-family: var(--font-ui); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); transition: color 0.2s; }
.footer-social:hover { color: var(--accent); }
.footer-col-title { font-family: var(--font-ui); font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-family: var(--font-body); font-size: 13px; font-weight: 300; color: var(--grey); transition: color 0.2s; }
.footer-links a:hover { color: var(--light-grey); }
.footer-hours { font-family: var(--font-body); font-size: 12px; color: var(--grey); margin-top: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-family: var(--font-body); font-size: 12px; color: var(--grey); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-family: var(--font-body); font-size: 12px; color: var(--grey); transition: color 0.2s; }
.footer-legal a:hover { color: var(--light-grey); }

/* ── INNER PAGES ── */
.page-hero { padding: 180px 48px 80px; border-bottom: 1px solid var(--border); }
.page-content { padding: 80px 48px; max-width: 860px; }
.page-content h2 { font-family: var(--font-heading); font-size: 40px; font-weight: 700; text-transform: uppercase; color: var(--white); margin: 48px 0 16px; }
.page-content p { font-family: var(--font-body); font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--light-grey); margin-bottom: 20px; }
.page-content ul { font-family: var(--font-body); color: var(--grey); font-size: 14px; line-height: 1.8; padding-left: 20px; margin-bottom: 20px; }

/* ── PORTFOLIO ARCHIVE ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; padding: 0 48px 100px; }
.portfolio-filter { padding: 48px 48px 0; display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { font-family: var(--font-ui); font-size: 11px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); border: 1px solid var(--border); padding: 8px 20px; background: none; cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { border-color: var(--accent); color: var(--accent); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.blog-card { background: var(--off-black); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 28px 28px 36px; }
.blog-card-meta { font-family: var(--font-ui); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.blog-card-title { font-family: var(--font-heading); font-size: 26px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 12px; line-height: 1.1; }
.blog-card-excerpt { font-family: var(--font-body); font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--grey); margin-bottom: 20px; }
.blog-card-link { font-family: var(--font-ui); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }

/* ── CONTACT ── */
.contact-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.contact-left { padding: 100px 72px; background: var(--black); }
.contact-right { padding: 100px 72px; background: var(--off-black); border-left: 1px solid var(--border); }
.contact-form label { display: block; font-family: var(--font-ui); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; margin-top: 28px; }
.contact-form label:first-child { margin-top: 0; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; background: var(--dark); border: 1px solid var(--border); color: var(--white); font-family: var(--font-body); font-size: 14px; font-weight: 300; padding: 14px 16px; outline: none; transition: border-color 0.2s; appearance: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .submit-btn { margin-top: 32px; }
.contact-info-item { padding: 24px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:first-child { padding-top: 0; }
.contact-info-label { font-family: var(--font-ui); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.contact-info-value { font-family: var(--font-body); font-size: 15px; font-weight: 300; color: var(--light-grey); line-height: 1.6; }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-header { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-section { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .hero-float-1 { width: 28vw; }
  .hero-float-2 { width: 24vw; }
  .hero-float-3 { width: 22vw; }
  .hero-float-4 { width: 26vw; }
  .hero-float-5 { display: none; }
}
@media (max-width: 768px) {
  #mainNav { padding: 20px 24px; }
  #mainNav.scrolled { padding: 14px 24px; }
  .nav-menu-wrap { display: none; flex-direction: column; align-items: flex-start; gap: 0; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(8,8,8,0.98); padding: 80px 32px 40px; }
  .nav-menu-wrap.open { display: flex; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 18px 0; font-size: 13px; }
  .nav-cta { margin-top: 32px; }
  .nav-toggle { display: flex; position: relative; z-index: 101; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
  section { padding: 72px 24px; }
  .hero-float-1 { width: 36vw; top: 6%; left: 2%; }
  .hero-float-2 { width: 30vw; top: 2%; right: 2%; }
  .hero-float-3 { width: 28vw; bottom: 10%; left: 2%; }
  .hero-float-4 { width: 32vw; bottom: 6%; right: 2%; }
  .hero-float-5 { display: none; }
  .hero h1 { font-size: clamp(44px, 12vw, 72px); }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-card.wide { grid-column: span 2; }
  .services-grid { grid-template-columns: 1fr; }
  .method-section { grid-template-columns: 1fr; }
  .method-left { padding: 72px 24px; }
  .method-right { min-height: 400px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 72px 24px; }
  .portfolio-grid, .blog-grid { grid-template-columns: 1fr 1fr; padding: 0 24px 72px; }
  .portfolio-filter { padding: 40px 24px 0; }
  .faq-header { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-card.wide { grid-column: span 1; }
  .portfolio-grid, .blog-grid { grid-template-columns: 1fr; }
}
