/* ============================================
   GAS NOIR — Brand Stylesheet
   Colors: #4682B4 | #28282B | #FAF9F6
   Font: Montserrat + VT323 (VCR)
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400&family=VT323&family=Share+Tech+Mono&display=swap');

::-webkit-scrollbar { display: none; }
* { -ms-overflow-style: none; scrollbar-width: none; }

::selection {
  color: var(--light);
  background: var(--blue);
}

/* ─── LOADER — jeen-yuhs style ─── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

#loader.done {
  pointer-events: none;
}

.loader-panel {
  position: absolute;
  left: 0;
  right: 0;
  background: #000;
  z-index: 2;
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}

.loader-panel-top {
  top: 0;
  height: 50%;
  transform-origin: top;
}

.loader-panel-bottom {
  bottom: 0;
  height: 50%;
  transform-origin: bottom;
}

#loader.reveal .loader-panel-top {
  transform: translateY(-100%);
}

#loader.reveal .loader-panel-bottom {
  transform: translateY(100%);
}

.loader-scanlines {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0, 0, 0, 0.35) 3px,
    rgba(0, 0, 0, 0.35) 4px
  );
  animation: scanline-flicker 8s linear infinite;
}

@keyframes scanline-flicker {
  0%   { opacity: 1; }
  92%  { opacity: 1; }
  93%  { opacity: 0.85; }
  94%  { opacity: 1; }
  96%  { opacity: 0.9; }
  100% { opacity: 1; }
}

.loader-burn {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(70, 130, 180, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.loader-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 8vw 6vh;
}

.loader-icon-wrap {
  margin-bottom: 2rem;
}

.loader-icon {
  height: clamp(60px, 9vw, 110px);
  width: auto;
  display: block;
  /* Clip to just the dark rounded square, remove background bleed */
  clip-path: inset(6% 4% 28% 4% round 18px);
}

/* ─── LOADER FONT-CYCLING BRAND NAME ─── */
.loader-brand-cycle {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3.5rem, 10vw, 9rem);
  color: var(--light);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.04em;
  text-align: center;
  /* font-family cycled by JS */
  font-family: 'Great Vibes', cursive;
  transition: font-family 0s; /* instant swap, no transition */
}

.loader-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.loader-season,
.loader-status {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.loader-divider {
  color: rgba(70, 130, 180, 0.5);
  font-family: 'Share Tech Mono', monospace;
}

#loaderStatus {
  color: #4682B4;
}

.loader-counter-wrap {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.loader-counter {
  font-family: 'VT323', monospace;
  font-size: clamp(6rem, 20vw, 18rem);
  line-height: 0.85;
  color: #fff;
  letter-spacing: -0.02em;
  transition: text-shadow 0.1s ease;
}

.loader-counter-label {
  font-family: 'VT323', monospace;
  font-size: clamp(2rem, 5vw, 5rem);
  color: #4682B4;
  padding-bottom: 0.5rem;
}

.loader-bar {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.loader-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #4682B4;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(70, 130, 180, 0.8);
}

/* ─── PERSISTENT CINEMATIC OVERLAYS ─── */

/* Color burn — steel blue cinematic tint */
.color-burn {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  background: linear-gradient(
    160deg,
    rgba(70, 130, 180, 0.04) 0%,
    transparent 40%,
    rgba(70, 130, 180, 0.03) 100%
  );
  mix-blend-mode: screen;
}

/* Scan lines — persistent across whole site */
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 95;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.06) 2px,
    rgba(0, 0, 0, 0.06) 3px
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.scanlines.visible {
  opacity: 1;
}

:root {
  --blue: #4682B4;
  --dark: #28282B;
  --light: #FAF9F6;
  --blue-dim: rgba(70, 130, 180, 0.15);
  --blue-mid: rgba(70, 130, 180, 0.5);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: normal;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0.6;
}

body:hover .cursor { opacity: 1; }

/* ─── IMAGE TRAIL ─── */
.trail-item {
  position: fixed;
  pointer-events: none;
  z-index: 9000;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  overflow: hidden;
  border: 1px solid rgba(70, 130, 180, 0.3);
}

/* ─── FILM GRAIN OVERLAY ─── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 100;
  opacity: 0.035;
  animation: grain-move 0.5s steps(2) infinite;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

@keyframes grain-move {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, -3%); }
  50%  { transform: translate(3%, 1%); }
  75%  { transform: translate(-1%, 4%); }
  100% { transform: translate(2%, -2%); }
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: normal;
  transition: background 0.4s ease, padding 0.4s ease;
}

nav.scrolled {
  background: rgba(40, 40, 43, 0.95);
  backdrop-filter: blur(12px);
  padding: 1.2rem 4rem;
  border-bottom: 1px solid rgba(70, 130, 180, 0.15);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(51%) sepia(35%) saturate(567%) hue-rotate(172deg) brightness(95%) contrast(90%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.nav-logo-img:hover {
  filter: brightness(0) invert(1);
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--blue);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark) !important;
  background: var(--blue);
  padding: 0.7rem 1.6rem;
  text-decoration: none;
  opacity: 1 !important;
  transition: background 0.3s ease, transform 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--light) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

#hero3dCanvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Vignette overlay sits on top of canvas */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%),
    radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.4) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}


/* Cinematic letterbox bars */
.letterbox-top,
.letterbox-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background: #000;
  z-index: 10;
  transition: height 1.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.letterbox-top { top: 0; }
.letterbox-bottom { bottom: 0; }

.hero.revealed .letterbox-top,
.hero.revealed .letterbox-bottom {
  height: 0;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 1.2s, transform 1s ease 1.2s;
}

.hero.revealed .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  overflow: visible;
}

.line-wrap {
  overflow: hidden;
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title .line-script {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: clamp(5rem, 14vw, 13rem);
  letter-spacing: 0.02em;
  color: var(--blue);
  transition-delay: 0.8s;
  line-height: 1.3;
  display: block;
  padding: 0.1em 0;
}

.hero-title .line-digital {
  font-family: 'Abril Fatface', serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 10vw, 11rem);
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--light);
  transition-delay: 0.9s;
  line-height: 1.1;
}

.hero.revealed .hero-title .line {
  opacity: 1;
  transform: translateY(0);
}

.hero-sub {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.5);
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 1.5s, transform 1s ease 1.5s;
}

.hero.revealed .hero-sub {
  opacity: 1;
  transform: translateY(0);
}
.hero-cta-group {
  display: flex;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 1.8s, transform 1s ease 1.8s;
}

.hero.revealed .hero-cta-group {
  opacity: 1;
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.6);
  border: 1px solid rgba(250, 249, 246, 0.2);
  padding: 1.1rem 2.6rem;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.btn-ghost:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: clamp(4rem, 10vw, 8rem);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  z-index: 10;
  opacity: 0;
  transition: opacity 1s ease 2.2s;
}

.hero.revealed .hero-scroll-indicator {
  opacity: 1;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--blue);
}

.hero-stat-label {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.3);
}

.hero-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(70, 130, 180, 0.3);
}



/* Animated scroll line below hero stats */
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(70, 130, 180, 0.6), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

/* ── HERO WORDMARK — basement.studio style ── */
.hero-wordmark {
  position: absolute;
  bottom: -0.08em;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-size: clamp(5rem, 19.5vw, 26rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(250, 249, 246, 0.13);
  text-stroke: 1px rgba(250, 249, 246, 0.13);
  pointer-events: none;
  z-index: 2;
  user-select: none;
  opacity: 0;
  transition: opacity 1.2s ease 2.5s;
}

.hero.revealed .hero-wordmark {
  opacity: 1;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 0.5rem;
  z-index: 600;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--light);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

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

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 550;
  background: rgba(28, 28, 31, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav-links a {
  font-size: clamp(1.8rem, 8vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s ease, opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.mobile-nav.open .mobile-nav-links a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.open .mobile-nav-links li:nth-child(1) a { transition-delay: 0.05s; }
.mobile-nav.open .mobile-nav-links li:nth-child(2) a { transition-delay: 0.1s; }
.mobile-nav.open .mobile-nav-links li:nth-child(3) a { transition-delay: 0.15s; }
.mobile-nav.open .mobile-nav-links li:nth-child(4) a { transition-delay: 0.2s; }

.mobile-nav-links a:hover { color: var(--blue); }

.mobile-nav-cta {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--blue);
  padding: 1.1rem 3rem;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.25s, transform 0.4s cubic-bezier(0.16,1,0.3,1) 0.25s, background 0.3s ease;
}

.mobile-nav.open .mobile-nav-cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-cta:hover { background: var(--light); }

/* ─── MARQUEE ─── */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid rgba(70, 130, 180, 0.2);
  border-bottom: 1px solid rgba(70, 130, 180, 0.2);
  background: var(--dark);
  padding: 1.2rem 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.35);
}

.marquee-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTION COMMON ─── */
section {
  padding: 8rem 4rem;
}

.section-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--blue);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── LOGO SCROLL SHOWCASE ─── */
.lss-section {
  height: 500vh;
  position: relative;
  background: #000;
}

.lss-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0c;
  perspective: 1400px;
  perspective-origin: 50% 50%;
}

.lss-logo-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.lss-logo-img {
  width: min(88vw, 1000px);
  height: auto;
  filter: brightness(0) saturate(100%) invert(51%) sepia(35%) saturate(567%) hue-rotate(172deg) brightness(95%) contrast(90%);
  opacity: 0.15;
}

.lss-cards-track {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
  /* JS drives rotateX on this element */
}

.lss-card {
  position: absolute;
  width: clamp(260px, 38vw, 400px);
  height: clamp(320px, 48vh, 480px);
  /* Centre each card at the track origin */
  left: calc(clamp(260px, 38vw, 400px) / -2);
  top: calc(clamp(320px, 48vh, 480px) / -2);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(70, 130, 180, 0.25);
  backface-visibility: hidden;
  /* individual 3D position set by JS */
}

.lss-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lss-card-bg {
  position: absolute;
  inset: 0;
}

.lss-bg-1 {
  background:
    radial-gradient(ellipse at 65% 25%, rgba(70,130,180,0.18) 0%, transparent 60%),
    linear-gradient(160deg, #1c1c20 0%, #212126 70%, #1a1e24 100%);
}
.lss-bg-2 {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(70,130,180,0.16) 0%, transparent 55%),
    linear-gradient(160deg, #1e1e22 0%, #1c2028 70%, #181c22 100%);
}
.lss-bg-3 {
  background:
    radial-gradient(ellipse at 75% 55%, rgba(70,130,180,0.2) 0%, transparent 60%),
    linear-gradient(160deg, #1a1a1e 0%, #202024 70%, #1c2026 100%);
}
.lss-bg-4 {
  background:
    radial-gradient(ellipse at 40% 30%, rgba(70,130,180,0.15) 0%, transparent 55%),
    linear-gradient(160deg, #1d1d21 0%, #222226 70%, #1e1e24 100%);
}
.lss-bg-5 {
  background:
    radial-gradient(ellipse at 55% 65%, rgba(70,130,180,0.17) 0%, transparent 60%),
    linear-gradient(160deg, #1b1b1f 0%, #1f2025 70%, #1a1d23 100%);
}

.lss-card-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.6);
  z-index: 1;
}

@media (max-width: 768px) {
  .lss-card {
    width: clamp(220px, 72vw, 320px);
    height: clamp(270px, 55vw, 380px);
  }
  .lss-logo-img { opacity: 0.1; }
}

/* ─── COLLECTIONS ─── */
.collections {
  background: var(--dark);
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 4rem;
}

.collections-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 5rem;
  gap: 2rem;
}

.collections-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--light);
}

.collections-title em {
  font-style: normal;
  color: var(--blue);
}

.collections-link {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  transition: gap 0.3s ease;
}

.collections-link:hover { gap: 1.25rem; }

.collections-link::after {
  content: '→';
  font-size: 1rem;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1.5rem;
}

.collection-card {
  position: relative;
  overflow: hidden;
  background: #1a1a1d;
  cursor: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover {
  transform: translateY(-6px);
}

.collection-card:nth-child(1) {
  grid-column: 1 / 7;
  grid-row: 1;
  aspect-ratio: 4/5;
}

.collection-card:nth-child(2) {
  grid-column: 7 / 13;
  grid-row: 1;
  aspect-ratio: 4/5;
}

.collection-card:nth-child(3) {
  grid-column: 1 / 5;
  grid-row: 2;
  aspect-ratio: 3/4;
}

.collection-card:nth-child(4) {
  grid-column: 5 / 9;
  grid-row: 2;
  aspect-ratio: 3/4;
}

.collection-card:nth-child(5) {
  grid-column: 9 / 13;
  grid-row: 2;
  aspect-ratio: 3/4;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover .card-image {
  transform: scale(1.05);
}

/* Placeholder for cards without images */
.card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1c1c1f 0%, #212125 60%, #1e2026 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.card-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(70, 130, 180, 0.08) 0%, transparent 60%),
    linear-gradient(to bottom, transparent 50%, rgba(10,10,12,0.4) 100%);
}

.card-placeholder::after {
  content: '';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(70, 130, 180, 0.2);
  border-radius: 50%;
}

.card-placeholder-num {
  position: absolute;
  top: 1.8rem;
  left: 2rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(70, 130, 180, 0.4);
  z-index: 1;
}

/* Crosshair center mark on placeholder cards */
.cp-crosshair {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.cp-crosshair::before,
.cp-crosshair::after {
  content: '';
  position: absolute;
  background: rgba(70, 130, 180, 0.12);
}

/* horizontal line */
.cp-crosshair::before {
  top: 50%;
  left: 20%;
  right: 20%;
  height: 1px;
  transform: translateY(-50%);
}

/* vertical line */
.cp-crosshair::after {
  left: 50%;
  top: 20%;
  bottom: 20%;
  width: 1px;
  transform: translateX(-50%);
}

/* Subtle per-card gradient variations */
.cp-1 { background: linear-gradient(145deg, #1b1b1f 0%, #202127 60%, #1c2028 100%); }
.cp-2 { background: linear-gradient(145deg, #1d1d21 0%, #1f2025 60%, #1c1e26 100%); }
.cp-3 { background: linear-gradient(145deg, #1a1a1e 0%, #212126 60%, #1e1f27 100%); }
.cp-4 { background: linear-gradient(145deg, #1c1c20 0%, #202228 60%, #1b1d25 100%); }
.cp-5 { background: linear-gradient(145deg, #1b1d21 0%, #1f2026 60%, #1a1c24 100%); }

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 28, 31, 0.9) 0%, transparent 50%);
  transition: background 0.5s ease;
}

.collection-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(28, 28, 31, 0.95) 0%, rgba(28, 28, 31, 0.2) 60%);
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  transform: translateY(0);
}

.card-tag {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.card-name {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--light);
  line-height: 1.1;
}

.card-price {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(250, 249, 246, 0.5);
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.collection-card:hover .card-price {
  opacity: 1;
  transform: translateY(0);
}

/* ─── EDITORIAL / CINEMATIC ─── */
.editorial {
  background: var(--dark);
  padding: 0;
  overflow: hidden;
}

.editorial-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.editorial-visual {
  position: relative;
  aspect-ratio: 3/4;
}

.editorial-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a1a1e 0%, #212126 50%, #1c1f28 100%);
  position: relative;
  overflow: hidden;
}

/* GN monogram */
.ep-monogram {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(8rem, 18vw, 16rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(70, 130, 180, 0.12);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* subtle grid overlay */
.ep-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(70, 130, 180, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 130, 180, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.ep-label {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  color: rgba(70, 130, 180, 0.3);
  text-transform: uppercase;
}

/* editorial CTA row */
.editorial-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.editorial-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 60%;
  aspect-ratio: 1;
  background: var(--blue-dim);
  border: 1px solid rgba(70, 130, 180, 0.2);
  z-index: -1;
}

.editorial-content {
  padding: 2rem 0;
}

.editorial-quote {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--light);
  margin-bottom: 2.5rem;
}

.editorial-quote em {
  font-style: italic;
  font-weight: 300;
  color: rgba(250, 249, 246, 0.4);
}

.editorial-body {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(250, 249, 246, 0.55);
  max-width: 380px;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--blue);
  padding: 1.1rem 2.6rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background: var(--light);
  gap: 1.5rem;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light);
  border: 1px solid rgba(250, 249, 246, 0.3);
  padding: 1.1rem 2.5rem;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, gap 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  gap: 1.5rem;
}

/* ─── FULL BLEED CINEMATIC ─── */
.cinematic-band {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinematic-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1a1d 0%, #202024 50%, rgba(70, 130, 180, 0.08) 100%);
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 40, 43, 0.6);
}

.cinematic-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 2rem;
}

.cinematic-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
}

.cinematic-headline {
  font-size: clamp(3.5rem, 8vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.88;
  color: var(--light);
}

.cinematic-headline span {
  display: block;
  -webkit-text-stroke: 1.5px rgba(250, 249, 246, 0.5);
  color: transparent;
}

/* ─── ABOUT / ETHOS ─── */
.ethos {
  background: var(--light);
  color: var(--dark);
  padding: 10rem 4rem;
}

.ethos-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8rem;
  align-items: start;
}

.ethos-sidebar {
  position: sticky;
  top: 8rem;
}

.ethos-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ethos-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--blue);
}

.ethos-side-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--dark);
}

.ethos-content {}

.ethos-large-text {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 2.5rem;
}

.ethos-body {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 2;
  color: rgba(40, 40, 43, 0.6);
  margin-bottom: 2rem;
  max-width: 560px;
}

.ethos-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(40, 40, 43, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(40, 40, 43, 0.4);
}

/* ─── INSTAGRAM ─── */
.ig-section {
  background: var(--dark);
  padding: 8rem 4rem;
  border-top: 1px solid rgba(70, 130, 180, 0.12);
}

.ig-inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.ig-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--light);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.ig-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ig-title a:hover { color: var(--blue); }

.ig-sub {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(250, 249, 246, 0.35);
  letter-spacing: 0.1em;
  margin-bottom: 3.5rem;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  margin-bottom: 3rem;
}

.ig-cell {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.ig-cell:hover { opacity: 0.75; }

/* distinct gradient per cell */
.ig-c1 { background: radial-gradient(ellipse at 60% 40%, rgba(70,130,180,0.18) 0%, #181a1e 70%); }
.ig-c2 { background: radial-gradient(ellipse at 30% 70%, rgba(70,130,180,0.12) 0%, #1a1c20 70%); }
.ig-c3 { background: radial-gradient(ellipse at 70% 30%, rgba(70,130,180,0.22) 0%, #171920 70%); }
.ig-c4 { background: radial-gradient(ellipse at 50% 60%, rgba(70,130,180,0.14) 0%, #1c1e22 70%); }
.ig-c5 { background: radial-gradient(ellipse at 40% 40%, rgba(70,130,180,0.19) 0%, #191b1f 70%); }
.ig-c6 { background: radial-gradient(ellipse at 60% 70%, rgba(70,130,180,0.10) 0%, #1b1d21 70%); }

.ig-footer {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-cell:nth-child(n+4) { display: none; }
}

/* ─── NEWSLETTER ─── */
.newsletter {
  background: var(--blue);
  padding: 6rem 4rem;
  text-align: center;
}

.newsletter-inner {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 1rem;
}

.newsletter-sub {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(250, 249, 246, 0.7);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  background: rgba(250, 249, 246, 0.15);
  border: 1px solid rgba(250, 249, 246, 0.3);
  border-right: none;
  padding: 1.1rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--light);
  outline: none;
  transition: background 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(250, 249, 246, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.65rem;
}

.newsletter-input:focus {
  background: rgba(250, 249, 246, 0.25);
}

.newsletter-btn {
  background: var(--dark);
  color: var(--light);
  border: none;
  padding: 1.1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.3s ease;
}

.newsletter-btn:hover {
  background: #1a1a1d;
}

/* ─── FOOTER ─── */
footer {
  background: #1a1a1d;
  padding: 6rem 4rem 3rem;
  border-top: 1px solid rgba(70, 130, 180, 0.15);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand-name {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  color: var(--blue);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.footer-tagline {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(250, 249, 246, 0.4);
  max-width: 260px;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(70, 130, 180, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 249, 246, 0.5);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-dim);
}

.footer-col-title {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(250, 249, 246, 0.45);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(70, 130, 180, 0.1);
}

.footer-copy {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(250, 249, 246, 0.25);
}

.footer-copy span { color: var(--blue); }

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(250, 249, 246, 0.25);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: rgba(250, 249, 246, 0.6);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 1.5rem 2rem; }
  nav.scrolled { padding: 1rem 2rem; }
  .nav-links { gap: 2rem; }
  section { padding: 6rem 2rem; }
  .collections { padding: 6rem 2rem; }

  .collections-grid {
    grid-template-columns: 1fr 1fr;
  }
  .collection-card:nth-child(1) { grid-column: 1 / 2; grid-row: 1; }
  .collection-card:nth-child(2) { grid-column: 2 / 3; grid-row: 1; }
  .collection-card:nth-child(3) { grid-column: 1 / 2; grid-row: 2; }
  .collection-card:nth-child(4) { grid-column: 2 / 3; grid-row: 2; }
  .collection-card:nth-child(5) { grid-column: 1 / 3; grid-row: 3; aspect-ratio: 16/7; }

  .editorial-inner { grid-template-columns: 1fr; gap: 4rem; }
  .ethos-inner { grid-template-columns: 1fr; gap: 4rem; }
  .ethos-sidebar { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-title .line-digital { font-size: clamp(2.5rem, 14vw, 7rem); }
  .hero-stats { gap: 1.2rem; }
  .hero-stat-num { font-size: 0.75rem; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card:nth-child(n) { grid-column: 1; grid-row: auto; aspect-ratio: 4/5; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(250, 249, 246, 0.3); border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
  .ethos-stats { grid-template-columns: 1fr; }
  .editorial-inner { padding: 5rem 2rem; }
  .cinematic-headline { font-size: clamp(2.2rem, 10vw, 5rem); }
  .hero-cta-group { flex-direction: column; align-items: center; gap: 0.75rem; }
}

/* ─── FOOTER LOGO IMAGE ─── */
.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  border-radius: 10px;
  margin-bottom: 1.25rem;
}

.footer-brand-name a {
  text-decoration: none;
  display: inline-block;
}
