/* ═══════════════ BADAL PRODUCTION — monsoon night, marigold gold ═══════════════ */
:root {
  --night: #0C0E1F;        /* monsoon sky */
  --indigo: #171A34;       /* raised surface */
  --indigo-2: #20244A;
  --ivory: #F5EFE4;        /* warm text */
  --fade: #A9A6C2;         /* muted secondary */
  --gold: #E8A93C;         /* marigold accent */
  --magenta: #C6467E;      /* festive stage-light accent, sparing */
  --hairline: rgba(245, 239, 228, 0.12);
  --display: "Fraunces", Georgia, serif;
  --body: "Poppins", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--night);
  color: var(--ivory);
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, .skip-link:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 4px;
}
::selection { background: var(--gold); color: var(--night); }

.mono {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow { color: var(--gold); margin-bottom: 1.25rem; }

.skip-link {
  position: fixed; top: -100px; left: var(--gutter); z-index: 400;
  background: var(--gold); color: var(--night);
  padding: 0.6rem 1rem; font-family: var(--mono); font-size: 0.75rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 0.75rem; }

/* ═══════════════ BOKEH (signature ambient light) ═══════════════ */
.bokeh { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.35; mix-blend-mode: screen;
}
.o1 { width: 380px; height: 380px; background: var(--gold); top: -8%; left: 8%; }
.o2 { width: 300px; height: 300px; background: var(--magenta); top: 30%; right: -6%; opacity: 0.22; }
.o3 { width: 260px; height: 260px; background: var(--gold); bottom: 5%; left: -8%; opacity: 0.2; }
.o4 { width: 220px; height: 220px; background: var(--magenta); bottom: 40%; right: 20%; opacity: 0.16; }

/* ═══════════════ PRELOADER ═══════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 500;
  background: var(--night);
  display: grid; place-items: center; text-align: center;
}
.pre-eyebrow { color: var(--gold); margin-bottom: 1rem; }
.pre-title {
  font-family: var(--display); font-weight: 600; font-style: normal;
  font-size: clamp(4rem, 14vw, 9rem); color: var(--ivory);
  clip-path: inset(0 100% 0 0);
}
.pre-sub { color: var(--fade); margin-top: 1rem; opacity: 0; }

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem var(--gutter);
  background: linear-gradient(to bottom, rgba(12,14,31,0.85), transparent);
}
.nav-logo {
  font-family: var(--display); font-weight: 600; font-size: 1.1rem;
  color: var(--ivory);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.logo-mark { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { position: relative; padding-bottom: 2px; color: var(--ivory); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem; min-height: 44px;
  font-size: 0.75rem; color: var(--night); background: var(--gold);
  padding: 0.85rem 1.2rem; border-radius: 999px; transition: transform 0.25s, box-shadow 0.25s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,169,60,0.35); }
.icon-wa { width: 16px; height: 16px; flex-shrink: 0; }
@media (max-width: 780px) { .nav-links { display: none; } }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gutter) clamp(3.5rem, 9vh, 6rem);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(12,14,31,0.95) 0%, rgba(12,14,31,0.35) 50%, rgba(12,14,31,0.55) 100%);
}
.garland { position: absolute; top: 62px; left: 0; width: 100%; height: 40px; z-index: 1; }
.garland.flip { position: static; margin-bottom: 2.5rem; }
.hero-eyebrow { color: var(--ivory); opacity: 0.85; margin-bottom: 1.1rem; }
.hero-title {
  font-family: var(--display); font-weight: 700; font-style: italic;
  font-size: clamp(5rem, 18vw, 13rem);
  line-height: 0.9; color: var(--ivory);
}
.hero-tagline {
  font-family: var(--mono); font-size: clamp(0.85rem, 1.6vw, 1.1rem);
  letter-spacing: 0.22em; color: var(--gold); margin-top: 0.6rem;
}
.hero-sub {
  max-width: 32rem; margin-top: 1.5rem;
  color: var(--fade); font-size: 1.05rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.btn-gold, .btn-ghost {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em;
  padding: 0.9rem 1.6rem; border-radius: 999px;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.btn-gold .icon-wa, .btn-ghost .icon-wa { width: 18px; height: 18px; }
.btn-gold { background: var(--gold); color: var(--night); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,169,60,0.4); }
.btn-ghost { border: 1px solid rgba(245,239,228,0.35); color: var(--ivory); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll {
  position: absolute; right: var(--gutter); bottom: 2.2rem;
  color: var(--fade); font-size: 0.65rem;
}
@media (max-width: 780px) { .hero-scroll { display: none; } }

.word { display: inline-block; white-space: nowrap; }
.char { display: inline-block; transform: translateY(115%); }
.no-motion .char { transform: none; }
.reveal { opacity: 0; transform: translateY(26px); }
.no-motion .reveal { opacity: 1; transform: none; }

/* ═══════════════ MARQUEE ═══════════════ */
.marquee {
  position: relative; z-index: 1;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden; padding: 1rem 0;
  background: var(--indigo);
}
.marquee-track {
  display: flex; white-space: nowrap; width: max-content;
  animation: marquee 32s linear infinite;
  color: var(--gold); font-size: 0.78rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════════ INTRO ═══════════════ */
.intro {
  position: relative; z-index: 1; text-align: center;
  padding: clamp(3.5rem, 9vh, 6rem) var(--gutter);
}
.intro .eyebrow { display: block; }
.intro-line {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(1.3rem, 3vw, 2.2rem); line-height: 1.55;
  max-width: 46rem; margin: 0 auto; color: var(--ivory);
}

/* ═══════════════ SECTION SCAFFOLD ═══════════════ */
section, .contact { position: relative; z-index: 1; padding: clamp(4.5rem, 11vh, 8rem) var(--gutter); }
.section-head { max-width: 42rem; margin-bottom: clamp(2.5rem, 7vh, 5rem); }
.section-title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.05; overflow: hidden;
}
.section-sub { color: var(--fade); margin-top: 1.1rem; max-width: 34rem; }
.section-sub a { color: var(--gold); border-bottom: 1px solid rgba(232,169,60,0.4); }

/* ═══════════════ BENTO WORK GRID ═══════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(160px, 22vw, 240px);
  gap: clamp(0.6rem, 1.5vw, 1.1rem);
}
.bento-item {
  position: relative; overflow: hidden; border-radius: 6px;
  background: var(--indigo);
}
.bento-item.span-2 { grid-column: span 2; }
.bento-item.tall { grid-row: span 2; }
.bento-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), filter 0.4s;
  filter: saturate(0.95);
}
.bento-item:hover img { transform: scale(1.06); filter: saturate(1.1); }
.bento-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,14,31,0.75) 0%, transparent 45%);
  opacity: 0; transition: opacity 0.35s;
}
.bento-item:hover::after { opacity: 1; }
.bento-item figcaption {
  position: absolute; left: 0.9rem; bottom: 0.8rem; z-index: 1;
  color: var(--ivory); font-size: 0.62rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s;
}
.bento-item:hover figcaption { opacity: 1; transform: translateY(0); }
@media (max-width: 780px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-item.span-2 { grid-column: span 2; }
  .bento-item figcaption { opacity: 1; transform: none; }
}

/* ═══════════════ SERVICES (numbered grid) ═══════════════ */
.service-grid {
  list-style: none;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px; background: var(--hairline);
  border: 1px solid var(--hairline); border-radius: 8px; overflow: hidden;
}
.service-card {
  background: var(--night); padding: 1.8rem 1.6rem;
  transition: background 0.3s;
}
.service-card:hover { background: var(--indigo); }
.s-no { color: var(--gold); display: block; margin-bottom: 0.9rem; }
.service-card h3 {
  font-family: var(--display); font-weight: 600; font-size: 1.3rem;
  margin-bottom: 0.6rem; color: var(--ivory);
}
.service-card p { color: var(--fade); font-size: 0.92rem; }

/* ═══════════════ FILMS ═══════════════ */
.film-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.film-media {
  position: relative; aspect-ratio: 16/10; overflow: hidden; border-radius: 6px;
  background: var(--indigo);
}
.film-media video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.film-card:hover .film-media video { transform: scale(1.07); }
.film-rec {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.6rem; color: var(--gold);
  background: rgba(12,14,31,0.7); padding: 4px 9px; border-radius: 999px;
  opacity: 0; transition: opacity 0.3s;
}
.film-card.is-playing .film-rec { opacity: 1; }
.film-meta { padding-top: 1rem; }
.film-meta h3 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; }
.film-meta .mono { color: var(--fade); margin-top: 0.4rem; }
@media (max-width: 780px) { .film-grid { grid-template-columns: 1fr; } }

/* ═══════════════ TRUST / COVERAGE ═══════════════ */
.trust {
  display: grid; grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.trust-media { overflow: hidden; border-radius: 8px; aspect-ratio: 4/5; background: var(--indigo); }
.trust-media img { width: 100%; height: 100%; object-fit: cover; }
.trust-quote {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.4;
  color: var(--gold); border-left: 3px solid var(--gold);
  padding-left: 1.3rem; margin: 1.5rem 0;
}
.trust-text { color: var(--fade); max-width: 34rem; }
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem; margin-top: 2.2rem;
  border-top: 1px solid var(--hairline); padding-top: 1.8rem;
}
.stats dt { color: var(--fade); font-size: 0.62rem; }
.stats dd {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--ivory); margin-top: 0.3rem;
}
@media (max-width: 780px) { .trust { grid-template-columns: 1fr; } }

/* ═══════════════ CONTACT ═══════════════ */
.contact { border-top: 1px solid var(--hairline); text-align: center; }
.contact-title {
  font-family: var(--display); font-weight: 600; font-style: italic;
  font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: 1.05;
  overflow: hidden; max-width: 40rem; margin: 0 auto;
}
.contact-sub { color: var(--fade); margin: 1.2rem auto 0; max-width: 32rem; }
.contact-grid {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  margin: 3rem 0 4rem;
}
.contact-link {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gold);
  transition: opacity 0.3s;
}
.contact-link:hover { opacity: 0.75; }
.contact-link .icon-wa { width: clamp(1.6rem, 3.4vw, 2.4rem); height: clamp(1.6rem, 3.4vw, 2.4rem); }
.contact-call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--fade); transition: color 0.25s;
}
.contact-call:hover { color: var(--gold); }
.contact-call .icon-phone { width: 15px; height: 15px; }
.contact-meta { display: flex; flex-direction: column; gap: 0.6rem; color: var(--fade); }
.contact-meta a:hover { color: var(--gold); }
.footer-bar {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  border-top: 1px solid var(--hairline); padding-top: 1.5rem;
  color: var(--fade); font-size: 0.6rem;
}

/* ═══════════════ REDUCED MOTION ═══════════════ */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .reveal, .char { opacity: 1; transform: none; }
  * { transition-duration: 0.01ms !important; }
}
