*{
margin:0;
padding:0;
box-sizing:border-box;
}




/* HIDE SCROLLBAR - KEEP SCROLL WORKING */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  display: none;
}

/* Firefox */
html {
  scrollbar-width: none;
}

/* IE / old Edge */
body {
  -ms-overflow-style: none;
}



/* SPINNER */
.spinner{
  position:relative;
  width:60px;
  height:60px;

  /* smoother rotation */
  animation: spin 1.8s cubic-bezier(.4,0,.2,1) infinite;
}

/* DOT BASE */
.spinner span{
  position:absolute;
  width:6px;
  height:6px;
  border-radius:50%;

  top:50%;
  left:50%;

  background:#e53935;

  /* smoother fade */
  animation: fade 1.8s cubic-bezier(.4,0,.2,1) infinite;
}

/* DEPTH (IMPORTANT 🔥) */
.spinner span:nth-child(1){ transform: translate(-50%, -50%) rotate(0deg) translateY(-20px) scale(1); }
.spinner span:nth-child(2){ transform: translate(-50%, -50%) rotate(45deg) translateY(-20px) scale(0.9); }
.spinner span:nth-child(3){ transform: translate(-50%, -50%) rotate(90deg) translateY(-20px) scale(0.8); }
.spinner span:nth-child(4){ transform: translate(-50%, -50%) rotate(135deg) translateY(-20px) scale(0.7); }
.spinner span:nth-child(5){ transform: translate(-50%, -50%) rotate(180deg) translateY(-20px) scale(0.6); }
.spinner span:nth-child(6){ transform: translate(-50%, -50%) rotate(225deg) translateY(-20px) scale(0.7); }
.spinner span:nth-child(7){ transform: translate(-50%, -50%) rotate(270deg) translateY(-20px) scale(0.8); }
.spinner span:nth-child(8){ transform: translate(-50%, -50%) rotate(315deg) translateY(-20px) scale(0.9); }

/* DELAYS */
.spinner span:nth-child(1){ animation-delay:-1.6s; }
.spinner span:nth-child(2){ animation-delay:-1.4s; }
.spinner span:nth-child(3){ animation-delay:-1.2s; }
.spinner span:nth-child(4){ animation-delay:-1.0s; }
.spinner span:nth-child(5){ animation-delay:-0.8s; }
.spinner span:nth-child(6){ animation-delay:-0.6s; }
.spinner span:nth-child(7){ animation-delay:-0.4s; }
.spinner span:nth-child(8){ animation-delay:-0.2s; }

/* ROTATION */
@keyframes spin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* FADE */
@keyframes fade{
  0%{ opacity:1; }
  50%{ opacity:0.3; }
  100%{ opacity:1; }
}



#loader{
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;

  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility .5s ease;
}

#loader.hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}





body{
background:#000;
color:white;
font-family:'Poppins',sans-serif;
line-height:1.5;
padding-top: 5rem;
}


/* GLOBAL CONTAINER */

.container{
width:min(1200px,92%);
margin:auto;
}





/* ===============================
   PREMIUM HEADER REPLACE
=============================== */
.nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;

  display: flex;
  justify-content: center;

  padding: 14px 0;

  transition: transform .35s ease, opacity .35s ease;
  will-change: transform;
}

.nav.hide{
  transform: translateY(-110%);
  opacity: .2;
}

.nav.show{
  transform: translateY(0);
  opacity: 1;
}

.nav-inner{
  width:min(1200px,92%);
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:14px 24px;
  border-radius:26px;

  /* LIGHT PREMIUM GLASS */
  background: linear-gradient(
    145deg,
    rgba(245,245,245,.95),
    rgba(220,220,220,.88)
  );

  border: 1px solid rgba(255,255,255,.7);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  position:relative;
  overflow:hidden;

  /* 3D DEPTH */
  box-shadow:
    inset 0 2px 8px rgba(255,255,255,.9),
    inset 0 -6px 12px rgba(0,0,0,.08),
    0 10px 25px rgba(0,0,0,.18),
    0 18px 40px rgba(0,0,0,.12);
}





/* SHINY EFFECT */
.nav-inner::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:50%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.25),
    transparent
  );
  transform:skewX(-25deg);
  animation:navShine 6s linear infinite;
}

@keyframes navShine{
  100%{ left:140%; }
}

.logo img{
  height:42px;
  position:relative;
  z-index:2;
}

.menu{
  display:flex;
  gap:28px;
  position:relative;
  z-index:2;
}

.menu a{
  color:#000000;
  text-decoration:none;
  font-weight:500;
  position:relative;
  transition:.3s;
}

.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#e53935;
  transition:.3s;
}

.menu a:hover{
  color:#e53935;
}

.menu a:hover::after{
  width:100%;
}

.menu-toggle{
  width:42px;
  height:42px;
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  cursor:pointer;
  position:relative;
  z-index:2;
}

.menu-toggle span{
  width:24px;
  height:2px;
  background:#fff;
  margin:auto;
  transition:.35s ease;
}

.menu-toggle.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}


/* ===============================
   FINAL CREATIVE MOBILE PILLS
=============================== */
.mobile-menu{
  position: fixed;
  top: 88px;
  right: 18px;
  z-index: 99998;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;

  pointer-events: none;
}

.mobile-menu a{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  max-width: 88vw;

  /* TIGHTER FIT */
  padding: 12px 20px;

  /* LESS ROUNDED */
  border-radius: 18px;

  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;

  /* SOLID PREMIUM RED */
  background: #9f1111;

  border: 1px solid rgba(255,255,255,.08);

  box-shadow:
    0 10px 22px rgba(0,0,0,.22),
    0 0 14px rgba(229,57,53,.12);

  opacity: 0;
  visibility: hidden;
  transform: translateX(40px) scale(.94);

  transition:
    opacity .4s ease,
    transform .4s cubic-bezier(.22,1,.36,1),
    visibility .4s ease;
}

/* ONLY SHOW WHEN ACTIVE */
.mobile-menu.active{
  pointer-events: auto;
}

.mobile-menu a.show{
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.menu a.active{
  color:#e53935;
}

.menu a.active::after{
  width:100%;
}

.mobile-menu a.active{
  background:#e53935;
}







@media(max-width:900px){
  .menu{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .nav{
    padding:10px 0;
  }

  .nav-inner{
    width:94%;
    border-radius:18px;
    padding:12px 16px;
  }

  .logo img{
    height:36px;
  }
}






/* HERO */

.hero{
position:relative;
overflow:hidden;
padding-top:4rem;
padding-bottom:6rem;
}

.hero{
min-height:100svh;   /* better than 100vh on mobile */
display:flex;
align-items:center;
position:relative;
}





/* WAVE */

.wave-bg{
position:absolute;
left:0;
bottom:20%;
width:200%;
pointer-events:none;
z-index:0;

/* IMPORTANT */
overflow:hidden;
}

.wave-bg{
position:absolute;
left:0;
bottom:20%;
width:200%;
z-index:0;   /* behind content */
pointer-events:none;
}

.wave-bg svg{
width:200%;
height:120px;
fill:none;
stroke:#ff2a2a;
stroke-width:4;
animation:waveMove 12s linear infinite;
}

@keyframes waveMove{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}


/* HERO CONTENT */

.hero-inner{
position:relative;
z-index:2;
display:flex;
flex-direction:column;
gap:2rem;
}


/* DESIGN OUTLINE */

.design{
font-size:clamp(6rem,20vw,20rem);
font-weight:800;
color:transparent;
-webkit-text-stroke:1px #555;
letter-spacing:.05em;
line-height:.9;
}


/* HEADLINE */

.headline{
max-width:60ch;
}

.main{
font-size:clamp(2.5rem,5vw,4.5rem);
font-weight:700;
line-height:1;
white-space:nowrap;
margin-bottom:0;
}

.white{
color:white;
}

.red{
color:#e53935;
}


/* REFLECTION */

.reflection{
font-size:clamp(2.5rem,5vw,4.5rem);
line-height:1;
opacity:.25;
transform:scaleY(-1);
mask-image:linear-gradient(to bottom, rgba(0,0,0,.6), transparent);
white-space:nowrap;
margin-top:-0.15em;
}


/* CTA ROW */

.cta-row{
display:flex;
justify-content:flex-end;   /* push to right */
align-items:center;
gap:1.5rem;
margin-top:2rem;

animation:moveSide 8s ease-in-out infinite alternate;
}

@keyframes moveSide{

0%{
transform:translateX(0);
}

100%{
transform:translateX(80px);
}

}


.cta-text{
display:flex;
flex-direction:column;   /* forces 2 lines */
text-align:right;
font-size:clamp(1rem,1.2vw,1.3rem);
line-height:1.4;
}

.cta{
white-space:nowrap;
}



/* RESPONSIVE */

@media (max-width:900px){

.menu{
display:none;
}


.main{
white-space:normal;
text-align: center;
}

.reflection{
text-align: center;
}



.hero{
padding-top:3rem;
}

.cta-row{
flex-direction:column;
align-items:flex-start;
}


.cta{
width:100%;
max-width:280px;
}



}



@media (max-width:768px){


html, body{
overflow-x:hidden;
}

.hero{
min-height:100svh;
position:relative;
}

/* Fix wave overflow */
.wave-bg{
position:absolute;
left:0;
bottom:clamp(30%, 35%, 45%);
width:200%;
overflow:hidden;
pointer-events:none;
}

/* Prevent SVG from stretching layout */
.wave-bg svg{
display:block;
width:200%;
max-width:none;
}


.cta-row{
flex-direction:column;      /* stack */
align-items:center;         /* center horizontally */
justify-content:center;
text-align:center;
gap:1rem;
animation:none;             /* stop movement on mobile (important UX) */
}

.cta-text{
text-align:center;
}

.design{
font-family:'Oswald', sans-serif;   /* condensed font */
font-size:clamp(5rem,28vw,15rem);   /* taller look */
letter-spacing:0.05em;
line-height:0.9;
}


.design{
transform:scaleY(1.1);
transform-origin:center;
}

}






.video-hero{
  position:relative;
  padding:140px 0 100px;
  background:radial-gradient(circle at top right, rgba(229,57,53,.18), #000 55%);
  overflow:hidden;
  text-align:center;
}

.video-hero h1{
  font-size:clamp(3rem,7vw,6rem);
  line-height:1;
}

.video-hero span{
  color:#e53935;
}

.hero-sub{
  max-width:760px;
  margin:25px auto 0;
  color:#aaa;
}

.hero-actions{
  margin-top:35px;
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.hero-orbs span{
  position:absolute;
  border-radius:50%;
  background:radial-gradient(circle, rgba(229,57,53,.25), transparent 70%);
  animation:floatOrb 8s ease-in-out infinite;
}

.hero-orbs span:nth-child(1){
  width:300px;
  height:300px;
  top:10%;
  left:-5%;
}

.hero-orbs span:nth-child(2){
  width:200px;
  height:200px;
  top:60%;
  right:5%;
}

.hero-orbs span:nth-child(3){
  width:120px;
  height:120px;
  top:20%;
  right:25%;
}

@keyframes floatOrb{
  0%,100%{ transform:translateY(0px);}
  50%{ transform:translateY(-25px);}
}

/* REELS */
.featured-reels{
  padding:60px 0;
  background:#050505;
}

.reel-strip{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:20px;
}

.reel-card{
  border-radius:24px;
  overflow:hidden;
  background:#111;
  box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.reel-card video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* FLEXIBLE VIDEO GRID */
.video-grid-section{
  padding:120px 0;
  background:#0b0b0b;
}

.video-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
}

.video-item{
  background:#111;
  border-radius:22px;
  overflow:hidden;
  position:relative;
  box-shadow:0 20px 45px rgba(0,0,0,.25);
}

.video-item.landscape{ aspect-ratio:16/9; }
.video-item.portrait{ aspect-ratio:9/16; }
.video-item.square{ aspect-ratio:1/1; }

.video-item video{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* CTA */
.video-cta{
  position:relative;
  padding:120px 0;
  background:#111;
  text-align:center;
}

@media(max-width:900px){
  .reel-strip{
    grid-template-columns:1fr;
  }
}

.video-item,
.reel-card{
  opacity:0;
  transform:translateY(50px);
  transition:0.8s ease;
}

.video-item.show,
.reel-card.show{
  opacity:1;
  transform:translateY(0);
}


















.site-footer{
  background:#000;
  color:#fff;
  padding:clamp(4rem,8vw,6rem) 0 2rem;
}

/* CONTAINER */
.footer-container{
  width:min(1100px,92%);
  margin:auto;

  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:2rem;
}

/* LOGO */
.footer-logo{
  font-size:1.8rem;
  font-weight:800;
  margin-bottom:1rem;
}

/* TEXT */
.footer-brand p{
  color:#aaa;
  max-width:300px;
  line-height:1.6;
}

/* LINKS */
.footer-links h4,
.footer-contact h4{
  margin-bottom:1rem;
}

.footer-links a{
  display:block;
  color:#aaa;
  text-decoration:none;
  margin-bottom:0.5rem;
  transition:0.3s;
}

.footer-links a:hover{
  color:#fff;
}

/* CONTACT */
.footer-contact p{
  color:#aaa;
  margin-bottom:0.5rem;
}

/* SOCIAL */
.footer-social{
  margin-top:1rem;
  display:flex;
  gap:12px;
}

.footer-social a{
  width:35px;
  height:35px;
  border:1px solid #333;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  text-decoration:none;
  color:#fff;
  transition:0.3s;
}

.footer-social a:hover{
  background:#c62828;
  border-color:#c62828;
}

/* CTA */
.footer-cta{
  text-align:center;
  margin-top:4rem;
}

.footer-cta h3{
  font-size:2rem;
  margin-bottom:1rem;
}

.footer-btn{
  display:inline-block;
  padding:12px 28px;
  background:#c62828;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.footer-btn:hover{
  background:#e53935;
  transform:translateY(-2px);
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
  margin-top:3rem;
  color:#666;
  font-size:0.9rem;
}


@media (max-width:768px){

  .footer-container{
    grid-template-columns:1fr;
    text-align:left;
  }

  .footer-cta h3{
    font-size:1.5rem;
  }

}
