/* ================================================================
   PAGE REDESIGNS — Who We Are, Services, Clients, Career, Blog, Contact
   All new sections; existing .about-refresh etc classes reused
   ================================================================ */

/* ----------------------------------------------------------------
   SHARED COMPONENTS
   ---------------------------------------------------------------- */
.pg-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex !important;
  align-items: flex-end;
  overflow: hidden;
  background: #0a0a0a;
}
.pg-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}
.pg-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.7) 100%);
  pointer-events: none;
  z-index: 1;
}
.pg-hero__bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.pg-hero__inner {
  position: relative;
  z-index: 2;
  padding: 0 80px 80px;
  width: 100%;
}
.pg-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.pg-hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}
.pg-hero__h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 90px);
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 900px;
}
.pg-hero__h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
}
.pg-section {
  padding: 120px 80px;
  width: 100%;
  float: left;
}
.pg-section--dark { background: #0c0c0c; }
.pg-section--mid  { background: #111; }
.pg-section--light { background: #f7f6f4; }
.pg-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.pg-label--dark { color: rgba(0,0,0,0.35); }
.pg-label::before {
  content: '';
  width: 22px; height: 1px;
  background: currentColor;
}
.pg-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 24px;
}
.pg-h2--dark { color: #0c0c0c; }
.pg-body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}
.pg-body--dark { color: rgba(0,0,0,0.6); }
.pg-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0;
}
.pg-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #fff;
  color: #0c0c0c;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.pg-btn:hover { background: rgba(255,255,255,0.88); transform: translateY(-2px); color: #0c0c0c; text-decoration: none; }
.pg-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.pg-btn--outline:hover { background: rgba(255,255,255,0.08); color: #fff; }

@media (max-width: 767px) {
  .pg-hero__inner { padding: 0 24px 60px; }
  .pg-section { padding: 80px 24px; }
}

/* ----------------------------------------------------------------
   WHO WE ARE
   ---------------------------------------------------------------- */
.about-refresh {
  background: #fff;
}
.about-refresh .pg-hero {
  min-height: 75vh;
  background: #0a0a0a;
}
/* Split intro */
.about-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.about-split__sticky {
  position: sticky;
  top: 120px;
}
.about-split__label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  margin-bottom: 20px;
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.about-split__label::before { content:''; width: 22px; height: 1px; background: rgba(0,0,0,0.3); }
.about-split__h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0c0c0c;
  margin: 0 0 20px;
}
.about-split__link {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #0c0c0c;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.about-split__link:hover { border-color: #0c0c0c; color: #0c0c0c; text-decoration: none; }
.about-split__body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(0,0,0,0.6);
}
.about-split__body p + p { margin-top: 20px; }
.about-split__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #0c0c0c;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}
/* Stats row */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 80px;
}
.about-stat {
  padding: 48px 40px;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.about-stat:last-child { border-right: none; }
.about-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1;
  color: #0c0c0c;
  letter-spacing: -0.04em;
}
.about-stat__num sup { font-size: 28px; vertical-align: super; }
.about-stat__label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(0,0,0,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
/* Dark band */
.about-dark-band {
  background: #0c0c0c;
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-dark-band__h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 52px);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
.about-dark-band__body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 992px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-split__sticky { position: static; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-dark-band { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 576px) {
  .about-stats { grid-template-columns: 1fr; }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .about-dark-band { padding: 80px 24px; }
}

/* ----------------------------------------------------------------
   SERVICES
   ---------------------------------------------------------------- */
.services-refresh {
  background: #f7f6f4;
}
.services-refresh .pg-hero {
  background: #0c0c0c;
  min-height: 55vh;
}
/* Three-column cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  margin-top: 60px;
}
.service-card {
  background: #fff;
  padding: 48px 40px 56px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: #0c0c0c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.service-card:hover { background: #faf9f7; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 400;
  letter-spacing: -0.04em;
  transition: color 0.3s ease;
}
.service-card:hover .service-card__num { color: rgba(0,0,0,0.1); }
.service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #0c0c0c;
  margin: 0 0 20px;
  line-height: 1.1;
}
.service-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.service-card__title a:hover { color: #333; text-decoration: none; }
.service-card__items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-card__items li {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: rgba(0,0,0,0.55);
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.service-card__items li::before {
  content: '—';
  color: rgba(0,0,0,0.2);
  font-size: 10px;
  flex-shrink: 0;
}
.service-card__items li:last-child { border-bottom: none; }

/* Scrolling marquee strip */
.services-marquee-wrap {
  background: #0c0c0c;
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}
.services-marquee {
  display: inline-flex;
  animation: marquee-scroll 25s linear infinite;
}
.services-marquee__item {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: rgba(255,255,255,0.18);
  margin: 0 40px;
  letter-spacing: -0.02em;
}
.services-marquee__item--accent { color: rgba(255,255,255,0.7); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 992px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .services-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------
   SERVICES — Category Navigation Bar
   ---------------------------------------------------------------- */
.sv-nav {
  background: #0c0c0c;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: sticky;
  top: 0;
  z-index: 50;
}
.sv-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex !important;
  justify-content: center;
  gap: 0;
}
.sv-nav__link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  color: rgba(255,255,255,0.4);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease;
  border-bottom: 2px solid transparent;
  position: relative;
}
.sv-nav__link:hover {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.03);
}
.sv-nav__link--active {
  color: #fff;
  border-bottom-color: #fff;
}
.sv-nav__num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  opacity: 0.3;
  transition: opacity 0.25s ease;
}
.sv-nav__link:hover .sv-nav__num,
.sv-nav__link--active .sv-nav__num { opacity: 0.7; }

.sv-nav__label {
  text-transform: uppercase;
}

/* Services Category Sections */
.sv-category {
  margin-top: 60px;
}
.sv-category:first-child {
  margin-top: 60px;
}
.sv-category__header {
  display: flex !important;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.sv-category__num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: rgba(0,0,0,0.08);
  letter-spacing: -0.04em;
  line-height: 1;
}
.sv-category__title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #0c0c0c;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Services Navigation — Mobile */
@media (max-width: 767px) {
  .sv-nav {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .sv-nav__inner {
    flex-direction: row !important;
    align-items: stretch;
    justify-content: flex-start;
    min-width: max-content;
  }
  .sv-nav__link {
    padding: 14px 20px;
    flex-shrink: 0;
    justify-content: flex-start;
  }
  /* Fix: pg-section float:left causes horizontal overflow on mobile */
  .services-refresh .pg-section,
  .servicedetail-refresh .pg-section,
  .servicedetail-refresh .sv-fc-section,
  .about-refresh .pg-section {
    float: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 60px 20px !important;
  }
  .services-refresh,
  .servicedetail-refresh,
  .about-refresh {
    overflow-x: clip;
    width: 100%;
  }
  .services-marquee-wrap { overflow: hidden !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .sv-fc-cols,
  .sv-fc-halves { grid-template-columns: 1fr !important; gap: 24px !important; }
}border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .sv-nav__link--active {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-left: 3px solid #fff;
  }
  .sv-category__header {
    flex-direction: column;
    gap: 8px;
  }
  .sv-category__num {
    font-size: 36px;
  }
}

/* ----------------------------------------------------------------
   SERVICE DETAIL PAGE
   ---------------------------------------------------------------- */
.servicedetail-refresh {
  background: #f7f6f4;
}
.servicedetail-refresh .pg-hero {
  background: #0c0c0c;
  min-height: 50vh;
}

/* Back link */
.sv-detail-back {
  padding: 24px 80px;
  background: #f7f6f4;
}
.sv-detail-back__link {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0,0,0,0.5);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.sv-detail-back__link:hover {
  color: #0c0c0c;
}

/* Content */
.sv-detail-content {
  max-width: 800px;
}
.sv-detail-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: #0c0c0c;
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}
.sv-detail-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(0,0,0,0.6);
  margin: 0 0 20px;
}

/* Related services navigation */
.sv-detail-nav {
  background: #0c0c0c;
  padding: 80px;
}
.sv-detail-nav__title {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 0 0 40px;
}
.sv-detail-nav__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.sv-detail-nav__card {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 32px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.sv-detail-nav__card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.sv-detail-nav__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}
.sv-detail-nav__card-arrow {
  font-size: 20px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s ease, transform 0.2s ease;
}
.sv-detail-nav__card:hover .sv-detail-nav__card-arrow {
  color: #fff;
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .sv-detail-nav__grid { grid-template-columns: 1fr 1fr; }
  .sv-detail-back { padding: 24px 40px; }
  .sv-detail-nav { padding: 60px 40px; }
}
@media (max-width: 576px) {
  .sv-detail-nav__grid { grid-template-columns: 1fr; }
  .sv-detail-back { padding: 20px 24px; }
  .sv-detail-nav { padding: 48px 24px; }
}

/* ----------------------------------------------------------------
   CLIENTS
   ---------------------------------------------------------------- */
.client-refresh { background: #fff; }
.client-refresh .pg-hero { min-height: 55vh; background: #0a0a0a; }

/* Logo wall */
.clients-logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid rgba(0,0,0,0.07);
}
.client-logo-cell {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  border-right: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background 0.25s ease;
}
.client-logo-cell:hover { background: #f7f6f4; }
.client-logo-cell img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.client-logo-cell:hover img { opacity: 1; filter: grayscale(0%); }

/* Movie promo cards — refreshed */
.mp-section-header {
  margin-bottom: 60px;
}
.mp-section-header .pg-label--dark { color: rgba(0,0,0,0.3); }
.mp-section-header .pg-h2--dark { color: #0c0c0c; }
.mp-section-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: rgba(0,0,0,0.5);
  max-width: 560px;
  line-height: 1.7;
  margin: 0;
}
.movie-card-v2 {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #0c0c0c;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.movie-card-v2__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.movie-card-v2:hover .movie-card-v2__bg { transform: scale(1.06); }
.movie-card-v2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.movie-card-v2__badge {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
}
.movie-card-v2__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
}
.movie-card-v2__logo {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.movie-card-v2__genre {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
/* movie color gradients */
.movie-kgf .movie-card-v2__bg   { background: linear-gradient(135deg, #1a0a00 0%, #3d1c00 40%, #7a3800 100%); }
.movie-rrr .movie-card-v2__bg   { background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3d 40%, #2a2a7a 100%); }
.movie-pushpa .movie-card-v2__bg { background: linear-gradient(135deg, #1a0a00 0%, #2d1200 40%, #5c2800 100%); }
.movie-kantara .movie-card-v2__bg { background: linear-gradient(135deg, #0a1a00 0%, #1a3000 40%, #2d5200 100%); }

@media (max-width: 992px) { .clients-logo-wall { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 576px) { .clients-logo-wall { grid-template-columns: repeat(3,1fr); } }

/* ----------------------------------------------------------------
   CAREER
   ---------------------------------------------------------------- */
.career-refresh { background: #0c0c0c; }
.career-refresh .pg-hero { min-height: 65vh; }

.career-body {
  background: #0c0c0c;
  padding: 100px 80px 120px;
}
.career-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.career-intro__h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px,3.5vw,52px);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
.career-intro__body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}
/* Values pills */
.career-values {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
}
.career-value-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.03);
}
.career-value-pill::before {
  content: '●';
  font-size: 5px;
  color: rgba(255,255,255,0.3);
}
/* Form section */
.career-form-wrap {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 60px;
  max-width: 760px;
}
.career-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.career-form-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
}
@media (max-width: 992px) { .career-intro { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 767px) { .career-body { padding: 80px 24px; } .career-form-wrap { padding: 32px 24px; } }

/* ----------------------------------------------------------------
   BLOG
   ---------------------------------------------------------------- */
.blog-refresh-wrap, .blog .blog-refresh-wrap, .archive .blog-refresh-wrap {
  background: #f7f6f4;
}

/* Blog hero (injected via PHP above posts loop) */
.blog-pg-hero {
  background: #0c0c0c;
  padding: 160px 80px 80px;
  position: relative;
  overflow: hidden;
}
.blog-pg-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, #f7f6f4, transparent);
}
.blog-pg-hero__h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 110px);
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
}
.blog-pg-hero__h1 span { display: block; color: rgba(255,255,255,0.25); }

/* Blog post cards — new editorial grid */
.blog-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.08);
  margin-bottom: 2px;
}
.blog-card-v2 {
  background: #fff;
  overflow: hidden;
  position: relative;
}
.blog-card-v2:hover .blog-card-v2__img-wrap img { transform: scale(1.04); }
.blog-card-v2__img-wrap {
  overflow: hidden;
  aspect-ratio: 3/2;
  background: #eee;
}
.blog-card-v2__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.blog-card-v2__body {
  padding: 28px 32px 36px;
}
.blog-card-v2__cat {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 12px;
}
.blog-card-v2__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.2;
  color: #0c0c0c;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.blog-card-v2__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card-v2__title a:hover { color: #444; }
.blog-card-v2__meta {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: rgba(0,0,0,0.35);
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.blog-card-v2__meta span + span::before { content: '·'; margin-right: 8px; }
.blog-card-v2__excerpt {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(0,0,0,0.5);
  margin-top: 12px;
}
.blog-card-v2--featured {
  grid-column: span 2;
}
.blog-card-v2--featured .blog-card-v2__img-wrap {
  aspect-ratio: 16/7;
}
.blog-card-v2--featured .blog-card-v2__title { font-size: 32px; }

/* Pagination */
.blog-pagination-wrap {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 60px 0 100px;
  background: #f7f6f4;
}
.blog-pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #0c0c0c;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 50%;
  transition: all 0.2s ease;
}
.blog-pagination-wrap .page-numbers:hover,
.blog-pagination-wrap .page-numbers.current {
  background: #0c0c0c;
  border-color: #0c0c0c;
  color: #fff;
}
@media (max-width: 992px) { .blog-editorial-grid { grid-template-columns: 1fr 1fr; } .blog-card-v2--featured { grid-column: span 2; } }
@media (max-width: 576px) { .blog-editorial-grid { grid-template-columns: 1fr; } .blog-card-v2--featured { grid-column: span 1; } .blog-pg-hero { padding: 140px 24px 60px; } }

/* ----------------------------------------------------------------
   CONTACT
   ---------------------------------------------------------------- */
.contact-refresh { background: #0c0c0c; }
.contact-refresh .pg-hero { min-height: 65vh; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
}
/* Left column */
.contact-info {
  background: #fff;
  padding: 80px;
  display: flex !important;
  flex-direction: column;
}
.contact-info__label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  margin-bottom: 40px;
  display: flex !important; align-items: center; gap: 10px;
}
.contact-info__label::before { content:''; width:22px; height:1px; background:rgba(0,0,0,0.3); }
.contact-info__h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0c0c0c;
  margin: 0 0 48px;
}
.contact-detail {
  margin-bottom: 32px;
}
.contact-detail__eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  margin-bottom: 6px;
}
.contact-detail__value {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0,0,0,0.65);
}
.contact-detail__value a {
  color: #0c0c0c;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  transition: border-color 0.2s;
}
.contact-detail__value a:hover { border-color: #0c0c0c; color: #0c0c0c; text-decoration: none; }
.contact-info__cta { margin-top: auto; }

/* Right column — map */
.contact-map-col {
  position: relative;
  background: #111;
  min-height: 500px;
}
.contact-map-col iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.4s ease;
}
.contact-map-col:hover iframe { filter: grayscale(60%) contrast(1.05); }
/* Map marker overlay badge */
.map-pin-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 22px;
  display: flex !important;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  z-index: 2;
  pointer-events: none;
}
.map-pin-badge__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #0c0c0c;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.map-pin-badge__icon svg { width: 16px; height: 16px; fill: #fff; }
.map-pin-badge__text {
  font-family: 'Poppins', sans-serif;
}
.map-pin-badge__name {
  font-size: 13px;
  font-weight: 700;
  color: #0c0c0c;
  line-height: 1.2;
}
.map-pin-badge__addr {
  font-size: 11px;
  color: rgba(0,0,0,0.45);
  line-height: 1.4;
}
/* Form section */
.contact-form-section {
  background: #0c0c0c;
  padding: 100px 80px 120px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.contact-form-meta { position: sticky; top: 120px; }
.contact-form-meta__h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px,4vw,60px);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0 0 20px;
}
.contact-form-meta__body {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}
.contact-form-wrap .wpcf7-form input,
.contact-form-wrap .wpcf7-form textarea,
.contact-form-wrap .wpcf7-form select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  width: 100%;
  margin-bottom: 16px;
  transition: border-color 0.25s ease;
  outline: none !important;
}
.contact-form-wrap .wpcf7-form input::placeholder,
.contact-form-wrap .wpcf7-form textarea::placeholder { color: rgba(255,255,255,0.25); }
.contact-form-wrap .wpcf7-form input:focus,
.contact-form-wrap .wpcf7-form textarea:focus { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.06); }
.contact-form-wrap .wpcf7-form textarea { min-height: 140px; resize: vertical; }
.contact-form-wrap .wpcf7-submit {
  background: #fff;
  color: #0c0c0c;
  border: none;
  height: 56px;
  padding: 0 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: background 0.25s ease, transform 0.25s ease !important;
}
.contact-form-wrap .wpcf7-submit:hover { background: rgba(255,255,255,0.88); transform: translateY(-2px); }
@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map-col { min-height: 360px; }
  .contact-form-section { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-meta { position: static; }
  .contact-info { padding: 60px 40px; }
  .contact-form-section { padding: 80px 40px; }
}
@media (max-width: 767px) {
  .contact-info { padding: 60px 24px; }
  .contact-form-section { padding: 80px 24px; }
}

/* ----------------------------------------------------------------
   GLOBAL OVERRIDES for int-hero (existing) - hide old hero on new pages
   ---------------------------------------------------------------- */
.about-refresh .int-hero,
.services-refresh .int-hero,
.client-refresh .int-hero,
.career-refresh .int-hero,
.contact-refresh .int-hero {
  display: none !important;
}
/* hide old about section */
.about-refresh .about-studio { display: none !important; }
/* hide old services section */
.services-refresh .services { display: none !important; }
/* hide old contact section */
.contact-refresh .contact { display: none !important; }
/* hide old career section */
.career-refresh .contact { display: none !important; }
/* Hide old client section completely, we replace */
.client-refresh .journal { display: none !important; }
/* REMOVED: was hiding vt-section */

/* ---- Blog section padding on mobile ---- */
@media (max-width: 767px) {
  .blog-refresh-wrap > div[style] {
    padding: 40px 16px !important;
  }
  .blog-card-v2--featured { grid-column: span 1 !important; }
}

/* ---- Ensure overlay nav doesn't show (old shape overlays) ---- */
.shape-overlays { display: none !important; }

/* ---- Fix blog hero on mobile ---- */
@media (max-width: 767px) {
  .blog-pg-hero { padding: 140px 24px 50px !important; }
  .blog-pg-hero__h1 { font-size: 52px !important; }
}

/* ---- Movie cards row spacing ---- */
.client-refresh .row .mb30 { margin-bottom: 30px; }

/* ---- Contact map height on mobile ---- */
@media (max-width: 992px) {
  .contact-map-col { min-height: 400px !important; }
  .contact-map-col iframe { position: absolute; inset: 0; height: 100%; }
}
/* ---- Fix blog page footer - remove fixed positioning ---- */
.blog-refresh-wrap ~ footer.footer,
.blog .footer,
.home.blog .footer,
.archive .footer,
body.blog footer.footer,
body.archive footer.footer {
  position: relative;
  width: 100%;
  margin: 0;
  left: auto;
  bottom: auto;
  z-index: auto;
}

.home-refresh .client-logo-grid {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  max-width: 1200px;
  margin: 0 auto;
  row-gap: 40px;
}
.home-refresh .client-logo-item {
  flex: 0 0 auto;
  min-width: 180px;
  max-width: 220px;
  padding: 24px 32px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.home-refresh .client-logo-item:hover {
  transform: translateY(-6px);
  border-color: rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.03);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.home-refresh .client-logo-item img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease;
}
.home-refresh .client-logo-item:hover img {
  filter: grayscale(0%) opacity(1);
}

\/* 2-row layout: ~10 items per row on desktop *\/
@media (max-width: 1440px) {
  .home-refresh .client-logo-item {
    min-width: 160px;
    max-width: 200px;
  }
}

@media (max-width: 1024px) {
  .home-refresh .client-logo-grid {
    gap: 24px 32px;
    row-gap: 32px;
  }
  .home-refresh .client-logo-item {
    min-width: 140px;
    max-width: 180px;
    padding: 20px 24px;
  }
  .home-refresh .client-logo-item img {
    max-height: 64px;
  }
}

@media (max-width: 767px) {
  .home-refresh .client-logo-grid {
    gap: 16px 24px;
    row-gap: 24px;
  }
  .home-refresh .client-logo-item {
    min-width: 130px;
    max-width: 160px;
    padding: 16px 20px;
    min-height: 80px;
  }
  .home-refresh .client-logo-item img {
    max-height: 48px;
  }
}

@media (max-width: 480px) {
  .home-refresh .client-logo-grid {
    gap: 12px 16px;
    row-gap: 20px;
  }
  .home-refresh .client-logo-item {
    min-width: 120px;
    max-width: 140px;
    padding: 14px 16px;
  }
  .home-refresh .client-logo-item img {
    max-height: 36px;
  }
}

/* ----------------------------------------------------------------
   PORTFOLIO PAGE
   ---------------------------------------------------------------- */
.portfolio-refresh {
  background: #f7f6f4;
}
.portfolio-refresh .pg-hero {
  background: #0c0c0c;
  min-height: 55vh;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
}

.portfolio-card {
  background: #fff;
  overflow: hidden;
  position: relative;
}
.portfolio-card--wide {
  grid-column: span 2;
}

.portfolio-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.portfolio-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eee;
}
.portfolio-card--wide .portfolio-card__img {
  aspect-ratio: 16/9;
}
.portfolio-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
  filter: saturate(0.9);
}
.portfolio-card:hover .portfolio-card__img img {
  transform: scale(1.04);
  filter: saturate(1);
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.75) 0%, transparent 50%);
  display: flex !important;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.portfolio-card:hover .portfolio-card__overlay {
  opacity: 1;
}
.portfolio-card__view {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}

.portfolio-card__info {
  padding: 20px 24px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
.portfolio-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: rgba(0,0,0,0.25);
  letter-spacing: -0.02em;
}
.portfolio-card__logo {
  max-height: 28px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s ease;
}
.portfolio-card:hover .portfolio-card__logo {
  filter: grayscale(0%) opacity(0.8);
}

.portfolio-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: rgba(0,0,0,0.4);
}

/* Portfolio — Mobile */
@media (max-width: 992px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card--wide { grid-column: span 1; }
  .portfolio-card--wide .portfolio-card__img { aspect-ratio: 4/3; }
  .portfolio-card__info { padding: 16px 20px; }
}

/* ----------------------------------------------------------------
   SERVICE DETAIL FLEXIBLE CONTENT
   ---------------------------------------------------------------- */
.sv-detail-back {
  background: #f7f6f4;
  padding: 24px 80px;
  border-bottom: 1px solid #e8e7e4;
}
.sv-detail-back__link {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.sv-detail-back__link:hover { color: #0c0c0c; text-decoration: none; }

.sv-fc-section {
  width: 100%;
  float: none;
}
.sv-fc-bg-white { background: #f7f6f4; }
.sv-fc-bg-black { background: #0d0d0d; }

.sv-fc-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 80px;
}
.sv-fc-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 28px;
}
.sv-fc-heading--bold { font-weight: 900; }
.sv-fc-heading--dark { color: #0c0c0c; }
.sv-fc-subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin: 0 0 12px;
}
.sv-fc-subheading--dark { color: rgba(0,0,0,0.65); }
.sv-fc-body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}
.sv-fc-body--dark { color: rgba(0,0,0,0.6); }
.sv-fc-body p { margin: 0 0 16px; }
.sv-fc-body b, .sv-fc-body strong { color: inherit; font-weight: 700; }

.sv-fc-cols {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.sv-fc-col-left .sv-fc-subheading {
  font-size: 20px;
  color: #fff;
}
.sv-fc-halves {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.sv-fc-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex !important;
  flex-direction: column;
  gap: 16px;
}
.sv-fc-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  padding-left: 20px;
  position: relative;
}
.sv-fc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #c9a84c;
}
.sv-fc-list--dark li { color: rgba(0,0,0,0.6); }
.sv-fc-list--dark li::before { background: #555; }

.sv-fc-lined-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.sv-fc-lined-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sv-fc-lined-list li:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.sv-fc-subblock { margin-bottom: 40px; }

@media (max-width: 900px) {
  .sv-fc-inner { padding: 60px 40px; }
  .sv-fc-cols { grid-template-columns: 1fr; gap: 28px; }
  .sv-fc-halves { grid-template-columns: 1fr; gap: 32px; }
  .sv-detail-back { padding: 20px 40px; }
}
@media (max-width: 600px) {
  .sv-fc-inner { padding: 50px 24px; }
  .sv-detail-back { padding: 16px 24px; }
  .sv-fc-heading { font-size: clamp(22px, 7vw, 32px); }
}

/* ================================================================
   SERVICE DETAIL — COLOUR SCOPE FIX
   Scoped rules override defaults so white-bg sections are always
   dark-on-light and black-bg sections are always light-on-dark.
   These rules take priority without touching the PHP template.
   ================================================================ */

/* White sections: force dark text regardless of modifier class */
.sv-fc-bg-white .sv-fc-heading,
.sv-fc-bg-white .sv-fc-heading--bold {
  color: #0c0c0c;
}
.sv-fc-bg-white .sv-fc-subheading {
  color: rgba(0,0,0,0.7);
}
.sv-fc-bg-white .sv-fc-body {
  color: rgba(0,0,0,0.62);
}
.sv-fc-bg-white .sv-fc-body p { color: inherit; }
.sv-fc-bg-white .sv-fc-body b,
.sv-fc-bg-white .sv-fc-body strong { color: #0c0c0c; }
.sv-fc-bg-white .sv-fc-list li {
  color: rgba(0,0,0,0.62);
}
.sv-fc-bg-white .sv-fc-list li::before { background: #c9a84c; }
.sv-fc-bg-white .sv-fc-col-left .sv-fc-subheading {
  color: #0c0c0c;
}
/* Half-half on white */
.sv-fc-bg-white .sv-fc-halves .sv-fc-subheading {
  color: #0c0c0c;
}

/* Back to services bar — already light, just reinforce */
.sv-detail-back { background: #f0eeea; }

/* Black sections: reinforce contrast (already correct but be explicit) */
.sv-fc-bg-black .sv-fc-heading { color: #fff; }
.sv-fc-bg-black .sv-fc-subheading { color: rgba(255,255,255,0.75); }
.sv-fc-bg-black .sv-fc-body { color: rgba(255,255,255,0.58); }
.sv-fc-bg-black .sv-fc-list li { color: rgba(255,255,255,0.58); }
.sv-fc-bg-black .sv-fc-lined-list li { color: rgba(255,255,255,0.65); }

/* Hero on service detail pages: keep white */
.servicedetail-refresh .pg-hero__h1 { color: #fff; }
.servicedetail-refresh .pg-hero__eyebrow { color: rgba(255,255,255,0.5); }
