
:root {
  --gold: #FFD400;
  --gold-dim: rgba(255,212,0,0.12);
  --black: #080808;
  --dark: #111111;
  --mid: #1c1c1c;
  --white: #f5f5f0;
  --gray: #888;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

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

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6%;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,212,0,0.08);
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.logo {
  padding: 10px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}
.logo img {
  width: 100px;
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

@media (max-width: 900px) {
  .logo img {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 50px;
  }
}
.logo img:hover{
   transform: translateY(-5px);
}
.center-logo{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  pointer-events:none;
}

.center-logo img{
  width:320px;
  height:auto;
  display:block;
  pointer-events:auto;
}

/* 4K Screens */
@media (min-width:2560px){
  .center-logo img{
    width:420px;
  }
}

/* Large Desktop */
@media (max-width:1920px){
  .center-logo img{
    width:340px;
  }
}

/* Laptop */
@media (max-width:1440px){
  .center-logo{
    position:static;
    transform:none;
    margin:0 auto;
  }

  .center-logo img{
    width:240px;
    margin:0 auto;
  }
}

/* Small Laptop */
@media (max-width:1200px){
  .center-logo img{
    width:200px;
  }
}

/* Tablet */
@media (max-width:992px){
  .center-logo img{
    width:170px;
  }
}

/* Large Mobile */
@media (max-width:768px){
  .center-logo img{
    width:150px;
  }
}

/* Mobile */
@media (max-width:576px){
  .center-logo img{
    width:130px;
  }
}

/* Small Mobile */
@media (max-width:420px){
  .center-logo img{
    width:120px;
  }
}

/* Extra Small Mobile */
@media (max-width:360px){
  .center-logo img{
    width:100px;
  }
}
.footer-logo img{
  width: 100px;
  height: 100px;
}

.logo span { color: var(--gold); }

nav { display: flex; gap: 8px; align-items: center; }
nav a {
  padding: 8px 16px;
  text-decoration: none;
  color: rgba(245,245,240,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: 1px solid transparent;
}
nav a:hover { color: var(--gold); border-color: rgba(255,212,0,0.3); }
nav a.active { color: var(--gold); border-color: var(--gold); background: rgba(255,212,0,0.06); }

/* ─── PAGES ─── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ─── HOME PAGE ─── */
#home {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1478720568477-152d9b164e26?w=1600') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 860px;
  padding: 0 20px;
  animation: heroFadeUp 1.4s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255,212,0,0.4);
  padding: 6px 18px;
  margin-bottom: 30px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
  font-size: 1.05rem;
  color: rgba(245,245,240,0.65);
  margin-bottom: 44px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.btn {
  display: inline-block;
  padding: 15px 44px;
  background: var(--gold);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn:hover { background: transparent; color: var(--gold); }

.btn-outline {
  display: inline-block;
  padding: 15px 44px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid rgba(245,245,240,0.3);
  cursor: pointer;
  transition: all 0.3s;
  margin-left: 16px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Film reel decoration */
.film-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55px;
  background: repeating-linear-gradient(
    90deg,
    var(--black) 0px, var(--black) 18px,
    var(--gold) 18px, var(--gold) 22px,
    var(--black) 22px, var(--black) 40px
  );
  opacity: 0.25;
}
.scroll-hint {
  position: absolute;
  bottom: 70px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: rgba(255,212,0,0.5);
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

/* ─── SECTION WRAPPER ─── */
.section-wrap { padding: 120px 6%; margin-top: 20px; }
.section-wrap.dark { background: var(--dark); }
.section-wrap.mid { background: var(--mid); }

.section-label {
  font-size: 0.68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 60px;
  line-height: 1.15;
}
.section-title span { color: var(--gold); }
.divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 20px 0 50px;
}

/* ─── ABOUT PAGE ─── */
.about-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  display: block;
}

.about-text p {
  color: rgba(245,245,240,0.7);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 24px;
  font-weight: 300;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid rgba(255,212,0,0.15);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
}
.team-section { margin-top: 100px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.team-card {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid rgba(255,212,0,0.15);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.team-card:hover::before { transform: scaleX(1); }
.team-card:hover { background: var(--gold-dim); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--mid);
  border: 2px solid rgba(255,212,0,0.3);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}
.team-role { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }

/* ─── PROJECTS PAGE ─── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.project-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
  background: var(--mid);
}
.project-card.wide { grid-column: span 2; height: 480px; }
.project-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.project-card:hover .project-bg { transform: scale(1.06); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.2) 60%, transparent 100%);
  transition: background 0.4s;
}
.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.5) 60%, rgba(8,8,8,0.1) 100%);
}
.project-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px;
  transform: translateY(10px);
  transition: transform 0.4s;
}
.project-card:hover .project-info { transform: translateY(0); }
.project-tag {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.project-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.project-desc {
  color: rgba(245,245,240,0.65);
  font-size: 0.9rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}
.project-card:hover .project-desc { max-height: 100px; }

/* ─── SERVICES PAGE ─── */
.services-intro {
  max-width: 640px;
  margin-bottom: 80px;
}
.services-intro p {
  color: rgba(245,245,240,0.65);
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 300;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  padding: 50px 36px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  border: 1px solid transparent;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.4s;
  transform-origin: bottom;
}
.service-card:hover::after { transform: scaleY(1); }
.service-card:hover { background: rgba(255,212,0,0.04); border-color: rgba(255,212,0,0.15); }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,212,0,0.1);
  margin-bottom: 20px;
  transition: color 0.4s;
}
.service-card:hover .service-num { color: rgba(255,212,0,0.25); }
.service-icon { font-size: 2rem; margin-bottom: 18px; }
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 14px;
}
.service-desc {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* ─── VIDEOS PAGE ─── */
.videos-intro { max-width: 640px; margin-bottom: 60px; }
.videos-intro p { color: rgba(245,245,240,0.65); font-size: 1rem; line-height: 1.8; font-weight: 300; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--mid);
  overflow: hidden;
}
.video-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--mid);
  border: 1px solid rgba(255,212,0,0.15);
  cursor: pointer;
  /* transition: background: 0.3s; */
   position: absolute; /* ADD THIS */
  overflow: hidden;   /* ADD THIS */
}
.video-placeholder:hover { background: rgba(255,212,0,0.05); }
.play-btn {
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.play-btn:hover { background: var(--gold); }
.play-btn svg { fill: var(--gold); margin-left: 5px; transition: fill 0.3s; }
.play-btn:hover svg { fill: #000; }
.video-label { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

.social-links { margin-top: 70px; }
.social-links h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 24px;
}
.social-row { display: flex; gap: 16px; flex-wrap: wrap; }
.social-btn {
  padding: 12px 28px;
  border: 1px solid rgba(255,212,0,0.3);
  background: transparent;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,212,0,0.05); }

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info { }
.contact-info p {
  color: rgba(245,245,240,0.6);
  font-size: 0.95rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 50px;
}
.contact-detail {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,212,0,0.1);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-label {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-detail-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
}
.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,212,0,0.15);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { height: 140px; resize: vertical; }
.form-group select option { background: var(--black); }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  border: none;
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.form-submit:hover { background: #fff; }
.success-msg {
  display: none;
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(255,212,0,0.3);
  background: rgba(255,212,0,0.06);
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* ─── TICKER ─── */
.ticker-wrap {
  overflow: hidden;
  background: var(--gold);
  padding: 14px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  padding: 0 20px;
}
.ticker-dot { color: rgba(0,0,0,0.4) !important; padding: 0 4px !important; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── HOME STATS ─── */
.home-stats {
  padding: 120px 6%;
  background: var(--black);
  border-bottom: 1px solid rgba(255,212,0,0.07);
}
.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: start;
}
.stats-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin: 14px 0 20px;
}
.stats-heading span { color: var(--gold); }
.stats-sub {
  color: rgba(245,245,240,0.5);
  font-size: 0.92rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 320px;
}
.stats-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 60px;
}
.stat-block { }
.stat-big {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-big .count { color: var(--gold); }
.stat-text {
  font-size: 0.8rem;
  color: rgba(245,245,240,0.5);
  letter-spacing: 0.5px;
  line-height: 1.55;
  margin-bottom: 14px;
  font-weight: 300;
}
.stat-bar {
  height: 1px;
  background: rgba(255,255,255,0.08);
  width: 100%;
}
.stat-bar-fill {
  height: 1px;
  background: var(--gold);
  width: 0;
  transition: width 1.4s cubic-bezier(0.16,1,0.3,1);
}

/* ─── HOME PROJECTS ─── */
.home-projects {
  padding: 120px 6%;
  background: var(--dark);
}
.hp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.hp-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-top: 14px;
  line-height: 1.15;
}
.hp-title span { color: var(--gold); }
.hp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
.hp-card {
  position: relative;
  height: 340px;
  overflow: hidden;
  cursor: pointer;
  background: var(--mid);
}
.hp-wide {
  grid-column: span 2;
  height: 420px;
}
.hp-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.hp-card:hover .hp-bg { transform: scale(1.05); }
.hp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.96) 0%, rgba(5,5,5,0.3) 55%, rgba(5,5,5,0.05) 100%);
  transition: background 0.5s;
}
.hp-card:hover .hp-overlay {
  background: linear-gradient(to top, rgba(5,5,5,0.99) 0%, rgba(5,5,5,0.6) 55%, rgba(5,5,5,0.2) 100%);
}
.hp-body {
  position: absolute; inset: 0;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hp-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,212,0,0.08);
  line-height: 1;
  transition: color 0.4s;
}
.hp-card:hover .hp-num { color: rgba(255,212,0,0.18); }
.hp-tag {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.hp-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.hp-desc {
  font-size: 0.85rem;
  color: rgba(245,245,240,0.55);
  line-height: 1.6;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1);
}
.hp-card:hover .hp-desc { max-height: 80px; }
.hp-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-12px);
  transition: all 0.4s;
  align-self: flex-end;
}
.hp-card:hover .hp-arrow { opacity: 1; transform: translateX(0); }

/* ─── EDITORIAL QUOTE ─── */
.home-quote {
  padding: 100px 6%;
  text-align: center;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.quote-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,212,0,0.5), transparent);
}
.home-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  max-width: 700px;
  line-height: 1.5;
  quotes: none;
}
.quote-attr {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── HOME CTA ─── */
.home-cta {
  padding: 100px 6%;
  background: var(--dark);
  border-top: 1px solid rgba(255,212,0,0.08);
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-top: 14px;
  line-height: 1.15;
}
.cta-title span { color: var(--gold); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── FOOTER ─── */
/* ─── FOOTER ─── */
footer {
  background: #000;
  padding: 40px 6% 30px;
  border-top: 1px solid rgba(255,212,0,0.1);
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,212,0,0.08);
  gap: 20px;
}

.footer-logo-wrap img {
  width: 130px;
  height: auto;
  display: block;
}

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,212,0,0.5);
}

/* Social icons row */
.footer-socials {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,212,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,245,240,0.5);
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon svg {
  width: 17px;
  height: 17px;
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,212,0,0.06);
  transform: translateY(-3px);
}

/* Bottom row */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
}

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

.footer-copy {
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}

/* ─── PAGE TRANSITIONS ─── */
.page { animation: pageFadeIn 0.5s ease both; }
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.wide { grid-column: span 1; height: 380px; }
  .services-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-img { height: 320px; }
  nav { display: none; }
  .mobile-menu-btn { display: flex !important; }
  .stats-inner { grid-template-columns: 1fr; gap: 60px; }
  .stats-numbers { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
  .hp-grid { grid-template-columns: 1fr; }
  .hp-wide { grid-column: span 1; height: 360px; }
  .hp-card { height: 300px; }
  .hp-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  padding: 30px 6%;
  z-index: 999;
  border-bottom: 1px solid rgba(255,212,0,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }


/* ─── CONTACT POPUP ─── */
.error-msg {
  display: none;
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(255,80,80,0.3);
  background: rgba(255,80,80,0.06);
  color: #ff6b6b;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-top: 16px;
}
@keyframes popupIn {
  from { opacity:0; transform:translateY(30px) scale(0.96); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}


/* ─── FORM VALIDATION ─── */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group input.error,
.form-group textarea.error,
.form-group select.error { border-color: #ff6b6b; }
/* ─── PAGE LOADER ─── */

#page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  animation: loaderPulse 1.4s ease infinite;
}
.loader-logo img{
  width: 100%;
  width: 200px;
  display: block;
  justify-content: center;
}
.loader-logo span { color: var(--gold); }
.loader-bar-wrap {
  width: 180px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.loader-bar {
  height: 1px;
  width: 0%;
  background: var(--gold);
  animation: loaderFill 1.6s cubic-bezier(0.16,1,0.3,1) forwards;
}
.loader-text {
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(245,245,240,0.3);
}
@keyframes loaderFill {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}
@keyframes loaderPulse {
  0%,100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* ─── BACK TO TOP ─── */
#back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, background 0.25s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover { background: var(--white); }

/* ─── GALLERY ─── */
.gallery-hero {
  margin-top: 80px;
  padding: 140px 6% 80px;
  background: var(--black);
  border-bottom: 1px solid rgba(255,212,0,0.07);
}
.gallery-intro {
  max-width: 600px;
}
.gallery-intro p {
  color: rgba(245,245,240,0.55);
  font-size: 0.95rem;
  line-height: 1.85;
  font-weight: 300;
  margin-top: 16px;
}

/* Filter tabs */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 40px 6% 0;
  background: var(--black);
}
.filter-btn {
  padding: 9px 22px;
  background: transparent;
  border: 1px solid rgba(255,212,0,0.2);
  color: rgba(245,245,240,0.55);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  font-weight: 600;
}

/* Filmstrip */
.filmstrip-section {
  padding: 10px 0 50px;
  background: var(--black);
}
.filmstrip-label {
  padding: 24px 6% 24px;
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.filmstrip-outer {
  overflow: hidden;
  cursor: default;
  user-select: none;
  padding: 0 6%;
}
.filmstrip-outer::-webkit-scrollbar { display: none; }
.filmstrip-track {
  display: flex;
  gap: 3px;
  width: max-content;
  padding-bottom: 4px;
  will-change: transform;
  animation: filmScroll 40s linear infinite;
}

@keyframes filmScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.filmstrip-track-rtl {
  animation: filmScrollRTL 40s linear infinite;
}

@keyframes filmScrollRTL {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
/* Film holes top & bottom */
.filmstrip-holes {
  display: flex;
  gap: 0;
  padding: 10px 6%;
  background: var(--black);
}
.hole-row {
  display: flex;
  gap: 18px;
  width: 100%;
  overflow: hidden;
}
.hole {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  background: var(--mid);
  border: 1px solid rgba(255,212,0,0.08);
  flex-shrink: 0;
}

/* Gallery item */
.gallery-item {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--mid);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* Images */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Overlay */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.92) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-cat {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.gallery-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
}

/* ========================= */
/* 📱 Tablet */
@media (max-width: 1024px) {
  .gallery-item {
    width: 320px;
    height: 320px;
  }
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .gallery-item {
    width: 260px;
    height: 260px;
  }

  .gallery-item-overlay {
    padding: 18px;
  }

  .gallery-item-title {
    font-size: 0.9rem;
  }
}

/* 📱 Small Mobile */
@media (max-width: 480px) {
  .gallery-item {
    width: 200px;
    height: 200px;
  }

  .gallery-item-overlay {
    padding: 14px;
  }

  .gallery-item-title {
    font-size: 0.8rem;
  }

  .gallery-item-cat {
    font-size: 0.55rem;
  }
}

/* Lightbox */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#lightbox.open { opacity: 1; visibility: visible; }
.lb-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
}
#lb-img{
  width: 800px;
}
.lb-img-wrap img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(255,212,0,0.1);
}
.lb-close {
  position: absolute;
  top: -44px; right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  line-height: 1;
}
.lb-close:hover { opacity: 1; color: var(--gold); }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255,212,0,0.2);
  color: var(--white);
  width: 50px; height: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.25s;
  display: flex; align-items: center; justify-content: center;
}
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-prev:hover, .lb-next:hover { border-color: var(--gold); color: var(--gold); }
.lb-caption {
  position: absolute;
  bottom: -44px; left: 0;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.lb-counter {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: rgba(255,212,0,0.5);
}


/* ─── TALENT HUNT PAGE ─── */
.talent-hero {
  padding: 80px 6% 60px;
  background: var(--black);
  border-bottom: 1px solid rgba(255,212,0,0.07);
  text-align: center;
}

.talent-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin: 12px 0 16px;
}

.talent-title span { color: var(--gold); }

.talent-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(245,245,240,0.6);
  margin-bottom: 20px;
}

.talent-intro {
  max-width: 580px;
  margin: 0 auto;
  color: rgba(245,245,240,0.5);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

.talent-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 40px auto 0;
}

.talent-cards-wrap {
  padding: 80px 6% 100px;
  background: var(--dark);
}

.talent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.talent-card {
  background: var(--black);
  border: 1px solid rgba(255,212,0,0.15);
  padding: 50px 44px 44px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.talent-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  transform-origin: left;
}

.talent-card:hover::before { transform: scaleX(1); }
.talent-card:hover {
  border-color: rgba(255,212,0,0.35);
  background: rgba(255,212,0,0.02);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.talent-card-alt {
  background: rgba(255,212,0,0.03);
  border-color: rgba(255,212,0,0.25);
}

.talent-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.talent-card-tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  background: var(--gold);
  padding: 5px 14px;
  margin-bottom: 20px;
  font-weight: 700;
}

.talent-card-tag-alt {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.talent-card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.talent-card-subtitle {
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.talent-card-desc {
  color: rgba(245,245,240,0.6);
  font-size: 0.92rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 30px;
}

.talent-features {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.talent-features li {
  font-size: 0.88rem;
  color: rgba(245,245,240,0.75);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.3px;
}

.tf-dot {
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.talent-btn {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  border: none;
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.talent-btn:hover {
  background: var(--white);
}

.talent-btn-alt {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.talent-btn-alt:hover {
  background: var(--gold);
  color: #000;
}

.talent-cta {
  padding: 80px 6%;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.talent-cta-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: rgba(245,245,240,0.55);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .talent-grid {
    grid-template-columns: 1fr;
  }
  .talent-card {
    padding: 40px 28px 36px;
  }
}


