/* ═══════════════════════════════════════════════════
   YKA — PORTFOLIO SITE
   style.css
═══════════════════════════════════════════════════ */

/* === DESIGN TOKENS === */
:root {
  --black:       #0a0a0a;
  --white:       #f5f2eb;
  --gold:        #c9a84c;
  --gray-dark:   #1a1a1a;
  --gray-mid:    #2a2a2a;
  --gray-text:   #888888;
  --gray-border: #222222;
  --font-head:   'Bebas Neue', sans-serif;
  --font-body:   'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 60px;
}

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

/* === UTILITY === */
.gold { color: var(--gold); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === SECTION LABEL === */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.label-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* === SECTION HEADLINE === */
.section-headline {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 40px;
  letter-spacing: 0.01em;
}

/* === SECTION SUB === */
.section-sub {
  font-size: 15px;
  color: #666666;
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 580px;
}

/* === BODY TEXT === */
.body-text {
  font-size: 16px;
  color: #999999;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 580px;
}

/* === BUTTONS === */
.btn-gold {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 14px 36px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}

.btn-gold:hover { background: #dbb855; }
.btn-gold:active { transform: scale(0.97); }

.btn-outline-dim {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid #555555;
  padding: 14px 36px;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-outline-dim:hover { background: rgba(255,255,255,0.05); border-color: #888; }
.btn-outline-dim:active { transform: scale(0.97); }

.btn-outline-gold {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 32px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline-gold:hover { background: var(--gold); color: var(--black); }
.btn-outline-gold:active { transform: scale(0.97); }


/* ════════════════════════════════
   GRAIN TEXTURE
════════════════════════════════ */
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  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)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
}

/* ════════════════════════════════
   NAVIGATION
════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: #151515;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  opacity: 0.65;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 22px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.nav-cta:hover { background: var(--gold); color: var(--black); }
.nav-cta:active { transform: scale(0.97); }

.nav-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: 4px;
}

.nav-social a {
  color: #555;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.nav-social a:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.nav-drawer.open { opacity: 1; pointer-events: all; }

.nav-drawer ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}

.drawer-link {
  font-family: var(--font-head);
  font-size: 52px;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.drawer-link:hover { color: var(--gold); }


/* ════════════════════════════════
   SECTION 1 — HERO
════════════════════════════════ */
#hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 48px 80px;
  overflow: hidden;
}

/* Hero video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(30%) contrast(1.05) brightness(0.9);
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-video.hero-video-active {
  opacity: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.65) 55%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Push grid and grain above overlay */
.hero-grid,
.hero-grain {
  z-index: 2;
}

.hero-content,
.hero-stats {
  z-index: 3;
}

/* Mobile: video hidden, fallback poster via section background */
@media (max-width: 768px) {
  .hero-video {
    display: none;
  }
  #hero {
    background-image: url("images/showreel-poster.jpg");
    background-size: cover;
    background-position: center center;
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.h1-solid { color: var(--white); }

.h1-outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
}

/* Secondary role line */
.hero-secondary {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(245,242,235,0.3);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(245,242,235,0.35);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  max-width: 520px;
}

/* Pills hidden — role hierarchy handled by hero-secondary */
.hero-pills { display: none; }

.pill {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid #333333;
  padding: 10px 24px;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  cursor: pointer;
}

.pill:hover { border-color: var(--gold); color: var(--gold); }

.pill-sep {
  color: #333;
  font-size: 14px;
  line-height: 1;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 60px; right: 0;
  display: flex;
  gap: 52px;
  z-index: 2;
  padding-right: 48px;
}

.stat { text-align: right; }

.stat-num {
  font-family: var(--font-head);
  font-size: 76px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: #666666;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-top: 6px;
}


/* ════════════════════════════════
   SHOWREEL
════════════════════════════════ */
#showreel {
  padding: 100px 0;
  text-align: center;
}

.showreel-headline {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.showreel-video-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
}

.showreel-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}

.showreel-coming-soon {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
}

.showreel-coming-soon span {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--gold);
  letter-spacing: 0.15em;
}


/* ════════════════════════════════
   SECTION 2 — ABOUT
════════════════════════════════ */
#about { padding: 120px 0; }

/* Keep content above ghost numbers */
.about-grid,
.work-grid-3,
.work-grid-2,
.film-grid,
.illicit-wrap,
.clients-wrap,
.clients-grid,
.contact-btns,
.section-label,
.section-headline,
.section-sub,
.body-text,
.about-photo,
.ach-cards,
.film-cta,
.contact-inner > * {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: 72px;
  align-items: start;
}

.about-left {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-h2-top {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: 0.01em;
}

.about-h2-bottom {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 36px;
}

.about-photo {
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: contrast(1.15) brightness(1.0) sepia(0.12) saturate(1.15);
  box-shadow: inset 0 0 80px rgba(0,0,0,0.6);
  transition: filter 0.4s;
}

.about-photo:hover img { filter: contrast(1.25) brightness(1.08) sepia(0.1) saturate(1.3); }

/* Vignette */
.about-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 70%, transparent 50%, rgba(10,10,10,0.5) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Film grain */
.photo-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23g)'/></svg>");
  background-size: 300px 300px;
}

/* Stage sketch overlay */
.photo-sketch {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 60%;
  z-index: 4;
  pointer-events: none;
  opacity: 0.22;
}

.ach-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ach-card {
  background: #0f0f0f;
  border: 1px solid #1e1e1e;
  border-left: 2px solid var(--gold);
  padding: 24px 28px;
  transition: border-color 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.ach-card:hover { border-color: var(--gold); border-left-color: var(--gold); }

.ach-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.ach-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: #555555;
  line-height: 1.6;
}


/* ════════════════════════════════
   SECTION 3 — EVENTS
════════════════════════════════ */
#events { padding: 120px 0; }

.work-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.work-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.work-grid-2 .work-card:nth-child(n+3) { display: none; }

.work-card {
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  display: flex;
  flex-direction: column;
  transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}

.work-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.08);
}

.work-thumb {
  display: block;
  height: 260px;
  background-size: cover;
  background-position: center;
  background-color: #161616;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.45);
  opacity: 0;
  transition: opacity 0.3s;
}

.work-card:hover .work-overlay { opacity: 1; }

.work-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.work-role {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.work-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.work-block { margin-bottom: 12px; }

.block-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
  margin-top: 14px;
}

.work-block p {
  font-family: var(--font-body);
  font-size: 13px;
  color: #777777;
  line-height: 1.6;
}

.work-watch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  margin-top: auto;
  padding-top: 18px;
  transition: gap 0.2s;
}

.work-watch:hover { gap: 12px; }

.arrow { transition: transform 0.2s; }
.work-watch:hover .arrow { transform: translateX(4px); }


/* ════════════════════════════════
   SECTION 4 — CONTENT & FILMS
════════════════════════════════ */
#content-films { padding: 120px 0 80px; }

#content-films .section-headline {
  margin-bottom: 12px;
}

#content-films .section-sub {
  margin-bottom: 28px;
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: transparent;
  margin-bottom: 0;
}

.film-card {
  display: flex;
  flex-direction: column;
  background: #0d0d0d;
  border: none;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.film-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.film-thumb {
  height: 210px;
  background-color: #161616;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.film-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.4);
  opacity: 0;
  transition: opacity 0.3s;
}

.film-card:hover .film-play { opacity: 1; }

.film-info {
  padding: 16px 20px;
  border-top: 1px solid #1a1a1a;
}

.film-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #cccccc;
  margin-bottom: 4px;
  line-height: 1.4;
}

.film-url {
  font-family: var(--font-body);
  font-size: 11px;
  color: #444444;
}

/* === ILLICIT FLIP CARD === */
.illicit-wrap {
  margin-top: 100px;
  margin-bottom: 48px;
  perspective: 1200px;
}

.illicit-card {
  width: 100%;
  height: 340px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  cursor: pointer;
}

.illicit-card.flipped { transform: rotateY(180deg); }

.illicit-front,
.illicit-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.illicit-front {
  background: #0d0d0d;
  background-size: cover;
  background-position: left top;
  border: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, filter 0.3s;
  overflow: hidden;
  filter: grayscale(40%) brightness(0.7);
}

.illicit-card:hover .illicit-front {
  filter: grayscale(10%) brightness(0.85);
}

.illicit-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  z-index: 0;
}

.illicit-front-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.illicit-hint {
  position: absolute;
  bottom: 16px; right: 20px;
  font-family: var(--font-body);
  font-size: 11px;
  color: #444444;
  letter-spacing: 0.05em;
  z-index: 1;
}

.illicit-front:hover { border-color: #2a2a2a; }

.illicit-front-inner { text-align: center; }

.illicit-arabic {
  font-family: var(--font-body);
  font-size: 60px;
  line-height: 1.1;
  color: var(--gold);
  margin-bottom: 10px;
  direction: rtl;
  letter-spacing: 0.02em;
}

.illicit-title-en {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}

.illicit-tag {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 14px;
  opacity: 0.85;
}

.illicit-back {
  background: #111111;
  border: 1px solid #1a1a1a;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
}

.illicit-back-inner {
  padding: 48px;
  max-width: 800px;
}

.illicit-back-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.illicit-back-tag {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.illicit-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: #999999;
  line-height: 1.8;
  margin-bottom: 16px;
}

.illicit-credit {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: var(--white);
  margin-top: 24px;
  margin-bottom: 12px;
}

.illicit-coming {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.film-cta { text-align: center; }


/* ════════════════════════════════
   SECTION 5 — CLIENTS
════════════════════════════════ */
#clients { padding: 120px 0; }

/* Clients marquee */
.clients-marquee {
  overflow: hidden;
  position: relative;
  padding: 12px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: clientMarquee 50s linear infinite;
  width: max-content;
  will-change: transform;
}

.clients-track:hover { animation-play-state: paused; }

@keyframes clientMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.client-logo {
  height: 50px;
  width: auto;
  margin: 0 32px;
  opacity: 0.5;
  transition: opacity 0.3s;
  filter: grayscale(100%) brightness(1.2);
  flex-shrink: 0;
}

.client-logo:hover {
  opacity: 0.85;
}


/* ════════════════════════════════
   SECTION 6 — CONTACT
════════════════════════════════ */
#contact { padding: 120px 0; }

.contact-inner { text-align: center; }

.contact-headline {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.0;
}

.contact-sub {
  text-align: center;
  margin: 24px auto 60px;
  max-width: 480px;
  color: #555555;
  font-size: 16px;
  line-height: 1.75;
}

.contact-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaaaaa;
  border: 1px solid var(--gray-border);
  padding: 16px 28px;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.contact-btn:hover {
  border-color: var(--gold);
  color: var(--white);
}

.contact-btn:active { transform: scale(0.97); }


/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  padding: 48px 0;
  border-top: 1px solid #111111;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.04em;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: #444444;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 12px;
  color: #444444;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold); }


/* ════════════════════════════════
   SOCIAL BAR
════════════════════════════════ */
.social-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: #080808;
  border-top: 1px solid #111111;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.social-bar a {
  color: #555555;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.social-bar a:hover { color: var(--gold); }

.social-bar a svg { display: block; }

/* Footer social icons */
.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social a {
  color: #444444;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--gold); }

.footer-social a svg { display: block; }


/* ════════════════════════════════
   INTERLUDE 1 — PHILOSOPHY
════════════════════════════════ */
.interlude-philosophy {
  padding: 80px 0;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  background: #070707;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #111;
  position: relative;
  z-index: 1;
}

.philosophy-cell {
  background: #070707;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: background 250ms ease, transform 250ms ease, box-shadow 250ms ease;
  cursor: default;
}

.philosophy-cell:hover {
  background: #0e0e0e;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* Make DIRECT cell slightly more prominent */
.philosophy-cell:nth-child(2) {
  background: #0a0a0a;
}
.philosophy-cell:nth-child(2) .phil-label {
  color: var(--gold);
}

.phil-symbol {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.philosophy-cell:hover .phil-symbol { opacity: 1; }

.phil-label {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.05em;
}

.phil-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
  max-width: 280px;
}

/* ════════════════════════════════
   INTERLUDE 2 — DIRECTOR'S NOTE
════════════════════════════════ */
.interlude-note {
  padding: 100px 0;
  background: #060606;
  position: relative;
}

.note-line-top,
.note-line-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: #111;
}

.note-line-top { top: 0; }
.note-line-bottom { bottom: 0; }

.director-note-wrap {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.director-note {
  flex: 1;
  max-width: 680px;
}

.note-sketch {
  flex: 0 0 400px;
  width: 400px;
  opacity: 0.65;
  margin-top: 8px;
  transition: opacity 300ms ease;
  display: none;
}

.note-sketch:hover { opacity: 0.9; }

.note-sketch-img {
  flex: 0 0 400px;
  width: 400px;
  height: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 300ms ease;
  mask-image: radial-gradient(ellipse 85% 85% at center, black 30%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at center, black 30%, transparent 72%);
}

.note-sketch-img:hover { opacity: 0.9; }

@media (max-width: 900px) {
  .note-sketch { display: none; }
  .director-note { max-width: 100%; }
  .director-note-wrap {
    flex-direction: column;
    gap: 32px;
  }
  .note-sketch-img {
    flex: unset;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

.note-scene {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.note-line {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: #2a2a2a;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.note-line-gold {
  color: var(--white);
}

.note-sig {
  margin-top: 48px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #444;
  letter-spacing: 0.05em;
}

.note-sig strong {
  font-weight: 500;
  color: #888;
}

/* Achievement icon */

.ach-icon {
  flex-shrink: 0;
  padding-top: 2px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.ach-card:hover .ach-icon { opacity: 1; }

/* Film-frame corner brackets on work cards */
.work-card {
  position: relative;
}

.work-card::before,
.work-card::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.work-card::before {
  top: -1px; left: -1px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.work-card::after {
  bottom: -1px; right: -1px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.work-card:hover::before,
.work-card:hover::after { opacity: 1; }

/* === FEATURED WORK CARD === */
.work-grid-featured {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  margin-bottom: 20px;
}

.work-card-featured .work-thumb {
  height: 380px;
}

.work-card-featured .work-title {
  font-size: 34px;
  line-height: 1.05;
}

@media (max-width: 768px) {
  .work-grid-featured { grid-template-columns: 1fr; }
  .work-card-featured .work-thumb { height: 260px; }
  .work-card-featured .work-title { font-size: 26px; }
}

/* === BUTTON HOVER GLOW === */
.btn-gold:hover {
  background: #dbb855;
  box-shadow: 0 0 24px rgba(201,168,76,0.25);
}

.btn-outline-dim:hover {
  background: rgba(255,255,255,0.04);
  border-color: #888;
  box-shadow: 0 0 16px rgba(255,255,255,0.04);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}

/* === NOTE SKETCH DRAW-IN ANIMATION === */
@keyframes drawIn {
  from { opacity: 0; transform: translateX(20px) scale(0.97); }
  to   { opacity: 0.65; transform: translateX(0) scale(1); }
}

.note-sketch.visible {
  animation: drawIn 0.8s ease 0.3s forwards;
}


/* === WORK GRID FILLER === */
.work-card-filler {
  background: #080808;
  border: 1px solid #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  overflow: hidden;
  position: relative;
}

.work-card-filler svg {
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

/* === CONTACT HEADLINE BIGGER === */
.contact-headline {
  font-size: clamp(52px, 7vw, 80px) !important;
}

/* ════════════════════════════════
   GHOST SECTION NUMBERS
════════════════════════════════ */
#about,
#events,
#content-films,
#clients,
#contact {
  position: relative;
}

#about::before     { content: '01'; }
#events::before    { content: '02'; }
#content-films::before { content: '03'; }
#clients::before   { content: '04'; }
#contact::before   { content: '05'; }

#about::before,
#events::before,
#content-films::before,
#clients::before,
#contact::before {
  position: absolute;
  top: 60px;
  right: 24px;
  font-family: var(--font-head);
  font-size: clamp(120px, 14vw, 200px);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px #1a1a1a;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
  letter-spacing: -0.02em;
}


/* ════════════════════════════════
   PAGE LOAD ANIMATIONS
════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-1 { opacity: 0; animation: fadeUp 0.55s ease 0ms    forwards; }
.anim-2 { opacity: 0; animation: fadeUp 0.55s ease 150ms  forwards; }
.anim-3 { opacity: 0; animation: fadeUp 0.55s ease 300ms  forwards; }
.anim-4 { opacity: 0; animation: fadeUp 0.55s ease 450ms  forwards; }
.anim-5 { opacity: 0; animation: fadeUp 0.55s ease 550ms  forwards; }
.anim-6 { opacity: 0; animation: fadeUp 0.55s ease 700ms  forwards; }
.anim-7 { opacity: 0; animation: fadeUp 0.7s ease 1100ms forwards; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════
   RESPONSIVE — 768px
════════════════════════════════ */
@media (max-width: 768px) {

  #nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-social { display: none; }
  .hamburger { display: flex; }
  .nav-drawer { display: flex; }

  #hero {
    padding: 100px 24px 80px;
    min-height: 85vh;
    align-items: flex-start;
  }

  .hero-content h1 { font-size: clamp(56px, 14vw, 80px); }

  .hero-stats {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
    gap: 24px;
    padding-right: 0;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .stat { text-align: left; }
  .stat-num { font-size: 44px; }
  .pill-sep { display: none; }
  .hero-pills { gap: 8px; }

  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-cell { padding: 36px 24px; }
  .note-line { font-size: clamp(28px, 8vw, 42px); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-left { order: 1; }
  .about-right { order: 2; }
  .about-h2-top { font-size: 48px; }
  .about-h2-bottom { font-size: 48px; }
  .about-left { padding-top: 0; }

  .work-grid-3,
  .work-grid-2 { grid-template-columns: 1fr; }
  .work-grid-2 .work-card:nth-child(n+3) { display: flex; }

  .section-headline { font-size: 52px; margin-bottom: 40px; }

  .film-grid { grid-template-columns: 1fr; background: transparent; gap: 16px; }

  .illicit-front {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .illicit-back-inner { padding: 28px; }
  .illicit-back-title { font-size: 28px; }
  .illicit-body { font-size: 14px; }

  .clients-marquee { mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); }
  .clients-track { animation-duration: 35s; }
  .client-logo { height: 36px; margin: 0 20px; }

  .contact-btns { flex-direction: column; align-items: center; }
  .contact-btn { width: 100%; max-width: 360px; justify-content: center; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-left { flex-direction: column; align-items: flex-start; gap: 6px; }

  .social-bar { gap: 20px; }
  .footer-social { gap: 14px; }

  .container { padding: 0 20px; }

  #about,
  #events,
  #content-films,
  #clients,
  #contact { padding: 80px 0; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: clamp(64px, 16vw, 80px); }
  .hero-stats { gap: 24px; }
  .social-bar { gap: 16px; }
}
