/* ============================================================================
   LUMIQ LANDING v2 — Editorial Redesign
   Motion: Lenis + GSAP + SplitType
   ============================================================================ */

:root {
  --ink: #0a0808;
  --cream: #f5efe4;
  --burgundy: #8b1a1a;
  --burgundy-dark: #5a1010;
  --muted: #1a1212;
  --line: #2a2020;
  --text-sec: rgba(245, 239, 228, 0.55);
  --text-dim: rgba(245, 239, 228, 0.3);
}

/* Reset landing — override landing.css fixed positioning so page scrolls naturally */
#landing-page.landing {
  position: static;
  inset: auto;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 400;
  overflow: visible;
  overflow-x: clip;
  min-height: 100vh;
  width: 100%;
  z-index: auto;
}

#landing-page * {
  box-sizing: border-box;
}

#landing-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ── NAV ─────────────────────────────────────────────────── */
.land-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(10, 8, 8, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.land-nav.scrolled {
  background: rgba(10, 8, 8, 0.92);
  border-bottom-color: var(--line);
}

.land-nav-logo {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--cream);
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}

.land-nav-logo .dot {
  color: var(--burgundy);
  font-size: 38px;
  line-height: 1;
  margin-left: 1px;
}

.land-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.land-nav-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-sec);
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}

.land-nav-link:hover {
  color: var(--cream);
}

.land-nav-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
  background: var(--cream);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s;
}

.land-nav-cta:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

@media (max-width: 768px) {
  .land-nav {
    padding: 16px 20px;
  }
  .land-nav-links > .land-nav-link {
    display: none;
  }
}

/* ── HERO ────────────────────────────────────────────────── */
.l2-hero {
  min-height: 100vh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-left: 60px;
  padding-right: 0;
  position: relative;
}

.l2-hero-left {
  padding: 80px 0;
  max-width: 640px;
}

.l2-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.9);
  margin-bottom: 40px;
}

.l2-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--burgundy);
}

.l2-hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(54px, 8.5vw, 120px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  color: var(--cream);
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

.l2-hero-h1 em {
  color: var(--burgundy);
  font-style: normal;
}

.l2-hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-sec);
  max-width: 440px;
  margin: 0 0 48px;
}

.l2-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.l2-hero-cta:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.l2-hero-cta .arrow {
  font-size: 14px;
  transition: transform 0.2s;
}

.l2-hero-cta:hover .arrow {
  transform: translateX(4px);
}

.l2-hero-right {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.l2-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
}

.l2-hero-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.7);
  background: rgba(10, 8, 8, 0.5);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .l2-hero {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
    gap: 32px;
  }
  .l2-hero-right {
    height: 60vh;
    margin: 0 -24px;
  }
}

/* ── 02 THESIS ───────────────────────────────────────────── */
.l2-thesis {
  min-height: 100vh;
  background: var(--burgundy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
  text-align: center;
  position: relative;
}

.l2-thesis-inner {
  max-width: 1200px;
}

.l2-thesis-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #f5efe4;
  opacity: 0.95;
}

.l2-thesis-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 8vw, 110px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
}

.l2-thesis-h2 em {
  font-style: normal;
  color: #f5efe4;
  opacity: 0.45;
}

/* ── 03 GALLERY CINEMA STRIP ─────────────────────────────── */
.l2-gallery {
  padding: 80px 0;
  background: var(--ink);
  overflow: hidden;
}

.l2-gallery-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px 48px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
}

.l2-gallery-label::before,
.l2-gallery-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(245, 239, 228, 0.25);
}

.l2-gallery-label span {
  padding: 0 24px;
  color: var(--cream);
}

.l2-gallery-track {
  display: flex;
  gap: 20px;
  animation: marquee 55s linear infinite;
  width: max-content;
}

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

.l2-gallery-item {
  width: 380px;
  height: 560px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.l2-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.l2-gallery-item:hover img {
  transform: scale(1.04);
}

.l2-gallery-cap {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(10, 8, 8, 0.65);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 4px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .l2-gallery-item { width: 260px; height: 380px; }
  .l2-gallery-label { padding: 0 20px 32px; }
}

/* ── 04 TWO SIDES ────────────────────────────────────────── */
.l2-twosides {
  min-height: 100vh;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.l2-twosides-col {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.l2-twosides-col.backbone {
  background: var(--ink);
  color: var(--cream);
  border-right: 1px solid var(--line);
}

.l2-twosides-col.statement {
  background: var(--burgundy);
  color: var(--cream);
}

.l2-twosides-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 28px;
}

.l2-twosides-h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
}

.l2-twosides-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.l2-twosides-list li {
  padding: 16px 0;
  border-top: 1px solid currentColor;
  border-top-color: rgba(245, 239, 228, 0.15);
  font-size: 17px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.l2-twosides-list li:last-child {
  border-bottom: 1px solid rgba(245, 239, 228, 0.15);
}

.l2-twosides-list li::before {
  content: counter(tsli, decimal-leading-zero);
  counter-increment: tsli;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  opacity: 0.55;
  flex-shrink: 0;
}

.l2-twosides-list {
  counter-reset: tsli;
}

.l2-twosides-bottom {
  text-align: center;
  padding: 60px 20px;
  background: var(--ink);
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
}

.l2-twosides-bottom-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

.l2-twosides-bottom-text em {
  color: var(--burgundy);
  font-style: normal;
}

@media (max-width: 900px) {
  .l2-twosides {
    grid-template-columns: 1fr;
  }
  .l2-twosides-col { padding: 80px 30px; }
}

/* ── 05 THREE STUDIOS — typographic cards ────────────────── */
.l2-studios {
  padding: 140px 40px;
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.l2-studios-head {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 72px;
}

.l2-studios-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.85);
  font-weight: 600;
  margin-bottom: 20px;
}

.l2-studios-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--cream);
}

.l2-studios-h2 em {
  font-style: normal;
  color: var(--burgundy);
}

.l2-studios-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.l2-studio-card {
  padding: 56px 48px 56px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.25s;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.l2-studio-card:last-child { border-right: none; }

.l2-studio-card.jewelry { background: var(--ink); }
.l2-studio-card.fashion { background: var(--burgundy); }
.l2-studio-card.studio { background: var(--ink); }

.l2-studio-card.jewelry:hover { background: #141010; }
.l2-studio-card.fashion:hover { background: #a01e1e; }
.l2-studio-card.studio:hover { background: #141010; }

.l2-studio-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 54px;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: 0.9;
}

/* Fashion card is burgundy bg — make num cream for contrast */
.l2-studio-card.fashion .l2-studio-card-num {
  color: var(--cream);
  opacity: 0.95;
}

/* Fashion card arrows + list borders */
.l2-studio-card.fashion .l2-studio-card-list li::before {
  color: var(--cream);
  opacity: 0.85;
}

.l2-studio-card.fashion .l2-studio-card-list li {
  border-bottom-color: rgba(245, 239, 228, 0.2);
}

.l2-studio-card.fashion .l2-studio-card-list {
  border-top-color: rgba(245, 239, 228, 0.2);
}

.l2-studio-card-h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0 0 20px;
}

.l2-studio-card-sub {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 239, 228, 0.85);
  margin: 0 0 36px;
  flex-grow: 0;
}

.l2-studio-card-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  border-top: 1px solid rgba(245, 239, 228, 0.12);
}

.l2-studio-card-list li {
  padding: 14px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.95);
  border-bottom: 1px solid rgba(245, 239, 228, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.15s, padding-left 0.2s;
  cursor: default;
}

.l2-studio-card-list li::before {
  content: '→';
  color: var(--burgundy);
  opacity: 0.9;
  transition: opacity 0.15s, transform 0.2s;
}

.l2-studio-card-list li:hover {
  color: var(--cream);
  padding-left: 4px;
}

.l2-studio-card-list li:hover::before {
  opacity: 1;
  transform: translateX(2px);
}

.l2-studio-card-list li:last-child { border-bottom: none; }

@media (max-width: 1000px) {
  .l2-studios-grid { grid-template-columns: 1fr; }
  .l2-studio-card {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: auto;
  }
  .l2-studio-card:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .l2-studios { padding: 80px 20px; }
  .l2-studio-card { padding: 40px 28px; }
}

/* ── 06 PROCESS — three moves ────────────────────────────── */
.l2-process {
  padding: 140px 40px;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.l2-process-head {
  max-width: 1200px;
  margin: 0 auto 72px;
  text-align: center;
}

.l2-process-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.85);
  font-weight: 600;
  margin-bottom: 20px;
}

.l2-process-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--cream);
}

.l2-process-h2 em {
  color: var(--burgundy);
  font-style: normal;
}

.l2-process-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.l2-process-step {
  display: flex;
  flex-direction: column;
}

.l2-process-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 32px;
  background: var(--muted);
}

.l2-process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.l2-process-step:hover .l2-process-img img {
  transform: scale(1.04);
}

.l2-process-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--burgundy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.l2-process-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.l2-process-title {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: var(--cream);
}

.l2-process-body {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-sec);
  margin: 0;
  max-width: 360px;
}

@media (max-width: 1000px) {
  .l2-process-grid {
    grid-template-columns: 1fr;
    gap: 64px;
    max-width: 540px;
  }
  .l2-process-img { aspect-ratio: 16 / 10; }
}

@media (max-width: 600px) {
  .l2-process { padding: 80px 24px; }
}

/* ── 06 CRAFT (legacy, hidden if still present) ─────────── */
.l2-craft {
  padding: 140px 40px;
  background: var(--ink);
}

.l2-craft-head {
  max-width: 1200px;
  margin: 0 auto 64px;
  text-align: center;
}

.l2-craft-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.85);
  font-weight: 600;
  margin-bottom: 20px;
}

.l2-craft-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--cream);
}

.l2-craft-h2 em {
  color: var(--burgundy);
  font-style: normal;
}

.l2-craft-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.l2-tile {
  aspect-ratio: 1 / 1;
  background-color: var(--muted);
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}

.l2-tile:hover {
  transform: translateY(-4px);
}

.l2-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s;
  z-index: 0;
}

.l2-tile:hover::before {
  transform: scale(1.06);
}

.l2-tile-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 3;
}

.l2-tile-name {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.l2-tile-use {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.6);
  line-height: 1.4;
}

.l2-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 8, 0.85) 0%, rgba(10, 8, 8, 0) 50%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1000px) {
  .l2-craft-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .l2-craft-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .l2-craft { padding: 80px 20px; }
}

/* ── VIDEO HERO (real MP4, Canva-generated) ──────────────── */
.l2-video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--ink);
}

.l2-video-hero-mp4 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.l2-video-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,8,8,0.35) 0%, rgba(10,8,8,0) 40%, rgba(10,8,8,0.6) 100%);
  z-index: 1;
  pointer-events: none;
}

.l2-video-hero-cta {
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bannerCtaFade 1s ease-out 0.8s both;
}

@media (max-width: 700px) {
  .l2-video-hero { min-height: 560px; }
  .l2-video-hero-cta { bottom: 40px; }
}

/* ── BANNER — cinematic auto-cycle strip ─────────────────── */
.l2-banner {
  position: relative;
  height: 55vh;
  min-height: 440px;
  overflow: hidden;
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Hero variant — full height, no top border */
.l2-banner-hero {
  height: 100vh;
  min-height: 640px;
  border-top: none;
  margin-top: 0;
}

.l2-banner-hero .l2-banner-text {
  font-size: clamp(48px, 9vw, 140px);
}

.l2-banner-hero .l2-banner-img {
  animation-duration: 14s;
}

.l2-banner-hero .l2-banner-frame,
.l2-banner-hero .l2-banner-tick::after {
  animation-duration: 14s;
}

.l2-banner-hero .l2-banner-frame-2,
.l2-banner-hero .l2-banner-img-2,
.l2-banner-hero .l2-banner-tick-2::after { animation-delay: 3.5s; }

.l2-banner-hero .l2-banner-frame-3,
.l2-banner-hero .l2-banner-img-3,
.l2-banner-hero .l2-banner-tick-3::after { animation-delay: 7s; }

.l2-banner-hero .l2-banner-frame-4,
.l2-banner-hero .l2-banner-img-4,
.l2-banner-hero .l2-banner-tick-4::after { animation-delay: 10.5s; }

.l2-banner-cta {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bannerCtaFade 1s ease-out 1.2s both;
}

@keyframes bannerCtaFade {
  from { opacity: 0; transform: translate(-50%, 16px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 700px) {
  .l2-banner-hero { min-height: 560px; }
  .l2-banner-cta { bottom: 80px; }
}

.l2-banner-bg {
  position: absolute;
  inset: 0;
}

.l2-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  animation: bannerImgCycle 12s infinite;
}

.l2-banner-img-1 { animation-delay: 0s; }
.l2-banner-img-2 { animation-delay: 3s; }
.l2-banner-img-3 { animation-delay: 6s; }
.l2-banner-img-4 { animation-delay: 9s; }

@keyframes bannerImgCycle {
  0%   { opacity: 0; transform: scale(1.08); }
  3%   { opacity: 0.45; transform: scale(1.05); }
  22%  { opacity: 0.45; transform: scale(1.02); }
  25%  { opacity: 0; transform: scale(1.0); }
  100% { opacity: 0; transform: scale(1.08); }
}

.l2-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,8,8,0.85) 0%, rgba(10,8,8,0.55) 50%, rgba(10,8,8,0.85) 100%);
  z-index: 1;
}

.l2-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.l2-banner-frame {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: bannerFrameCycle 12s infinite;
}

.l2-banner-frame-1 { animation-delay: 0s; }
.l2-banner-frame-2 { animation-delay: 3s; }
.l2-banner-frame-3 { animation-delay: 6s; }
.l2-banner-frame-4 { animation-delay: 9s; }

@keyframes bannerFrameCycle {
  0%   { opacity: 0; transform: translateY(20px); }
  3%   { opacity: 1; transform: translateY(0); }
  22%  { opacity: 1; transform: translateY(0); }
  25%  { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 0; transform: translateY(-20px); }
}

.l2-banner-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 24px;
}

.l2-banner-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--cream);
  max-width: 1100px;
  margin: 0 auto;
}

.l2-banner-text em {
  font-style: normal;
  color: var(--burgundy);
}

.l2-banner-ticks {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.l2-banner-tick {
  width: 40px;
  height: 2px;
  background: rgba(245, 239, 228, 0.2);
  overflow: hidden;
  position: relative;
}

.l2-banner-tick::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left;
  animation: bannerTickCycle 12s infinite;
}

.l2-banner-tick-1::after { animation-delay: 0s; }
.l2-banner-tick-2::after { animation-delay: 3s; }
.l2-banner-tick-3::after { animation-delay: 6s; }
.l2-banner-tick-4::after { animation-delay: 9s; }

@keyframes bannerTickCycle {
  0%   { transform: scaleX(0); }
  3%   { transform: scaleX(0); }
  22%  { transform: scaleX(1); }
  25%  { transform: scaleX(1); }
  26%  { transform: scaleX(0); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

@media (prefers-reduced-motion: reduce) {
  .l2-banner-img,
  .l2-banner-frame,
  .l2-banner-tick::after {
    animation: none;
  }
  .l2-banner-img-1 { opacity: 0.3; }
  .l2-banner-frame-1 { opacity: 1; transform: translateY(0); }
}

@media (max-width: 700px) {
  .l2-banner { height: 50vh; min-height: 380px; }
  .l2-banner-text { font-size: 36px; }
}

/* ── 07 CAPACITY (formerly Numbers) ──────────────────────── */
.l2-numbers {
  padding: 140px 40px;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.l2-numbers-head {
  max-width: 1100px;
  margin: 0 auto 64px;
  text-align: center;
}

.l2-numbers-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.85);
  font-weight: 600;
  margin-bottom: 20px;
}

.l2-numbers-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--cream);
}

.l2-numbers-h2 em {
  color: var(--burgundy);
  font-style: normal;
}

.l2-numbers-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.l2-number {
  padding: 20px 0;
}

.l2-number-val {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}

.l2-number-val em {
  color: var(--burgundy);
  font-style: normal;
}

.l2-number-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.8);
  margin-top: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .l2-numbers-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .l2-numbers { padding: 80px 28px; }
}

/* ── 08 MANIFESTO ───────────────────────────────────────── */
.l2-manifesto {
  padding: 160px 40px;
  background: var(--ink);
  display: flex;
  justify-content: center;
}

.l2-manifesto-col {
  max-width: 640px;
  column-width: 560px;
}

.l2-manifesto-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.9);
  margin-bottom: 32px;
  text-align: center;
}

.l2-manifesto-body {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  line-height: 1.65;
  color: var(--cream);
  text-align: justify;
  hyphens: auto;
}

.l2-manifesto-body::first-letter {
  font-size: 92px;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  padding: 8px 14px 0 0;
  color: var(--burgundy);
  font-family: 'Outfit', sans-serif;
}

.l2-manifesto-body em {
  color: var(--burgundy);
  font-style: italic;
}

/* ── 09 CONTACT (redesigned container, same form IDs) ───── */
.l2-contact {
  padding: 140px 40px 80px;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.l2-contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

.l2-contact-left h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  color: var(--cream);
}

.l2-contact-left p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(245, 239, 228, 0.85);
  max-width: 420px;
  margin: 0 0 40px;
}

.l2-contact-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 48px;
}

.l2-contact-meta a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-decoration: none;
  opacity: 1;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 16px;
}

.l2-contact-meta a:hover {
  color: var(--burgundy);
}

.l2-contact-meta .l2-meta-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.6);
  width: 90px;
  display: inline-block;
}

.l2-contact-right .land-contact-form {
  background: transparent;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.l2-contact-right .land-form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.l2-contact-right .land-form-group {
  display: flex;
  flex-direction: column;
}

.l2-contact-right .land-form-group label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.85);
  margin-bottom: 10px;
}

.l2-contact-right .land-form-group input,
.l2-contact-right .land-form-group textarea,
.l2-contact-right .land-form-group select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 239, 228, 0.25);
  padding: 10px 0;
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.l2-contact-right .land-form-group input::placeholder,
.l2-contact-right .land-form-group textarea::placeholder {
  color: rgba(245, 239, 228, 0.35);
}

.l2-contact-right .land-form-group input:focus,
.l2-contact-right .land-form-group textarea:focus,
.l2-contact-right .land-form-group select:focus {
  border-bottom-color: var(--burgundy);
}

.l2-contact-right .land-form-group textarea {
  resize: none;
  min-height: 60px;
}

.l2-contact-right .land-contact-submit {
  align-self: flex-start;
  width: auto;
  max-width: fit-content;
  padding: 16px 32px;
  background: var(--cream);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.l2-contact-right .land-contact-submit:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.l2-contact-right .land-contact-success {
  display: none;
  align-items: center;
  gap: 10px;
  color: #6fca88;
  font-size: 14px;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .l2-contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .l2-contact-right .land-form-2col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Neutralize old login.css styles that might leak through */
.l2-login .login-bg-grid,
.l2-login .login-accent-orb { display: none !important; }

/* Guarantee login section content is always fully visible —
   override any reveal-up/reveal-fade or animation-based opacity:0 state */
.l2-login .l2-login-inner,
.l2-login .l2-login-left,
.l2-login .l2-login-right,
.l2-login .l2-login-card,
.l2-login .l2-login-h2,
.l2-login .l2-login-sub,
.l2-login .l2-login-quote,
.l2-login .l2-login-btn {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ── LOGIN — redesigned to match landing ─────────────────── */
.l2-login {
  min-height: 100vh;
  background: var(--ink);
  padding: 140px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.l2-login-inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.l2-login-left {
  max-width: 540px;
}

.l2-login-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-sec);
  margin-bottom: 28px;
}

.l2-login-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  color: var(--cream);
}

.l2-login-sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(245, 239, 228, 0.85);
  margin: 0 0 48px;
  max-width: 420px;
}

.l2-login-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 460px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.l2-login-info-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.l2-login-info-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.7);
}

.l2-login-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.l2-login-info-list li {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245, 239, 228, 0.9);
  padding-left: 16px;
  position: relative;
}

.l2-login-info-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--burgundy);
}

.l2-login-quote {
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245, 239, 228, 0.75);
  margin: 40px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
  max-width: 440px;
}

.l2-login-sub a {
  color: var(--burgundy);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.15s;
}

.l2-login-sub a:hover { opacity: 0.75; }

.l2-login-right {
  display: flex;
  justify-content: flex-end;
}

.l2-login-card {
  background: #141010;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 48px 44px;
  width: 100%;
  max-width: 420px;
  text-align: left;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.l2-login-card-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}

.l2-login-card-logo span {
  color: var(--burgundy);
  font-size: 32px;
  line-height: 1;
  margin-left: 1px;
}

.l2-login-card-lead {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(245, 239, 228, 0.7);
  margin: 0 0 32px;
}

.l2-login-btn {
  width: 100%;
  padding: 16px 20px;
  background: var(--cream);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.2s, background 0.2s;
}

.l2-login-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.l2-login-card-foot {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 28px 0 0;
  text-align: center;
}

@media (max-width: 900px) {
  .l2-login { padding: 80px 24px; }
  .l2-login-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .l2-login-right { justify-content: center; }
}

/* ── FOOTER ──────────────────────────────────────────────── */
.l2-foot {
  padding: 40px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--ink);
}

@media (max-width: 600px) {
  .l2-foot { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-fade {
  opacity: 0;
  transition: opacity 1.2s ease-out;
}

.reveal-fade.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .l2-gallery-track { animation: none; }
  .reveal-up, .reveal-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
