/* =====================================================
   PICK N PAY — BARGAIN PROJECT 2025
   Palette: Navy #005692 · Red #D4002F · Yellow #FFC72C
   Type: Nunito / Nunito Sans
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Nunito+Sans:wght@300;400;600&display=swap');

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --pnp-blue:     #005692;
  --pnp-blue-d:   #003d6b;
  --pnp-blue-dd:  #00264a;
  --pnp-red:      #D4002F;
  --pnp-red-d:    #a8001f;
  --pnp-yellow:   #FFC72C;
  --white:        #ffffff;
  --off-white:    #F7F8FA;
  --light-grey:   #ECEEF2;
  --mid-grey:     #8A929E;
  --dark-grey:    #3A4250;
  --ink:          #1A1F2E;

  /* Film section dark palette */
  --film-bg:      #0A0C12;
  --film-mid:     #141820;
  --film-border:  rgba(255,255,255,0.07);

  --ff-head: 'Nunito', sans-serif;
  --ff-body: 'Nunito Sans', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: var(--ff-head); }

/* ── SHARED LAYOUT ──────────────────────────────── */
.section-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── PROMO STRIP ─────────────────────────────────── */
.promo-strip {
  background: var(--pnp-blue);
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 1rem;
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 300;
  position: relative;
}
.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.promo-inner i { color: var(--pnp-yellow); margin-right: 0.35rem; }
.ps-sep { opacity: 0.3; }

/* ── NAVBAR ──────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 2px solid var(--light-grey);
  transition: box-shadow 0.3s var(--ease);
}
.site-nav.scrolled { box-shadow: var(--shadow-md); border-bottom-color: transparent; }

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* FIX 1: Logo — controlled small size */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-logo-img {
  width: auto;
  height: 28px;        /* fixed small height */
  max-width: 90px;     /* hard cap on width */
  object-fit: contain;
  display: block;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nbt-top {
  font-family: var(--ff-head);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--pnp-blue);
  letter-spacing: -0.01em;
}
.nbt-bottom {
  font-family: var(--ff-head);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--pnp-red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nl-link {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-grey);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nl-link:hover, .nl-link.active {
  color: var(--pnp-blue);
  background: rgba(0,86,146,0.07);
}
.nl-cta {
  font-family: var(--ff-head);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--white);
  background: var(--pnp-red);
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  margin-left: 0.5rem;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nl-cta:hover { background: var(--pnp-red-d); color: var(--white); transform: translateY(-1px); }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  background: var(--white);
  border-top: 2px solid var(--pnp-blue);
  padding: 0.75rem 1.5rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-drawer.open { display: block; }
.nav-drawer ul { list-style: none; }
.nav-drawer ul li { border-bottom: 1px solid var(--light-grey); }
.nav-drawer ul li:last-child { border-bottom: none; }
.nd-link {
  display: flex;
  align-items: center;
  padding: 0.85rem 0;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-grey);
  transition: color 0.2s, padding-left 0.2s;
}
.nd-link:hover { color: var(--pnp-blue); padding-left: 0.5rem; }
.nd-cta { color: var(--pnp-red) !important; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--pnp-red);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-red:hover {
  background: var(--pnp-red-d);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,0,47,0.3);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.65);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--pnp-blue);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-blue:hover { background: var(--pnp-blue-d); color: var(--white); transform: translateY(-2px); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #25D366;
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #1dbb5a; color: var(--white); transform: translateY(-2px); }
.btn-whatsapp i { font-size: 1.05rem; }

/* ── HERO ────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--pnp-blue-dd);
}

/* FIX 2: Video shows properly — full opacity, subtle overlay only */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;          /* was 0.45 — show video properly */
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Lighter overlay so video actually shows */
  background: linear-gradient(
    135deg,
    rgba(0, 38, 74, 0.72) 0%,
    rgba(0, 61, 107, 0.55) 50%,
    rgba(0, 86, 146, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 5rem 2rem 5rem;  /* removed large bottom padding — no floating card */
  width: 100%;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--pnp-yellow);
  color: var(--ink);
  font-family: var(--ff-head);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.38rem 0.95rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hbp-dot {
  width: 7px;
  height: 7px;
  background: var(--pnp-red);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-heading {
  font-family: var(--ff-head);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero-heading-accent { color: var(--pnp-yellow); font-style: italic; }

.hero-sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
}

/* FIX 3: Stats strip — standalone below hero, not overlapping */
.stats-strip {
  background: var(--white);
  border-bottom: 2px solid var(--light-grey);
  box-shadow: var(--shadow-sm);
  z-index: 10;
  position: relative;
}
.stats-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  gap: 0;
}
.ss-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.ss-num {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--pnp-blue);
  line-height: 1;
}
.ss-label {
  font-family: var(--ff-head);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--mid-grey);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.ss-div {
  width: 1px;
  height: 40px;
  background: var(--light-grey);
  flex-shrink: 0;
  margin: 0 1.5rem;
}

/* ── DISCIPLINE TICKER ──────────────────────────── */
.discipline-ticker {
  background: var(--pnp-red);
  padding: 0.65rem 0;
  overflow: hidden;
}
.dt-track {
  display: inline-flex;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
  font-family: var(--ff-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.dt-dot { color: var(--pnp-yellow); font-size: 0.45rem; vertical-align: middle; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION SHARED ─────────────────────────────── */
.section-gallery,
.section-process,
.section-team,
.section-contact { padding: 5rem 0; }

.section-gallery  { background: var(--white); }
.section-process  { background: var(--white); }
.section-team     { background: var(--off-white); }
.section-contact  { background: var(--off-white); }

.section-label-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--light-grey);
}
.section-eyebrow {
  font-family: var(--ff-head);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pnp-red);
  margin-bottom: 0.3rem;
}
.section-heading {
  font-family: var(--ff-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.sh-accent       { color: var(--pnp-blue); }
.sh-accent-light { color: var(--pnp-yellow); }  /* for dark film section */

.slr-credits {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.credit-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--light-grey);
  color: var(--dark-grey);
  font-family: var(--ff-head);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  white-space: nowrap;
}
.credit-pill i { color: var(--pnp-blue); }

/* Dark credit pill for film section */
.credit-pill-dark {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
}
.credit-pill-dark i { color: var(--pnp-yellow); }

/* ── GALLERY ─────────────────────────────────────── */
/* FIX 4: Bigger rows, contain=cover so full image fills cell cleanly */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

/* Reordered and enlarged grid spans — each cell is tall enough to show images */
.gallery-mosaic .gm-item:nth-child(1) { grid-column: 1 / span 7; grid-row: 1 / span 2; min-height: 340px; }
.gallery-mosaic .gm-item:nth-child(2) { grid-column: 8 / span 5; grid-row: 1 / span 1; min-height: 160px; }
.gallery-mosaic .gm-item:nth-child(3) { grid-column: 8 / span 5; grid-row: 2 / span 1; min-height: 160px; }
.gallery-mosaic .gm-item:nth-child(4) { grid-column: 1 / span 4; grid-row: 3 / span 1; min-height: 240px; }
.gallery-mosaic .gm-item:nth-child(5) { grid-column: 5 / span 8; grid-row: 3 / span 1; min-height: 240px; }

.gm-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--light-grey);
}

.gm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* fills cell fully, no letterboxing */
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gm-item:hover img { transform: scale(1.06); }

.gm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,38,74,0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gm-item:hover .gm-overlay { opacity: 1; }

.gm-expand {
  background: var(--white);
  color: var(--pnp-blue);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-left: auto;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.gm-item:hover .gm-expand { background: var(--pnp-yellow); color: var(--ink); }

/* EDITORIAL label on first image */
.gm-item:nth-child(1)::before {
  content: 'EDITORIAL';
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--pnp-red);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 50px;
}

/* Gallery mobile */
@media (max-width: 860px) {
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gm-item:nth-child(n) {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 220px !important;
  }
  .gm-item:nth-child(1)::before { display: none; }
}
@media (max-width: 480px) {
  .gallery-mosaic { grid-template-columns: 1fr; }
  .gm-item { min-height: 260px !important; }
}

/* ── FILM SECTION — dark cinematic ──────────────── */
/* FIX 5: Rich dark background with texture */
.section-film {
  position: relative;
  padding: 5rem 0;
  background: var(--film-bg);
  overflow: hidden;
}

/* Cinematic grain + radial glow layers */
.film-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.fbd-grain {
  position: absolute;
  inset: 0;
  /* SVG noise grain */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

.fbd-vignette {
  position: absolute;
  inset: 0;
  background:
    /* Red glow top-right */
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(212,0,47,0.18) 0%, transparent 70%),
    /* Blue glow bottom-left */
    radial-gradient(ellipse 70% 50% at 10% 90%, rgba(0,86,146,0.22) 0%, transparent 65%),
    /* Deep vignette */
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(0,0,0,0.55) 100%);
}

/* Horizontal scan lines — subtle cinematic feel */
.section-film::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.012) 3px,
    rgba(255,255,255,0.012) 4px
  );
  pointer-events: none;
}

.film-wrapper { position: relative; z-index: 1; }

/* Film section header text overrides */
.film-label-row { border-bottom-color: rgba(255,255,255,0.1); }
.film-eyebrow { color: var(--pnp-red); }
.film-heading { color: var(--white); }

.film-player-wrap {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.film-red-tab {
  display: inline-block;
  background: var(--pnp-red);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.film-player {
  background: #000;
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,199,44,0.2),
    0 0 60px rgba(212,0,47,0.15),
    0 30px 80px rgba(0,0,0,0.8);
  border: 2px solid rgba(255,199,44,0.25);
}

.main-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.film-info-bar {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding: 0.9rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  font-family: var(--ff-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.film-info-bar i { color: var(--pnp-yellow); margin-right: 0.35rem; }

/* ── PROCESS ─────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.pg-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--light-grey);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.pg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--pnp-blue);
}

.pg-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--light-grey);
}
.pg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.pg-card:hover .pg-img-wrap img { transform: scale(1.07); }

.pg-step-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: var(--pnp-blue);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: 50px;
}

.pg-body {
  padding: 0.9rem 1rem;
  border-top: 3px solid var(--pnp-yellow);
}
.pg-title {
  font-family: var(--ff-head);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.pg-hint { font-size: 0.73rem; color: var(--mid-grey); }

/* ── TEAM ────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.tm-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-grey);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.tm-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.tm-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--light-grey);
}
.tm-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
  filter: grayscale(8%);
}
.tm-card:hover .tm-img-wrap img { transform: scale(1.05); filter: grayscale(0%); }

.tm-color-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--pnp-blue) 0%, var(--pnp-yellow) 50%, var(--pnp-red) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.tm-card:hover .tm-color-bar { transform: scaleX(1); }

.tm-body { padding: 1.25rem 1.4rem; }

.tm-name {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.tm-role {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pnp-blue);
  background: rgba(0,86,146,0.08);
  padding: 0.18rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}
.tm-bio {
  font-size: 0.83rem;
  color: var(--mid-grey);
  line-height: 1.7;
  border-left: 3px solid var(--pnp-yellow);
  padding-left: 0.8rem;
}

/* ── CONTACT — info only ─────────────────────────── */
/* FIX 6: Form removed, contact-info spans full width */
.contact-banner {
  background: linear-gradient(90deg, var(--pnp-blue) 0%, var(--pnp-blue-d) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.cb-heading {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}
.cb-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

/* Full-width info layout */
.contact-info-only {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 2.5rem;
}

.cio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cio-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-grey);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.cio-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--pnp-blue);
  transform: translateY(-2px);
}

.cio-icon {
  width: 42px;
  height: 42px;
  background: var(--pnp-blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.cio-icon-green  { background: #25D366; }
.cio-icon-yellow { background: var(--pnp-yellow); color: var(--ink); }
.cio-icon-red    { background: var(--pnp-red); }

.cio-label {
  font-family: var(--ff-head);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pnp-red);
  margin-bottom: 0.25rem;
}
.cio-val {
  font-family: var(--ff-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  transition: color 0.2s;
}
a.cio-val:hover { color: var(--pnp-blue); }

.cio-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-grey);
}

/* ── FOOTER ──────────────────────────────────────── */
/* FIX 7: Logo renders correctly on dark bg */
.site-footer {
  background: var(--pnp-blue-dd);
  padding: 0;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 2.5rem 2rem 1.5rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.25rem;
}

.ft-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* FIX 7: Logo img — controlled size, inverted white for dark bg */
.ft-logo-img {
  height: 28px;
  width: auto;
  max-width: 85px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.ft-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.ft-brand-main {
  font-family: var(--ff-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.01em;
  display: block;
}
.ft-brand-sub {
  font-family: var(--ff-head);
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
}

.ft-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.ft-links a {
  font-family: var(--ff-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  white-space: nowrap;
}
.ft-links a:hover { color: var(--pnp-yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
}

/* ── LIGHTBOX ────────────────────────────────────── */
/* FIX 8: Lightbox now hidden via style="display:none" in HTML */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: pointer;
}
.lb-inner {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 92vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 30px 80px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.06);
  animation: lbIn 0.28s var(--ease);
}
@keyframes lbIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.lb-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s;
  cursor: pointer;
}
.lb-close:hover { background: var(--pnp-red); }

.lb-img {
  display: block;
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
}
.lb-caption {
  padding: 0.7rem 1rem;
  font-family: var(--ff-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── BACK TO TOP ─────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  background: var(--pnp-blue);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--pnp-red); }

/* ── SCROLL REVEAL ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE — FIX 8: Enhanced mobile UX ─────── */

/* Tablet landscape */
@media (max-width: 1100px) {
  .cio-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .cio-grid { grid-template-columns: repeat(2, 1fr); }

  .section-gallery,
  .section-film,
  .section-process,
  .section-team,
  .section-contact { padding: 4rem 0; }
}

/* Large mobile */
@media (max-width: 768px) {
  /* Promo strip: single line */
  .promo-inner > .ps-sep,
  .promo-inner > span:not(:first-child) { display: none; }
  .promo-strip { font-size: 0.65rem; }

  /* Nav */
  .nav-container { padding: 0 1rem; height: 58px; }
  .nav-logo-img { height: 24px; }
  .nbt-top { font-size: 0.8rem; }
  .nbt-bottom { font-size: 0.56rem; }

  /* Hero */
  .hero-section { min-height: 80vh; }
  .hero-content { padding: 3.5rem 1.25rem 3.5rem; }
  .hero-heading { font-size: clamp(2.6rem, 13vw, 4.5rem); }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.65rem; }
  .hero-actions .btn-red,
  .hero-actions .btn-outline-white { width: 100%; justify-content: center; font-size: 0.88rem; }

  /* Stats strip */
  .stats-strip-inner { flex-wrap: wrap; gap: 0.75rem; padding: 1.25rem; }
  .ss-div { display: none; }
  .ss-item { flex: 1 0 calc(50% - 1rem); min-width: 80px; }
  .ss-num { font-size: 1.6rem; }

  /* Section headers */
  .section-wrapper { padding: 0 1.1rem; }
  .section-label-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .section-heading { font-size: clamp(1.55rem, 6vw, 2.2rem); }

  /* Film */
  .film-info-bar { gap: 1rem; font-size: 0.73rem; padding: 0.75rem 1rem; }

  /* Contact */
  .contact-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }
  .contact-info-only { padding: 1.5rem; }
  .cio-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .cio-card { padding: 1.1rem; }
  .cio-actions { flex-direction: column; gap: 0.75rem; }
  .cio-actions .btn-blue,
  .cio-actions .btn-whatsapp { justify-content: center; width: 100%; }

  /* Footer */
  .footer-inner { padding: 2rem 1.25rem 1.25rem; }
  .footer-top { flex-direction: column; gap: 1.25rem; }
  .ft-links { gap: 0.85rem; }
  .ft-links a { font-size: 0.75rem; }
  .footer-bottom { flex-direction: column; gap: 0.35rem; text-align: center; justify-content: center; }

  /* Process */
  .process-grid { grid-template-columns: 1fr 1fr; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-section { min-height: 75vh; }
  .hero-content { padding: 3rem 1rem 3rem; }
  .hero-heading { font-size: clamp(2.2rem, 15vw, 3.5rem); }
  .hero-badge-pill { font-size: 0.65rem; padding: 0.32rem 0.8rem; }

  .process-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .back-to-top { bottom: 1rem; right: 1rem; width: 40px; height: 40px; font-size: 0.78rem; }

  .film-player-wrap { padding: 0 0.1rem; }
  .film-info-bar { flex-direction: column; gap: 0.5rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, .reveal { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .dt-track { animation: none; }
}