/* ===================== ROOT & RESET ===================== */
:root{
  --bg-dark: #0a0f0d;
  --bg-panel: #0e1512;
  --bg-panel-2: #121a17;
  --teal: #2ee6b8;
  --teal-dim: #1f9d80;
  --text-light: #f2f5f4;
  --text-muted: #a9b3af;
  --border-teal: rgba(46, 230, 184, 0.35);
  --maxw: 1300px;
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body{
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  padding-bottom: 70px; /* space for bottom nav on mobile */
}

a{ text-decoration:none; color:inherit; }
button{ font-family:'Poppins',sans-serif; cursor:pointer; }
i{ line-height:1; }

.accent{ color: var(--teal); }

/* ===================== IMAGES ===================== */
/* Every photo container fills its box and crops nicely, no layout shift */
.hero-bg img,
.slide-img,
.shot img,
.reel-img,
.g-item img,
.connect-img,
.video-thumb img,
.about-img-wrap img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

/* ===================== SCROLL PROGRESS BAR ===================== */
.scroll-progress{
  position:fixed;
  top:0; left:0;
  height:3px;
  width:0%;
  background: linear-gradient(90deg, var(--teal-dim), var(--teal));
  z-index:1100;
  transition: width 0.1s linear;
}

/* ===================== SCROLL REVEAL ===================== */
:root{
  --ease-reveal: cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale{
  opacity:0;
  transition: opacity 0.9s var(--ease-reveal), transform 0.9s var(--ease-reveal);
  will-change: opacity, transform;
}
.reveal{ transform: translateY(34px); }
.reveal-left{ transform: translateX(-46px); }
.reveal-right{ transform: translateX(46px); }
.reveal-scale{ transform: scale(0.88); }

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active{
  opacity:1;
  transform: translate(0,0) scale(1);
}

/* Staggered entrance for grid/list groups: each child animates a beat later */
.journey-grid > .reveal:nth-child(1),
.shots-grid > .reveal-scale:nth-child(1),
.gallery-grid > *:nth-child(1),
.video-list > .reveal:nth-child(1){ transition-delay: 0s; }

.journey-grid > .reveal:nth-child(2),
.shots-grid > .reveal-scale:nth-child(2),
.gallery-grid > *:nth-child(2),
.video-list > .reveal:nth-child(2){ transition-delay: 0.09s; }

.journey-grid > .reveal:nth-child(3),
.shots-grid > .reveal-scale:nth-child(3),
.gallery-grid > *:nth-child(3),
.video-list > .reveal:nth-child(3){ transition-delay: 0.18s; }

.journey-grid > .reveal:nth-child(4),
.shots-grid > .reveal-scale:nth-child(4),
.gallery-grid > *:nth-child(4),
.video-list > .reveal:nth-child(4){ transition-delay: 0.27s; }

.gallery-grid > *:nth-child(5){ transition-delay: 0.36s; }
.gallery-grid > *:nth-child(6){ transition-delay: 0.45s; }
.gallery-grid > *:nth-child(7){ transition-delay: 0.54s; }

/* Title underline/line "draws in" once its section becomes visible */
.title-underline,
.title-line{
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.7s var(--ease-reveal) 0.15s;
}
.title-underline.active,
.title-line.active{ transform: scaleX(1); }

/* Respect users who've asked for reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .title-underline, .title-line{
    transition: none !important;
    opacity:1 !important;
    transform: none !important;
  }
  .hero-bg img{ transform:none !important; }
}

/* ===================== NAVBAR ===================== */
.navbar{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  padding: 16px 20px;
  background: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-reveal), padding 0.35s ease;
}
.navbar.scrolled{
  background: rgba(10, 15, 13, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
/* Slide the navbar out of view when scrolling down, back in when scrolling up */
.navbar.nav-hidden{ transform: translateY(-100%); }
.nav-inner{
  max-width: var(--maxw);
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.logo{
  font-size:1.5rem;
  font-weight:800;
  letter-spacing:1px;
  flex-shrink:0;
  z-index: 1201;
  position: relative;
}
.logo .dot{ color: var(--teal); }

.nav-actions{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav-cta{ display:none; }

/* ---- Hamburger (animated 3-line -> X) ---- */
.hamburger{
  background:none;
  border:none;
  color:var(--text-light);
  width: 42px;
  height: 42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 50%;
  z-index: 1201;
  position: relative;
  transition: background 0.25s ease;
}
.hamburger:hover{ background: rgba(255,255,255,0.08); }
.hamburger-box{
  position: relative;
  width: 20px;
  height: 14px;
  display:block;
}
.hamburger-line{
  position:absolute;
  left:0; right:0;
  height:2px;
  border-radius:2px;
  background: var(--text-light);
  transition: transform 0.32s var(--ease-reveal), opacity 0.2s ease, top 0.32s var(--ease-reveal), background 0.25s ease;
}
.hamburger-line:nth-child(1){ top:0; }
.hamburger-line:nth-child(2){ top:6px; }
.hamburger-line:nth-child(3){ top:12px; }
.hamburger[aria-expanded="true"] .hamburger-line{ background: var(--teal); }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1){
  top:6px; transform: rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2){
  opacity:0; transform: scaleX(0);
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3){
  top:6px; transform: rotate(-45deg);
}

/* ---- Scrim behind mobile drawer ---- */
.nav-scrim{
  position: fixed;
  inset:0;
  z-index: 1150;
  background: rgba(4,7,6,0.6);
  backdrop-filter: blur(2px);
  opacity:0;
  pointer-events:none;
  transition: opacity 0.35s ease;
}
.nav-scrim.open{ opacity:1; pointer-events:auto; }

/* ---- Mobile drawer ---- */
.nav-links{
  position: fixed;
  top:0; right:0;
  height:100dvh;
  width: min(80%, 320px);
  background: var(--bg-panel);
  display:flex;
  flex-direction:column;
  gap: 4px;
  padding: 100px 26px 40px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-reveal);
  box-shadow: -10px 0 40px rgba(0,0,0,0.55);
  z-index: 1200;
  border-left: 1px solid rgba(255,255,255,0.06);
  overflow-y: auto;
}
.nav-links.open{ transform: translateX(0); }
.nav-links a{
  padding: 15px 12px;
  font-weight:500;
  font-size: 0.98rem;
  letter-spacing:0.3px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display:flex; align-items:center; gap:14px;
  border-radius: 8px;
  transition: color 0.25s ease, background 0.25s ease, padding-left 0.25s ease;
}
.nav-links a i{ width:18px; text-align:center; color:var(--teal); font-size:1.1rem; }
.nav-links a:hover, .nav-links a.active{
  color: var(--text-light);
  background: rgba(46,230,184,0.07);
  padding-left: 16px;
}

/* Desktop nav */
@media(min-width: 900px){
  .navbar{ padding: 22px 32px; }
  .navbar.scrolled{ padding: 14px 32px; }
  .hamburger{ display:none; }
  .nav-scrim{ display:none; }
  .nav-cta{ display:inline-flex; }
  .nav-links{
    position:static;
    height:auto;
    width:auto;
    flex-direction:row;
    align-items:center;
    background:transparent;
    padding:0;
    box-shadow:none;
    border-left:none;
    gap: 4px;
    transform:none;
    overflow:visible;
  }
  .nav-links a{
    border-bottom:none;
    padding: 9px 18px;
    border-radius: 30px;
    position:relative;
    font-size: 0.88rem;
  }
  .nav-links a::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:30px;
    background: rgba(46,230,184,0.1);
    opacity:0;
    transform: scale(0.85);
    transition: opacity 0.3s var(--ease-reveal), transform 0.3s var(--ease-reveal);
    z-index:-1;
  }
  .nav-links a:hover, .nav-links a.active{
    padding-left:18px;
    background:transparent;
  }
  .nav-links a:hover::before, .nav-links a.active::before{
    opacity:1;
    transform: scale(1);
  }
}

@media(min-width: 1150px){
  .nav-inner{ gap: 28px; }
}

/* Lock body scroll while the mobile drawer is open */
body.nav-open{ overflow:hidden; }

/* ===================== HERO ===================== */
.hero{
  position:relative;
  min-height: 100svh;
  min-height: 100dvh;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding-top: 74px; /* clears fixed navbar */
}
.hero-bg{
  position:absolute; inset:0;
  z-index:0;
  overflow:hidden;
}
.hero-bg img{
  transform: scale(1.12) translateY(0);
  transition: transform 0.1s linear;
  will-change: transform;
  filter: brightness(0.5) saturate(1.05);
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(6,10,9,0.94) 0%, rgba(6,10,9,0.72) 42%, rgba(6,10,9,0.32) 68%, rgba(6,10,9,0.55) 100%),
    linear-gradient(0deg, rgba(6,10,9,0.9) 0%, rgba(6,10,9,0.05) 30%, rgba(6,10,9,0.15) 65%, rgba(6,10,9,0.75) 100%);
  z-index:1;
}
.hero-grain{
  position:absolute; inset:0;
  z-index:1;
  pointer-events:none;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity:0.4;
  mix-blend-mode: overlay;
}

.hero-inner{
  position:relative;
  z-index:3;
  max-width: var(--maxw);
  width:100%;
  margin: 0 auto;
  padding: 0 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 28px;
}

.hero-content{
  width:100%;
  text-align:center;
}
.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Eyebrow label above the big title */
.hero-eyebrow-mask{ overflow:hidden; margin-bottom:16px; display:flex; justify-content:center; }
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: clamp(0.68rem, 1.4vw, 0.8rem);
  letter-spacing:2.5px;
  font-weight:600;
  color: var(--teal);
  text-transform:uppercase;
  transform: translateY(110%);
  opacity:0;
  background: rgba(46,230,184,0.08);
  border: 1px solid var(--border-teal);
  padding: 7px 16px;
  border-radius: 30px;
}

/* Oversized stacked title, each line masked and revealed independently */
.hero-title{
  font-weight:800;
  line-height:0.94;
  letter-spacing:-1px;
  margin: 0;
}
.line-mask{
  display:block;
  overflow:hidden;
}
.line{
  display:block;
  /* Scales with both width AND height so short/landscape viewports
     (laptops, tablets in landscape) don't get text so tall it pushes
     the CTA into the scroll indicator */
  font-size: clamp(2.6rem, 6vw + 3vh, 6.2rem);
  transform: translateY(115%);
  opacity:0;
  will-change: transform, opacity;
}
.line.accent{ color: var(--teal); }
.line .char{ will-change: transform, opacity; }

/* Section titles get split into words by JS; keep the wrapper spans from
   affecting layout/line-height before/after the split happens */
.section-title span{ line-height:1.15; }

/* Containers whose image gets a hover tilt need 3D space to tilt into */
.shot, .g-item, .reel-card, .car-slide, .connect-img-wrap, .video-thumb{
  transform-style: preserve-3d;
}
.shot img, .g-item img, .reel-img, .slide-img, .connect-img, .video-thumb img{
  will-change: transform;
}

/* The car sits below the headline, contained within the flow (no more
   overlap/collision with text at any viewport size) */
.hero-car{
  width: min(680px, 92vw);
  opacity:0;
  transform: translateY(40px);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.55));
  will-change: transform, opacity;
}
.hero-car img{
  width:100%;
  height:auto;
  display:block;
}

/* Load-in choreography: JS adds .hero-loaded to <body> once fonts/paint are ready */
body.hero-loaded .hero-eyebrow{
  animation: lineIn 0.8s var(--ease-reveal) 0.1s forwards;
}
body.hero-loaded .line-mask:nth-child(1) .line{ animation: lineIn 0.9s var(--ease-reveal) 0.24s forwards; }
body.hero-loaded .hero-title .line-mask:nth-of-type(2) .line{ animation: lineIn 0.9s var(--ease-reveal) 0.34s forwards; }
body.hero-loaded .hero-title .line-mask:nth-of-type(3) .line{ animation: lineIn 0.9s var(--ease-reveal) 0.44s forwards; }

body.hero-loaded .hero-sub-row{ animation: fadeUp 0.8s var(--ease-reveal) 0.62s forwards; }
body.hero-loaded .hero-actions{ animation: fadeUp 0.8s var(--ease-reveal) 0.72s forwards; }
body.hero-loaded .hero-stats{ animation: fadeUp 0.8s var(--ease-reveal) 0.82s forwards; }
body.hero-loaded .hero-car{ animation: carRiseIn 1s var(--ease-reveal) 0.5s forwards; }
body.hero-loaded .hero-version{ animation: fadeIn 0.8s ease 1s forwards; }
body.hero-loaded .hero-socials{ animation: fadeIn 0.8s ease 1s forwards; }
body.hero-loaded .scroll-indicator{ animation: fadeIn 0.8s ease 1.1s forwards; }

.hero-sub-row, .hero-actions, .hero-stats, .hero-version, .hero-socials, .scroll-indicator{
  opacity:0;
}

@keyframes lineIn{
  to{ transform: translateY(0); opacity:1; }
}
@keyframes fadeUp{
  from{ transform: translateY(24px); opacity:0; }
  to{ transform: translateY(0); opacity:1; }
}
@keyframes fadeIn{
  to{ opacity:1; }
}
@keyframes carRiseIn{
  to{ transform: translateY(0); opacity:1; }
}

.hero-sub-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin: 20px 0 30px;
  flex-wrap:wrap;
}
.title-underline{
  width:44px; height:3px;
  background: var(--teal);
  border-radius:2px;
  flex-shrink:0;
}
.hero-tagline{
  color: var(--text-muted);
  font-size: clamp(0.85rem, 1.6vw, 1.02rem);
  max-width: 420px;
  line-height:1.5;
}

.hero-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  flex-wrap:wrap;
}

.hero-stats{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 22px;
  margin-top: 34px;
}
.hero-stat{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
}
.hero-stat strong{
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight:800;
  color: var(--text-light);
}
.hero-stat span{
  font-size: 0.68rem;
  letter-spacing:1px;
  text-transform:uppercase;
  color: var(--text-muted);
}
.hero-stat-divider{
  width:1px; height:28px;
  background: rgba(255,255,255,0.15);
}

.hero-version{
  position:absolute;
  right:20px;
  bottom: 20px;
  z-index:3;
  font-size:0.68rem;
  letter-spacing:2px;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 20px;
  display:none;
}

.btn-outline{
  background:transparent;
  border: 1.5px solid var(--border-teal);
  color: var(--text-light);
  padding: 14px 26px;
  font-weight:600;
  letter-spacing:1px;
  font-size:0.85rem;
  border-radius:2px;
  display:inline-flex;
  align-items:center;
  gap:12px;
  transition: background 0.3s ease, transform 0.25s ease, border-color 0.3s ease;
}
.btn-outline:hover{
  background: rgba(46,230,184,0.12);
  border-color: var(--teal);
  transform: translateY(-3px);
}
.btn-outline.small{ padding:10px 20px; font-size:0.75rem; border-radius: 30px; gap: 8px; }

.btn-solid{
  background: var(--teal);
  color: #06110d;
  border: none;
  padding: 15px 28px;
  font-weight:700;
  letter-spacing:0.8px;
  font-size:0.85rem;
  border-radius:4px;
  display:inline-flex;
  align-items:center;
  gap:12px;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(46,230,184,0.18);
}
.btn-solid:hover{
  background: #46f0c5;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(46,230,184,0.3);
}

.btn-ghost{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text-light);
  padding: 15px 26px;
  font-weight:600;
  letter-spacing:0.8px;
  font-size:0.82rem;
  border-radius:4px;
  display:inline-flex;
  align-items:center;
  transition: background 0.3s ease, transform 0.25s ease, border-color 0.3s ease;
}
.btn-ghost:hover{
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}

/* Short viewports (small laptops, landscape tablets/phones): tighten
   spacing so nothing collides and the car doesn't push content off-screen */
@media (max-height: 720px){
  .hero{ padding-top: 64px; }
  .hero-inner{ gap: 14px; }
  .hero-sub-row{ margin: 12px 0 18px; }
  .hero-eyebrow-mask{ margin-bottom: 10px; }
  .hero-stats{ margin-top: 20px; }
  .hero-car{ width: min(420px, 60vw); }
  .scroll-indicator{ display:none; }
}

@media (min-width: 700px){
  .hero-inner{ gap: 36px; }
}

/* Narrow phones */
@media (max-width: 560px){
  .hero{ padding-top: 66px; }
  .hero-inner{ gap: 20px; padding: 0 20px; }
  .hero-actions{ flex-direction:column; width:100%; }
  .hero-actions .btn-solid, .hero-actions .btn-ghost{ width:100%; justify-content:center; }
  .hero-stats{ gap:14px; }
  .hero-stat-divider{ height:22px; }
  .hero-car{ width: min(420px, 88vw); }
  .scroll-indicator{ display:none; }
}

/* Larger screens: give the hero room to breathe and cap line-length */
@media (min-width: 900px){
  .hero-version{ display:block; }
  .hero-tagline{ max-width: 480px; }
}

/* Respect reduced-motion: skip the choreography, just show everything */
@media (prefers-reduced-motion: reduce){
  .hero-eyebrow, .line, .hero-sub-row, .hero-actions, .hero-stats, .hero-car, .hero-version, .hero-socials, .scroll-indicator{
    animation: none !important;
    opacity:1 !important;
    transform: none !important;
  }
}

.scroll-indicator{
  position:absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index:3;
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:8px;
  color: var(--teal);
}
.scroll-line{
  width:26px; height:1px;
  background: linear-gradient(90deg, transparent, var(--teal));
}
.scroll-text{
  font-size:0.65rem;
  letter-spacing:2px;
  color: var(--text-muted);
}
.bounce{ animation: bounceY 1.6s ease-in-out infinite; }
@keyframes bounceY{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(5px); }
}

.hero-socials{
  position:absolute;
  right:20px;
  top: 90px;
  z-index:3;
  display:none;
  flex-direction:column;
  gap:12px;
}
.hero-socials a{
  width:38px; height:38px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-light);
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.hero-socials a:hover{
  background: var(--teal);
  border-color: var(--teal);
  color:#0a0f0d;
  transform: translateY(-4px);
}
@media (min-width: 900px){
  .hero-socials{ display:flex; }
}

/* ===================== SECTION SHARED ===================== */
.section{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px 24px;
}
.section-title{
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight:700;
  letter-spacing:1px;
}
.title-line{
  width:40px; height:3px;
  background: var(--teal);
  margin: 12px 0 30px;
  border-radius:2px;
}
.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.view-all{
  color: var(--teal);
  font-size:0.8rem;
  font-weight:600;
  letter-spacing:0.5px;
  display:flex; align-items:center; gap:6px;
  transition: gap 0.25s ease;
}
.view-all:hover{ gap:10px; }

/* ===================== JOURNEY ===================== */
.journey-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.journey-item{
  background: var(--bg-panel);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 24px 10px;
  text-align:center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.journey-item:hover{
  transform: translateY(-6px);
  border-color: var(--border-teal);
}
.journey-item i{
  font-size:1.6rem;
  color: var(--teal);
  margin-bottom:12px;
}
.journey-item h3{
  font-size:1.3rem;
  font-weight:700;
  margin-bottom:6px;
}
.journey-item p{
  font-size:0.7rem;
  color: var(--text-muted);
  letter-spacing:0.5px;
  line-height:1.4;
}

@media(max-width:600px){
  .journey-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ===================== FEATURED CAR SLIDER ===================== */
.car-slider{
  position:relative;
  border-radius: 14px;
  overflow:hidden;
  background: var(--bg-panel);
}
.car-slides{
  display:flex;
  transition: transform 0.65s var(--ease-reveal);
}
.car-slide{
  min-width:100%;
  position:relative;
  height: 340px;
}
.slide-img{ position:absolute; inset:0; }
.car-info{
  position:absolute;
  left:0; right:0; bottom:0;
  z-index:2;
  padding: 22px;
  background: linear-gradient(0deg, rgba(5,8,7,0.92) 10%, transparent 100%);
}
.car-info h3{
  font-size:1.6rem;
  font-weight:800;
  margin-bottom:10px;
  letter-spacing:1px;
}
.car-specs{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  color: var(--text-muted);
  font-size:0.8rem;
  margin-bottom:16px;
}
.car-specs i{ color: var(--teal); margin-right:6px; }

.dots{
  display:flex;
  justify-content:center;
  gap:8px;
  padding: 16px 0;
}
.dots span{
  width:8px; height:8px;
  border-radius:50%;
  background: rgba(255,255,255,0.2);
  cursor:pointer;
  transition: background 0.3s ease, width 0.3s ease;
}
.dots span.active{
  background: var(--teal);
  width:22px;
  border-radius:5px;
}

/* ===================== LATEST SHOTS ===================== */
.shots-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.shot{
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow:hidden;
  transition: transform 0.45s var(--ease-reveal);
}
/* Hover scale/tilt on .shot img is handled by GSAP (see script.js) for a
   cursor-driven 3D effect; no CSS :hover transform needed here. */

@media(max-width:600px){
  .shots-grid{ grid-template-columns: repeat(4, 1fr); gap:8px; }
}

/* ===================== FEATURED REEL ===================== */
.reel-card{
  position:relative;
  height: 320px;
  border-radius: 14px;
  overflow:hidden;
}
.reel-img{ position:absolute; inset:0; }
.reel-overlay{
  position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(4,7,6,0.85), rgba(4,7,6,0.1));
  z-index:1;
}
.play-btn{
  position:absolute;
  top:50%; left:50%;
  transform: translate(-50%,-50%);
  z-index:2;
  width:64px; height:64px;
  border-radius:50%;
  border: 2px solid var(--teal);
  background: rgba(10,15,13,0.5);
  color: var(--teal);
  font-size:1.2rem;
  display:flex; align-items:center; justify-content:center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.play-btn:hover{
  background: var(--teal);
  color:#0a0f0d;
  transform: translate(-50%,-50%) scale(1.1);
}
.play-btn.small{
  width:36px; height:36px;
  font-size:0.85rem;
}
.reel-text{
  position:absolute;
  left:20px; bottom:18px;
  z-index:2;
}
.reel-text h3{ font-size:1.2rem; font-weight:700; letter-spacing:1px; }
.reel-text p{ color: var(--text-muted); font-size:0.85rem; margin-top:4px; }

/* ===================== GALLERY ===================== */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 140px;
  gap: 10px;
}
.g-item{ border-radius:10px; overflow:hidden; transition: transform 0.45s var(--ease-reveal); position:relative; }
/* Hover tilt/scale on .g-item img is handled by GSAP (see script.js). */
.g5{ grid-column: span 2; grid-row: span 2; }

@media(min-width: 700px){
  .gallery-grid{
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
  }
  .g1{ grid-column: span 2; }
  .g2{ grid-column: span 2; }
  .g3{ grid-column: span 1; grid-row: span 2; }
  .g4{ grid-column: span 1; grid-row: span 2; }
  .g5{ grid-column: span 2; grid-row: span 1; }
  .g6{ grid-column: span 1; }
  .g7{ grid-column: span 1; }
}

/* ===================== ABOUT ===================== */
.about-content{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 30px;
  text-align:center;
}
.about-img-wrap{
  width:200px; height:200px;
  border-radius:50%;
  overflow:hidden;
  border: 3px solid var(--teal);
  padding:6px;
  position:relative;
}
.about-img{ border-radius:50%; }
.about-text h3{
  font-size:1.4rem;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:6px;
}
.signature{
  font-family:'Dancing Script', cursive;
  color: var(--teal);
  font-size:1.8rem;
  margin-bottom:16px;
}
.about-desc{
  color: var(--text-muted);
  line-height:1.7;
  font-size:0.9rem;
  max-width:420px;
  margin: 0 auto 22px;
}

@media(min-width: 900px){
  .about-content{
    flex-direction:row;
    text-align:left;
    align-items:center;
    gap:60px;
  }
  .about-desc{ margin: 0 0 22px; }
}

/* ===================== VIDEOS ===================== */
.video-list{
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.video-item{
  display:flex;
  align-items:center;
  gap:14px;
  background: var(--bg-panel);
  border-radius: 10px;
  padding: 10px;
  transition: background 0.3s ease;
}
.video-item:hover{ background: var(--bg-panel-2); }
.video-thumb{
  position:relative;
  width: 110px;
  height: 72px;
  flex-shrink:0;
  border-radius:8px;
  overflow:hidden;
}
/* Hover tilt/scale on .video-thumb img is handled by GSAP (see script.js). */
.duration{
  position:absolute;
  right:6px; bottom:6px;
  background: rgba(0,0,0,0.7);
  font-size:0.65rem;
  padding: 2px 6px;
  border-radius:4px;
  z-index:2;
}
.video-meta{ flex:1; }
.video-meta h4{ font-size:0.9rem; font-weight:700; letter-spacing:0.5px; margin-bottom:4px; }
.video-meta p{ font-size:0.78rem; color: var(--text-muted); }
.video-menu{ color: var(--text-muted); padding: 10px; }

/* ===================== CONNECT ===================== */
.connect-card{
  background: linear-gradient(120deg, #0f4c3f, #12352d 60%);
  border-radius: 16px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  position:relative;
}
.connect-text{
  padding: 34px 26px;
  position:relative;
  z-index:2;
}
.connect-text h2{
  font-size:1.5rem;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:12px;
}
.connect-text p{
  color: rgba(255,255,255,0.85);
  font-size:0.9rem;
  line-height:1.6;
  margin-bottom:22px;
  max-width:280px;
}
.connect-text .btn-solid{
  background: var(--text-light);
  color: #0a0f0d;
  border:none;
  padding: 12px 20px;
  font-weight:700;
  font-size:0.8rem;
  letter-spacing:0.5px;
  border-radius:4px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  box-shadow:none;
  transition: transform 0.25s ease, background 0.3s ease;
}
.connect-text .btn-solid i{ color:#c13584; }
.connect-text .btn-solid:hover{ transform: translateY(-3px); background: var(--text-light); }
.connect-icons{
  display:flex;
  gap:12px;
  margin-top:18px;
}
.connect-icons a{
  width:38px; height:38px;
  border-radius:50%;
  background: rgba(255,255,255,0.15);
  display:flex; align-items:center; justify-content:center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.connect-icons a:hover{ background: var(--text-light); color:#0a0f0d; transform: translateY(-4px); }

.connect-img-wrap{
  height: 220px;
  position:relative;
}
.connect-img{ position:absolute; inset:0; }

@media(min-width: 800px){
  .connect-card{ flex-direction:row; align-items:stretch; }
  .connect-text{ flex:1; display:flex; flex-direction:column; justify-content:center; }
  .connect-img-wrap{ flex:1; height:auto; }
}

/* ===================== FOOTER ===================== */
.footer{
  text-align:center;
  padding: 50px 24px 30px;
}
.footer-logo{
  font-size:1.8rem;
  font-weight:800;
}
.footer-logo .dot{ color: var(--teal); }
.tagline{
  color: var(--text-muted);
  letter-spacing:3px;
  font-size:0.75rem;
  margin: 10px 0 20px;
}
.footer-socials{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-bottom:20px;
}
.footer-socials a{
  width:36px; height:36px;
  border-radius:50%;
  background: rgba(255,255,255,0.06);
  display:flex; align-items:center; justify-content:center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.footer-socials a:hover{ background: var(--teal); color:#0a0f0d; transform: translateY(-4px); }
.copyright{ color: #5c6864; font-size:0.75rem; }

/* ===================== BOTTOM NAV (mobile) ===================== */
.bottom-nav{
  position:fixed;
  bottom:0; left:0; right:0;
  z-index:900;
  background: rgba(10,15,13,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.06);
  display:flex;
  justify-content:space-around;
  padding: 8px 0 10px;
}
.bottom-nav a{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  font-size:0.65rem;
  color: var(--text-muted);
  transition: color 0.25s ease, transform 0.25s ease;
}
.bottom-nav a i{ font-size:1.1rem; }
.bottom-nav a.active, .bottom-nav a:hover{
  color: var(--teal);
  transform: translateY(-3px);
}

@media(min-width: 900px){
  .bottom-nav{ display:none; }
  body{ padding-bottom:0; }
}

/* ===================== RESPONSIVE: TABLET / DESKTOP LAYOUTS ===================== */
@media(min-width: 700px){
  .car-slide{ height: 420px; }
  .journey-grid{ gap: 20px; }
}

@media(min-width: 1000px){
  .hero{ min-height: 720px; }
  .car-slide{ height: 460px; }
  .reel-card{ height: 420px; }
}