html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


main {
  flex: 1;
}



/* Base reset – ultra light */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
}


/* ================================
   AXISBRAND – FAST HEADER (FIXED)
================================ */

/* HEADER WRAPPER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  
}

/* FULL-WIDTH RED STRIP */


/* HEADER INNER (CONTENT WIDTH CONTROL) */
.header-inner {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  background: #ffffff;
  position: relative;
}

/* LOGO BLOCK */
.logo-block {
  background: #ffffff;
  padding: 18px 28px;
  display: flex;
  align-items: center;

  /* extend red to left screen edge */
  margin-left: calc(-1 * (100vw - 100%) / 2);
  padding-left: calc((100vw - 100%) / 2 + 28px);
}


.logo-block img {
  width: 200px;
  height: auto;
  display: block;
}

/* Mobile view */
@media (max-width: 768px) {
  .logo-block img {
    width: 200px;
    height: auto;
  }
}

/* DESKTOP NAV */

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 36px;
  margin: 0;
  padding-left: 40px;
}

.nav-link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  position: relative;
}

@media (min-width: 901px) {
  .nav-link:hover::after,
  .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #111;
  }
}
.main-nav {
  margin: 0 auto;
}


/* DROPDOWN */
.has-dropdown {
  position: relative;
}

.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

/* ================================
   DESKTOP DROPDOWN – PREMIUM
================================ */

@media (min-width: 901px) {
    
    .mobile-menu {
     display: none;
    }


  .has-dropdown > .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    
    min-width: 260px;
    max-width: 320px;

    background: #ffffff;
    border-radius: 10px;
    padding: 10px 0;

    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);

    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;

    z-index: 2000;
  }

  .has-dropdown:hover > .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown li {
    list-style: none;
  }

  .dropdown li a {
    display: block;
    padding: 12px 20px;

    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-decoration: none;

    transition: background 0.2s ease, color 0.2s ease;
  }

  .dropdown li a:hover {
    background: #f5f5f5;
    color: #e32619;
  }
}


/* CTA */
.header-cta {
  background: #e32619;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  margin-left: auto;
  margin-right: 24px;
  white-space: nowrap;
}

/* HAMBURGER */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  margin-right: 16px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  margin: 5px 0;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    

  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .header-inner {
    padding: 0;
  }

  .logo-block {
    margin-left: 0;
    padding: 14px 16px;
  }

  /* MOBILE DROPDOWN MENU */
  .mobile-menu {
    display: block; /* required for animation */
    position: absolute;
    top: 100%;
    right: 0;

    width: 75vw;
    max-width: 320px;

    background: #e32619;
    color: #ffffff;

    border-radius: 0 0 0 14px;
    box-shadow: -12px 20px 40px rgba(0,0,0,0.25);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0.25s;

    z-index: 2000;
  }

  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  /* MENU LIST */
  .mobile-menu ul {
    list-style: none;
    padding: 5px;
    margin: 0;
  }

  .mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.25);
  }

  .mobile-menu li:last-child {
    border-bottom: none;
    margin-bottom: 4px;
  }

  .mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.3px;
  }

  /* CLOSE BUTTON */
  .mobile-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
  }

/* ============================
   MOBILE CONTACT – CTA BUTTONS
============================ */

.mobile-contact {
  padding: 5px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 16px;
  border-radius: 12px;

  background: linear-gradient(180deg, #ffffff, #f3f3f3);
  color: #e32619;

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  box-shadow:
    0 6px 0 rgba(0,0,0,0.15),
    0 10px 20px rgba(0,0,0,0.25);

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Tap / Press effect */
.mobile-contact a:active {
  transform: translateY(3px);
  box-shadow:
    0 3px 0 rgba(0,0,0,0.15),
    0 6px 12px rgba(0,0,0,0.25);
}

/* ICONS */
.mobile-contact a::before {
  content: "";
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Phone icon */
    .mobile-contact a[href^="tel"]::before {
  content: "📞";
  background: none;
}

.mobile-contact a[href^="mailto"]::before {
  content: "✉️";
  background: none;
}


/* ============================
   MOBILE Menu Dropdowns
============================ */

    .mobile-menu .has-dropdown > .dropdown {
    display: none;
    padding-left: 12px;
    margin-top: 6px;
  }

  .mobile-menu .has-dropdown > a {
    position: relative;
    padding-right: 28px;
  }

  /* Arrow indicator */
  .mobile-menu .has-dropdown > a::after {
    content: "▾";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.8;
  }

  /* When parent is active */
  .mobile-menu .has-dropdown.active > .dropdown {
    display: block;
  }

.mobile-menu .dropdown a {
  font-size: 14px;
  padding: 10px 0;
  opacity: 0.9;
}

/* ✅ CLOSE HEADER MOBILE MEDIA QUERY HERE */
}





/* ============================
   FOOTER – NEW GEN DESIGN
============================ */

.site-footer {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #ccc;
  font-size: 14px;
}

/* MAIN FOOTER GRID */
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 40px;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
}

/* BRAND COLUMN */
.footer-logo {
  width: 160px;
  margin-bottom: 14px;
}

.footer-address {
  font-size: 13px;
  margin-bottom: 10px;
  color: #aaa;
}

.footer-contact {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-top: 6px;
  font-weight: 500;
}

.footer-contact:hover {
  color: #e32619;
}

/* LINKS */
.footer-links h4,
.footer-form h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #e32619;
}

/* MINI FORM */
.footer-lead-form input,
.footer-lead-form textarea {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-lead-form textarea {
  height: 70px;
  resize: none;
}

.footer-lead-form button {
  width: 100%;
  background: linear-gradient(135deg, #e32619, #ff3b2f);
  border: none;
  color: #fff;
  padding: 11px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.footer-lead-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(227,38,25,0.35);
}

/* HONEYPOT */
.hp-field {
  display: none !important;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 16px 20px;
  font-size: 13px;
  color: #777;
}

.footer-logo img {
  width: 160px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-success-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);

  background: #ffffff;
  color: #111;
  padding: 22px 28px;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);

  font-size: 16px;
  text-align: center;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
}

.footer-success-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Honeypot */
.footer-hp {
  display: none !important;
}


/* ============================
   MOBILE
============================ */

@media (max-width: 900px) {

  .footer-main {
    display: grid;              /* ✅ REQUIRED */
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-contact {
    display: flex;              /* ✅ REQUIRED */
    justify-content: center;
  }

  .footer-logo img {
    width: 140px;
    margin: 0 auto;
  }
  
  /* Reorder footer columns on mobile */
  .footer-form {
    order: 1;
  }

  .footer-brand {
    order: 2;
  }

  .footer-links {
    order: 3;
  }
}


/* ============================
   pop-up form
============================ */

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lead-popup.active {
  display: block;
}

.lead-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.lead-popup-box {
  position: relative;
  max-width: 420px;
  margin: 8vh auto;
  background: #ffffff;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  animation: popupIn 0.35s ease;
}

@keyframes popupIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.lead-popup-box h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.lead-popup-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.lead-popup-box input,
.lead-popup-box textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.lead-popup-box textarea {
  resize: none;
  height: 100px;
}

.lead-popup-box button {
  width: 100%;
  background: #e32619;
  color: #fff;
  border: none;
  padding: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

.lead-popup-box button:hover {
  background: #c71f14;
}

.form-status {
  margin-top: 10px;
  font-size: 14px;
}
.hp-field {
  display: none !important;
}
.popup-header {
  background: #e32619;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -32px -32px 20px -32px;
}

.popup-header span {
  font-size: 16px;
  font-weight: 600;
}

.lead-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #ffffff;
  font-size: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-close:hover {
  background: rgba(255,255,255,0.3);
}

.popup-subtext {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.success-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);

  background: #ffffff;
  color: #111;
  padding: 22px 28px;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);

  font-size: 16px;
  text-align: center;
  z-index: 10000;

  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
}

.success-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* =====================
BRANDING HERO
===================== */

.branding-hero{
  position:relative;
  min-height:90vh;
  background:#000;
  color:#fff;
  overflow:hidden;
  display:flex;
  align-items:center;
}

/* MEDIA */

.branding-hero-media{
  position:absolute;
  inset:0;
  z-index:1;
}

.branding-hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* OVERLAY */

.branding-hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.85) 100%
  );
}

/* GRID */

.branding-hero-grid{
  position:absolute;
  inset:0;
  z-index:3;

  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);

  background-size:80px 80px;

  mask-image: radial-gradient(circle at center, black 40%, transparent 75%);
}

/* CONTENT */

.branding-hero-content{
  position:relative;
  z-index:4;
  max-width:1100px;
  padding:0 6vw;
}

/* EYEBROW */

.branding-eyebrow{
  display:inline-block;
  margin-top:60px;
  margin-bottom:16px;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#e32619;
}

/* TITLE */

.branding-hero-title{
  font-size:clamp(36px,6vw,64px);
  font-weight:800;
  line-height:1.1;
  margin-bottom:24px;
}

.branding-highlight{
  display:block;
  margin-top:10px;
  color:#e32619;
}

/* TEXT */

.branding-hero-text{
  max-width:640px;
  font-size:18px;
  line-height:1.7;
  color:#cccccc;
  margin-bottom:40px;
}

/* BUTTON */

.branding-btn-primary{
  display:inline-block;
  padding:14px 34px;
  background:#e32619;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  border-radius:4px;
  transition:all .3s ease;
}

.branding-btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(227,38,25,0.35);
}

/* SCROLL INDICATOR */

.branding-scroll-indicator{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  z-index:4;
}

.branding-scroll-indicator span{
  display:block;
  width:2px;
  height:40px;
  background:linear-gradient(
    to bottom,
    transparent,
    #e32619,
    transparent
  );
  animation:brandingScroll 2s infinite;
}

@keyframes brandingScroll{
  0%{opacity:0; transform:translateY(-10px);}
  50%{opacity:1; transform:translateY(0);}
  100%{opacity:0; transform:translateY(10px);}
}

/* MOBILE */

@media(max-width:768px){

  .branding-hero{
    min-height:92vh;
  }

  .branding-hero-content{
    padding:0 24px;
  }

  .branding-hero-title{
    font-size:clamp(32px,8vw,44px);
  }

}

/* =====================
BRAND PERCEPTION SECTION
===================== */

.brand-perception-section{
  background:#fff;
  padding:140px 0;
}

.brand-perception-container{
  max-width:1200px;
  margin:auto;
  padding:0 6vw;
}

/* HEADER */

.brand-perception-header{
  text-align:center;
  max-width:800px;
  margin:auto;
  margin-bottom:90px;
}

.brand-perception-eyebrow{
  color:#e32619;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
}

.brand-perception-title{
  font-size:clamp(36px,5vw,56px);
  font-weight:800;
  margin-top:20px;
  line-height:1.2;
  color:#111;
}

.brand-perception-title span{
  color:#e32619;
}

.brand-perception-intro{
  margin-top:24px;
  color:#555;
  line-height:1.7;
  font-size:17px;
}

/* GRID */

.brand-perception-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

/* NODE */

.brand-perception-node{
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:12px;
  padding:40px;
  transition:all .35s ease;
}

.brand-perception-node h3{
  font-size:22px;
  margin-bottom:10px;
  color:#e32619;
}

.brand-perception-node p{
  color:#555;
  line-height:1.6;
}

.brand-perception-node:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* MOBILE */

@media(max-width:900px){

  .brand-perception-grid{
    grid-template-columns:1fr;
  }

}

/* =========================
BRAND PERCEPTION BACKGROUND ENHANCEMENT
========================= */

.brand-perception-section{
  position:relative;
  overflow:hidden;
}

/* Subtle grid */

.brand-perception-section::before{
  content:"";
  position:absolute;
  inset:0;

  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);

  background-size:90px 90px;

  z-index:0;
}

/* Red glow */

.brand-perception-section::after{
  content:"";
  position:absolute;

  width:600px;
  height:600px;

  background:radial-gradient(
    circle,
    rgba(227,38,25,0.15),
    transparent 70%
  );

  top:20%;
  left:50%;
  transform:translateX(-50%);
  filter:blur(90px);

  z-index:0;
}

/* Ensure content stays above */

.brand-perception-container{
  position:relative;
  z-index:2;
}


/* =========================
INFLUENCE SYSTEM SECTION
========================= */

.influence-system{
  position:relative;
  padding:140px 0;
  background:linear-gradient(180deg,#0a0a0a,#000);
  color:#fff;
  overflow:hidden;
}

.influence-container{
  max-width:1200px;
  margin:auto;
  padding:0 6vw;
  position:relative;
  z-index:2;
}

/* HEADER */

.influence-header{
  text-align:center;
  max-width:720px;
  margin:auto;
  margin-bottom:90px;
}

.influence-eyebrow{
  color:#e32619;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
}

.influence-title{
  font-size:clamp(36px,5vw,56px);
  margin-top:16px;
  line-height:1.2;
}

.influence-title span{
  color:#e32619;
}

.influence-intro{
  margin-top:20px;
  color:#cfcfcf;
  line-height:1.7;
}

/* FLOW SYSTEM */

.influence-flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  margin-top:80px;
}

.flow-step{
  padding:36px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  transition:.4s;
}

.flow-step h3{
  color:#e32619;
  margin-bottom:10px;
  font-size:22px;
}

.flow-step p{
  color:#d1d1d1;
  line-height:1.6;
}

.flow-step:hover{
  transform:translateY(-6px);
  border-color:#e32619;
  box-shadow:0 18px 40px rgba(227,38,25,0.3);
}

/* NOTE */

.influence-note{
  text-align:center;
  margin-top:100px;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
  color:#cfcfcf;
  line-height:1.7;
}

/* BACKGROUND LIGHTS */

.influence-bg-layer{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 40%, rgba(227,38,25,0.25) 0, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(227,38,25,0.2) 0, transparent 40%);
  filter:blur(90px);
  z-index:1;
}

/* MOBILE */

@media(max-width:900px){

  .influence-flow{
    grid-template-columns:1fr;
  }

}

/* =====================
INFLUENCE NETWORK
===================== */

.influence-network{
  position:absolute;
  inset:0;
  z-index:1;
  opacity:.45;
  pointer-events:none;
}

.influence-svg{
  width:100%;
  height:100%;
}

/* Lines */

.influence-line{
  stroke:rgba(255,255,255,0.08);
  stroke-width:1;
}

/* Nodes */

.influence-node{
  fill:#e32619;
  animation:nodePulse 3s infinite ease-in-out;
}

.influencer-node{
  fill:#ff3c28;
  r:12;
}

/* Pulse Animation */

@keyframes nodePulse{

  0%{
    opacity:.3;
    transform:scale(1);
  }

  50%{
    opacity:1;
    transform:scale(1.4);
  }

  100%{
    opacity:.3;
    transform:scale(1);
  }

}

/* =====================
FILM SECTION
===================== */

.film-section{
  background:#ffffff;
  padding:140px 0;
  position:relative;
  overflow:hidden;
}

.film-container{
  max-width:1200px;
  margin:auto;
  padding:0 6vw;
}

/* HEADER */

.film-header{
  text-align:center;
  max-width:720px;
  margin:auto;
  margin-bottom:80px;
}

.film-eyebrow{
  color:#e32619;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
}

.film-title{
  font-size:clamp(36px,5vw,56px);
  margin-top:18px;
  line-height:1.2;
  color:#111;
}

.film-title span{
  color:#e32619;
}

.film-intro{
  margin-top:20px;
  color:#555;
  line-height:1.7;
}

/* FILM COUNTDOWN */

.film-countdown{
  display:flex;
  justify-content:center;
  gap:30px;
  margin-bottom:60px;
}

.film-circle{
  width:70px;
  height:70px;
  border:2px solid #111;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:22px;
  animation:filmPulse 2s infinite;
}

@keyframes filmPulse{

  0%{transform:scale(1);}
  50%{transform:scale(1.15);}
  100%{transform:scale(1);}

}

/* CINEMA FRAME */

.film-frame{
  margin:60px auto;
  max-width:900px;
}

.film-screen{
  position:relative;
  width:100%;
  padding-top:56%;
  background:#000;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,0.25);
}

.film-play{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:40px;
  color:#e32619;
  cursor:pointer;
}

/* GRID */

.film-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin-top:80px;
}

.film-card{
  padding:30px;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:10px;
  transition:.4s;
}

.film-card h3{
  color:#e32619;
  margin-bottom:10px;
}

.film-card p{
  color:#555;
}

.film-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* QUOTE */

.film-quote{
  text-align:center;
  margin-top:100px;
  font-size:22px;
  color:#111;
}

.film-quote strong{
  color:#e32619;
}

/* MOBILE */

@media(max-width:900px){

  .film-grid{
    grid-template-columns:1fr;
  }

}

.film-screen{
  position:relative;
  width:100%;
  padding-top:56%;
  background:#000;
  border-radius:8px;
  overflow:hidden;
}

/* VIDEO */

.film-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;   /* fills entire box */
  transform:scale(1.08); /* slight zoom so no black bars */
}

/* PLAY BUTTON */

.film-play{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:40px;
  color:#e32619;
  cursor:pointer;
  z-index:5;
  transition:.3s;
}

.film-play.hide{
  opacity:0;
  pointer-events:none;
}

.film-screen::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.4)
  );
  pointer-events:none;
}


/* =====================
PRODUCT PHOTOGRAPHY
===================== */

.pp-section{
  position:relative;
  padding:140px 0;
  background:linear-gradient(160deg,#070707,#150000 60%,#070707);
  overflow:hidden;
  color:#fff;
}

/* background lights */

.pp-bg{
  position:absolute;
  inset:0;
}

.pp-light,
.pp-light2{
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle,rgba(227,38,25,.35),transparent 70%);
  filter:blur(120px);
}

.pp-light{
  top:-120px;
  left:-100px;
}

.pp-light2{
  bottom:-120px;
  right:-120px;
}

/* container */

.pp-container{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:auto;
  padding:0 6vw;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* text */

.pp-eyebrow{
  font-size:13px;
  letter-spacing:2px;
  color:#e32619;
}

.pp-title{
  font-size:clamp(36px,5vw,56px);
  margin:18px 0;
  line-height:1.2;
}

.pp-title span{
  color:#e32619;
}

.pp-text{
  color:#ccc;
  margin-bottom:40px;
  line-height:1.7;
}

/* cards */

.pp-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.pp-card{
  padding:20px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  background:rgba(255,255,255,.02);
  transition:.4s;
}

.pp-card:hover{
  transform:translateY(-6px);
  border-color:#e32619;
}

.pp-card h3{
  color:#e32619;
  margin-bottom:8px;
}

.pp-card p{
  color:#bbb;
  font-size:14px;
}


@keyframes ppFloat{
  0%{transform:translateY(0)}
  50%{transform:translateY(-20px)}
  100%{transform:translateY(0)}
}

/* mobile */

@media(max-width:900px){

  .pp-container{
    grid-template-columns:1fr;
  }

}

/* RIGHT SIDE FULL VISUAL */

.pp-visual{
  position:relative;
  height:600px; /* bigger height */
}

/* PRODUCT IMAGES */

/* BASE STATE */

.pp-product{
  position:absolute;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 40px 80px rgba(0,0,0,.6);
  transition:transform .5s ease, z-index .2s;
}

/* IMAGE */

.pp-product img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* HOVER EFFECT */

.pp-product:hover{
  z-index:10 !important; /* bring to front */
  transform:scale(1.15) translateY(-20px);
}

/* SMOOTH RESET */

.pp-visual:hover .pp-product:not(:hover){
  transform:scale(0.95);
  opacity:0.6;
}

.pp-product:hover::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.15);
}

.pp-visual:hover .pp-product:not(:hover){
  filter:blur(2px);
}

/* POSITIONING (LARGE LAYOUT) */

.p1{
  width:260px;
  height:380px;
  top:0;
  left:60px;
  z-index:2;
}

.p2{
  width:280px;
  height:420px;
  top:80px;
  right:0;
  z-index:3;
}

.p3{
  width:240px;
  height:360px;
  bottom:0;
  left:0;
  z-index:1;
}

.p4{
  width:260px;
  height:380px;
  bottom:40px;
  right:120px;
  z-index:2;
}

.pp-product{
  transition:transform .4s ease;
}



.pp-product::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    rgba(255,255,255,0.15),
    transparent 40%
  );
  mix-blend-mode:overlay;
}

@media(max-width:900px){

  .pp-visual{
    height:420px;
  }

  .p1,.p2,.p3,.p4{
    width:160px;
    height:240px;
  }

}