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

:root {
  --black: #070707;
  --offwhite: #F2EDE4;
  --muted: #888480;
  --accent: #F0E500;
  --accent-dim: #B8AE00;
  --surface: #111111;
  --border: rgba(242,237,228,0.08);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--offwhite);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

/* SCROLLBAR */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--accent); }

/* SELECTION */
::selection { background: var(--accent); color: var(--black); }

/* NAV */
nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  mix-blend-mode: normal;
  transition: padding 0.4s ease, background 0.4s ease;
}
nav.scrolled {
  padding: 18px 60px;
  background: rgba(7,7,7,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--offwhite);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--offwhite); }
.nav-cta {
  background: var(--accent);
  color: var(--black) !important;
  padding: 10px 24px;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--offwhite) !important; color: var(--black) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  filter: grayscale(60%);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(240,229,0,0.04) 0%, transparent 60%),
              linear-gradient(to bottom, rgba(7,7,7,0.3) 0%, rgba(7,7,7,0.7) 70%, rgba(7,7,7,0.98) 100%);
}
.hero-ticker {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--accent);
}
.hero-eyebrow-text {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.hero-headline {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 52px;
  max-width: 1200px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-headline .accent { color: var(--accent); }
.hero-headline .outlined {
  -webkit-text-stroke: 1.5px var(--offwhite);
  color: transparent;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.8s forwards;
}
.hero-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-desc strong { color: var(--offwhite); font-weight: 500; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}
.btn-primary {
  background: var(--accent);
  color: var(--black);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.3s, transform 0.3s;
}
.btn-primary:hover { background: var(--offwhite); transform: translateX(4px); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--offwhite); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 80px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}
.scroll-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: scrollBounce 1.6s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.scroll-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  margin-top: 8px;
}

/* MARQUEE */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 20px 0;
  background: var(--surface);
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 500;
}
.marquee-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* SECTION BASE */
section { padding: 120px 60px; }
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}
.section-label-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.section-label-num {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 400;
}
.section-label-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 80px;
}
.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

/* SERVICES */
.services { background: var(--black); }
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 60px;
}
.services-header-right {
  font-size: 15px;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.7;
  font-weight: 300;
  flex-shrink: 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--black);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: none;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: #0E0E0E; }
.service-card:hover::before { transform: scaleX(1); }
.service-number {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 40px;
}
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  opacity: 0.7;
}
.service-icon svg { width: 100%; height: 100%; }
.service-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(136,132,128,0.25);
  padding: 5px 12px;
  font-weight: 600;
  transition: color 0.3s, border-color 0.3s;
}
.service-card:hover .tag {
  color: var(--accent);
  border-color: rgba(240,229,0,0.3);
}

/* ABOUT / STUDIO */
.studio {
  background: var(--surface);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.studio-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.studio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(15%) brightness(0.85);
  transition: transform 0.8s ease;
}
.studio-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,7,7,0.1) 0%, rgba(7,7,7,0.35) 100%);
  pointer-events: none;
}
.studio-visual:hover img { transform: scale(1.03); }
.studio-badge {
  z-index: 2;
}
.studio-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: var(--accent);
  color: var(--black);
  padding: 20px 28px;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.4;
}
.studio-content {}
.studio-title { margin-bottom: 32px; }
.studio-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}
.studio-desc strong { color: var(--offwhite); font-weight: 500; }
.studio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.stat-number {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--offwhite);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--accent); }
.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* WORK */
.work { background: var(--black); }
.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.work-item {
  position: relative;
  aspect-ratio: 4/3;
  background: #131313;
  overflow: hidden;
  cursor: none;
}
.work-item.large { grid-column: span 2; aspect-ratio: 16/7; }
.work-item-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
  overflow: hidden;
}
.work-item-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(30%) brightness(0.6);
  transition: transform 0.7s ease, filter 0.5s ease;
}
.work-item:hover .work-item-bg { transform: scale(1); }
.work-item:hover .work-item-bg img {
  transform: scale(1.06);
  filter: grayscale(10%) brightness(0.5);
}
.work-item-pattern {
  width: 100%;
  height: 100%;
  opacity: 0.12;
}
.work-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,7,0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}
.work-item-cat {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.work-item-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.work-item-year {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 500;
}
.work-item-arrow {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(242,237,228,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.work-item:hover .work-item-arrow { opacity: 1; transform: translateY(0); }

/* PROCESS */
.process {
  background: var(--black);
  padding: 120px 60px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 80px;
  background: var(--border);
  border: 1px solid var(--border);
}
.process-step {
  background: var(--black);
  padding: 48px 36px;
  position: relative;
}
.step-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: rgba(240,229,0,0.08);
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: -0.04em;
}
.step-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1.3;
}
.step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* CONTACT CTA */
.contact-cta {
  background: var(--accent);
  color: var(--black);
  padding: 120px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
}
.contact-cta-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(0,0,0,0.5);
  margin-bottom: 32px;
}
.contact-cta-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 48px;
  max-width: 900px;
  color: var(--black);
}
.contact-cta-sub {
  font-size: 16px;
  color: rgba(0,0,0,0.55);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 52px;
  font-weight: 400;
}
.contact-form-row {
  display: flex;
  gap: 0;
  max-width: 560px;
  width: 100%;
}
.contact-form-input {
  flex: 1;
  background: rgba(0,0,0,0.12);
  border: 1.5px solid rgba(0,0,0,0.2);
  border-right: none;
  padding: 18px 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  outline: none;
  transition: border-color 0.3s;
}
.contact-form-input::placeholder { color: rgba(0,0,0,0.35); }
.contact-form-input:focus { border-color: rgba(0,0,0,0.5); }
.contact-form-btn {
  background: var(--black);
  color: var(--accent);
  border: none;
  padding: 18px 36px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.3s;
}
.contact-form-btn:hover { background: #1a1a1a; }
.contact-email-link {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(0,0,0,0.45);
  font-weight: 400;
}
.contact-email-link a {
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.3);
  padding-bottom: 1px;
}

/* FOOTER */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 60px 48px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 64px;
  gap: 60px;
}
.footer-logo-block {}
.footer-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--accent); }
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  max-width: 260px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 80px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--offwhite); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  gap: 20px;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.03em;
}
.footer-socials {
  display: flex;
  gap: 24px;
}
.footer-socials a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.footer-socials a:hover { color: var(--offwhite); }
.footer-reg {
  font-size: 11px;
  color: rgba(136,132,128,0.45);
  font-weight: 300;
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.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; }

/* KEYFRAMES */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* HAMBURGER */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--offwhite);
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,7,7,0.6);
  z-index: 98;
  backdrop-filter: blur(4px);
}
.nav-overlay.active { display: block; }

/* TABLET — 1024px */
@media (max-width: 1024px) {
  nav { padding: 24px 40px; }
  nav.scrolled { padding: 16px 40px; }
  .nav-links { gap: 28px; }
  .hero { padding: 0 40px 72px; }
  .hero-ticker { display: none; }
  section { padding: 100px 40px; }
  .process { padding: 100px 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .studio { padding: 100px 40px; grid-template-columns: 1fr 1fr; gap: 60px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { gap: 40px; }
  .footer-links { gap: 40px; }
  footer { padding: 56px 40px 40px; }
  .contact-cta { padding: 100px 40px; }
  .contact-form-row { max-width: 100%; }
}

/* MOBILE — 768px */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }

  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }

  .nav-burger { display: flex; }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: #0E0E0E;
    border-left: 1px solid var(--border);
    padding: 96px 40px 60px;
    gap: 0;
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a {
    display: block;
    font-size: 15px;
    padding: 20px 0;
    letter-spacing: 0.06em;
    color: var(--muted);
  }
  .nav-links a:hover { color: var(--offwhite); }
  .nav-cta {
    margin-top: 32px;
    display: block !important;
    text-align: center;
    padding: 16px 24px !important;
  }

  .hero { padding: 100px 24px 64px; min-height: 100svh; }
  .hero-headline { font-size: clamp(40px, 11vw, 64px); margin-bottom: 40px; }
  .hero-headline .outlined { -webkit-text-stroke: 1px var(--offwhite); }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-desc { max-width: 100%; font-size: 15px; }
  .hero-actions { width: 100%; flex-direction: column; align-items: flex-start; gap: 20px; }
  .btn-primary { width: 100%; justify-content: center; padding: 16px 32px; }
  .hero-scroll-indicator { display: none; }
  .hero-ticker { display: none; }

  section { padding: 80px 24px; }
  .process { padding: 80px 24px; }

  .section-label { margin-bottom: 40px; }

  .services-header { flex-direction: column; gap: 24px; margin-bottom: 48px; }
  .services-header-right { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 40px 28px; }

  .studio {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 80px 24px;
  }
  .studio-visual {
    aspect-ratio: 3/2;
    margin-bottom: 56px;
  }
  .studio-big-text { font-size: 100px; }
  .studio-badge { padding: 16px 20px; font-size: 11px; bottom: 24px; right: 24px; }
  .studio-stats { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .stat-number { font-size: 28px; }

  .work-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .work-grid { grid-template-columns: 1fr; gap: 2px; }
  .work-item.large { grid-column: span 1; aspect-ratio: 4/3; }
  .work-item-overlay { padding: 24px; }
  .work-item-title { font-size: 18px; }

  .process-steps { grid-template-columns: 1fr; }
  .process-step { padding: 36px 28px; }
  .step-num { font-size: 36px; margin-bottom: 20px; }

  .contact-cta { padding: 80px 24px; }
  .contact-cta-title { font-size: clamp(36px, 10vw, 60px); margin-bottom: 32px; }
  .contact-cta-sub { font-size: 15px; }
  .contact-form-row { flex-direction: column; gap: 0; }
  .contact-form-input { border-right: 1.5px solid rgba(0,0,0,0.2); border-bottom: none; }
  .contact-form-btn { padding: 16px; width: 100%; }

  footer { padding: 56px 24px 36px; }
  .footer-top { flex-direction: column; gap: 48px; }
  .footer-links { flex-direction: column; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-socials { gap: 20px; }
  .footer-reg { display: none; }

  .marquee-track { gap: 40px; }
}

/* SMALL MOBILE — 420px */
@media (max-width: 420px) {
  .hero-headline { font-size: clamp(34px, 10vw, 48px); }
  .studio-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .studio-stats > div:last-child { grid-column: span 2; }
  .stat-number { font-size: 26px; }
  .contact-cta-title { font-size: clamp(32px, 9vw, 48px); }
}

/* NOISE OVERLAY */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.018;
  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='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* ===========================
   BOXED LAYOUT + OUTER BG
   =========================== */

html {
  background-color: #010101;
  background-image: url('https://images.pexels.com/photos/2425232/pexels-photo-2425232.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

.site-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  background: var(--black);
  position: relative;
  box-shadow: 0 0 120px rgba(0,0,0,0.95), 0 0 40px rgba(0,0,0,0.7);
  overflow-x: hidden;
}

/* ===========================
   ADMIN BAR FIX
   =========================== */

/* When WP admin bar is visible, offset fixed nav */
.admin-bar #navbar {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar #navbar {
    top: 46px;
  }
}

/* Prevent hero overlap with admin bar */
.admin-bar .hero {
  padding-top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .hero {
    padding-top: 46px;
  }
}

/* ===========================
   OUTER PADDING (sides visible)
   =========================== */

@media (min-width: 1500px) {
  html {
    padding: 24px;
  }
  .site-wrapper {
    border-radius: 4px;
  }
  #navbar {
    border-radius: 4px 4px 0 0;
  }
}
