/* =========================================================
   LTM CREATION — CORE STYLESHEET
   A premium white cinematic film-studio design system.
   ========================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ---------- Design Tokens ---------- */
:root{
  /* Backgrounds */
  --bg-white:      #FFFFFF;
  --bg-warm:       #FAFAF7;
  --bg-ivory:      #FFFDF8;
  --bg-champagne:  #FFF7EA;
  --bg-grey:       #F5F5F2;

  /* Accents */
  --red:       #FF3C3C;
  --orange:    #FF8A00;
  --champagne: #FFE4B5;
  --white:     #FFFFFF;

  --grad-primary: linear-gradient(100deg, var(--red) 0%, var(--orange) 100%);
  --grad-soft:    linear-gradient(120deg, var(--orange) 0%, var(--champagne) 100%);
  --grad-line:    linear-gradient(90deg, var(--red) 0%, var(--orange) 55%, var(--champagne) 100%);

  /* Typography colors */
  --ink:      #181818;
  --ink-soft: #5F5F5F;
  --ink-mute: #888888;

  /* Borders / shadows */
  --line: rgba(24,24,24,0.08);
  --line-soft: rgba(24,24,24,0.06);
  --shadow-sm: 0 2px 18px rgba(24,24,24,0.05);
  --shadow-md: 0 12px 40px rgba(24,24,24,0.08);
  --shadow-glow: 0 20px 60px rgba(255,138,0,0.16);

  /* Type */
  --f-display: 'Bebas Neue', 'Archivo Narrow', sans-serif;
  --f-label:   'Space Grotesk', sans-serif;
  --f-body:    'Manrope', sans-serif;

  /* Layout */
  --container: 1360px;
  --gutter: clamp(24px, 5vw, 80px);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --ease: cubic-bezier(.22,1,.36,1);
  --dur: .6s;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
html, body{ width:100%; overflow-x:hidden; }
body{
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family: inherit; cursor:pointer; border:none; background:none; color:inherit; }
ul{ list-style:none; }
input, textarea, select{ font-family:inherit; }

::selection{ background: var(--champagne); color: var(--ink); }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Layout helpers ---------- */
.container{ max-width: var(--container); margin-inline:auto; padding-inline: var(--gutter); }
.section{ position:relative; padding: clamp(80px, 10vw, 160px) 0; }
.section--white{ background: var(--bg-white); }
.section--warm{ background: var(--bg-warm); }
.section--champagne{ background: var(--bg-champagne); }
.section--grey{ background: var(--bg-grey); }
.section--ivory{ background: var(--bg-ivory); }

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

.hide-mobile{ display:initial; }
.show-mobile{ display:none; }

/* ---------- Typography ---------- */
.eyebrow{
  font-family: var(--f-label);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:26px; height:1px;
  background: var(--grad-primary);
}

h1, h2, h3, h4{
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 0.98;
  color: var(--ink);
  font-weight: 400;
}
h1{ font-size: clamp(52px, 9vw, 128px); }
h2{ font-size: clamp(38px, 5.6vw, 76px); }
h3{ font-size: clamp(26px, 3vw, 40px); }
h4{ font-size: clamp(19px, 2vw, 24px); }

p{ color: var(--ink-soft); font-weight:400; }
.lead{ font-size: clamp(17px, 1.6vw, 21px); color: var(--ink-soft); max-width: 620px; }

.grad-text{
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-mute{ color: var(--ink-mute); }
.text-center{ text-align:center; margin-inline:auto; }

/* ---------- Buttons ---------- */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--f-label);
  font-size: 13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:600;
  padding: 17px 30px;
  border-radius: 999px;
  overflow:hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  white-space:nowrap;
}
.btn svg{ width:15px; height:15px; transition: transform .4s var(--ease); flex-shrink:0; }
.btn:hover svg{ transform: translateX(5px); }

.btn--primary{
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(255,60,60,0.28);
}
.btn--primary:hover{ transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,138,0,0.36); }

.btn--secondary{
  background: var(--bg-white);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--secondary:hover{ border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn--ghost{
  color: var(--ink);
  padding: 8px 0;
  border-radius:0;
  font-size:13px;
}
.btn--ghost::after{
  content:"";
  position:absolute; left:0; bottom:4px;
  width:100%; height:1px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease);
}
.btn--ghost:hover::after{ transform: scaleX(1); transform-origin: left; }

/* ---------- Header ---------- */
.site-header{
  position: fixed; top:0; left:0; width:100%;
  z-index: 900;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: all .45s var(--ease);
}
.site-header.is-scrolled{
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(24,24,24,0.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px var(--gutter);
  transition: padding .4s var(--ease);
}
.site-header.is-scrolled .header-inner{ padding-block: 12px; }

.logo{
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: .04em;
  display:flex; align-items:center; gap:10px;
}
.logo span{ color: var(--orange); }

.main-nav{ display:flex; align-items:center; gap: 44px; }
.main-nav a{
  font-family: var(--f-label);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff;
  position:relative;
  padding: 6px 0;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:1.5px;
  background: var(--grad-primary);
  transition: width .4s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after{ width:100%; }
.main-nav a.active{ color: #ffffff; }
.site-header.is-scrolled .main-nav a{ color: var(--ink); }
.site-header.is-scrolled .main-nav a.active{ color: var(--orange); }

.header-actions{ display:flex; align-items:center; gap:26px; }

.nav-toggle{
  display:none;
  flex-direction:column; gap:6px;
  width:32px; z-index:1200;
}
.nav-toggle span{ height:2px; width:100%; background:#ffffff; border-radius:2px; transition: all .4s var(--ease); }
.site-header.is-scrolled .nav-toggle span{ background: var(--ink); }
.site-header:not(.is-scrolled) .logo img{ filter: brightness(0) invert(1); }
.site-header.is-scrolled .logo img{ filter: none; }
.nav-toggle.is-open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

.mobile-nav{
  position:fixed; inset:0; z-index:1100;
  background: var(--bg-ivory);
  display:flex; flex-direction:column;
  justify-content:center;
  padding: 40px var(--gutter);
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
}
.mobile-nav.is-open{ transform: translateY(0); }
.mobile-nav a{
  font-family: var(--f-display);
  font-size: 44px;
  text-transform: uppercase;
  padding: 14px 0;
}
.mobile-nav .btn{ margin-top:30px; align-self:flex-start; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height: 100vh;
  display:flex; 
  align-items:center;
  padding-top: 140px;   /* ← restored */
  padding-bottom: 80px; /* ← restored */
  background: var(--bg-ivory);
  overflow:hidden;
}
.hero-bg-glow{
  position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(50% 45% at 82% 18%, rgba(255,138,0,0.14) 0%, transparent 70%),
    radial-gradient(45% 40% at 8% 85%, rgba(255,60,60,0.10) 0%, transparent 70%);
  pointer-events:none;
}
#hero-canvas{
  position:absolute; inset:0; width:100%; height:100%; z-index:1;
  pointer-events:none;
}
.hero-inner{ position:relative; z-index:2; }
.hero-eyebrow{ margin-bottom: 26px; }
.hero-title{ font-size: clamp(56px, 10.5vw, 148px); }
.hero-title .line{ display:block; overflow:hidden; }
.hero-title .line span{ display:inline-block; }
.hero-sub{ display:flex; align-items:flex-end; justify-content:space-between; gap: 40px; margin-top: 40px; flex-wrap:wrap; }
.hero-actions{ display:flex; gap:18px; align-items:center; margin-top: 6px; flex-wrap:wrap;}
.hero-scroll{
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:10px;
  z-index:2;
  font-family: var(--f-label); font-size:11px; letter-spacing:.2em; text-transform:uppercase; color: var(--ink-mute);
}
.hero-scroll .stem{ width:1px; height:46px; background: linear-gradient(var(--ink-mute), transparent); overflow:hidden; position:relative;}
.hero-scroll .stem::after{ content:""; position:absolute; top:-100%; left:0; width:100%; height:100%; background: var(--grad-primary); animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes scrollLine{ 0%{ top:-100%; } 60%{ top:100%; } 100%{ top:100%; } }

/* ---------- Marquee ---------- */
.marquee{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding: 22px 0; overflow:hidden; background: var(--bg-white);
}
.marquee-track{ display:flex; width:max-content; gap: 60px; animation: marquee 32s linear infinite; }
.marquee-track span{
  font-family: var(--f-display); font-size: 26px; text-transform:uppercase; color: var(--ink-mute); display:flex; align-items:center; gap:60px;
}
.marquee-track span i{ font-style:normal; color: var(--orange); }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ---------- Cards ---------- */
.card{
  background: var(--bg-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.card:hover{ box-shadow: var(--shadow-glow); border-color: rgba(255,138,0,.25); }

/* Service cards */
.services-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.service-card{
  position:relative;
  grid-column: span 3;
  border-radius: var(--radius-lg);
  overflow:hidden;
  aspect-ratio: 4/3;
  isolation:isolate;
  cursor:pointer;
}
.service-card.is-large{ grid-column: span 4; }
.service-card.is-small{ grid-column: span 2; }
.service-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform 1.1s var(--ease); }
.service-card:hover img{ transform: scale(1.08); }
.service-card::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(24,24,24,0) 35%, rgba(24,24,24,.78) 100%);
  z-index:1;
}
.service-card .service-num{
  position:absolute; top:22px; left:24px; z-index:2;
  font-family: var(--f-label); font-size:13px; color:#fff; letter-spacing:.15em;
  background: rgba(255,255,255,0.16); backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: 999px;
}
.service-card .service-body{
  position:absolute; left:24px; right:24px; bottom:22px; z-index:2; color:#fff;
}
.service-card .service-body h3{ color:#fff; font-size: clamp(24px,2.6vw,32px); }
.service-card .service-body p{ color: rgba(255,255,255,.78); font-size:14px; max-width:340px; margin-top:6px; }
.service-card .service-arrow{
  position:absolute; top:22px; right:24px; z-index:2;
  width:42px; height:42px; border-radius:50%;
  background: var(--grad-primary);
  display:flex; align-items:center; justify-content:center;
  transform: scale(0) rotate(-40deg); transition: transform .5s var(--ease);
}
.service-card:hover .service-arrow{ transform: scale(1) rotate(0deg); }
.service-card .service-arrow svg{ width:16px; height:16px; stroke:#fff; }

/* ---------- New page grids (previously inline, now responsive) ---------- */
.work-grid{ grid-template-columns: repeat(3,1fr); margin-top:56px; }
.quality-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:40px; margin-top:50px; }
.videos-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; margin-top:40px; }
.film-grid{ grid-template-columns: repeat(3,1fr); }
.services-grid-new{ display:grid; grid-template-columns: repeat(3,1fr); gap:30px; margin-top:20px; }
.showreel-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:30px; margin-top:50px; }
.story-split{ display:grid; grid-template-columns: 60% 40%; gap:50px; align-items:start; }

/* ---------- Service cards (new grid style) — hover + tilt-ready ---------- */
.service-card-new{
  position:relative; isolation:isolate;
  background: var(--bg-white); border-radius: var(--radius-lg); overflow:hidden;
  border:1px solid var(--line-soft); box-shadow: var(--shadow-sm);
  transition: box-shadow .5s var(--ease), border-color .5s var(--ease);
  cursor:default; will-change: transform; transform-style: preserve-3d;
}
.service-card-new::before{
  content:""; position:absolute; inset:0; z-index:3; pointer-events:none; opacity:0;
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.35), transparent 60%);
  transition: opacity .4s ease;
  mix-blend-mode: overlay;
}
.service-card-new:hover::before{ opacity:1; }
.service-card-new::after{
  content:""; position:absolute; inset:0; z-index:2; pointer-events:none; border-radius:inherit;
  padding:1px; background: var(--grad-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity:0; transition: opacity .5s var(--ease);
}
.service-card-new:hover{ box-shadow: var(--shadow-glow); border-color: transparent; }
.service-card-new:hover::after{ opacity:1; }
.service-card-new .service-image{ aspect-ratio:16/10; overflow:hidden; position:relative; }
.service-card-new .service-image::before{
  content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(24,24,24,0) 55%, rgba(24,24,24,.5) 100%);
  opacity:0; transition: opacity .5s var(--ease);
}
.service-card-new:hover .service-image::before{ opacity:1; }
.service-card-new .service-image img{ width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.service-card-new:hover .service-image img{ transform: scale(1.1) rotate(.3deg); }
.service-card-new .service-badge{
  position:absolute; top:16px; right:16px; z-index:2; background: var(--grad-primary); color:#fff;
  font-family: var(--f-label); font-size:11px; letter-spacing:.1em; text-transform:uppercase;
  padding:6px 14px; border-radius:999px; font-weight:600; transition: transform .5s var(--ease);
}
.service-card-new:hover .service-badge{ transform: scale(1.12) rotate(-4deg); }
.service-card-new .service-content{ padding:24px 26px 28px; position:relative; z-index:2; }
.service-card-new .service-content h3{
  font-family: var(--f-display); font-size:22px; text-transform:uppercase; letter-spacing:.02em; margin-bottom:8px;
  background: var(--grad-primary); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.service-card-new .service-content p{ color: var(--ink-soft); font-size:14px; line-height:1.7; margin-bottom:18px; }
.service-btn{ padding:0; font-size:13px; display:inline-flex; align-items:center; gap:8px; transition: gap .4s ease, color .4s ease; }
.service-card-new:hover .service-btn{ gap:14px; color: var(--orange); }
.service-btn svg{ width:16px; height:16px; transition: transform .4s ease; }
.service-card-new:hover .service-btn svg{ transform: translateX(3px); }

/* About / logo circle */
.about-visual{ position:relative; display:flex; align-items:center; justify-content:center; }
.about-orb{
  width: min(420px, 80vw); aspect-ratio:1;
  border-radius:50%;
  background: radial-gradient(circle at 34% 30%, #fff, var(--champagne) 55%, var(--orange) 130%);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 40px 90px rgba(255,138,0,0.22);
  position:relative;
}
.about-orb::after{
  content:""; position:absolute; inset:-24px; border-radius:50%;
  border: 1px dashed rgba(255,138,0,.35);
  animation: spin 26s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
.about-orb .orb-mark{ font-family: var(--f-display); font-size: 64px; color:#fff; text-shadow: 0 10px 30px rgba(0,0,0,.12); }

/* Masterpiece / video cards */
.video-card{
  position:relative; border-radius: var(--radius-lg); overflow:hidden;
  aspect-ratio: 16/10;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
}
.video-card img{ width:100%; height:100%; object-fit:cover; transition: transform 1s var(--ease); }
.video-card:hover img{ transform: scale(1.06); }
.video-card::before{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(24,24,24,0) 45%, rgba(24,24,24,.72) 100%); }
.video-card .play-btn{
  position:absolute; top:50%; left:50%; transform: translate(-50%,-50%) scale(.9);
  width:74px; height:74px; border-radius:50%;
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
  display:flex; align-items:center; justify-content:center;
  transition: transform .5s var(--ease), background .4s;
  z-index:2;
}
.video-card:hover .play-btn{ transform: translate(-50%,-50%) scale(1.08); background: var(--grad-primary); }
.video-card:hover .play-btn svg{ stroke:#fff; fill:#fff; }
.video-card .play-btn svg{ width:20px; height:20px; margin-left:3px; fill: var(--ink); stroke:none; }
.video-card .video-meta{ position:absolute; left:22px; bottom:20px; right:22px; z-index:2; color:#fff; }
.video-card .video-meta h4{ color:#fff; }
.video-card .video-meta span{ font-family:var(--f-label); font-size:12px; letter-spacing:.12em; text-transform:uppercase; color: rgba(255,255,255,.7); }

/* Partnerships / logo wall */
.logo-wall{ display:grid; grid-template-columns: repeat(5, 1fr); gap:1px; background: var(--line); border:1px solid var(--line); margin-top:60px; border-radius: var(--radius-md); overflow:hidden; }
.logo-cell{ 
    background: var(--bg-white); 
    aspect-ratio: 3/2; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    padding: 30px; 
    filter: none; 
    opacity: 1; 
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1); 
}
.logo-cell:hover{ 
    transform: scale(1.03) translateY(-4px); 
    box-shadow: 0 16px 48px rgba(255, 138, 0, 0.06), 0 4px 16px rgba(255, 138, 0, 0.04); 
}
.logo-cell span{ font-family: var(--f-display); font-size:22px; letter-spacing:.04em; color: var(--ink); }
/* Parallax quality section */
.quality-section{ position:relative; overflow:hidden; }
.quality-bg-img{ 
    position: absolute; 
    inset: 0; 
    opacity: .12; 
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed;  /* ← THIS MAKES IT STICKY */
    pointer-events: none; 
}
.quality-cards{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; position:relative; z-index:2; margin-top:60px; }
.quality-card{ padding: 46px 32px; text-align:center; background: var(--bg-white); }
.quality-card .qnum{ font-family: var(--f-display); font-size:15px; color: var(--orange); letter-spacing:.2em; margin-bottom:18px; display:block;}
.quality-card h3{ margin-bottom:14px; }

/* Testimonials */
.testimonial-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; margin-top:56px; }
.testimonial-card{ padding: 34px; display:flex; flex-direction:column; gap:18px; }
.stars{ display:flex; gap:4px; }
.stars svg{ width:16px; height:16px; fill: var(--orange); }
.testimonial-card p{ color: var(--ink); font-size:15px; }
.reviewer{ display:flex; align-items:center; gap:12px; margin-top:auto; }
.reviewer .avatar{ width:42px; height:42px; border-radius:50%; background: var(--grad-soft); display:flex; align-items:center; justify-content:center; font-family:var(--f-display); color:#fff; }
.reviewer strong{ font-family: var(--f-label); font-size: 14px; display:block; }
.reviewer span{ font-size:12px; color: var(--ink-mute); }

/* Footer */
.site-footer{
  background: var(--bg-ivory);
  position:relative;
  overflow:hidden;
  padding-top: clamp(70px, 9vw, 130px);
}
.footer-glow{ position:absolute; inset:0; background: radial-gradient(60% 60% at 20% 0%, rgba(255,60,60,.08), transparent 70%), radial-gradient(50% 50% at 90% 30%, rgba(255,138,0,.10), transparent 70%); pointer-events:none; }
.footer-cta{ position:relative; z-index:2; text-align:center; padding-bottom: 70px; border-bottom:1px solid var(--line); }
.footer-cta h2{ max-width: 900px; margin-inline:auto; }
.footer-cta .btn{ margin-top:34px; }
.footer-grid{ position:relative; z-index:2; display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap:40px; padding-block:60px; }
.footer-col h5{ font-family: var(--f-label); font-size:13px; letter-spacing:.14em; text-transform:uppercase; margin-bottom:20px; color: var(--ink); }
.footer-col a, .footer-col p{ display:block; color: var(--ink-soft); font-size:14px; margin-bottom:12px; }
.footer-col a:hover{ color: var(--orange); }
.footer-bottom{ position:relative; z-index:2; display:flex; justify-content:space-between; align-items:center; padding-block:20px; border-top:1px solid var(--line); font-size:13px; color: var(--ink-mute); flex-wrap:wrap; gap:14px; }
.social-row{ display:flex; gap:14px; }
.social-row a{ width:38px; height:38px; border-radius:50%; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; transition: all .4s var(--ease); }
.social-row a:hover{ background: var(--grad-primary); border-color:transparent; }
.social-row a:hover svg{ stroke:#fff; }
.social-row svg{ width:16px; height:16px; stroke: var(--ink); }

/* World map */
.map-wrap{ position:relative; margin-top: 60px; border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--line-soft); background: var(--bg-warm); }
.map-wrap svg{ width:100%; height:auto; display:block; }
.map-dot{ fill: var(--orange); cursor:pointer; }
.map-info-card{
  position:absolute; padding: 18px 20px; background: var(--bg-white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); border:1px solid var(--line-soft); font-size:13px; min-width:200px;
  opacity:0; pointer-events:none; transform: translateY(8px); transition: all .35s var(--ease); z-index:5;
}
.map-info-card.is-visible{ opacity:1; transform: translateY(0); pointer-events:auto; }
.map-info-card strong{ font-family:var(--f-label); font-size:14px; display:block; margin-bottom:6px; }
.map-info-card span{ display:block; color: var(--ink-soft); margin-bottom:2px; }

/* Page hero (inner pages) */
.page-hero{ padding-top: 170px; padding-bottom: 70px; background: var(--bg-ivory); position:relative; overflow:hidden;}
.page-hero .breadcrumb{ display:flex; align-items:center; gap:8px; font-family: var(--f-label); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color: var(--ink-mute); margin-top:26px; }
.page-hero .breadcrumb a:hover{ color: var(--orange); }

/* Filters */
.filter-row{ display:flex; flex-wrap:wrap; gap:12px; margin-top:44px; }
.filter-pill{
  font-family: var(--f-label); font-size:12.5px; letter-spacing:.1em; text-transform:uppercase;
  padding: 12px 24px; border-radius:999px; border:1px solid var(--line);
  background: var(--bg-white); color: var(--ink-soft); transition: all .4s var(--ease);
}
.filter-pill.active, .filter-pill:hover{ background: var(--grad-primary); color:#fff; border-color:transparent; }

/* Gallery masonry */
.masonry{ column-count: 3; column-gap: 22px; margin-top: 50px; }
.masonry-item{ break-inside: avoid; margin-bottom: 22px; border-radius: var(--radius-md); overflow:hidden; position:relative; border:1px solid var(--line-soft); }
.masonry-item img{ width:100%; display:block; transition: transform .8s var(--ease); }
.masonry-item:hover img{ transform: scale(1.05); }
.masonry-item .tag{ position:absolute; bottom:16px; left:16px; background: rgba(255,255,255,.9); backdrop-filter: blur(6px); padding:6px 14px; border-radius:999px; font-family: var(--f-label); font-size:11px; letter-spacing:.1em; text-transform:uppercase; }

/* Team */
.team-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; margin-top:50px; }
.team-card{ position:relative; border-radius: var(--radius-lg); overflow:hidden; aspect-ratio: 3/4; }
.team-card img{ width:100%; height:100%; object-fit:cover; filter: grayscale(1); transition: all .7s var(--ease); }
.team-card:hover img{ filter: grayscale(0); transform: scale(1.06); }
.team-card::after{ content:""; position:absolute; inset:0; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 0px transparent; transition: box-shadow .5s; }
.team-card:hover::after{ box-shadow: inset 0 0 0 3px rgba(255,138,0,.5); }
.team-info{ position:absolute; left:20px; bottom:18px; right:20px; color:#fff; z-index:2; }
.team-card::before{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.68) 100%); z-index:1; }
.team-info strong{ font-family: var(--f-label); font-size:15px; display:block; }
.team-info span{ font-size:12px; color: rgba(255,255,255,.75); }

/* Roadmap */
.roadmap{ position:relative; margin-top:70px; padding-left: 30px; }
.roadmap::before{ content:""; position:absolute; left:0; top:6px; bottom:6px; width:2px; background: var(--grad-line); border-radius:2px; }
.roadmap-item{ position:relative; padding: 0 0 50px 34px; }
.roadmap-item::before{ content:""; position:absolute; left:-40px; top:2px; width:12px; height:12px; border-radius:50%; background: var(--grad-primary); box-shadow: 0 0 0 5px var(--bg-white), 0 0 0 6px var(--line); }
.roadmap-item h4{ margin-bottom:8px; }

/* Backstage scroller */
.scroller{ display:flex; gap:22px; overflow-x:auto; margin-top:50px; padding-bottom:20px; scrollbar-width:none; }
.scroller::-webkit-scrollbar{ display:none; }
.scroller-item{ min-width: 340px; border-radius: var(--radius-lg); overflow:hidden; aspect-ratio:4/3; flex-shrink:0; border:1px solid var(--line-soft); }
.scroller-item img{ width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.scroller-item:hover img{ transform: scale(1.06); }

/* Blog */
.blog-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 56px; }
.blog-card{ overflow:hidden; }
.blog-thumb{ aspect-ratio: 4/3; overflow:hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.blog-thumb img{ width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease); }
.blog-card:hover .blog-thumb img{ transform: scale(1.06); }
.blog-body{ padding: 26px 26px 30px; }
.blog-meta{ font-family: var(--f-label); font-size:12px; letter-spacing:.08em; text-transform:uppercase; color: var(--ink-mute); margin-bottom:12px; display:flex; gap:14px;}
.blog-body h3{ font-size: 24px; margin-bottom:12px; }
.blog-body p{ font-size:14.5px; }
.blog-featured{ display:grid; grid-template-columns: 1.1fr 1fr; gap:50px; align-items:center; border-radius: var(--radius-lg); overflow:hidden; background: var(--bg-white); border:1px solid var(--line-soft); box-shadow: var(--shadow-sm); }
.blog-featured img{ width:100%; height:100%; object-fit:cover; aspect-ratio: 4/3.4; }
.blog-featured .blog-body{ padding: 40px 46px 40px 0; }

/* Contact */
.contact-layout{ display:grid; grid-template-columns: .85fr 1.15fr; gap: 70px; margin-top:60px; }
.contact-info-item{ display:flex; gap:18px; padding: 22px 0; border-bottom:1px solid var(--line); }
.contact-info-item .icon{ width:46px; height:46px; border-radius:50%; background: var(--bg-champagne); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-info-item .icon svg{ width:19px; height:19px; stroke: var(--orange); }
.contact-info-item h4{ font-size:16px; text-transform:none; font-family: var(--f-label); letter-spacing:.02em; margin-bottom:4px; }
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:20px; }
.form-field{ margin-bottom:20px; }
.form-field.full{ grid-column: 1 / -1; }
.form-field label{ display:block; font-family: var(--f-label); font-size:12px; letter-spacing:.08em; text-transform:uppercase; color: var(--ink-soft); margin-bottom:9px; }
.form-field input, .form-field textarea{
  width:100%; padding:16px 18px; border-radius: var(--radius-sm); border:1.5px solid var(--line);
  background: var(--bg-white); font-size:15px; color: var(--ink); transition: all .35s var(--ease);
}
.form-field textarea{ resize: vertical; min-height:130px; }
.form-field input:focus, .form-field textarea:focus{
  border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,138,0,.12); outline:none;
}
.form-note{ font-size:12px; color: var(--ink-mute); margin-top:6px; }
.form-success{ display:none; padding:16px 20px; background: var(--bg-champagne); border-radius: var(--radius-sm); font-size:14px; margin-top:16px; }
.form-success.is-visible{ display:block; }

/* Showreel page */
.showreel-hero{ padding-top:160px; }
.showreel-player{ position:relative; border-radius: var(--radius-lg); overflow:hidden; aspect-ratio:16/8; margin-top:50px; border:1px solid var(--line-soft); box-shadow: var(--shadow-md); }
.showreel-player img{ width:100%; height:100%; object-fit:cover; }
.showreel-stats{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; margin-top:60px; text-align:center; }
.stat-num{ font-family: var(--f-display); font-size: clamp(38px,4vw,58px); }
.stat-label{ font-family: var(--f-label); font-size:12px; letter-spacing:.12em; text-transform:uppercase; color: var(--ink-mute); margin-top:6px; }

/* Utility spacing */
.mt-10{ margin-top:10px; } .mt-20{ margin-top:20px; } .mt-40{ margin-top:40px; } .mt-60{ margin-top:60px; }
.split{ display:grid; grid-template-columns: 55% 45%; gap: 70px; align-items:center; }

/* Cursor dot (subtle luxury touch) */
.cursor-dot{
  position:fixed; top:0; left:0; width:10px; height:10px; border-radius:50%;
  background: var(--grad-primary); pointer-events:none; z-index:3000;
  transform: translate(-50%,-50%); mix-blend-mode:normal; opacity:0; transition: opacity .3s, width .3s, height .3s;
}
.cursor-dot.is-active{ opacity:.9; }
.cursor-dot.is-hover{ width:38px; height:38px; opacity:.14; }

/* Preloader */
.preloader{ position:fixed; inset:0; z-index:5000; background: var(--bg-ivory); display:flex; align-items:center; justify-content:center; transition: opacity .8s var(--ease), visibility .8s; }
.preloader.is-hidden{ opacity:0; visibility:hidden; }
.preloader-mark{ font-family: var(--f-display); font-size: 20px; letter-spacing:.3em; color: var(--ink); overflow:hidden; }
.preloader-bar{ position:absolute; bottom:0; left:0; height:2px; width:0%; background: var(--grad-primary); }

/* Add to style.css */
.hero--video {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    border: 0;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}
.hero--video .hero-inner {
    position: relative;
    z-index: 2;
    color: #fff;
}
.hero--video .lead {
    color: rgba(255,255,255,0.9);
}
.hero--video .btn--secondary {
    background: rgba(255,255,255,0.9);
    border-color: transparent;
}
.hero--video .hero-scroll {
    color: rgba(255,255,255,0.6);
}
.hero--video .hero-scroll .stem {
    background: linear-gradient(rgba(255,255,255,0.4), transparent);
}
/* gradient text */
.grad-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
/* roadmap horizontal hover */
.roadmap-item-h:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
/* backstage carousel arrows */
.carousel-arrow {
    background: rgba(255,255,255,0.8);
    border: none;
    padding: 10px 16px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.2s;
}
.carousel-arrow:hover {
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ===== COMPANY INTRO - REDUCED SPACING & JUSTIFIED TEXT ===== */


.company-intro p {
    text-align: justify !important;
    max-width: 100% !important;
}

/* ===== QUALITY SECTION - STICKY BACKGROUND (pseudo-element method) ===== */
.quality-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.quality-section::before {
    content: '';
    position: fixed;  /* ← FIXED to viewport, not absolute */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://picsum.photos/seed/ltm-quality/1600/1000');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.quality-section .container {
    position: relative;
    z-index: 1;
}

/* ===== CREATIVE ROADMAP ===== */
.roadmap-creative {
    position: relative;
    padding: 20px 0;
}

.roadmap-step {
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
}

.roadmap-step:hover .roadmap-dot {
    transform: scale(1.4);
    box-shadow: 0 0 0 8px var(--bg-champagne), 0 0 0 16px rgba(255, 138, 0, 0.25) !important;
}

.roadmap-step:hover .step-number {
    color: var(--red) !important;
}

.roadmap-step:hover h4 {
    color: var(--orange);
    transform: translateX(6px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.roadmap-step:hover p {
    color: var(--ink);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Right side items hover (step 2, 4) */
.roadmap-step:hover .roadmap-step-content:last-child h4 {
    transform: translateX(-6px);
}

/* Pulse animation for dots */
.roadmap-dot {
    animation: pulse-dot 3s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 6px var(--bg-champagne), 0 0 0 10px rgba(255, 138, 0, 0.15);
    }
    50% {
        box-shadow: 0 0 0 6px var(--bg-champagne), 0 0 0 16px rgba(255, 138, 0, 0.25);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .roadmap-line {
        left: 20px !important;
    }
    
    .roadmap-step {
        flex-direction: row !important;
        padding-left: 50px;
        margin-bottom: 40px !important;
    }
    
    .roadmap-step-content {
        text-align: left !important;
        padding: 0 !important;
        flex: 1 !important;
    }
    
    .roadmap-step-content:first-child {
        display: none;
    }
    
    .roadmap-step-content:last-child {
        display: block !important;
        padding-left: 20px !important;
    }
    
    .roadmap-dot {
        flex-shrink: 0;
        margin-left: 0;
    }
}

/* =========================================================
   VISION, MISSION, MOTTO — CREATIVE CARDS
   ========================================================= */

.vmm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ---- Card Base ---- */
.vmm-card {
    background: var(--bg-white);
    padding: 40px 28px 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
    will-change: transform;
    transform-style: preserve-3d;
}

.vmm-card::after{
    content:""; position:absolute; inset:0; z-index:2; pointer-events:none; opacity:0;
    background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.4), transparent 60%);
    transition: opacity .4s ease;
    mix-blend-mode: overlay;
}
.vmm-card:hover::after{ opacity:1; }

/* ---- Glow border (hidden by default) ---- */
.vmm-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: var(--grad-primary);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

/* ---- Icon ---- */
.vmm-card .vmm-icon {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

/* ---- Hover Effects ---- */
.vmm-card:hover {
    box-shadow: 0 24px 60px rgba(24, 24, 24, 0.08);
    border-color: transparent;
}

.vmm-card:hover::before {
    opacity: 1;
}

.vmm-card:hover .vmm-icon {
    transform: scale(1.1) rotate(4deg);
    box-shadow: 0 12px 40px rgba(255, 60, 60, 0.35);
}

.vmm-card:hover h3 {
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

.vmm-card p {
    transition: color 0.4s ease;
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
    color: var(--ink-soft);
}

.vmm-card:hover p {
    color: var(--ink);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .vmm-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 620px) {
    .vmm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .vmm-card {
        padding: 32px 20px 28px;
    }
}

.quality-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.quality-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://picsum.photos/seed/ltm-quality/1600/1000');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;  /* keeps the sticky effect */
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

/* =========================================================
   SERVICE CARDS (as clickable links) – FINAL CLEAN
   ========================================================= */
a.service-card-new {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    isolation: isolate;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .5s var(--ease), border-color .5s var(--ease);
    will-change: transform;
    transform-style: preserve-3d;
}

a.service-card-new:hover {
    box-shadow: var(--shadow-glow);
    border-color: transparent;
}

a.service-card-new .service-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

a.service-card-new .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

a.service-card-new:hover .service-image img {
    transform: scale(1.1) rotate(.3deg);
}

a.service-card-new .service-content {
    padding: 24px 26px 28px;
    position: relative;
    z-index: 2;
}

a.service-card-new .service-content h3 {
    font-family: var(--f-display);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: 8px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

a.service-card-new .service-content p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

a.service-card-new .service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: var(--grad-primary);
    color: #fff;
    font-family: var(--f-label);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform .5s var(--ease);
}

a.service-card-new:hover .service-badge {
    transform: scale(1.12) rotate(-4deg);
}

a.service-card-new .service-btn {
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink);
    transition: gap .4s ease, color .4s ease;
}

a.service-card-new:hover .service-btn {
    gap: 14px;
    color: var(--orange);
}

a.service-card-new .service-btn svg {
    width: 16px;
    height: 16px;
    transition: transform .4s ease;
}

a.service-card-new:hover .service-btn svg {
    transform: translateX(3px);
}

/* Spotlight effect (optional) */
a.service-card-new::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.35), transparent 60%);
    transition: opacity .4s ease;
    mix-blend-mode: overlay;
}

a.service-card-new:hover::before {
    opacity: 1;
}

a.service-card-new::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
    padding: 1px;
    background: var(--grad-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .5s var(--ease);
}

a.service-card-new:hover::after {
    opacity: 1;
}

/* Make hero text block match about section's left column width */
.hero-text-block {
    max-width: 55%; /* exactly like .split grid left column */
}

/* On smaller screens, let it breathe */
@media (max-width: 768px) {
    .hero-text-block {
        max-width: 100%;
    }
}