/* ════════════════════════════════════════════
   RESET & VARIABLES
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #C9A96E; --gold-l: #E8D5A3; --gold-d: #A07840;
  --black: #080808; --dark: #111; --dark2: #1A1A1A;
  --white: #fff; --cream: #F8F5F0;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --ease-out: cubic-bezier(.16,1,.3,1);
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--black); color: var(--white); overflow-x: hidden; cursor: none; }
a, button, [data-vid], .gi, .scard, .sgm-card, .team-card, .reel-card { cursor: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── GRAIN ── */
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .025; mix-blend-mode: overlay;
}

/* ── SCROLL PROGRESS ── */
#progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 9997; background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-l)); transition: width .1s linear; }

/* ── CURSOR (desktop only) ── */
.c-dot, .c-ring { position: fixed; border-radius: 50%; pointer-events: none; transform: translate(-50%,-50%); z-index: 99998; }
.c-dot  { width: 6px; height: 6px; background: var(--gold); transition: width .2s, height .2s; }
.c-ring { width: 44px; height: 44px; border: 1px solid rgba(201,169,110,.5); transition: width .4s, height .4s, border-color .3s; }
body.ch .c-dot  { width: 10px; height: 10px; }
body.ch .c-ring { width: 60px; height: 60px; border-color: var(--gold); }
body.ck .c-dot  { width: 4px; height: 4px; }
body.ck .c-ring { width: 28px; height: 28px; }
@media (pointer: coarse) { .c-dot, .c-ring { display: none; } body { cursor: auto !important; } }

/* ── PRELOADER ── */
#preloader { position: fixed; inset: 0; z-index: 10000; background: var(--black); display: flex; align-items: center; justify-content: center; }
.pre-inner { text-align: center; }
.pre-logo  { height: 52px; filter: brightness(0) invert(1); opacity: 0; transform: translateY(16px); margin: 0 auto; }
.pre-bar   { height: 1px; background: var(--gold); width: 0; margin: 22px auto 0; max-width: 200px; }
.pre-txt   { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); opacity: 0; margin-top: 14px; }
.pre-curtain { position: absolute; inset: 0; background: var(--black); transform-origin: top; }

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 60px; transition: padding .5s, background .5s, border-color .5s;
}
nav.scrolled {
  background: rgba(8,8,8,.93); backdrop-filter: blur(20px);
  padding: 16px 60px; border-bottom: 1px solid rgba(201,169,110,.12);
}
.nav-logo img { height: 42px; filter: brightness(0) invert(1); transition: height .4s; }
nav.scrolled .nav-logo img { height: 34px; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 11px; font-weight: 300; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.65); transition: color .3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { font-size: 11px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: var(--black); background: var(--gold); padding: 11px 26px; transition: background .3s; }
.nav-cta:hover { background: var(--gold-l); }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; z-index: 1001; }
.hamburger span { display: block; width: 26px; height: 1.5px; background: var(--white); transition: all .4s var(--ease-out); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999; background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px;
  opacity: 0; pointer-events: none; transition: opacity .5s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--white); letter-spacing: 2px; transition: color .3s; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mn-line { width: 40px; height: 1px; background: rgba(201,169,110,.3); }
.mobile-nav .mn-cta { font-family: var(--sans); font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; background: var(--gold); color: var(--black); padding: 16px 40px; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero { position: relative; height: 100svh; min-height: 620px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; will-change: transform;
  background: linear-gradient(to bottom, rgba(8,8,8,.25) 0%, rgba(8,8,8,.55) 65%, var(--black) 100%),
    url('IMG_4515.jpg') center/cover no-repeat;
}
/* particles */
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.p { position: absolute; border-radius: 50%; opacity: 0; background: var(--gold); animation: pFloat var(--d,10s) ease-in-out var(--dl,0s) infinite; }
@keyframes pFloat { 0%{transform:translateY(100vh) translateX(0);opacity:0} 8%{opacity:.7} 92%{opacity:.3} 100%{transform:translateY(-15vh) translateX(var(--dx,20px));opacity:0} }

.hero-content { position: relative; text-align: center; max-width: 980px; padding: 0 24px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 14px; font-size: 10px; font-weight: 300; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; opacity: 0; }
.hero-eyebrow b { display: block; width: 36px; height: 1px; background: var(--gold); font-weight: normal; }
.hero-title { font-family: var(--serif); font-size: clamp(52px, 9vw, 118px); font-weight: 300; line-height: .98; color: var(--white); }
.hero-title em { font-style: italic; color: var(--gold); }
.tl { display: block; overflow: hidden; }
.tli { display: block; transform: translateY(110%); }
.hero-sub { font-size: clamp(11px,1.5vw,13px); font-weight: 300; letter-spacing: 3.5px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 28px; opacity: 0; }
.hero-btns { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 48px; opacity: 0; }

.btn { display: inline-block; font-size: 11px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; padding: 16px 44px; transition: all .3s; position: relative; overflow: hidden; cursor: pointer; border: none; font-family: var(--sans); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold::before { content: ''; position: absolute; inset: 0; background: var(--white); transform: translateX(-105%); transition: transform .4s; }
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span { position: relative; z-index: 1; color: var(--black); }
.btn-ghost-white { background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.2); display: inline-flex; align-items: center; gap: 12px; }
.btn-ghost-white:hover { border-color: var(--gold); color: var(--gold); }
.play-ico { width: 40px; height: 40px; border: 1px solid currentColor; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }

.hero-scroll { position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(var(--gold), transparent); animation: sLine 2s ease-in-out infinite; }
@keyframes sLine { 0%,100%{opacity:.3;transform:scaleY(1);transform-origin:top} 50%{opacity:1;transform:scaleY(.5);transform-origin:top} }
.scroll-lbl { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.3); }

/* ════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════ */
.marquee-wrap { background: var(--gold); overflow: hidden; padding: 18px 0; border-top: 1px solid var(--gold-d); border-bottom: 1px solid var(--gold-d); }
.marquee-track { display: flex; width: max-content; animation: mScroll 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.mi { font-family: var(--serif); font-size: 17px; font-weight: 300; letter-spacing: 2.5px; color: var(--black); white-space: nowrap; padding: 0 28px; display: flex; align-items: center; gap: 28px; }
.md { width: 5px; height: 5px; background: rgba(0,0,0,.35); border-radius: 50%; flex-shrink: 0; }
@keyframes mScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ════════════════════════════════════════════
   SHARED SECTION
════════════════════════════════════════════ */
.sec { padding: 120px 60px; }
.sec-sm { padding: 80px 60px; }
.container { max-width: 1240px; margin: 0 auto; }
.sec-tag { display: inline-flex; align-items: center; gap: 12px; font-size: 10px; font-weight: 400; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.sec-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold); display: block; }
.sec-title { font-family: var(--serif); font-size: clamp(36px, 5vw, 68px); font-weight: 300; line-height: 1.08; color: var(--white); }
.sec-title em { font-style: italic; color: var(--gold); }

/* ════════════════════════════════════════════
   QUI SOMMES-NOUS
════════════════════════════════════════════ */
.about { background: var(--dark); padding: 0; overflow: hidden; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; }
.about-img { position: relative; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.72); transform: scale(1.04); transition: transform 8s ease; }
.about-img:hover img { transform: scale(1); }
.about-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,8,8,.25), transparent 55%); }
.about-badge { position: absolute; bottom: 40px; left: 40px; background: var(--gold); padding: 20px 26px; }
.ab-num { font-family: var(--serif); font-size: 56px; font-weight: 300; color: var(--black); line-height: 1; }
.ab-txt { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(0,0,0,.65); margin-top: 2px; }
.about-content { padding: 90px 80px; display: flex; flex-direction: column; justify-content: center; background: var(--dark); }
.about-content p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.5); line-height: 2; margin: 24px 0; }
.about-sig { font-family: var(--serif); font-style: italic; font-size: 32px; color: var(--gold); margin-top: 8px; }

.about-values { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.07); }
.val { padding: 52px 48px; border-right: 1px solid rgba(255,255,255,.07); position: relative; overflow: hidden; transition: background .4s; }
.val:last-child { border-right: none; }
.val::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out); }
.val:hover { background: rgba(201,169,110,.04); }
.val:hover::after { transform: scaleX(1); }
.val-ico { font-size: 30px; margin-bottom: 18px; display: block; }
.val-title { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--white); margin-bottom: 12px; }
.val-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.38); line-height: 1.85; }

/* ════════════════════════════════════════════
   TEAM
════════════════════════════════════════════ */
.team { background: var(--black); }
.team-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.team-card { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.team-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.6) saturate(.5); transition: all .6s; }
.team-card:hover img { filter: brightness(.4) saturate(.9); transform: scale(1.05); }
.team-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; background: linear-gradient(to top, rgba(8,8,8,.85), transparent); opacity: 0; transform: translateY(12px); transition: all .4s; }
.team-card:hover .team-info { opacity: 1; transform: translateY(0); }
.team-name { font-family: var(--serif); font-size: 22px; font-weight: 300; }
.team-role { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

/* ════════════════════════════════════════════
   STATS
════════════════════════════════════════════ */
.stats { display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr; background: var(--dark2); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.stat-div { background: rgba(255,255,255,.06); }
.stat { text-align: center; padding: 60px 20px; }
.stat-num { font-family: var(--serif); font-size: 72px; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-num sup { font-size: 28px; vertical-align: super; }
.stat-lbl { font-size: 10px; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-top: 10px; }

/* ════════════════════════════════════════════
   SERVICES — HORIZONTAL SCROLL (desktop)
════════════════════════════════════════════ */
.services-section { overflow: hidden; background: var(--black); }
.services-pin { position: relative; }
.services-header { padding: 100px 60px 50px; display: flex; align-items: flex-end; justify-content: space-between; }
.services-header p { max-width: 280px; font-size: 13px; font-weight: 300; color: rgba(255,255,255,.38); line-height: 1.9; text-align: right; }
.services-track { display: flex; gap: 3px; padding: 0 60px 100px; width: max-content; }

.scard { width: 400px; height: 570px; flex-shrink: 0; position: relative; overflow: hidden; cursor: pointer; }
.scard-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .8s var(--ease-out), filter .8s; filter: brightness(.62); }
.scard:hover .scard-bg { transform: scale(1.08); filter: brightness(.42); }
.scard-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,.9) 0%, transparent 60%); }
.scard-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; }
.scard-num { font-size: 10px; letter-spacing: 3px; color: var(--gold); margin-bottom: 10px; }
.scard-name { font-family: var(--serif); font-size: 34px; font-weight: 300; color: var(--white); line-height: 1.1; }
.scard-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.55); margin-top: 12px; line-height: 1.75; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .5s, opacity .5s; }
.scard:hover .scard-desc { max-height: 90px; opacity: 1; }
.scard-link { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 18px; opacity: 0; transform: translateY(6px); transition: all .3s .1s; }
.scard:hover .scard-link { opacity: 1; transform: translateY(0); }
.scard-ico { font-size: 34px; margin-bottom: 14px; display: block; }
.scroll-hint { position: absolute; right: 60px; bottom: 100px; display: flex; align-items: center; gap: 10px; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.2); }
.sh-arrow { animation: shArrow 1.5s ease-in-out infinite; }
@keyframes shArrow { 0%,100%{transform:translateX(0)} 50%{transform:translateX(8px)} }

/* SERVICES GRID — mobile fallback */
.services-grid-mobile { display: none; padding: 60px 20px; gap: 3px; flex-direction: column; }
.sgm-card { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.sgm-card .scard-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.62); }
.sgm-card .scard-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,.85), transparent 60%); }
.sgm-card .scard-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.sgm-card .scard-name { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--white); line-height: 1.1; }
.sgm-card .scard-desc { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 8px; line-height: 1.7; max-height: none; opacity: 1; }
.sgm-card .scard-ico { font-size: 28px; margin-bottom: 10px; display: block; }
.sgm-card .scard-num { font-size: 10px; letter-spacing: 2.5px; color: var(--gold); margin-bottom: 8px; }

/* bg aliases */
.bg-m  { background-image: url('IMG_4515.jpg'); }
.bg-b  { background-image: url('IMG_4520.jpg'); }
.bg-bt { background-image: url('IMG_4511.jpg'); }
.bg-br { background-image: url('IMG_4522.jpg'); }
.bg-p  { background-image: url('IMG_4512.jpg'); }
.bg-e  { background-image: url('IMG_4519.jpg'); }

/* ════════════════════════════════════════════
   VIDEOS
════════════════════════════════════════════ */
/* ─ VIDEOS — Portrait Reels ─ */
.videos { background: var(--dark); }
.videos-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; }

@keyframes vPulse { 0%,100%{transform:scale(1);opacity:.8} 50%{transform:scale(1.22);opacity:0} }

.reel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.reel-card { aspect-ratio: 9/16; border-radius: 18px; overflow: hidden; position: relative; cursor: pointer; background: var(--dark2); box-shadow: 0 8px 40px rgba(0,0,0,.5); transition: transform .42s cubic-bezier(.2,0,.1,1), box-shadow .42s; }
.reel-card:hover { transform: translateY(-10px) scale(1.025); box-shadow: 0 28px 64px rgba(201,169,110,.2), 0 0 0 1px rgba(201,169,110,.3); }

.reel-video { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: filter .5s; filter: brightness(.72); }
.reel-card:hover .reel-video { filter: brightness(.5); }
.reel-card.playing .reel-video { filter: brightness(1); }
.reel-card.playing .reel-overlay { opacity: 0; }
.reel-card.playing .reel-play { opacity: 0; }
.reel-card.playing .reel-label { opacity: 0; }
.reel-card.playing .reel-dur { opacity: 0; }

.reel-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,.9) 0%, rgba(8,8,8,.08) 48%, transparent 72%); pointer-events: none; }

.reel-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; border: 2px solid rgba(201,169,110,.85); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--gold); background: rgba(201,169,110,.1); backdrop-filter: blur(6px); transition: background .35s, transform .35s, color .35s; padding-left: 4px; }
.reel-play::before { content:''; position:absolute; inset:-9px; border:1px solid rgba(201,169,110,.22); border-radius:50%; animation:vPulse 2.2s ease-in-out infinite; }
.reel-card:hover .reel-play { background: var(--gold); color: var(--black); transform: translate(-50%,-50%) scale(1.1); }

.reel-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 16px; }
.reel-tag { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }

.reel-dur { position: absolute; top: 14px; right: 14px; background: rgba(8,8,8,.6); backdrop-filter: blur(5px); padding: 3px 10px; border-radius: 20px; font-size: 11px; color: rgba(255,255,255,.65); letter-spacing: .5px; }

/* ── VIDEO MODAL ── */
#vmodal { position: fixed; inset: 0; z-index: 9990; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .4s; }
#vmodal.open { opacity: 1; pointer-events: all; }
.vmodal-bd { position: absolute; inset: 0; background: rgba(0,0,0,.93); }
.vmodal-box { position: relative; z-index: 1; transform: scale(.92); transition: transform .4s var(--ease-out); line-height: 0; }
#vmodal.open .vmodal-box { transform: scale(1); }
.vmodal-close { position: absolute; top: -46px; right: 0; background: transparent; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.7); width: 36px; height: 36px; font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .3s; }
.vmodal-close:hover { border-color: var(--gold); color: var(--gold); }
#vmodal-video { display: block; max-height: 88vh; max-width: 90vw; width: auto; height: auto; background: #000; }

/* ════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════ */
/* ─ PROCESS — cartes éditoriales ─ */
.process { background: var(--black); }
.process-header { text-align: center; margin-bottom: 72px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(201,169,110,.08); }

.pstep { background: var(--black); position: relative; padding: 52px 36px 48px; overflow: hidden; transition: background .4s; }
.pstep::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform .5s cubic-bezier(.4,0,.2,1); }
.pstep:hover { background: rgba(201,169,110,.03); }
.pstep:hover::before { transform:scaleX(1); }

.pstep-ghost { position:absolute; bottom:-20px; right:-10px; font-family:var(--serif); font-size:160px; font-weight:300; color:rgba(201,169,110,.05); line-height:1; pointer-events:none; transition:color .4s; user-select:none; }
.pstep:hover .pstep-ghost { color:rgba(201,169,110,.09); }

.pstep-inner { position:relative; z-index:1; }
.pstep-diamond { font-size:11px; color:var(--gold); letter-spacing:4px; margin-bottom:28px; display:block; transition:letter-spacing .3s; }
.pstep:hover .pstep-diamond { letter-spacing:7px; }

.pstep-title { font-family:var(--serif); font-size:26px; font-weight:300; color:var(--white); line-height:1.2; margin-bottom:18px; }
.pstep-desc { font-size:13px; font-weight:300; color:rgba(255,255,255,.35); line-height:1.95; }

/* ════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════ */
.gallery { background: var(--dark); padding: 120px 0; }
.gallery-header { padding: 0 60px; display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; }
.ggrid { display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: repeat(3, 220px); gap: 4px; padding: 0 4px; }
.gi { overflow: hidden; position: relative; cursor: pointer; }
.gi img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.75) saturate(.7); transition: transform .7s, filter .7s; }
.gi:hover img { transform: scale(1.08); filter: brightness(.45) saturate(1.2); }
.gi-over { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .4s; background: rgba(8,8,8,.15); }
.gi:hover .gi-over { opacity: 1; }
.gi-ico { font-size: 26px; color: var(--gold); }
.g1{grid-column:1/5;grid-row:1/3} .g2{grid-column:5/8;grid-row:1/2} .g3{grid-column:8/13;grid-row:1/2}
.g4{grid-column:5/8;grid-row:2/4} .g5{grid-column:8/11;grid-row:2/3} .g6{grid-column:11/13;grid-row:2/4}
.g7{grid-column:1/5;grid-row:3/4} .g8{grid-column:8/11;grid-row:3/4}

/* ── LIGHTBOX ── */
#lightbox { position: fixed; inset: 0; z-index: 9991; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .4s; }
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox .vmodal-bd { position: absolute; inset: 0; background: rgba(0,0,0,.95); }
.lb-box { position: relative; z-index: 1; max-width: 92vw; max-height: 88vh; transform: scale(.9); transition: transform .4s var(--ease-out); }
#lightbox.open .lb-box { transform: scale(1); }
#lb-img { max-width: 92vw; max-height: 88vh; object-fit: contain; display: block; }

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
/* ─ TESTIMONIALS — WhatsApp style ─ */
.testi { background: var(--black); }
.testi-header { text-align: center; margin-bottom: 56px; }
.wa-subtitle { font-family: var(--sans); font-size: 15px; font-weight: 300; color: rgba(255,255,255,.45); text-align: center; margin-top: 16px; }

.wa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; align-items: start; }

.wa-phone { border-radius: 18px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.65); border: 1px solid rgba(255,255,255,.07); transition: transform .35s ease, box-shadow .35s ease; }
.wa-phone:hover { transform: translateY(-8px); box-shadow: 0 40px 90px rgba(0,0,0,.75); }
.wa-phone.wa-featured { border-color: rgba(201,169,110,.28); box-shadow: 0 24px 64px rgba(201,169,110,.12); }
.wa-phone.wa-featured:hover { box-shadow: 0 40px 90px rgba(201,169,110,.24); }

/* macOS traffic lights */
.wa-bar { display: flex; gap: 6px; align-items: center; padding: 10px 14px 8px; background: #181818; }
.wa-bar span { width: 9px; height: 9px; border-radius: 50%; }
.wa-bar span:nth-child(1) { background: #ff5f57; }
.wa-bar span:nth-child(2) { background: #ffbd2e; }
.wa-bar span:nth-child(3) { background: #28ca41; }

/* WhatsApp header bar */
.wa-header { background: #075E54; padding: 10px 14px; display: flex; align-items: center; gap: 10px; }
.wa-av { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #333; flex-shrink: 0; font-family: var(--sans); }
.wa-hinfo { flex: 1; overflow: hidden; }
.wa-hname { font-size: 13px; font-weight: 600; color: #fff; font-family: var(--sans); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wa-hsub { font-size: 10px; color: rgba(255,255,255,.65); font-family: var(--sans); }
.wa-hicons { font-size: 14px; color: rgba(255,255,255,.7); letter-spacing: 3px; }

/* Chat area */
.wa-body { background: #0b1f14; padding: 14px 12px; display: flex; flex-direction: column; gap: 4px; }
.wa-date-chip { text-align: center; margin: 2px 0 10px; font-size: 10px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.4); padding: 3px 10px; border-radius: 10px; font-family: var(--sans); display: inline-block; align-self: center; }

/* Bubbles */
.wa-bubble { max-width: 84%; padding: 8px 10px 5px; border-radius: 8px; position: relative; font-family: var(--sans); font-size: 13px; line-height: 1.55; }
.wa-bubble p { margin: 0; color: rgba(255,255,255,.9); }

.wa-bubble.recv { background: #1e2f1f; border-radius: 0 8px 8px 8px; align-self: flex-start; }
.wa-bubble.recv::before { content:''; position:absolute; top:0; left:-7px; width:0; height:0; border-style:solid; border-width:0 8px 8px 0; border-color:transparent #1e2f1f transparent transparent; }

.wa-bubble.sent { background: #005c4b; border-radius: 8px 0 8px 8px; align-self: flex-end; }
.wa-bubble.sent::before { content:''; position:absolute; top:0; right:-7px; width:0; height:0; border-style:solid; border-width:0 0 8px 8px; border-color:transparent transparent transparent #005c4b; }

.wa-bmeta { font-size: 10px; color: rgba(255,255,255,.35); text-align: right; margin-top: 4px; display: flex; justify-content: flex-end; align-items: center; gap: 4px; }
.wa-tick { color: #53bdeb; font-size: 11px; }
.wa-stars-inline { color: var(--gold); font-size: 9px; letter-spacing: 2px; }

/* Input bar mockup */
.wa-inputbar { background: #181818; padding: 9px 12px; display: flex; align-items: center; }
.wa-ph { flex: 1; color: rgba(255,255,255,.18); font-family: var(--sans); font-size: 12px; background: rgba(255,255,255,.05); border-radius: 20px; padding: 7px 14px; display: block; }

/* ════════════════════════════════════════════
   PARTNERS
════════════════════════════════════════════ */

/* ════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
.ctabanner { position: relative; padding: 150px 60px; text-align: center; overflow: hidden; }
.ctabanner-bg { position: absolute; inset: 0; background: linear-gradient(rgba(8,8,8,.5),rgba(8,8,8,.5)), url('IMG_4521.jpg') center/cover no-repeat; will-change: transform; }
.ctabanner > * { position: relative; z-index: 1; }
.ctabanner .sec-tag { justify-content: center; }
.ctabanner .sec-title { margin-top: 14px; margin-bottom: 16px; }
.ctabanner-sub { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.45); letter-spacing: 1px; }
.ctabanner .btn { margin-top: 48px; display: inline-block; }

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact { background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 90px; align-items: start; }
.contact-info p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.42); line-height: 2; margin: 22px 0 52px; }
.cdetails { display: flex; flex-direction: column; gap: 20px; }
.cdetail { display: flex; align-items: flex-start; gap: 16px; }
.cico { width: 42px; height: 42px; border: 1px solid rgba(201,169,110,.22); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; color: var(--gold); }
.ctxt { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.8; }
.ctxt strong { display: block; color: var(--white); font-weight: 400; font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 3px; }

.cform { display: flex; flex-direction: column; gap: 18px; }
.crow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cfield { display: flex; flex-direction: column; gap: 7px; }
.cfield label { font-size: 9px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.3); }
.cfield input, .cfield select, .cfield textarea {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  color: var(--white); padding: 14px 18px; font-family: var(--sans); font-size: 14px;
  font-weight: 300; outline: none; transition: border-color .3s; resize: none;
}
.cfield select option { background: var(--dark2); }
.cfield input:focus, .cfield select:focus, .cfield textarea:focus { border-color: var(--gold); }
.cfield input::placeholder, .cfield textarea::placeholder { color: rgba(255,255,255,.18); }
.form-btn { font-family: var(--sans); font-size: 11px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; color: var(--black); background: var(--gold); border: none; padding: 18px 44px; cursor: pointer; transition: background .3s; align-self: flex-start; }
.form-btn:hover { background: var(--gold-l); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer { background: var(--black); border-top: 1px solid rgba(255,255,255,.06); padding: 80px 60px 36px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; max-width: 1240px; margin: 0 auto 56px; }
.foot-brand img { height: 40px; filter: brightness(0) invert(1); opacity: .55; margin-bottom: 18px; }
.foot-brand p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.28); line-height: 1.9; }
.foot-socials { display: flex; gap: 10px; margin-top: 26px; }
.fsoc { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.3); font-size: 12px; font-weight: 300; transition: all .3s; }
.fsoc:hover { border-color: var(--gold); color: var(--gold); }
.foot-col h4 { font-size: 9px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.22); margin-bottom: 22px; }
.foot-col ul { list-style: none; }
.foot-col ul li { margin-bottom: 11px; }
.foot-col ul a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.42); transition: color .3s; }
.foot-col ul a:hover { color: var(--gold); }
.foot-bottom { max-width: 1240px; margin: 0 auto; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.05); display: flex; align-items: center; justify-content: space-between; }
.foot-bottom p { font-size: 11px; font-weight: 300; color: rgba(255,255,255,.18); letter-spacing: .5px; }
.foot-bottom a { color: var(--gold); }

/* ── WHATSAPP ── */
.wa { position: fixed; bottom: 32px; right: 32px; z-index: 900; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 32px rgba(37,211,102,.3); animation: waPulse 3s ease-in-out infinite; transition: transform .3s, background .3s; }
.wa:hover { transform: scale(1.1); background: #1ebe5d; }
@keyframes waPulse { 0%,100%{box-shadow:0 8px 32px rgba(37,211,102,.3)} 50%{box-shadow:0 8px 48px rgba(37,211,102,.5)} }
.wa svg { width: 26px; height: 26px; fill: white; }

/* ════════════════════════════════════════════
   ANIMATION UTILS
════════════════════════════════════════════ */
.fu { opacity: 0; transform: translateY(48px); }
.sc > * { opacity: 0; transform: translateY(36px); }

/* ════════════════════════════════════════════
   RESPONSIVE — TABLET ≤ 1024px
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 22px 32px; }
  nav.scrolled { padding: 14px 32px; }
  .nav-links { gap: 24px; }
  .sec { padding: 90px 32px; }
  .sec-sm { padding: 60px 32px; }
  .about-content { padding: 70px 52px; }
  .about-values .val { padding: 40px 32px; }
  .services-header { padding: 80px 32px 40px; }
  .services-track { padding: 0 32px 80px; }
  .gallery-header { padding: 0 32px; }
  .ggrid { grid-template-rows: repeat(3, 180px); }
  .foot-grid { gap: 36px; }
  footer { padding: 64px 32px 32px; }
  .ctabanner { padding: 110px 32px; }
  .wa-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 768px
════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  nav { padding: 18px 20px; }
  nav.scrolled { padding: 14px 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-eyebrow { font-size: 9px; letter-spacing: 2.5px; }
  .hero-sub { letter-spacing: 2px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 14px; }
  .btn { padding: 14px 36px; font-size: 11px; }
  .hero-scroll { bottom: 28px; }

  /* About */
  .about-split { grid-template-columns: 1fr; min-height: auto; }
  .about-img { aspect-ratio: 4/3; }
  .about-badge { bottom: 24px; left: 24px; padding: 14px 18px; }
  .ab-num { font-size: 42px; }
  .about-content { padding: 48px 24px; }
  .about-content p { font-size: 14px; }
  .about-values { grid-template-columns: 1fr; }
  .val { padding: 36px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .val:last-child { border-bottom: none; }

  /* Team */
  .team { padding: 80px 20px; }
  .team-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-info { opacity: 1; transform: translateY(0); }

  /* Stats */
  .stats { grid-template-columns: 1fr 1px 1fr; grid-template-rows: auto 1px auto; }
  .stat-div:nth-child(4) { display: none; }
  .stat-div:nth-child(6) { display: none; }
  .stats .stat:nth-child(5) { grid-column: 1 / -1; }
  .stat { padding: 40px 16px; }
  .stat-num { font-size: 52px; }
  .stat-num sup { font-size: 22px; }

  /* Services */
  .services-section { overflow: visible; }
  .services-pin { overflow: visible; }
  .services-header { padding: 60px 20px 32px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .services-header p { text-align: left; max-width: 100%; }
  .services-track, .scroll-hint { display: none; }
  .services-grid-mobile { display: flex; }

  /* Videos — Reels portrait */
  .videos { padding: 80px 20px; }
  .videos-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
  .reel-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .reel-name { font-size: 17px; }

  /* Process */
  .process { padding: 80px 20px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .pstep-ghost { font-size: 120px; }
  .pstep-title { font-size: 22px; }

  /* Gallery */
  .gallery { padding: 80px 0; }
  .gallery-header { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
  .ggrid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(5, 180px); gap: 3px; }
  .g1{grid-column:1/2;grid-row:1/2} .g2{grid-column:2/3;grid-row:1/2}
  .g3{grid-column:1/3;grid-row:2/3} .g4{grid-column:1/2;grid-row:3/4}
  .g5{grid-column:2/3;grid-row:3/4} .g6{grid-column:1/3;grid-row:4/5}
  .g7{grid-column:1/2;grid-row:5/6} .g8{grid-column:2/3;grid-row:5/6}

  /* Testimonials WhatsApp */
  .testi { padding: 80px 20px; }
  .wa-grid { grid-template-columns: 1fr; max-width: 360px; }

  /* Partners */

  /* CTA */
  .ctabanner { padding: 100px 20px; }

  /* Contact */
  .contact { padding: 80px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .crow { grid-template-columns: 1fr; gap: 18px; }

  /* Footer */
  footer { padding: 60px 20px 28px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* WhatsApp */
  .wa { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .wa svg { width: 22px; height: 22px; }

  /* Sec */
  .sec { padding: 80px 20px; }
  .sec-sm { padding: 52px 20px; }
  .sec-title { font-size: clamp(30px, 8vw, 46px); }

  /* Process */
  .process-steps { grid-template-columns: 1fr; }
  .pstep { padding: 40px 28px 36px; }
  .pstep-ghost { font-size: 100px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(42px, 12vw, 60px); }
  .team-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1px 1fr; }
  .reel-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .reel-play { width: 52px; height: 52px; font-size: 18px; }
  .reel-name { font-size: 15px; }
}
