/* ==========================================================
   Kirubel Photo & Video 4U — Bold Dramatic Luxury Styles (FINAL)
   Works with latest index.html + script.js:
   ✅ Sticky header never hides
   ✅ Gold hover on menu links
   ✅ Luxury mobile slide-in menu + backdrop
   ✅ Hero cinematic slideshow (crossfade + subtle zoom)
   ✅ Center showreel frame (videos supported)
   ✅ Testimonials: consistent photo + text luxury cards + slider
   ✅ Gallery grid + premium lightbox compatible
   ✅ Contact cards (Materials/WhatsApp/Email) share same luxury style
   ========================================================== */

:root{
  --bg:#f4efe8;
  --ink:rgba(18,16,24,.92);
  --muted:rgba(18,16,24,.62);

  --wine:#120d10;
  --wine2:#1b1417;

  --gold:#e18a00;
  --gold2:#cf7f00;

  --card:rgba(255,255,255,.92);
  --shadow:0 20px 70px rgba(18,16,24,.10);

  --radius:18px;
  --radius2:22px;

  --headerH:86px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

/* anchor jumps never hide under sticky header */
html{
  scroll-behavior:smooth;
  scroll-padding-top: calc(var(--headerH) + 24px);
}
section[id]{ scroll-margin-top: calc(var(--headerH) + 24px); }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(circle at 20% 10%, #ffffff 0%, #f4efe8 55%, #efe6dc 100%);
  color:var(--ink);
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{
  font-family:"Cormorant Garamond", serif;
  margin:0 0 10px;
}
p{ margin:0 0 12px; }

.container{ width:min(1120px, calc(100% - 40px)); margin:0 auto; }
.muted{ color:var(--muted); }
.small{ font-size:.92rem; opacity:.85; }

/* Film grain overlay */
body::before{
  content:"";
  position:fixed;
  inset:-40%;
  pointer-events:none;
  z-index:1;
  opacity:.12;
  mix-blend-mode:overlay;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, rgba(0,0,0,.06) 1px 2px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, rgba(0,0,0,.05) 1px 3px);
  transform:translate3d(0,0,0);
  animation:grainMove 6s steps(8) infinite;
}
@keyframes grainMove{
  0%{transform:translate(-2%,-2%)}
  25%{transform:translate(2%,-3%)}
  50%{transform:translate(3%,2%)}
  75%{transform:translate(-3%,3%)}
  100%{transform:translate(-2%,-2%)}
}
body > *{ position:relative; z-index:2; }

/* =======================
   Topbar
   ======================= */
.topbar{
  background: linear-gradient(90deg, rgba(18,13,16,.96), rgba(42,6,8,.92));
  color: rgba(255,255,255,.92);
  border-bottom:1px solid rgba(255,255,255,.12);
}
.topbar__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:10px 0;
  flex-wrap:wrap;
}
.pill{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  font-weight:800;
  font-size:.92rem;
}
.toplink{ font-weight:800; opacity:.95; }
.toplink:hover{ opacity:1; }

.langSwitch{
  display:inline-flex;
  border-radius:999px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
}
.langBtn{
  border:0;
  padding:8px 12px;
  font-weight:900;
  cursor:pointer;
  color: rgba(255,255,255,.90);
  background:transparent;
}
.langBtn.is-active, .langBtn[aria-pressed="true"]{
  background: rgba(225,138,0,.28);
  color:#fff;
}

/* =======================
   Sticky header NEVER hides
   (isolation prevents transforms below from breaking stacking)
   ======================= */
.header{
  position: sticky;
  top: 0;
  z-index: 1000;          /* don’t use 99999 */
  background: rgba(248,242,234,.90);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  /* REMOVE isolation */
}
.header__inner{
  height:var(--headerH);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:10px 0;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 260px;
}
.brand__logo{
  height:42px;
  width:auto;
  object-fit:contain;
}
.brand__text{ display:flex; flex-direction:column; line-height:1.05; }
.brand__name{ font-weight:900; letter-spacing:2px; font-size:16px; }
.brand__sub{ opacity:.78; font-weight:900; letter-spacing:3px; font-size:11px; margin-top:2px; }

/* Desktop nav */
.nav{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:nowrap;
  justify-content:flex-end;
}
.nav a{
  position:relative;
  font-weight:900;
  opacity:.92;
  font-size:.95rem;
  padding:10px 2px;
  white-space:nowrap;
}
.nav a:hover{ opacity:1; }

/* subtle gold hover underline */
.nav a:not(.btn)::after{
  content:"";
  position:absolute;
  left:0;
  bottom:6px;
  height:2px;
  width:0%;
  background: linear-gradient(90deg, transparent, rgba(225,138,0,.95), transparent);
  transition: width .26s ease;
  opacity:.9;
}
.nav a:not(.btn):hover::after{ width:100%; }

/* Mobile toggle */
.nav__toggle{
  display:none;
  width:46px;height:46px;
  border-radius:14px;
  border:1px solid rgba(18,16,24,.12);
  background: rgba(255,255,255,.86);
  cursor:pointer;
  box-shadow:0 10px 30px rgba(18,16,24,.10);
}
.nav__toggle span{
  display:block;
  width:20px;height:2px;
  background: rgba(18,16,24,.85);
  margin:5px auto;
  border-radius:2px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid rgba(18,16,24,.12);
  font-weight:900;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  position:relative;
}
.btn--primary{
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  color:#1b1214;
  border-color: rgba(225,138,0,.35);
  box-shadow:0 18px 55px rgba(225,138,0,.22);
}
.btn--primary:hover{ transform:translateY(-2px); box-shadow:0 26px 80px rgba(225,138,0,.26); }
.btn--ghost{
  background: rgba(255,255,255,.80);
  border-color: rgba(18,16,24,.14);
}
.btn--ghost:hover{ transform:translateY(-2px); box-shadow:0 20px 70px rgba(18,16,24,.12); border-color: rgba(225,138,0,.22); }
.btn--full{ width:100%; }

/* Gold shimmer */
.shimmer{ overflow:hidden; }
.shimmer::after{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:120%;
  height:100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg);
}
.shimmer:hover::after{ animation: shimmer 1.2s ease forwards; }
@keyframes shimmer{ 100%{ left:120%; } }

/* Luxury mobile slide-in nav + backdrop */
.navBackdrop{
  position:fixed;
  inset:0;
  background: rgba(10,8,12,.55);
  backdrop-filter: blur(10px);
  opacity:0;
  pointer-events:none;
  transition: opacity .22s ease;
  z-index:2000;
}
.navBackdrop.is-open{
  opacity:1;
  pointer-events:auto;
}

@media (max-width:980px){
  .nav__toggle{ display:block; }

  .nav{
    position:fixed;
    top:0; right:0;
    height:100dvh;
    width:min(360px, 92vw);
    padding: calc(var(--headerH) + 20px) 18px 18px;
    background: rgba(248,242,234,.96);
    border-left:1px solid rgba(18,16,24,.10);
    box-shadow:-30px 0 120px rgba(18,16,24,.20);
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    transform: translateX(104%);
    transition: transform .28s cubic-bezier(.16,1,.3,1);
    z-index:3000;
  }
  .nav.is-open{ transform: translateX(0); }

  .nav a{ width:100%; padding:12px 10px; border-radius:14px; }
  .nav a:not(.btn):hover{
    background: rgba(225,138,0,.10);
    border:1px solid rgba(225,138,0,.18);
  }
  .nav a.btn{ width:100%; }
}

/* =======================
   Cards & forms
   ======================= */
.card{
  background: rgba(255,255,255,.92);
  border:1px solid rgba(18,16,24,.10);
  box-shadow: var(--shadow);
  border-radius: var(--radius2);
  padding:16px;
  color: var(--ink);
}
.card--glass{
  background: rgba(255,255,255,.84);
  border:1px solid rgba(255,255,255,.20);
  box-shadow:0 22px 80px rgba(0,0,0,.22);
}

label{ display:block; margin-top:12px; font-weight:900; }
label span{ display:block; margin-bottom:6px; font-size:.92rem; }
input, select, textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(18,16,24,.14);
  background: rgba(255,255,255,.95);
  padding:12px;
  outline:none;
  font-weight:700;
  font-family:inherit;
}
textarea{ resize:vertical; }

/* =======================
   Sections
   ======================= */
.section{ padding:54px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.55));
  border-top:1px solid rgba(18,16,24,.06);
  border-bottom:1px solid rgba(18,16,24,.06);
}
.section__head{ margin-bottom:18px; }
.section__head h2{ font-size:2.1rem; margin:0 0 6px; }
.section__head p{ color:var(--muted); max-width:68ch; }

.grid{ display:grid; gap:14px; }
.grid--2{ grid-template-columns: 1fr 1fr; }

.list{ margin:12px 0 0; padding-left:18px; }
.list li{ margin:8px 0; color:var(--muted); font-weight:700; }

.ctaRow{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

/* =======================
   Hero (dark + slideshow)
   ======================= */
.hero{
  position:relative;
  padding:58px 0 44px;
  overflow:hidden;
}
.hero--dark{
  background:
    radial-gradient(1400px 700px at 50% -20%, rgba(225,138,0,.18), transparent 60%),
    linear-gradient(180deg, #1b1417 0%, #120d10 100%);
  color:#fff;
}

.heroSlideshow{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.heroSlide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform: scale(1.05);
  filter: brightness(.58) contrast(1.12) saturate(1.05);
  transition: opacity 1.4s ease, transform 6s ease;
}
.heroSlide.is-active{
  opacity:1;
  transform: scale(1.0);
}
.heroSlide::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 620px at 20% 10%, rgba(225,138,0,.12), transparent 60%),
    radial-gradient(900px 620px at 86% 22%, rgba(255,255,255,.06), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
}

.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .85fr;
  gap:22px;
  align-items:start;
  z-index:2;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:.78rem;
  font-weight:900;
  opacity:.82;
  margin-bottom:10px;
}
.hero h1{
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  line-height:1.06;
  letter-spacing:1px;
}
.hero p{
  color: rgba(255,255,255,.78);
  font-size:1.05rem;
  line-height:1.55;
}
.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 18px; }

.trust{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}
.trust__item{
  min-width:170px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow:0 14px 50px rgba(0,0,0,.25);
}
.trust__top{ font-weight:900; color:#fff; }
.trust__sub{
  opacity:.8;
  font-weight:700;
  font-size:.92rem;
  margin-top:2px;
  color: rgba(255,255,255,.78);
}

.heroDots{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:16px;
  display:flex;
  gap:10px;
  z-index:3;
}
.heroDot{
  width:10px;height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.14);
  cursor:pointer;
}
.heroDot.is-active{
  background: rgba(225,138,0,.85);
  border-color: rgba(225,138,0,.85);
}

@media (max-width:980px){
  .hero__inner{ grid-template-columns:1fr; }
}

/* =======================
   Cinema section (video)
   ======================= */
.cinemaSection{
  position:relative;
  height: 75vh;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(18,16,24,.06);
}
.cinemaVideo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter: brightness(.62) contrast(1.12) saturate(1.05);
  transform: translateY(var(--parY, 0px));
}
.cinemaOverlay{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  background: radial-gradient(1000px 500px at center, rgba(0,0,0,.30), rgba(0,0,0,.80));
  text-align:center;
  color:#fff;
}
.cinemaInner{
  max-width:820px;
  padding:0 20px;
}
.cinemaOverlay h2{
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing:3px;
  margin-bottom:12px;
}
.cinemaOverlay p{
  opacity:.85;
  font-size:1.12rem;
}

/* =======================
   Pricing
   ======================= */
.pricing{ display:grid; grid-template-columns:repeat(3, 1fr); gap:14px; }
.priceCard{
  border-radius: var(--radius2);
  border:1px solid rgba(18,16,24,.10);
  background: rgba(255,255,255,.88);
  box-shadow:0 20px 70px rgba(18,16,24,.10);
  padding:18px;
}
.priceCard--featured{
  border-color: rgba(225,138,0,.30);
  box-shadow:0 30px 100px rgba(225,138,0,.18);
  transform: translateY(-4px);
}
.priceTop{ display:flex; justify-content:space-between; align-items:center; gap:10px; }
.badge{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(18,16,24,.12);
  background: rgba(255,255,255,.78);
  font-weight:900;
  font-size:.82rem;
}
.badge--dark{
  background: rgba(18,13,16,.92);
  color:#fff;
  border-color: rgba(255,255,255,.14);
}
.note{ margin-top:18px; display:flex; gap:12px; align-items:center; }
.note__line{ height:1px; flex:1; background: rgba(18,16,24,.12); }

@media (max-width:980px){
  .pricing{ grid-template-columns:1fr; }
  .priceCard--featured{ transform:none; }
}

/* =======================
   Gallery grid
   ======================= */
.galleryGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.gItem{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(18,16,24,.10);
  background: rgba(255,255,255,.95);
  box-shadow:0 16px 44px rgba(18,16,24,.10);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.gItem img{
  width:100%;
  height:320px;
  object-fit:cover;
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
}
.gItem::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 70% 30%, rgba(225,138,0,.22), transparent 55%),
    linear-gradient(180deg, rgba(36,0,4,.06), rgba(36,0,4,.26));
  opacity:0;
  transition: opacity .25s ease;
}
.gItem::before{
  content:"Preview";
  position:absolute;
  left:14px; bottom:14px;
  padding:.45rem .7rem;
  border-radius:999px;
  font-weight:900;
  font-size:.82rem;
  letter-spacing:.3px;
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  opacity:0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  z-index:2;
}
.gItem:hover{
  transform: translateY(-6px);
  box-shadow:0 30px 90px rgba(18,16,24,.18);
  border-color: rgba(225,138,0,.22);
}
.gItem:hover img{ transform: scale(1.06); filter: contrast(1.02) saturate(1.04); }
.gItem:hover::after{ opacity:1; }
.gItem:hover::before{ opacity:1; transform: translateY(0); }

@media (max-width:980px){
  .galleryGrid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width:520px){
  .galleryGrid{ grid-template-columns: 1fr; }
  .gItem img{ height:260px; }
}

/* =======================
   Showreel (center luxury frame)
   ======================= */
.showreelWrap{ margin-top:18px; display:grid; gap:12px; }
.showreelFrame{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(18,16,24,.10);
  background: rgba(255,255,255,.72);
  box-shadow:0 30px 110px rgba(18,16,24,.18);
}
.showreelMedia{
  width:100%;
  height: min(62vh, 560px);
  display:block;
  background:#000;
  object-fit:cover;
}
.showreelFrame::after{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(225,138,0,.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.20));
}
.showreelHint{
  text-align:center;
  color: var(--muted);
  font-weight:800;
  font-size:.92rem;
}

/* =======================
   Testimonials (consistent)
   ======================= */
.tSlider{ position:relative; margin-top:18px; }
.tViewport{ overflow:hidden; border-radius:22px; }
.tTrack{
  display:flex;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.tCard{
  flex:0 0 100%;
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:18px;
  padding:18px;
  border:1px solid rgba(18,16,24,.10);
  background: rgba(255,255,255,.90);
  box-shadow:0 20px 70px rgba(18,16,24,.10);
  border-radius:22px;
  align-items:center;
}
.tImg{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(18,16,24,.08);
}
.tBody{ display:grid; gap:10px; }
.tStars{ letter-spacing:2px; color: rgba(225,138,0,.95); font-weight:900; }
.tQuote{
  font-size:1.05rem;
  line-height:1.6;
  color: rgba(18,16,24,.86);
  font-weight:700;
}
.tMeta{
  font-weight:900;
  color: rgba(18,16,24,.90);
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.tMeta span{ color: rgba(18,16,24,.60); font-weight:800; }

.tNav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:46px;
  height:46px;
  border-radius:16px;
  border:1px solid rgba(18,16,24,.10);
  background: rgba(255,255,255,.85);
  box-shadow:0 18px 70px rgba(18,16,24,.12);
  cursor:pointer;
  font-size:26px;
  font-weight:900;
  z-index:2;
}
.tPrev{ left:-10px; }
.tNext{ right:-10px; }
.tNav:hover{ border-color: rgba(225,138,0,.25); }

.tDots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:14px;
}
.tDot{
  width:10px;height:10px;
  border-radius:999px;
  border:1px solid rgba(18,16,24,.22);
  background: rgba(18,16,24,.10);
  cursor:pointer;
}
.tDot.is-active{
  background: rgba(225,138,0,.85);
  border-color: rgba(225,138,0,.85);
}

@media (max-width:820px){
  .tCard{ grid-template-columns:1fr; }
  .tImg{ height:220px; }
  .tPrev{ left:8px; }
  .tNext{ right:8px; }
}

/* =======================
   About
   ======================= */
.about{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:14px;
  align-items:start;
}
.steps{ display:grid; gap:10px; margin-top:14px; }
.step{
  display:grid;
  grid-template-columns: 60px 1fr;
  gap:12px;
  border:1px solid rgba(18,16,24,.10);
  background: rgba(255,255,255,.96);
  border-radius:18px;
  padding:14px;
}
.step__n{
  width:52px;height:52px;
  display:grid; place-items:center;
  border-radius:18px;
  border:1px solid rgba(52,0,6,.18);
  background: rgba(225,138,0,.14);
  font-weight:900;
  font-size:20px;
}
.about__image{ padding:0; overflow:hidden; }
.about__image img{ width:100%; height:480px; object-fit:cover; object-position: 50% 12%; }
.about__caption{ padding:14px 16px; }

@media (max-width:980px){
  .about{ grid-template-columns:1fr; }
}

/* =======================
   ContactLuxury (uses .card)
   ======================= */
.contactLuxury{
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(225,138,0,.15), transparent 60%),
    linear-gradient(180deg, #1b1417 0%, #120d10 100%);
  color:#fff;
  padding:92px 0;
}
.luxuryHeader{
  text-align:center;
  max-width:820px;
  margin:0 auto 50px;
}
.luxuryHeader h2{
  font-size:2.8rem;
  letter-spacing:2px;
  margin-bottom:14px;
}
.luxuryHeader p{ opacity:.85; font-size:1.05rem; }

.luxuryCards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
}
@media (max-width:1100px){
  .luxuryCards{ grid-template-columns:1fr; }
}

/* card overrides inside dark section */
.contactLuxury .card{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  box-shadow:0 30px 110px rgba(0,0,0,.35);
}
.contactLuxury .muted{ color: rgba(255,255,255,.72); }

.luxuryCard{
  position:relative;
  padding:40px 28px;
  border-radius:28px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow:hidden;
}
.luxuryCard:hover{
  transform: translateY(-10px);
  box-shadow: 0 40px 120px rgba(225,138,0,.25);
  border-color: rgba(225,138,0,.25);
}
.luxuryCard--accent{
  border-color: rgba(225,138,0,.35) !important;
}
.luxuryTopLine{
  position:absolute;
  top:0; left:0; right:0;
  height:4px;
  background: linear-gradient(90deg, transparent, #e18a00, transparent);
}
.luxuryBtn{
  display:inline-block;
  padding:14px 26px;
  border-radius:999px;
  background:#e18a00;
  color:#111;
  font-weight:900;
  letter-spacing:1px;
  transition: transform .25s ease, background .25s ease;
  position:relative;
}
.luxuryBtn:hover{ background:#ffb84d; transform: scale(1.05); }
.luxuryBtn--outline{
  background:transparent;
  border:2px solid #e18a00;
  color:#e18a00;
}
.luxuryBtn--outline:hover{ background:#e18a00; color:#111; }

.luxuryMeta{
  margin-top:18px;
  font-weight:800;
  opacity:.85;
  word-break: break-word;
}

.luxuryTrust{
  margin-top:52px;
  text-align:center;
  display:flex;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
  opacity:.78;
  font-weight:800;
  letter-spacing:1px;
}

.matGrid{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.matRow{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-radius:16px;
  background: rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
}
.matRow strong{ font-weight:900; }
.matRow span{ opacity:.8; font-weight:800; }
.matNote{ margin-top:14px; }

/* =======================
   Footer
   ======================= */
.footer{
  padding:26px 0;
  border-top:1px solid rgba(18,16,24,.10);
  background: rgba(248,242,234,.72);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  align-items:flex-start;
}
.footer__links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  font-weight:800;
  opacity:.92;
}
.footerLogo img{ height:44px; width:auto; }
.partners{
  margin-top:10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.partners__label{ font-weight:900; opacity:.78; }
.partnerLink{ font-weight:900; opacity:.9; }
.partnerLink:hover{ opacity:1; color: rgba(225,138,0,.95); }

/* =======================
   Scroll reveal
   ======================= */
.reveal{
  opacity:0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1),
              transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* =======================
   Lightbox (premium)
   ======================= */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  background: rgba(10,8,12,.78);
  backdrop-filter: blur(12px);
  z-index:100000;
  padding:18px;
}
.lightbox.is-open{ display:grid; }

.lbShell{ width:min(980px, 94vw); display:grid; gap:10px; }
.lbFigure{
  margin:0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow:0 30px 120px rgba(0,0,0,.50);
  position:relative;
}
.lbImg{
  width:100%;
  height: min(72vh, 720px);
  object-fit: contain;
  background: rgba(0,0,0,.18);
  display:block;
  opacity:0;
  transform: scale(.99);
  transition: opacity .28s ease, transform .35s ease;
  cursor: zoom-in;
  user-select:none;
  -webkit-user-drag:none;
  touch-action:none;
}
.lightbox.is-ready .lbImg{ opacity:1; transform: scale(1); }
.lightbox.is-zoom .lbImg{ cursor: grab; }
.lightbox.is-zoom .lbImg:active{ cursor: grabbing; }

.lbCap{
  padding:12px 14px;
  color: rgba(255,255,255,.92);
  font-weight:800;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.22));
}
.lbControls{ display:flex; gap:10px; justify-content:flex-end; }
.lbBtn{
  border-radius:14px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.25);
  color:#fff;
  cursor:pointer;
  font-weight:800;
  position:relative;
}
.lbBtn:hover{ background: rgba(0,0,0,.45); border-color: rgba(225,138,0,.30); }

.lbClose{
  position:fixed;
  top:18px;
  right:18px;
  width:54px;
  height:54px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.35);
  color:#fff;
  font-size:34px;
  line-height:1;
  cursor:pointer;
  z-index:100001;
  display:grid;
  place-items:center;
}
.lbClose:hover{ background: rgba(0,0,0,.48); border-color: rgba(225,138,0,.35); }

.lbNav{
  position:fixed;
  top:50%;
  transform: translateY(-50%);
  width:54px;
  height:54px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size:34px;
  cursor:pointer;
  display:grid;
  place-items:center;
  z-index:100001;
}
.lbPrev{ left:18px; }
.lbNext{ right:18px; }
.lbNav:hover{ background: rgba(255,255,255,.16); border-color: rgba(225,138,0,.30); }

.lbLoader{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  gap:10px;
  background:
    radial-gradient(circle at 55% 35%, rgba(225,138,0,.14), transparent 60%),
    rgba(0,0,0,.18);
  opacity:0;
  pointer-events:none;
  transition: opacity .25s ease;
}
.lightbox.is-loading .lbLoader{ opacity:1; }
.lbSpinner{
  width:42px;
  height:42px;
  border-radius:50%;
  border:3px solid rgba(255,255,255,.25);
  border-top-color: rgba(225,138,0,.95);
  animation: spin .9s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
.lbLoadText{ color: rgba(255,255,255,.82); font-size:13px; }

.lbThumbs{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:10px 6px 2px;
  scrollbar-width: thin;
}
.lbThumbs::-webkit-scrollbar{ height:10px; }
.lbThumbs::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.18); border-radius:999px; }

.lbThumb{
  flex:0 0 auto;
  width:92px;
  height:64px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.lbThumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.lbThumb:hover{
  transform: translateY(-2px);
  border-color: rgba(225,138,0,.35);
  box-shadow:0 16px 50px rgba(0,0,0,.35);
}
.lbThumb.is-active{
  border-color: rgba(225,138,0,.60);
  box-shadow:0 18px 60px rgba(225,138,0,.22);
}
@media (max-width:520px){
  .lbThumb{ width:72px; height:52px; border-radius:12px; }
}


/* Make sure content doesn't go under the fixed header */
body{
  padding-top: var(--headerH) !important;
}

/* Prevent any section/overlay from covering the header */
main, section, .section, .hero, .showreelFrame, .tSlider, .lightbox{
  position: relative;
  z-index: 0;
}
/* ==========================================================
   CLEAN HEADER + MOBILE MENU FIX (Safari Safe)
   ========================================================== */

/* Fixed header */
.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* sane stacking */
  background: rgba(248,242,234,.95);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

/* Prevent content from hiding under fixed header */
body{
  padding-top: var(--headerH);
}

/* Make sure mobile layers are ABOVE header */
.navBackdrop{
  z-index: 2000;
}

.nav{
  z-index: 2100;
}

.nav__toggle{
  position: relative;
  z-index: 2200;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Lock scroll when menu open */
html.nav-open,
body.nav-open{
  overflow: hidden;
  height: 100%;
}

