/* ════════════════════════════════════════
   ë — Creative Cultural Ecosystem
   Red + Black theme with MONOGRID scroll logic
   ════════════════════════════════════════ */

:root {
  --bg: #050505;
  --fg: #fff;
  --red: #ff3b30;
  --red-dim: rgba(255,59,48,.35);
  --red-glow: rgba(255,59,48,.15);
  --muted: rgba(255,255,255,.45);
  --dim: rgba(255,255,255,.18);
  --border: rgba(255,255,255,.12);
  --mono: 'Space Mono', monospace;
  --sans: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(.77,0,.175,1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── CURTAIN REVEAL ── */
#v-curtain {
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none;
  display: flex; flex-direction: column;
}
.v-bar {
  flex: 1;
  background: var(--bg);
  will-change: transform;
  transform: translateX(0);
}
.v-bar.revealed {
  transition: transform 0.6s var(--ease-out);
}

/* ── LOADER — sleek ë brand ── */
.loader {
  position: fixed; inset: 0; z-index: 8000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s, visibility .8s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner {
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
}
.loader-ring {
  position: relative;
  width: 80px; height: 80px;
  animation: loader-spin 2.5s linear infinite;
}
@keyframes loader-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.loader-dot {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
  top: 50%; left: 50%;
  margin: -2px 0 0 -2px;
  animation: loader-dot-pulse 1.5s ease-in-out infinite;
}
.loader-dot:nth-child(1) { transform: rotate(0deg)   translateX(38px); animation-delay: 0s; }
.loader-dot:nth-child(2) { transform: rotate(45deg)  translateX(38px); animation-delay: .12s; opacity: .8; }
.loader-dot:nth-child(3) { transform: rotate(90deg)  translateX(38px); animation-delay: .24s; opacity: .6; }
.loader-dot:nth-child(4) { transform: rotate(135deg) translateX(38px); animation-delay: .36s; opacity: .4; }
.loader-dot:nth-child(5) { transform: rotate(180deg) translateX(38px); animation-delay: .48s; opacity: .3; }
.loader-dot:nth-child(6) { transform: rotate(225deg) translateX(38px); animation-delay: .60s; opacity: .4; }
.loader-dot:nth-child(7) { transform: rotate(270deg) translateX(38px); animation-delay: .72s; opacity: .6; }
.loader-dot:nth-child(8) { transform: rotate(315deg) translateX(38px); animation-delay: .84s; opacity: .8; }
@keyframes loader-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.3); opacity: .2; }
}
.loader-word {
  font-family: var(--sans);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: #fff;
  animation: word-breathe 2s ease-in-out infinite;
}
@keyframes word-breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(0.95); }
}
.loader-sub {
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--dim);
}

/* ── NOISE OVERLAY ── */
.v-noise {
  position: fixed; inset: 0; z-index: 999;
  pointer-events: none; opacity: .055;
  mix-blend-mode: overlay;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 128px 128px;
}

/* ── LIGHT DRIFT ── */
.v-light {
  position: fixed; inset: -18%; z-index: 998;
  pointer-events: none;
  background:
    linear-gradient(104deg, transparent 22%, rgba(255,255,255,.06) 46%, rgba(255,59,48,.04) 50%, transparent 70%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.02) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
  opacity: .15;
  transform: translateX(-45%) skewX(-8deg);
  animation: light-drift 20s ease-in-out infinite alternate;
}
@keyframes light-drift {
  0%   { transform: translateX(-54%) skewX(-8deg); }
  100% { transform: translateX(38%) skewX(-8deg); }
}

/* ── PROGRESS RAILS ── */
.progress-rails {
  position: fixed; top: 0; left: 0; width: 3px; height: 0;
  background: var(--red);
  z-index: 997; transition: height .1s linear;
}

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(16px, 3vw, 40px);
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }

.site-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--fg);
}
.logo-img {
  height: 36px; width: auto;
  filter: brightness(0) invert(1);
  transition: filter .3s;
}
.site-logo:hover .logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px var(--red-dim));
}

.header-actions {
  display: flex; align-items: center; gap: 8px;
}
.outline-btn {
  display: inline-flex; align-items: center;
  height: 36px; padding: 0 16px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: border-color .25s, color .25s, background .25s;
}
.outline-btn:hover {
  border-color: var(--red-dim);
  color: #fff;
  background: rgba(255,59,48,.08);
}

/* ── RADIO DECK ── */
.radio-deck {
  position: fixed; bottom: 20px; left: 20px; z-index: 101;
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.85);
  border: 1px solid var(--border);
  padding: 8px 14px;
  cursor: pointer;
  font-family: var(--mono); font-size: .56rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  transition: border-color .3s, color .3s;
  backdrop-filter: blur(6px);
}
.radio-deck:hover {
  border-color: var(--red-dim);
  color: #fff;
}
.radio-deck.playing {
  border-color: var(--red);
  color: var(--red);
}
.radio-deck i {
  display: block; width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: radio-pulse 1.5s ease-in-out infinite;
}
.radio-deck.paused i {
  animation: none;
  background: var(--dim);
}
@keyframes radio-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: .4; }
}

/* ── MENU PANEL ── */
.menu-panel {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
  padding: 80px clamp(20px, 4vw, 60px) 40px;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity .35s, visibility .35s, transform .35s var(--ease-out);
}
.menu-panel.open {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.menu-col {
  display: flex; flex-direction: column; gap: 24px;
}
.menu-kicker {
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--dim);
}
.menu-nav {
  display: flex; flex-direction: column; gap: 10px;
}
.menu-nav a {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 300;
  color: var(--fg);
  text-decoration: none;
  opacity: .7;
  transition: opacity .2s, color .2s;
}
.menu-nav a:hover { opacity: 1; color: var(--red); }
.menu-list {
  display: flex; flex-direction: column; gap: 8px;
}
.menu-list a {
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.menu-list a:hover { color: var(--red); }

.newsletter h2 {
  font-family: var(--sans);
  font-size: clamp(.8rem, 1.2vw, .95rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 28ch; line-height: 1.5;
}
.newsletter-row {
  display: flex; gap: 8px; margin-top: 12px;
}
.newsletter-row input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 12px;
  color: var(--fg);
  font-family: var(--mono); font-size: .62rem;
  outline: none;
  transition: border-color .25s;
}
.newsletter-row input:focus { border-color: var(--red-dim); }
.newsletter-row input::placeholder { color: var(--dim); }

.showreel {
  margin-top: auto;
  font-family: var(--mono); font-size: .56rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--dim);
  padding: 40px 0;
}

@media (max-width: 760px) {
  .menu-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    overflow-y: auto;
  }
  .menu-col { gap: 16px; }
}

/* ════════ HERO ════════ */
.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
/* ── LIQUID MOUSE CANVAS ── */
#liquid-mouse-canvas {
  position: fixed; inset: 0; z-index: 3 !important;
  pointer-events: none;
}

/* ── THREE.JS FIELD ── */
#field, #three-field {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
}

.hero-content {
  position: relative; z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; gap: 32px;
  padding: clamp(40px, 10vh, 120px) clamp(20px, 4vw, 60px);
}

/* Floating ë logo */
.hero-logo-wrap {
  position: relative;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  25% { transform: translateY(-12px) rotateX(5deg) rotateY(-5deg); }
  50% { transform: translateY(-6px) rotateX(-3deg) rotateY(8deg); }
  75% { transform: translateY(-18px) rotateX(4deg) rotateY(-4deg); }
}
.hero-logo {
  width: clamp(120px, 20vw, 280px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.hero-eyes {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; gap: 8px;
  pointer-events: none;
}
.eye {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: eye-blink 4s ease-in-out infinite;
}
.eye:nth-child(2) { animation-delay: .2s; }
@keyframes eye-blink {
  0%, 45%, 55%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.1); opacity: .5; }
}

/* ── HERO MARK (rotating dots circle) ── */
.hero-mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 220px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: mark-in 1s ease 1.5s forwards;
}
@keyframes mark-in {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.hero-mark-ring {
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  animation: ring-rotate 20s linear infinite;
}
@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-mark-dots {
  position: absolute; inset: 0;
  animation: dots-rotate 15s linear infinite reverse;
}
.hero-mark-dots i {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--red);
  border-radius: 50%;
  top: 50%; left: 50%;
  margin: -1.5px 0 0 -1.5px;
}
.hero-mark-dots i:nth-child(1) { transform: rotate(0deg)   translateX(110px); }
.hero-mark-dots i:nth-child(2) { transform: rotate(45deg)  translateX(110px); opacity: .6; }
.hero-mark-dots i:nth-child(3) { transform: rotate(90deg)  translateX(110px); }
.hero-mark-dots i:nth-child(4) { transform: rotate(135deg) translateX(110px); opacity: .4; }
.hero-mark-dots i:nth-child(5) { transform: rotate(180deg) translateX(110px); }
.hero-mark-dots i:nth-child(6) { transform: rotate(225deg) translateX(110px); opacity: .6; }
.hero-mark-dots i:nth-child(7) { transform: rotate(270deg) translateX(110px); }
.hero-mark-dots i:nth-child(8) { transform: rotate(315deg) translateX(110px); opacity: .4; }
@keyframes dots-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── HERO PHRASES WITH COORDINATES ── */
.hero-phrases {
  position: absolute;
  inset: 0; z-index: 1;
  pointer-events: none;
}
.hero-phrases span {
  position: absolute;
  font-family: var(--mono); font-size: .48rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--dim);
  opacity: 0;
  animation: phrase-in 1s ease forwards;
}
/* Position by data-x/data-y percentages */
.hero-phrases span[data-x="12"][data-y="18"] { top: 18%; left: 12%; animation-delay: 1.2s; }
.hero-phrases span[data-x="78"][data-y="22"] { top: 22%; left: 78%; animation-delay: 1.5s; }
.hero-phrases span[data-x="8"][data-y="72"]  { top: 72%; left: 8%;  animation-delay: 1.8s; }
.hero-phrases span[data-x="82"][data-y="68"] { top: 68%; left: 82%; animation-delay: 2.1s; font-size: .4rem; }

/* Coordinate label after each phrase */
.hero-phrases span::after {
  content: attr(data-x) '° ' attr(data-y) '°';
  display: block;
  font-size: .32rem;
  letter-spacing: .1em;
  color: var(--red-dim);
  margin-top: 4px;
  opacity: .5;
}
@keyframes phrase-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: .5; transform: translateY(0); }
}

/* Hero title */
.hero-title {
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  animation: title-in 1.2s var(--ease-out) 2.4s forwards;
}
.hero-title h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: clamp(.85rem, 1.1vw, 1.05rem);
  font-weight: 300;
  opacity: .5;
  max-width: 46ch;
  line-height: 1.65;
  margin: 0 auto;
}
@keyframes title-in {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: clamp(40px, 8vh, 100px);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: .52rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  opacity: 0;
  animation: cue-in 1s ease 3s forwards;
}
.scroll-cue::before {
  content: '';
  width: 1px; height: 32px;
  background: var(--dim);
  display: block;
}
@keyframes cue-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ════════ PILLARS ════════ */
.pillars-section {
  padding: clamp(60px, 10vh, 120px) clamp(20px, 4vw, 60px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  margin-top: 32px;
}
.pillar-card {
  position: relative;
  min-height: 50vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  text-decoration: none;
  padding: clamp(24px, 4vw, 40px);
  cursor: pointer;
}
.pillar-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--bg-img) center/cover no-repeat;
  filter: grayscale(40%) contrast(1.1);
  transition: filter .5s, transform .6s var(--ease-out);
}
.pillar-card:hover .pillar-bg {
  filter: grayscale(0%) contrast(1.15);
  transform: scale(1.06);
}
.pillar-dim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.7) 100%);
  transition: background .4s;
}
.pillar-card:hover .pillar-dim {
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.55) 100%);
}
/* Halftone on hover */
.pillar-card::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
  background-image: radial-gradient(circle, var(--red-dim) 1px, transparent 1px);
  background-size: 8px 8px;
}
.pillar-card:hover::after { opacity: .3; }

.pillar-content {
  position: relative; z-index: 3;
}
.pillar-tag {
  display: block;
  font-family: var(--mono); font-size: .46rem;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.pillar-card h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 10px;
  text-transform: lowercase;
  color: #fff;
}
.pillar-card p {
  font-size: .72rem;
  font-weight: 300;
  opacity: .5;
  line-height: 1.55;
  max-width: 22ch;
  color: rgba(255,255,255,.7);
}

@media (max-width: 960px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .pillar-card { min-height: 40vh; }
}
@media (max-width: 640px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-card { min-height: 35vh; }
}

/* ════════ MISSION STATEMENT (ECOSYSTEM) ════════ */
.ecosystem-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 12vh, 140px) clamp(20px, 4vw, 60px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: #000;
}
.eco-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw; height: 90vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.ecosystem-section.in-view .eco-glow {
  opacity: 1;
}
.eco-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 1000px;
}
.eco-line {
  font-size: clamp(2rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s ease, transform .6s var(--ease-out);
}
.eco-line.visible {
  opacity: 1;
  transform: translateY(0);
}
.eco-line:nth-child(1) { transition-delay: 0s; }
.eco-line:nth-child(2) { transition-delay: .1s; }
.eco-line:nth-child(3) { transition-delay: .2s; }
.eco-accent {
  color: var(--red);
  text-shadow: 0 0 60px var(--red-glow);
}
.eco-cta {
  margin-top: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease .5s, transform .6s var(--ease-out) .5s;
}
.ecosystem-section.in-view .eco-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ════════ HERO HEADER (logo + coords) ════════ */
.hero-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(14px, 2.2vw, 28px) clamp(18px, 3vw, 40px);
  z-index: 10;
  pointer-events: none;
  mix-blend-mode: difference;
}
.hero-header > * { pointer-events: auto; }
.hero-header .outline-btn {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.hero-header .outline-btn:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}
.header-logo {
  font-family: var(--sans);
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.header-coords {
  font-family: var(--mono);
  font-size: clamp(0.55rem, 0.75vw, 0.72rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ════════ TWO-DOT CURSOR ════════ */
.cursor-eye {
  position: fixed;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, opacity 0.2s;
  mix-blend-mode: difference;
}
.cursor-eye-blink {
  position: fixed;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(1);
  animation: cursorBlink 2.4s ease-in-out infinite;
  mix-blend-mode: difference;
}
@keyframes cursorBlink {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(0.2); opacity: 0.3; }
}

/* ════════ HERO CANVAS CONTAINER ════════ */
#hero-canvas-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: auto;
}
#hero-canvas-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* ════════ STORE REVEAL (green accent) ════════ */
.store-reveal {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 12vh, 140px) clamp(20px, 4vw, 60px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
  --accent-store: #5cb870;
}
.store-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw; height: 70vw;
  max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, rgba(92,184,112,.08) 0%, transparent 60%);
  pointer-events: none;
}
.store-label {
  display: block;
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent-store);
  margin-bottom: 20px;
}
.store-reveal {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 12vh, 140px) clamp(20px, 4vw, 60px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.store-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw; height: 70vw;
  max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 60%);
  pointer-events: none;
}
.store-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 800px;
}
.store-label {
  display: block;
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.store-reveal h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.store-desc {
  font-size: .85rem;
  font-weight: 300;
  opacity: .5;
  max-width: 44ch;
  line-height: 1.65;
  margin: 0 auto 40px;
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 40px;
}
.store-item {
  position: relative; aspect-ratio: 1;
  background: #080808; overflow: hidden;
}
.store-item img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .65;
  transition: opacity .5s, transform .6s var(--ease-out);
}
.store-item:hover img { opacity: .95; transform: scale(1.04); }
.store-item span {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  font-family: var(--mono); font-size: .48rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
@media (max-width: 640px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════ LABELS ════════ */
.labels-section {
  padding: clamp(60px, 10vh, 120px) clamp(20px, 4vw, 60px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.labels-content {
  max-width: 1200px;
  margin: 0 auto;
}
.labels-label {
  display: block;
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 32px;
}
.labels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.label-card {
  position: relative;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 40px);
  min-height: 200px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color .3s, background .3s;
}
.label-card:hover {
  border-color: var(--red-dim);
  background: rgba(255,59,48,.04);
}
.label-name {
  font-family: var(--mono);
  font-size: clamp(1rem, 2vw, 1.6rem);
  letter-spacing: .06em; text-transform: uppercase;
  color: #fff;
  transition: color .3s;
}
.label-card:hover .label-name { color: var(--red); }
.label-tag {
  font-family: var(--mono); font-size: .48rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--dim);
  margin-top: 16px;
}
@media (max-width: 760px) {
  .labels-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════ FEATURED WORKS ════════ */
.featured {
  padding: clamp(40px, 8vh, 80px) 0;
}
.section-label {
  font-family: var(--mono); font-size: .52rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--dim);
  padding: 0 clamp(20px, 4vw, 60px);
  margin-bottom: 32px;
}

/* Works panels */
.works-panels {
  display: flex; flex-direction: column;
  gap: 3px;
}
.wp-panel {
  position: relative;
  min-height: 70vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: min-height .55s var(--ease-out);
}
.wp-panel.wp-open {
  min-height: auto;
  justify-content: flex-start;
  cursor: default;
}

.wp-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--bg-img) center/cover no-repeat;
  filter: grayscale(30%) contrast(1.1);
}
.wp-dim {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,.55);
  transition: background .4s;
}
.wp-panel.wp-open .wp-dim {
  background: rgba(0,0,0,.82);
}
.wp-panel:not(.wp-open):hover .wp-dim {
  background: rgba(0,0,0,.42);
}

/* Halftone pattern overlay */
.wp-panel::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
  background-image: radial-gradient(circle, var(--red-dim) 1px, transparent 1px);
  background-size: 8px 8px;
}
.wp-panel:hover::after {
  opacity: .3;
}

.wp-head {
  position: relative; z-index: 3;
  padding: clamp(32px, 6vw, 80px);
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px;
}
.wp-tag {
  display: block;
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.wp-panel h2 {
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: .95;
  margin: 0 0 16px;
}
.wp-desc {
  font-size: .82rem;
  opacity: .45;
  max-width: 42ch;
  line-height: 1.65;
  font-weight: 300;
}

.wp-expand-btn {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 10px;
  background: none; border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--mono); font-size: .56rem;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 10px 16px;
  cursor: pointer;
  transition: border-color .25s, color .25s, background .25s;
  align-self: flex-end;
}
.wp-expand-btn:hover {
  border-color: var(--red-dim);
  color: #fff;
  background: rgba(255,59,48,.08);
}
.wp-toggle {
  display: inline-block;
  font-size: .9rem;
  line-height: 1;
  transition: transform .3s;
}
.wp-panel.wp-open .wp-toggle {
  transform: rotate(45deg);
}

/* Expandable project grid */
.wp-projects {
  position: relative; z-index: 3;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition:
    grid-template-rows .65s var(--ease-out),
    height 0s .65s;
}
.wp-panel.wp-open .wp-projects {
  grid-template-rows: 1fr;
  height: auto;
  transition:
    grid-template-rows .65s var(--ease-out),
    height 0s 0s;
}
.wp-projects-inner {
  overflow: hidden;
  min-height: 0;
  padding-bottom: 3px;
}

/* Grid layouts */
.wp-grid {
  display: grid; gap: 3px;
  padding: 0 clamp(20px, 4vw, 60px) clamp(32px, 6vw, 80px);
}
.wp-grid--a {
  grid-template-columns: 2fr 1fr 1fr;
}
.wp-grid--a .wp-thumb:first-child { grid-row: span 2; }
.wp-grid--b {
  grid-template-columns: 1fr 1fr 2fr;
}
.wp-grid--b .wp-thumb:last-child { grid-row: span 2; }
.wp-grid--c {
  grid-template-columns: 1fr 1fr;
}

.wp-thumb {
  position: relative; aspect-ratio: 16/9;
  background: #080808; overflow: hidden; cursor: pointer;
}
.wp-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .6; display: block;
  transition: opacity .5s, transform .6s cubic-bezier(.22,.61,.36,1);
}
.wp-thumb:hover img { opacity: .92; transform: scale(1.04); }

/* Halftone on hover */
.wp-thumb::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
  background-image: radial-gradient(circle, var(--red-dim) 1px, transparent 1px);
  background-size: 6px 6px;
}
.wp-thumb:hover::after { opacity: .4; }

.wp-thumb-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  font-family: var(--mono); font-size: .48rem;
  letter-spacing: .1em; text-transform: lowercase;
  color: rgba(255,255,255,.5);
}

@media (max-width: 640px) {
  .wp-grid--a, .wp-grid--b, .wp-grid--c {
    grid-template-columns: 1fr 1fr;
  }
  .wp-grid--a .wp-thumb:first-child,
  .wp-grid--b .wp-thumb:last-child {
    grid-row: span 1; grid-column: span 2;
  }
}

/* CTA button */
.center-cta {
  text-align: center;
  padding: clamp(32px, 6vh, 64px) clamp(20px, 4vw, 60px);
}
.solid-cta {
  display: inline-flex; align-items: center;
  height: 44px; padding: 0 28px;
  background: var(--red);
  color: #000;
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; font-weight: 700;
  transition: background .25s, transform .25s;
}
.solid-cta:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* ════════ MARQUEE ════════ */
.vp-clients {
  padding: 5vh 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.vp-clients-label {
  font-family: var(--mono); font-size: .48rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--dim);
  padding: 0 6vw;
  margin-bottom: 2.5vh; display: block;
}
.vp-marquee-track {
  display: flex; width: max-content;
  animation: marquee 34s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.vp-marquee-item {
  font-family: var(--mono);
  font-size: clamp(.9rem, 2vw, 1.8rem);
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.1);
  padding: 0 2.5vw; white-space: nowrap;
  transition: color .3s;
}
.vp-marquee-item::after {
  content: '·'; margin-left: 2.5vw;
  color: var(--red-dim);
}
.vp-marquee-item:hover { color: rgba(255,255,255,.6); }

/* ════════ END CTA ════════ */
.vp-cta {
  position: relative;
  padding: clamp(60px, 12vh, 140px) clamp(32px, 6vw, 80px);
  overflow: hidden;
  text-align: center;
}
.vp-cta-bg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.015) 0 1px, transparent 1px 104px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.015) 0 1px, transparent 1px 104px);
}
.vp-cta-label {
  position: relative; z-index: 1;
  display: block;
  font-family: var(--mono); font-size: .52rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 3vh;
}
.vp-cta-services {
  position: relative; z-index: 1;
  font-family: var(--mono); font-size: .58rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.15);
  margin-bottom: 5vh; line-height: 2.2;
}
.vp-cta-email {
  position: relative; z-index: 1;
  display: inline-block;
  font-size: clamp(1.6rem, 4vw, 3.5rem);
  font-weight: 300; letter-spacing: -.02em;
  color: #fff;
  border-bottom: 1px solid var(--red-dim);
  padding-bottom: 6px;
  text-decoration: none;
  transition: color .3s, border-color .3s;
}
.vp-cta-email:hover { color: var(--red); border-color: var(--red); }
.vp-cta-social {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  margin-top: 24px;
  font-family: var(--mono); font-size: .54rem;
  letter-spacing: .14em; text-transform: lowercase;
}
.vp-cta-social a { color: rgba(255,255,255,.3); transition: color .2s; text-decoration: none; }
.vp-cta-social a:hover { color: rgba(255,255,255,.7); }
.vp-cta-social span { color: var(--red-dim); }

/* ── RED SCROLL BAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ── SELECTION ── */
::selection { background: var(--red); color: #000; }

/* ── CURSOR ── */
.cursor {
  position: fixed; width: 20px; height: 20px;
  border: 1px solid var(--red);
  border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, border-color .2s;
  mix-blend-mode: difference;
}
.cursor.hover { width: 40px; height: 40px; border-color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .hero-logo { width: 100px; }
  .hero-phrases { display: none; }
  .mission-line { font-size: clamp(1.1rem, 6vw, 2rem); }
  .wp-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .wp-expand-btn { align-self: flex-start; }
}
