/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #000;
  --white: #fff;
  --muted: rgba(255,255,255,0.45);
  --dim:   rgba(255,255,255,0.22);
  --line:  rgba(255,255,255,0.08);
  --pad:   48px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── KEYFRAMES ── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes growDown {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.34s; }
.reveal-d4 { transition-delay: 0.46s; }

/* ── NAVBAR ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px var(--pad);
  background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
  transition: background 0.4s;
  animation: fadeDown 0.8s ease both;
}
.nav.solid { background: rgba(0,0,0,0.95); }

.nav-logo img {
  height: 34px; width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-size: 11px !important; letter-spacing: 2px !important;
  text-transform: uppercase !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  padding: 10px 22px !important; color: var(--white) !important;
  transition: background 0.3s, border-color 0.3s !important;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.6) !important;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px; z-index: 210;
}
.nav-toggle span {
  display: block; width: 24px; height: 1px;
  background: var(--white); transition: transform 0.35s, opacity 0.35s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay menu */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: rgba(0,0,0,0.97);
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-size: 28px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s;
}
.nav-overlay a:hover { color: var(--white); }
.nav-overlay .overlay-cta {
  margin-top: 8px; font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3); padding: 14px 36px; color: var(--white);
}

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 10%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to bottom,
      rgba(0,0,0,0.6) 0%,
      rgba(0,0,0,0.35) 22%,
      rgba(0,0,0,0.35) 58%,
      rgba(0,0,0,0.97) 100%
    ),
    rgba(0,0,0,0.42);
}

.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; width: 100%; padding: 0 var(--pad);
}

.hero-logo {
  width: clamp(200px, 30vw, 460px); height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 32px;
  animation: fadeUp 1s 1.4s ease both;
}

.hero-tags {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 40px;
  animation: fadeUp 1s 1.6s ease both;
}
.hero-tag {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.15); padding: 5px 14px;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: center;
  animation: fadeUp 1s 1.8s ease both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600;
  background: var(--white); color: var(--black);
  padding: 14px 32px; transition: opacity 0.3s;
}
.btn-primary:hover { opacity: 0.85; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

.hero-bottom {
  position: absolute; left: var(--pad); bottom: 44px; z-index: 2;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--dim); line-height: 1.9;
  animation: fadeUp 1s 2s ease both;
}

.hero-scroll {
  position: absolute; right: var(--pad); bottom: 44px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--dim);
  animation: fadeUp 1s 2s ease both;
}
.hero-scroll-line {
  width: 1px; height: 52px; background: rgba(255,255,255,0.14);
  animation: growDown 1.2s 2.2s ease both; transform-origin: top;
}

/* ── SECTION LAYOUT ── */
.section        { padding: 120px var(--pad); }
.section-top    { padding: 120px var(--pad) 0; }
.section-bottom { padding: 0 var(--pad) 120px; }

.section-label {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 16px;
}
.divider {
  width: 100%; height: 1px;
  background: var(--line); margin-bottom: 80px;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 56px; align-items: start;
}

.about-title {
  font-size: clamp(32px, 3.5vw, 58px);
  font-weight: 700; letter-spacing: -1px; line-height: 1.05;
}
.about-body {
  font-size: 15px; line-height: 1.9; color: var(--muted); margin-top: 28px;
}
.about-body strong { color: rgba(255,255,255,0.88); font-weight: 500; }

.about-portrait { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: filter 0.7s ease;
}
.about-portrait:hover img { }
.about-portrait::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  pointer-events: none;
}

.stat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}
.stat-cell {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-cell:nth-child(2n)            { border-right: none; }
.stat-cell:nth-child(3),
.stat-cell:nth-child(4)             { border-bottom: none; }
.stat-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 8px;
}
.stat-value { font-size: 16px; font-weight: 600; }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
}
.service-card {
  background: var(--black); padding: 44px 38px;
  display: flex; flex-direction: column; gap: 20px;
  transition: background 0.4s;
}
.service-card:hover { background: #0f0f0f; }
.service-number { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.2); }
.service-icon   { font-size: 30px; line-height: 1; }
.service-name   { font-size: 20px; font-weight: 600; letter-spacing: -0.3px; }
.service-desc   { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.4); }

/* ── SELECTED WORK ── */
.work-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.work-item {
  position: relative; overflow: hidden;
  background: #0d0d0d; cursor: pointer; aspect-ratio: 16/9;
}
.work-item.wide { grid-column: span 2; aspect-ratio: 21/9; }

.work-item-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #181818, #060606);
  transition: transform 0.75s ease;
}
.work-item:nth-child(2) .work-item-bg { background: linear-gradient(135deg,#151515,#050505); }
.work-item:nth-child(3) .work-item-bg { background: linear-gradient(135deg,#131313,#080808); }
.work-item:hover .work-item-bg { transform: scale(1.05); }

.work-item-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.75s ease;
}
.work-item:hover .work-item-img { transform: scale(1.05); }

.work-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
  transition: background 0.4s;
}
.work-item:hover .work-item-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.1) 55%);
}

.work-category {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-bottom: 6px;
}
.work-title { font-size: 18px; font-weight: 600; }

.work-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; opacity: 0; transition: opacity 0.4s;
}
.work-item:hover .work-play { opacity: 0.7; }

/* ── SHOWREEL ── */
.showreel-wrap { border-top: 1px solid var(--line); }
.showreel-header {
  padding: 80px var(--pad) 52px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.showreel-title {
  font-size: clamp(40px,5vw,72px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1;
}
.showreel-meta {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.28); line-height: 1.9; text-align: right;
}

.showreel-embed {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05); overflow: hidden;
}
.showreel-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}

.yt-consent {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 24px;
  background: linear-gradient(135deg, #0d0d0d, #050505);
  cursor: pointer; transition: background 0.4s;
}
.yt-consent:hover { background: linear-gradient(135deg, #121212, #080808); }
.yt-consent.hidden { display: none; }

.yt-play-btn {
  width: 80px; height: 80px;
  border: 1px solid rgba(255,255,255,0.22); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: rgba(255,255,255,0.65);
  transition: border-color 0.3s, transform 0.3s;
}
.yt-consent:hover .yt-play-btn {
  border-color: rgba(255,255,255,0.5); transform: scale(1.08);
}
.yt-consent-label {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.28); text-align: center;
}
.yt-consent-note {
  font-size: 10px; color: rgba(255,255,255,0.18);
  margin-top: 6px; letter-spacing: 1px; text-align: center;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-title {
  font-size: clamp(36px,4vw,60px);
  font-weight: 700; letter-spacing: -0.5px; line-height: 1.05;
}
.contact-sub {
  font-size: 15px; line-height: 1.8; color: var(--muted); margin-top: 24px;
}
.contact-cta { margin-top: 40px; }

.contact-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-top: 1px solid var(--line);
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s;
}
.contact-link:last-child { border-bottom: 1px solid var(--line); }
.contact-link:hover { color: var(--white); }
.contact-arrow { transition: transform 0.3s; }
.contact-link:hover .contact-arrow { transform: translateX(5px); }

/* ── FOOTER ── */
.footer {
  padding: 36px var(--pad);
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line);
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 1px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.2); transition: color 0.3s;
}
.footer-links a:hover { color: rgba(255,255,255,0.5); }

/* ── LEGAL PAGES ── */
.legal-wrap { padding: 140px var(--pad) 80px; min-height: 70vh; }
.legal-wrap h1 {
  font-size: clamp(32px,4vw,52px); font-weight: 700;
  letter-spacing: -0.5px; margin-bottom: 48px;
}
.legal-wrap h2 {
  font-size: 13px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin: 36px 0 12px;
}
.legal-wrap p { font-size: 15px; line-height: 1.85; color: var(--muted); margin-bottom: 16px; }
.legal-wrap a { color: var(--white); border-bottom: 1px solid var(--line); }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 60px; transition: color 0.3s;
}
.legal-back:hover { color: var(--white); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  :root { --pad: 24px; }

  .nav-links  { display: none; }
  .nav-toggle { display: flex; }

  .hero-logo    { width: 72vw; margin-bottom: 24px; }
  .hero-tags    { gap: 8px; }
  .hero-tag     { font-size: 8px; padding: 4px 10px; }
  .hero-actions { flex-direction: column; gap: 16px; }
  .hero-bottom  { display: none; }
  .hero-scroll  { display: none; }

  .about-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .about-portrait { order: -1; max-width: 320px; margin: 0 auto; width: 100%; }
  .stat-grid { order: 1; }

  .services-grid { grid-template-columns: 1fr; }

  .work-grid { grid-template-columns: 1fr; }
  .work-item.wide { grid-column: span 1; aspect-ratio: 16/9; }

  .showreel-header { flex-direction: column; gap: 16px; align-items: flex-start;
    padding: 60px var(--pad) 40px; }
  .showreel-meta { text-align: left; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; }

  .section        { padding: 80px var(--pad); }
  .section-top    { padding: 80px var(--pad) 0; }
  .section-bottom { padding: 0 var(--pad) 80px; }
  .divider        { margin-bottom: 52px; }
}

@media (max-width: 480px) {
  .hero-logo { width: 82vw; }
  .btn-primary { font-size: 10px; padding: 12px 24px; }
  .work-title  { font-size: 15px; }
  .nav-logo img { height: 28px; }
}
