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

:root {
  --black: #060606;
  --white: #f0eeeb;
  --red: #e8182a;
  --red-dark: #a01020;
  --red-glow: rgba(232,24,42,0.18);
  --glass-bg: rgba(255,255,255,0.03);
  --glass-border: rgba(232,24,42,0.25);
  --glow-sm:      0 0 12px rgba(232,24,42,0.55), 0 0 24px rgba(232,24,42,0.2);
  --glow-md:      0 0 30px rgba(232,24,42,0.6),  0 0 70px rgba(232,24,42,0.25);
  --glow-lg:      0 0 60px rgba(232,24,42,0.7),  0 0 120px rgba(232,24,42,0.3);
  --text-glow-sm: 0 0 10px rgba(232,24,42,0.8),  0 0 24px rgba(232,24,42,0.4);
  --text-glow-lg: 0 0 20px rgba(232,24,42,0.9),  0 0 60px rgba(232,24,42,0.5), 0 0 100px rgba(232,24,42,0.2);
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 200;
  overflow-x: hidden;
}


/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 28px 60px;
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(to bottom, rgba(6,6,6,0.95), transparent);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 5px;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  color: rgba(240,238,235,0.5); text-decoration: none;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--red); }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 0 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 80% 50%, var(--red-glow) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 10% 80%, rgba(232,24,42,0.06) 0%, transparent 60%);
}
.hero-line { display: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.orb-1 { width: 500px; height: 500px; background: rgba(232,24,42,0.1); top: -100px; right: -100px; animation: float1 9s ease-in-out infinite; }
.orb-2 { width: 250px; height: 250px; background: rgba(232,24,42,0.06); bottom: 10%; left: 5%; animation: float2 12s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-40px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(25px)} }

.hero-content { position: relative; z-index: 2; max-width: 900px; margin-left: 20%; }
.hero-eyebrow {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 24px;
  opacity: 0; animation: fadeUp 1s ease 0.3s forwards;
  text-shadow: var(--text-glow-sm);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(60px, 10vw, 130px);
  font-weight: 400; line-height: 1.03; margin-bottom: 32px;
  opacity: 0; animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--red); text-shadow: var(--text-glow-lg); font-size: 1.23em; }
.hero-title .outline {
  -webkit-text-stroke: 2px rgba(255,255,255,1);
  color: transparent;
  font-size: 1.0em;
  text-shadow: 0 0 20px rgba(255,255,255,0.6), 0 0 50px rgba(255,255,255,0.3);
}
.hero-title .small { font-size: 0.88em; }
.hero-sub {
  font-size: 14px; line-height: 1.9; color: rgba(240,238,235,0.5);
  max-width: 500px; margin-bottom: 48px; font-weight: 300;
  opacity: 0; animation: fadeUp 1s ease 0.7s forwards;
}
.hero-cta { display: flex; gap: 16px; opacity: 0; animation: fadeUp 1s ease 0.9s forwards; }
.btn-primary {
  padding: 16px 40px; background: var(--red); color: var(--white);
  text-decoration: none; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 300;
  box-shadow: var(--glow-md);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover { background: #ff2030; transform: translateY(-2px); box-shadow: var(--glow-lg); }
.btn-ghost {
  padding: 16px 40px; border: 1px solid var(--glass-border);
  color: var(--white); text-decoration: none;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  backdrop-filter: blur(10px); transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: var(--glow-sm);
}
.btn-ghost:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: var(--glow-md); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 60px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp 1s ease 1.2s forwards;
}
.scroll-line {
  width: 40px; height: 1px; background: var(--red);
  box-shadow: var(--glow-sm);
  transform-origin: left; transform: scaleX(0);
  animation: expandLine 1.5s ease 1.5s forwards;
}
@keyframes expandLine { to { transform: scaleX(1); } }
.scroll-text { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(240,238,235,0.3); }

@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* SECTIONS */
section { padding: 120px 60px; }
.section-label { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; text-shadow: var(--text-glow-sm); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 300; line-height: 1.1; margin-bottom: 16px;
}
.red-divider { width: 60px; height: 3px; background: var(--red); margin-bottom: 48px; box-shadow: var(--glow-sm); }

/* SHOWREEL */
.showreel-container iframe {
  width: 100%; height: 100%; border: none; display: block;
}
.showreel { background: #080606; position: relative; overflow: hidden; padding-top: 60px; }
.showreel-container {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 16/9;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.showreel-container::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,24,42,0.06) 0%, transparent 50%, rgba(232,24,42,0.03) 100%);
  pointer-events: none;
  z-index: 0;
}
.showreel-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 20px; z-index: 1;
}
.play-btn {
  width: 80px; height: 80px;
  border: 2px solid var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--glow-md);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  
}
.play-btn:hover { background: rgba(232,24,42,0.15); transform: scale(1.1); box-shadow: var(--glow-lg); }
.play-btn svg { width: 28px; height: 28px; fill: var(--red); margin-left: 4px; filter: drop-shadow(0 0 6px var(--red)); }

.showreel-note { font-size: 12px; color: rgba(240,238,235,0.2); letter-spacing: 1px; margin-top: 4px; }

/* GALLERY — MASONRY GRID */
.gallery { background: var(--black); }

.gallery-inner {
  display: grid;
  grid-template-columns: 35fr 65fr;
  gap: 24px;
  align-items: start;
  padding: 0 10%;
}

.gallery-left {
  position: sticky; top: 120px;
  text-align: right;
}
.gallery-left .red-divider { margin-left: auto; }

.gallery-right-wrap {
  position: relative;
  overflow: hidden;
}
.gallery-right-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 160px;
  background: linear-gradient(to left, transparent 0%, #060606 100%);
  pointer-events: none;
  z-index: 10;
}
.gallery-right-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 160px;
  background: linear-gradient(to right, transparent 0%, #060606 100%);
  pointer-events: none;
  z-index: 10;
}

.masonry-grid {
  columns: 3;
  column-gap: 8px;
  font-size: 0;
  max-height: 800px;
  overflow-y: auto;
  scrollbar-width: none;
}
.masonry-grid::-webkit-scrollbar { display: none; }

.masonry-item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  
  display: inline-block;
  width: 100%;
}

/* Random size variation — every 3rd portrait gets narrower */
.masonry-item:nth-child(3n+1) { width: 85%; }
.masonry-item:nth-child(3n+2) { width: 100%; }
.masonry-item:nth-child(3n)   { width: 92%; margin-left: auto; display: block; }

.masonry-item img {
  width: 100%; display: block;
  transition: transform 0.4s ease;
}

.masonry-item::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  pointer-events: none;
}

.masonry-item:hover img { transform: scale(1.02); }
.masonry-item:hover::after {
  border-color: rgba(232,24,42,0.6);
  box-shadow: 0 0 24px rgba(232,24,42,0.4), inset 0 0 20px rgba(232,24,42,0.06);
}

.masonry-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; padding: 80px 0;
}
.masonry-placeholder svg { width: 36px; height: 36px; stroke: rgba(232,24,42,0.3); fill: none; }
.masonry-placeholder p { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(240,238,235,0.2); }
.masonry-placeholder p.sub { font-size: 10px; color: rgba(240,238,235,0.12); margin-top: -4px; }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(6,6,6,0.96);
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; display: block;
  box-shadow: 0 0 40px rgba(255,255,255,0.12), 0 0 80px rgba(255,255,255,0.05);
}
.lightbox-close {
  position: absolute; top: 28px; right: 36px;
  background: none; border: 1px solid rgba(232,24,42,0.4);
  color: var(--white); font-size: 18px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
   box-shadow: var(--glow-sm);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.lightbox-close:hover {
  border-color: var(--red);
  background: rgba(232,24,42,0.08);
  box-shadow: var(--glow-md);
}

/* SERVICES */
.services { background: #080606; }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--glass-bg); border: 1px solid rgba(232,24,42,0.15);
  padding: 40px 32px; position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s; 
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,24,42,0.05) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(232,24,42,0.5); transform: translateY(-4px); box-shadow: var(--glow-sm); }
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 52px;
  color: rgba(232,24,42,0.12); line-height: 1; margin-bottom: 16px;
}
.service-name {
  font-family: 'Playfair Display', serif; font-size: 22px;
  font-weight: 400; margin-bottom: 12px;
}
.service-desc { font-size: 13px; line-height: 1.75; color: rgba(240,238,235,0.45); }

/* ABOUT */
.about { background: var(--black); }
.about-inner {
  display: grid;
  grid-template-columns: 40fr 60fr;
  grid-template-rows: auto auto;
  gap: 24px 60px;
  align-items: start;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}
.about-top-left { grid-column: 1; grid-row: 1; }
.about-top-right { grid-column: 2; grid-row: 1; }
.about-visual { grid-column: 1; grid-row: 2; position: relative; overflow: visible; }
.about-text { grid-column: 2; grid-row: 2; }
.about-photo {
  width: 85%; aspect-ratio: 3/4;
  background: rgba(232,24,42,0.04);
  position: relative; overflow: hidden;
  margin-left: auto;
  box-shadow: -20px 20px 60px rgba(255,255,255,0.2), -10px 10px 120px rgba(255,255,255,0.1);
}
.about-photo img {
  width: 100%; height: calc(100% + 3px); object-fit: cover; display: block;
  position: relative; z-index: 1;
  object-position: top;
  padding-top: 10px;
}
.about-ph-static {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.about-ph-static p {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(240,238,235,0.2);
}
.about-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 2s ease;
}
.about-slide.active { opacity: 1; }
.about-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
}
.about-placeholder svg { width: 32px; height: 32px; stroke: rgba(232,24,42,0.25); fill: none; }
.about-placeholder p { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(240,238,235,0.2); }

.about-body {
  font-family: 'Playfair Display', serif;
  font-size: clamp(14px, 1.4vw, 17px); font-weight: 400; line-height: 1.9;
  color: rgba(240,238,235,0.62);
}
.about-body p + p { margin-top: 20px; }
.about-links {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px;
}
.about-imdb {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border: 1px solid rgba(232,24,42,0.3);
  text-decoration: none; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  box-shadow: var(--glow-sm);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.about-instagram {
  background: var(--red);
  color: var(--white) !important;
  border-color: var(--red) !important;
  box-shadow: var(--glow-md) !important;
}
.about-instagram:hover {
  background: #ff2030 !important;
  box-shadow: var(--glow-lg) !important;
}
.about-imdb:hover { border-color: var(--red); background: rgba(232,24,42,0.06); box-shadow: var(--glow-md); }

/* CONTACT */
.contact { background: #080606; position: relative; }
.contact .section-label,
.contact .section-title { margin-left: 10%; }
.contact .red-divider { margin-left: calc(10% + 0px); }
.contact::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); opacity: 0.4;
}
.contact-inner { display: grid; grid-template-columns: 30fr 70fr; gap: 24px; padding: 0 10%; }
.contact-info { text-align: right; }
.contact-info p { font-size: 17px; line-height: 1.9; color: rgba(240,238,235,0.45); margin-bottom: 40px; }
.contact-detail { display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }
.contact-detail-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 4px; text-shadow: var(--text-glow-sm); }
.contact-detail-value { font-size: 15px; color: rgba(240,238,235,0.65); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(240,238,235,0.35); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--glass-bg); border: 1px solid rgba(232,24,42,0.2);
  color: var(--white); padding: 14px 18px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 200;
  outline: none; transition: border-color 0.3s; width: 100%;
}
.form-group input, .form-group select {
  height: 56px;
}
.form-group select {
  height: 56px;
  padding: 14px 18px;
}
.form-group select option { background: #080606; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  padding: 18px 48px; background: var(--red); color: var(--white);
  border: none; font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
   transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  align-self: flex-start;
  box-shadow: var(--glow-md);
}
.form-submit:hover { background: #ff2030; transform: translateY(-2px); box-shadow: var(--glow-lg); }
.form-success { display: none; padding: 16px; border: 1px solid rgba(232,24,42,0.3); background: rgba(232,24,42,0.05); font-size: 13px; color: var(--red); letter-spacing: 1px; margin-top: 8px; }

footer {
  padding: 36px 60px; border-top: 1px solid rgba(232,24,42,0.12);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 4px; color: rgba(240,238,235,0.25); }
.footer-logo span { color: rgba(232,24,42,0.35); }
.footer-copy { font-size: 11px; color: rgba(240,238,235,0.2); letter-spacing: 1px; }

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

@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  section { padding: 60px 20px; }
  .hero { padding: 0 24px; }
  .hero-content { margin-left: 0; }
  .hero-meta { flex-direction: column; gap: 0; }

  /* Services — 1 column on mobile */
  .services-grid { grid-template-columns: 1fr; }

  /* Gallery — stack on mobile */
  .gallery-inner { grid-template-columns: 1fr; gap: 24px; padding: 0; }
  .gallery-left { text-align: left; position: static; }
  .gallery-left .red-divider { margin-left: 0; }
  .gallery-right-wrap { height: 400px; }
  .masonry-grid { columns: 2; }

  /* About — stack vertically, show photo */
  .about-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
  }
  .about-top-left { display: none; }
  .about-top-right { grid-column: 1; grid-row: 1; }
  .about-visual { grid-column: 1; grid-row: 2; }
  .about-text { grid-column: 1; grid-row: 3; }
  .about-photo { width: 100%; margin-left: 0; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; padding: 0; }
  .contact-info { text-align: left; }
  .contact .section-label,
  .contact .section-title { margin-left: 0; }
  .contact .red-divider { margin-left: 0; }

  footer { flex-direction: column; gap: 12px; padding: 28px 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
