/* =============================================================
   THCC LANDING PAGE — landing.css  (v2 — full rewrite)
   Events & Artist Discovery Platform
============================================================= */

/* ─── VARIABLES ──────────────────────────────────────────── */
:root {
  --sidebar-w: 80px;
  /* fixed sidebar width   */
  --card-gap: 32px;
  /* gap between sidebar & card (increased for more shrink) */
  --card-radius: 24px;
  /* hero card corner radius    */
  --accent: #fff200;
  --bg: #111111;
  /* Lighter black for page background to contrast cards */
  --card-bg: #000000;
  /* Dark black for card backgrounds */
}

/* ─── BASE ───────────────────────────────────────────────── */
.landing-body {
  background: var(--bg);
  overflow-x: hidden;
  /* Prevent body scroll during reveal; re-enabled by JS */
}

/* ─── PRELOADER ──────────────────────────────────────────── */
#lp-preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lp-preloader-text {
  font-family: 'Akira Expanded', sans-serif;
  letter-spacing: 0.2em;
}

.lp-loading-progress {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  margin-top: 8px;
}

/* ─── SOUND CHOICE MODAL ─────────────────────────────────── */
/* Lives inside #lp-preloader as an absolute overlay */
.lp-sound-modal {
  display: none;               /* JS sets display:flex then animates opacity */
  position: absolute;
  inset: 0;
  z-index: 101;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;                  /* GSAP animates in */
  text-align: center;
  background: transparent;
}

.lp-sound-modal.is-visible {
  display: flex;
}

/* ─── INTRO THUMBNAIL OVERLAY ────────────────────────────── */
/* Full-screen campaign image shown while song plays (~4s) */
#lp-intro-thumbnail {
  position: fixed;
  inset: 0;
  z-index: 9900;               /* above hero-drop (9800), below preloader (10000) */
  background: #000;
  display: none;               /* JS shows this after preloader slides out */
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lp-thumb-desktop,
.lp-thumb-mobile {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lp-thumb-desktop { display: block; }
.lp-thumb-mobile  { display: none;  }

@media (max-width: 767px) {
  .lp-thumb-desktop { display: none;  }
  .lp-thumb-mobile  { display: block; }
}

/* ─── HERO DROP (Campaign Card) ──────────────────────────── */
/* Fixed gateway between thumbnail and logo reveal */
#lp-hero-drop {
  position: fixed;
  inset: 0;
  z-index: 9800;               /* above logo-screen (9600), below thumbnail (9900) */
  display: none;               /* JS shows this after thumbnail fades */
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* clip-path starts full; GSAP wipes it upward on Explore click */
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Responsive desktop/mobile background images */
.lp-hd-bg-desktop { display: block; }
.lp-hd-bg-mobile  { display: none;  }

@media (max-width: 600px) {
  .lp-hd-bg-desktop { display: none;  }
  .lp-hd-bg-mobile  { display: block; }
}

/* SVG title image — starts clipped; GSAP animates y from 120% to 0 */
.lp-hero-drop-title-line {
  transform: translateY(120%);
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.9));
}

/* Subtitle + button row — starts invisible; GSAP fades in */
.lp-hero-drop-fade {
  opacity: 0;
  transform: translateY(1rem);
}

/* ─── EQ BARS (self-contained copy from main.css) ─────────── */
/* Needed when index.php is eventually replaced by landing.php  */
.eq-icon {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 12px;
}
.eq-bar {
  width: 3px;
  background-color: #fff200;
  border-radius: 2px;
  animation: lp-eq-play 1.2s infinite ease-in-out;
}
.eq-bar:nth-child(1) { height: 6px;  animation-delay: 0.0s; }
.eq-bar:nth-child(2) { height: 10px; animation-delay: 0.2s; }
.eq-bar:nth-child(3) { height: 14px; animation-delay: 0.4s; }
.eq-bar:nth-child(4) { height: 10px; animation-delay: 0.6s; }
.eq-bar:nth-child(5) { height: 6px;  animation-delay: 0.8s; }

@keyframes lp-eq-play {
  0%, 100% { transform: scaleY(0.5); }
  50%       { transform: scaleY(1); }
}

/* ─── YOUTUBE VIDEO MODAL ─────────────────────────────────── */
/* z-index: 10100 — above everything including the preloader    */
#lp-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10100;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

#lp-video-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Close button */
#lp-close-video {
  position: absolute;
  top: clamp(1.25rem, 4vw, 2.5rem);
  right: clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: clamp(0.65rem, 2vw, 1rem);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
  backdrop-filter: blur(8px);
  z-index: 1;
}

#lp-close-video:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

#lp-close-video svg {
  width: clamp(1.1rem, 3vw, 1.5rem);
  height: clamp(1.1rem, 3vw, 1.5rem);
}

/* Video iframe container */
#lp-video-container {
  width: 100%;
  max-width: 900px;
  padding: 0 1rem;
  aspect-ratio: 16 / 9;
  transform: scale(0.95);
  transition: transform 0.5s ease;
}

#lp-video-modal.is-open #lp-video-container {
  transform: scale(1);
}

#lp-youtube-iframe {
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ─── LOGO REVEAL SCREEN ─────────────────────────────────── */
#lp-logo-screen {
  position: fixed;
  inset: 0;
  z-index: 9600;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  /* GSAP sets visibility:visible after preloader */
}

#lp-logo-screen-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
  z-index: 0;
  /* GSAP fades this out to reveal video */
}

/* THE logo image — positioned with GSAP transforms */
#lp-logo {
  position: relative;
  z-index: 1;
  width: clamp(180px, 28vw, 320px);
  opacity: 0;
  /* starts hidden; GSAP reveals it */
  filter: drop-shadow(0 0 50px rgba(255, 242, 0, 0.35));
  display: block;
  will-change: transform, opacity, width;
  /* GSAP takes over transform completely */
}

/* ─── SIDEBAR ────────────────────────────────────────────── */
#lp-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: var(--sidebar-w);
  z-index: 300;
  transform: translateX(-100%);
  /* hidden; GSAP brings it in */
  will-change: transform;
  pointer-events: none;
}

#lp-sidebar.is-active {
  pointer-events: all;
}

.lp-sidebar-inner {
  width: var(--sidebar-w);
  height: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
  gap: 0;
  overflow: hidden;
}

/* nav list */
.lp-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  width: 100%;
}

.lp-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 0;
  text-decoration: none;
  text-align: center;
  width: 100%;
  transition: transform 0.25s;
}

/* Active Icon Styling (White) */
.lp-nav-link.active .lp-nav-logo-icon,
.lp-nav-link.active .lp-nav-menu-icon {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.lp-nav-link.active svg {
  color: #ffffff;
  fill: #ffffff;
  opacity: 1;
}

.lp-nav-link.active .lp-nav-label {
  color: #ffffff;
  opacity: 1;
}

/* Inactive Icon Styling (Yellow) & Text (White) */
.lp-nav-link:not(.active) .lp-nav-logo-icon,
.lp-nav-link:not(.active) .lp-nav-menu-icon {
  filter: brightness(0) invert(1) sepia(1) saturate(10000%) hue-rotate(18deg) brightness(105%) contrast(105%) !important;
  opacity: 1;
  transition: opacity 0.25s;
}

.lp-nav-link:not(.active) svg {
  color: var(--accent);
  fill: var(--accent);
  opacity: 1;
  transition: opacity 0.25s;
}

.lp-nav-link:not(.active) .lp-nav-label {
  color: #ffffff;
  opacity: 0.65;
  transition: opacity 0.25s;
}

/* Hover States (Text becomes brighter white) */
.lp-nav-link:not(.active):hover .lp-nav-logo-icon {
  opacity: 1;
}

.lp-nav-link:not(.active):hover svg {
  opacity: 1;
}

.lp-nav-link:not(.active):hover .lp-nav-label {
  opacity: 1;
}

.lp-nav-link:hover img,
.lp-nav-link:hover svg,
.lp-nav-link:hover .lp-nav-logo-icon {
  transform: scale(1.08);
}

.lp-nav-logo-icon,
.lp-nav-link img,
.lp-nav-link svg {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s;
}

.lp-nav-label {
  font-family: 'ThccHandwritten', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}

/* socials */
.lp-sidebar-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
}

.lp-social-link {
  color: rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  transition: color 0.25s, transform 0.25s;
}

.lp-social-link:hover {
  color: var(--accent);
  transform: scale(1.2);
}

/* ─── MAIN / HERO LAYOUT ─────────────────────────────────── */
#lp-main {
  position: relative;
  min-height: 100vh;
}

/* Sticky wrap: tall enough so hero can scrub while sticky */
#lp-hero-wrap {
  position: relative;
  height: 250vh;
  /* hero sticks for 150vh of scroll travel */
}

/* The hero section — sticks while user scrolls through wrap */
#lp-hero {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100dvh;
  background: var(--bg);
  overflow: hidden;
}

/* ─── VIDEO BOX ──────────────────────────────────────────── */
/* Initial state = full viewport. GSAP shrinks it on scroll. */
#lp-video-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--card-bg);
  will-change: top, left, right, bottom, border-radius;
}

#lp-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../images/thumbnails/thumbnail.png') center / cover no-repeat, var(--bg);
}

@media (max-width: 768px) {
  #lp-poster {
    background: url('../images/thumbnails/mobile_thumbnail.png') center / cover no-repeat, var(--bg);
  }
}

#lp-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  /* Crop out baked-in cinematic letterboxing */
  z-index: 1;
  opacity: 0;
  /* stays hidden until logo reveal done */
  transition: opacity 1.4s ease;
}

#lp-video.lp-video-show {
  opacity: 1;
}

#lp-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%),
    radial-gradient(ellipse at 50% 0%, rgba(0, 0, 0, 0.4) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.3) 80%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

/* Stage light glows */
.lp-lights {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
}

.lp-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  animation: lp-pulse 7s ease-in-out infinite;
}

.lp-light-l {
  width: 280px;
  height: 380px;
  top: -40px;
  left: 4%;
  background: radial-gradient(ellipse, rgba(70, 110, 200, 0.3) 0%, transparent 70%);
  transform: rotate(18deg);
  animation-delay: 0s;
}

.lp-light-r {
  width: 280px;
  height: 380px;
  top: -40px;
  right: 4%;
  background: radial-gradient(ellipse, rgba(50, 90, 200, 0.22) 0%, transparent 70%);
  transform: rotate(-18deg);
  animation-delay: 1.8s;
}

.lp-light-c {
  width: 460px;
  height: 260px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 242, 0, 0.055) 0%, transparent 70%);
  animation-delay: 3.5s;
}

@keyframes lp-pulse {

  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 0.65;
  }
}

/* ─── HERO TEXT ──────────────────────────────────────────── */
#lp-hero-text {
  position: absolute;
  bottom: 14%;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
}

.lp-h1 {
  font-family: 'Akira Expanded', sans-serif;
  font-size: clamp(2.6rem, 6.5vw, 7rem);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.04em;
}

.lp-clip {
  clip-path: polygon(0 0, 100% 0, 100% 115%, 0 115%);
  overflow: hidden;
}

.lp-tl {
  display: block;
  transform: translateY(115%);
}

.lp-yellow {
  color: var(--accent);
  font-style: normal;
}

/* ─── SCROLL CUE ─────────────────────────────────────────── */
#lp-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}

.lp-scroll-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.lp-scroll-track {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.lp-scroll-thumb {
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: lp-scroll-anim 2.2s ease-in-out infinite;
}

@keyframes lp-scroll-anim {
  0% {
    top: -50%;
    opacity: 1;
  }

  100% {
    top: 150%;
    opacity: 0.2;
  }
}

/* ─── CONTENT AREA (below hero wrap) ────────────────────── */
/* Offset from left edge by sidebar width + gap.
   This matches the converged hero card position. */
#lp-content {
  position: relative;
  margin-left: calc(var(--sidebar-w) + var(--card-gap));
  margin-right: var(--card-gap);
  background: transparent;
  padding-bottom: var(--card-gap);
}

/* ─── NEW CARDS SECTION ──────────────────────────────────── */
.lp-cards-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-gap);
  margin-bottom: var(--card-gap);
}

.lp-cards-4-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-gap);
  margin-bottom: var(--card-gap);
}

@media (min-width: 900px) {

  .lp-cards-section,
  .lp-cards-4-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-card-single {
  margin-bottom: var(--card-gap);
}

.lp-card-block {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  background-color: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.lp-card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.lp-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  z-index: 1;
}

.lp-card-content {
  position: relative;
  z-index: 2;
}

/* Start hidden for GSAP scroll animations */
.lp-scroll-card-left {
  opacity: 0;
  visibility: hidden;
}

.lp-scroll-card-right {
  opacity: 0;
  visibility: hidden;
}

.lp-scroll-card-bottom {
  opacity: 0;
  visibility: hidden;
}

.lp-card-feature {
  min-height: 650px;
}

.lp-card-large {
  min-height: 550px;
}

.lp-card-stack {
  display: flex;
  flex-direction: column;
  gap: var(--card-gap);
}

.lp-card-small {
  flex: 1;
  min-height: 320px;
}

/* Card Typography */
.lp-card-h2 {
  font-family: 'Akira Expanded', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.lp-card-h2 .lp-clip {
  overflow: hidden;
}

.lp-card-h2 .lp-card-tl {
  display: block;
  transform: translateY(115%);
}

.lp-card-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.lp-card-tags {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.lp-card-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 8px;
}

/* ─── YELLOW TICKER ──────────────────────────────────────── */
#lp-ticker {
  background: var(--accent);
  overflow: hidden;
  padding: 16px 0;
  border-radius: var(--card-radius);
  margin-bottom: var(--card-gap);
}

.lp-ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: lp-ticker-scroll 24s linear infinite;
}

.lp-ticker-word {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 600;
  color: #000;
  padding: 0 28px;
}

.lp-ticker-sep {
  color: rgba(0, 0, 0, 0.4);
  font-size: 11px;
  padding: 0 6px;
  flex-shrink: 0;
}

@keyframes lp-ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─── CTA SECTION ────────────────────────────────────────── */
#lp-cta {
  background: var(--card-bg);
  padding: 80px 60px;
  border-radius: var(--card-radius);
  margin-bottom: var(--card-gap);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  #lp-cta {
    padding: 60px 28px;
  }

  #lp-hero-text {
    bottom: 16%;
  }

  #lp-ticker {
    margin-top: var(--card-gap);
  }
}

.lp-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
}

@media (min-width: 1024px) {
  .lp-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
  .lp-cta-inner > div:first-child {
    flex: 0 0 45%;
    max-width: 500px;
  }
}

.lp-cta-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.lp-cta-h2 {
  font-family: 'Akira Expanded', sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 2.0rem);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #fff;
}

.lp-section-tl {
  display: block;
  transform: translateY(110%);
}

/* ============================================================
   NEWSLETTER SIGNUP FORM STYLES
   ============================================================ */
.lp-cta-newsletter {
  width: 100%;
  text-align: left;
}

.lp-newsletter-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.lp-newsletter-h3 {
  font-family: 'Akira Expanded', sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 2.0rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.04em;
  margin: 0 0 24px 0;
}

.lp-newsletter-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.lp-form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

@media (min-width: 640px) {
  .lp-form-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
}

.lp-input-group {
  flex: 1 1 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.lp-input {
  width: 100%;
  background: #d9d9d9;
  border: 2px solid transparent;
  border-radius: 9999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #0c0c0c;
  transition: background 0.3s, border-color 0.3s;
  outline: none;
  height: 48px;
}

.lp-input::placeholder {
  color: #666666;
}

.lp-input:focus {
  background: #ffffff;
}

.lp-input.error {
  border-color: #ff3333;
  background: #ffe6e6;
}

.lp-error-msg {
  color: #ff3333;
  font-size: 11px;
  margin-top: 6px;
  font-weight: 700;
  display: none;
  margin-left: 20px;
}

.lp-input.error + .lp-error-msg {
  display: block;
}

.lp-btn-submit {
  background: #000000;
  border: 2px solid var(--accent);
  color: #ffffff;
  height: 48px;
  padding: 0 32px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.1s;
  flex-shrink: 0;
}

.lp-btn-submit:hover {
  background: var(--accent);
  color: #000000;
}

.lp-btn-submit:active {
  transform: scale(0.96);
}

.lp-form-success {
  display: none;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-form-success.show {
  display: block;
}

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  background: var(--accent);
  color: #000;
  transition: background 0.28s, transform 0.18s;
}

.lp-btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: border-color 0.28s, background 0.28s, transform 0.18s;
}

.lp-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
#lp-footer {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  padding: 44px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  #lp-footer {
    padding: 40px 24px;
  }
}

.lp-footer-logo {
  width: 130px;
  opacity: 0.65;
  transition: opacity 0.28s;
}

.lp-footer-logo:hover {
  opacity: 1;
}

.lp-footer-copy {
  font-family: 'ThccHandwritten', sans-serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
}

/* ─── CURSOR ─────────────────────────────────────────────── */
/* (Inherited from main.css — no override needed) */

/* ─── MOBILE BOTTOM NAVBAR & OVERLAY DEFAULT HIDE ────────── */
.lp-mobile-nav {
  display: none;
}

.lp-mobile-menu-overlay {
  display: none;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  #lp-sidebar {
    display: none !important;
  }

  #lp-main {
    overflow-x: hidden;
  }

  #lp-content {
    margin-left: var(--card-gap) !important;
    margin-right: var(--card-gap) !important;
    padding-bottom: calc(var(--card-gap) + 80px) !important;
    /* Space for bottom nav */
  }

  #lp-hero-wrap {
    height: 100dvh !important;
  }

  #lp-logo {
    mix-blend-mode: difference !important;
  }

  .lp-mobile-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9995;
    justify-content: space-around;
    align-items: center;
    opacity: 0;
    pointer-events: none;
  }

  .lp-mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'ThccHandwritten', sans-serif;
    font-size: 10px;
    font-weight: 500;
    gap: 4px;
    flex: 1;
    height: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s;
  }

  .lp-mobile-nav-link svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    color: var(--accent);
    transition: transform 0.2s;
  }

  .lp-mobile-nav-link .lp-nav-logo-icon,
  .lp-mobile-nav-link .lp-nav-menu-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1) sepia(1) saturate(10000%) hue-rotate(18deg) brightness(105%) contrast(105%) !important;
    transition: filter 0.2s, transform 0.2s;
  }

  /* Active/Hover SVG & Logo turns white */
  .lp-mobile-nav-link.active svg,
  .lp-mobile-nav-link:hover svg {
    color: #ffffff;
    fill: #ffffff;
  }

  .lp-mobile-nav-link.active .lp-nav-logo-icon,
  .lp-mobile-nav-link:hover .lp-nav-logo-icon,
  .lp-mobile-nav-link.active .lp-nav-menu-icon,
  .lp-mobile-nav-link:hover .lp-nav-menu-icon {
    filter: brightness(0) invert(1) !important;
  }

  .lp-mobile-nav-link.active,
  .lp-mobile-nav-link:hover {
    color: #ffffff;
  }

  /* Hamburger & Close icon toggles */
  .lp-mobile-more-icon-wrap {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lp-mobile-more-icon-wrap svg {
    position: absolute;
    transition: opacity 0.25s, transform 0.25s;
  }

  .lp-mobile-nav-link.is-active .lp-icon-hamburger {
    opacity: 0;
    transform: rotate(90deg);
  }

  .lp-mobile-nav-link.is-active .lp-icon-close {
    opacity: 1;
    transform: rotate(0deg);
    display: block !important;
  }

  .lp-icon-close.hidden {
    display: none;
  }

  /* Fullscreen Menu Overlay */
  .lp-mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: #0c0c0c;
    z-index: 9990;
    overflow-y: auto;
    padding: 60px 24px calc(64px + 40px) 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
  }

  .lp-mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .lp-mobile-menu-inner {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .lp-mobile-menu-logo-wrap {
    width: 150px;
    margin-bottom: 8px;
  }

  .lp-mobile-menu-logo-img {
    width: 100%;
    object-fit: contain;
  }

  .lp-mobile-menu-subtitle {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 32px;
    font-weight: 700;
    text-align: center;
  }

  .lp-mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .lp-mobile-menu-list li {
    width: 100%;
  }

  .lp-mobile-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }

  .lp-mobile-menu-link.active,
  .lp-mobile-menu-link:hover {
    background: rgba(255, 242, 0, 0.08);
    border-color: var(--accent);
    color: var(--accent);
  }

  .lp-mobile-menu-arrow {
    stroke: currentColor;
    transition: transform 0.2s;
  }

  .lp-mobile-menu-link:hover .lp-mobile-menu-arrow {
    transform: translateX(4px);
  }

  .lp-mobile-menu-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
    width: 100%;
  }

  .lp-mobile-menu-social-link {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    transition: color 0.25s, background 0.25s, transform 0.25s;
  }

  .lp-mobile-menu-social-link:hover {
    color: var(--accent);
    background: rgba(255, 242, 0, 0.1);
    transform: scale(1.1);
  }
}

@media (max-width: 640px) {
  :root {
    --card-gap: 8px;
    --card-radius: 12px;
  }

  .lp-h1 {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
}

/* ─── ECOMMERCE PRODUCTS SLIDER ──────────────────────────── */
.lp-products-slider {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  padding: 60px 40px;
  margin-bottom: var(--card-gap);
}

@media (max-width: 768px) {
  .lp-products-slider {
    padding: 30px 20px;
  }
}

.lp-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.lp-slider-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.lp-slider-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

/* Nav arrows style */
.lp-slider-nav {
  display: flex;
  gap: 12px;
}

.lp-swiper-prev,
.lp-swiper-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lp-swiper-prev:hover,
.lp-swiper-next:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.05);
}

.lp-swiper-prev:disabled,
.lp-swiper-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* Swiper Container overrides */
.lp-products-swiper {
  position: relative;
  width: 100%;
  padding-bottom: 20px;
}

/* Product Card Styling */
.lp-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #060606;
  border-radius: calc(var(--card-radius) * 0.8);
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
  text-align: left;
  transition: border-color 0.3s ease, transform 0.3s ease;
  height: 100%;
  text-decoration: none;
}

.lp-product-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

/* 3:4 aspect ratio for images */
.lp-prod-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0d0d0d;
}

.lp-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.lp-product-card:hover .lp-prod-img {
  transform: scale(1.06);
}

.lp-prod-info {
  padding: 24px;
  background: #060606;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-prod-name {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
}

.lp-prod-cat {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Custom Swiper Pagination dots on mobile */
.lp-swiper-pagination.swiper-pagination {
  position: relative;
  bottom: 0 !important;
  margin-top: 30px;
}

.lp-swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1 !important;
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
  transition: all 0.3s ease;
}

.lp-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent) !important;
  width: 24px;
  border-radius: 4px;
}