/* =====================================================
   LENNY AIGC — Master Stylesheet (Audited & Final)
   ===================================================== */

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

:root {
  --bg:      #080808;
  --text:    #FAFAF9;
  --muted:   rgba(250, 250, 249, 0.45);
  --accent:  #FF2D78;
  --border:  rgba(250, 250, 249, 0.1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAVIGATION ────────────────────────────────── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 60px;
  transition: all 0.4s ease;
}

nav.scrolled {
  padding: 15px 60px;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo em { color: var(--accent); font-style: normal; }

.nav-list {
  list-style: none;
  display: flex;
  gap: 40px;
}
.nav-list a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-list a:hover, .nav-list a.active { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  background: none; border: none;
  cursor: pointer;
  width: 30px; height: 30px;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: all 0.3s; }
.nav-toggle span:nth-child(2) { width: 16px; }

.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 960px) {
  nav { padding: 15px 24px; background: rgba(8, 8, 8, 0.95); backdrop-filter: blur(15px); }
  .nav-toggle { display: flex; }
  .nav-list {
    display: none;
    position: absolute;
    top: 100%; right: 20px;
    width: 180px;
    background: #111111;
    flex-direction: column;
    padding: 25px;
    gap: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    z-index: 10000;
  }
  .nav-list.open { display: flex; }
  .nav-list a { font-size: 0.8rem; width: 100%; text-align: left; }
}

/* ── HERO SECTION ─────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
}

.hero-video-wrap { position: absolute; inset: 0; z-index: -1; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-mobile-video { display: none !important; }

.hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,0.2) 50%, rgba(8,8,8,0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  padding: 0 60px 80px;
  max-width: 900px;
  z-index: 10;
}

.hero-eye { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; letter-spacing: 0.5em; color: var(--accent); margin-bottom: 20px; }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(4.5rem, 10vw, 10rem); line-height: 0.9; color: #fff; margin-bottom: 20px; }
.hero-body { color: var(--muted); max-width: 440px; line-height: 1.7; font-size: 0.95rem; margin-bottom: 35px; }

/* PRECISION BUTTON GRID */
.hero-cta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.btn-solid, .btn-ghost, .hero-social-btn {
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-solid { padding: 0 35px; background: var(--accent); color: #080808; font-size: 0.95rem; border: none; }
.btn-ghost { padding: 0 35px; border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 0.95rem; }
.hero-social-btn { width: 52px; border: 1px solid rgba(255,255,255,0.25); color: #fff; }

.btn-solid:hover { background: #ff5490; transform: translateY(-3px); }
.btn-ghost:hover, .hero-social-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

/* MOBILE HERO FIX */
@media (max-width: 800px) {
  .hero { height: auto; min-height: 100vh; justify-content: flex-start; padding-top: 160px; }
  .hero-content { padding: 0 24px 60px; }
  .hero-eye { display: none !important; }
  .hero-desktop-video { display: none !important; }
  .hero-mobile-video { display: block !important; }
  
  .hero-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
  .btn-solid, .btn-ghost { padding: 0; width: 100%; font-size: 0.85rem; }
  .hero-social-btn { width: 100% !important; }
}

/* ── SECTIONS ────────────────────────────────── */

.hero-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(15px);
  z-index: 10;
}
.hb-item { padding: 25px 40px; border-right: 1px solid var(--border); }
.hb-item:last-child { border-right: none; }
.hb-label { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: var(--accent); display: block; margin-bottom: 5px; }
.hb-desc { font-size: 0.75rem; color: var(--muted); }

@media (max-width: 960px) {
  .hero-bar { grid-template-columns: 1fr; }
  .hb-item { padding: 20px 24px; border-right: none; border-bottom: 1px solid var(--border); }
}

.follow-section {
  padding: 0;
  max-width: none;
  margin: 0;
}
.follow-surface {
  position: relative;
  min-height: 430px;
  padding: 88px 60px 54px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.22), rgba(8,8,8,0.88)),
    linear-gradient(90deg, rgba(8,8,8,0.84) 0%, rgba(8,8,8,0.52) 42%, rgba(8,8,8,0.84) 100%),
    url('Fix%20Photo%20Landscape/Landscape%20(6).png') center/cover no-repeat;
}
.follow-copy { max-width: 560px; }
.follow-body { color: var(--muted); max-width: 360px; margin-bottom: 28px; }
.follow-note {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(250, 250, 249, 0.72);
}
.follow-mini { display: inline-flex; align-items: center; }
.home-videos {
  padding: 72px 60px 96px;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-kicker {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--accent);
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.9;
}
.section-link {
  color: var(--text);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 6px;
}
.home-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.home-video-card {
  position: relative;
  overflow: hidden;
  background: transparent;
  min-height: 0;
}
.home-video-trigger {
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  text-align: left;
  position: relative;
}
.home-video-trigger video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.home-video-overlay {
  position: absolute;
  inset: auto 0 -1px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 24px 26px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}
.home-video-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: rgba(255, 45, 120, 0.9);
  color: #080808;
  flex-shrink: 0;
}
.home-video-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}
.follow-head { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 6vw, 5rem); line-height: 0.95; margin-bottom: 20px; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; }
.social-btn {
  display: inline-flex; align-items: center; padding: 15px 35px; border: 1px solid var(--border); color: var(--muted); text-decoration: none; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; transition: all 0.3s ease;
}
.social-btn:hover { border-color: var(--accent); color: var(--text); background: rgba(255, 45, 120, 0.05); }

/* ── FOOTER ───────────────────────────────────── */

.footer-border { border-top: 1px solid var(--border); }
footer { display: flex; align-items: center; justify-content: space-between; padding: 30px 60px; max-width: 1440px; margin: 0 auto; }
.f-brand, .f-copy { color: var(--muted); font-size: 0.7rem; letter-spacing: 0.1em; }

@media (max-width: 960px) {
  .follow-section { padding: 0 24px 64px; }
  .follow-section { padding: 0; }
  .follow-surface { padding: 56px 24px 32px; min-height: 360px; }
  .follow-note { flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; gap: 15px; text-align: center; padding: 30px 24px; }
}

/* ── SHARED PAGE TITLES (Gallery/Videos) ─────── */

.page-hero { padding: 160px 60px 60px; border-bottom: 1px solid var(--border); }
.page-hero-inner { max-width: 1440px; margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.page-hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(4rem, 10vw, 8rem); line-height: 0.9; }
.page-hero-sub { color: var(--muted); font-size: 0.9rem; max-width: 350px; text-align: right; }

@media (max-width: 960px) {
  .page-hero { padding: 120px 24px 40px; }
  .page-hero-inner { flex-direction: column; align-items: flex-start; }
  .page-hero-sub { text-align: left; }
}

/* ── UTILITIES ────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.vis { opacity: 1; transform: none; }

.lightbox { position: fixed; inset: 0; z-index: 99999; background: rgba(4,4,4,0.98); display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lb-img { max-width: 90vw; max-height: 80vh; object-fit: contain; }
.lb-video { width: min(1100px, 92vw); max-height: 82vh; background: #000; }
.lb-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

@media (max-width: 960px) {
  .home-videos { padding: 56px 24px 72px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .home-video-grid { grid-template-columns: 1fr; }
}
