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

:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --card: #f4f4f4;
  --border: #e2e2e2;
  --green: #593d8f;
  --green-light: #7b5cb8;
  --green-dark: #3d2760;
  --white: #ffffff;
  --gray: #666666;
  --light: #f9f9f9;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  letter-spacing: -0.03em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89,61,143,0.10) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.3s;
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 20px 60px;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
#nav.scrolled { border-bottom-color: #2a2a2a; }

.nav-logo {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.04em;
  margin-right: auto;
}
.nav-logo span { color: var(--green); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 10px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #ffffff; }

/* ── HERO ── */
.hero {
  min-height: 48vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 60px 48px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 32px;
}
.hero-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green);
}

.hero-title {
  font-size: clamp(52px, 5.5vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.hero-title .green { color: var(--green); }

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--green);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid #b0b0b0;
  border-radius: 4px;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-secondary:hover { border-color: var(--black); transform: translateY(-1px); }

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 35%),
              linear-gradient(to top, var(--white) 0%, transparent 25%);
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 35%;
  filter: grayscale(20%) brightness(0.65);
}

/* ── SECTION BASE ── */
section { position: relative; z-index: 1; }

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

/* ── ABOUT STRIP ── */
.about-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green-dark);
  border-top: none;
  border-bottom: none;
}
.about-strip-item {
  padding: 36px 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.about-strip-item:last-child { border-right: none; }
.strip-number {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.strip-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* ── NOTES CANVAS ── */
#notes-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── ABOUT SECTION ── */
.about {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left h2 {
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.about-body {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 36px;
}

.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.about-img-main {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
  background: var(--card);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2px;
  position: relative;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.7);
  transition: filter 0.4s;
}
.about-img-main:hover img { filter: grayscale(20%) brightness(0.85); }
.about-img-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-radius: 2px;
}
.about-img-sub {
  aspect-ratio: 1;
  background: var(--card);
  border-radius: 4px;
  overflow: hidden;
}
.about-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%) brightness(0.6);
}
.about-img-sub.green-card {
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.about-img-sub.green-card .card-quote {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--black);
  font-style: italic;
}

/* ── ARTISTS ── */
.artists {
  padding: 0 60px 120px;
}
.artists-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.artists-header h2 {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.artists-header a {
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid var(--green-dark);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.artists-header a:hover { color: var(--green-light); }
.artists-view-all-mobile { display: none; }

.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.artist-card {
  background: var(--card);
  border-radius: 4px;
  padding: 0;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
}
.artist-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.artist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) brightness(0.65);
  transition: filter 0.35s, transform 0.35s;
}
.artist-card:hover .artist-img img {
  filter: grayscale(20%) brightness(0.8);
  transform: scale(1.04);
}
.artist-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ede8f5 0%, #ddd3f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.artist-img-placeholder svg {
  width: 36px;
  height: 36px;
  color: rgba(89,61,143,0.35);
}
.artist-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  background: var(--green-dark);
}
.artist-card:hover { border-color: var(--green); transform: translateY(-3px); }
.artist-card:hover .artist-img img { filter: grayscale(20%) brightness(0.8); transform: scale(1.04); }
.artist-card:hover .artist-open-icon { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.artist-open-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.8);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(89,61,143,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.artist-open-icon svg { width: 18px; height: 18px; color: #fff; }

.artist-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.artist-role {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.artist-years {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  margin-top: auto;
}
.artist-card.featured { border-color: var(--green); }

/* ── QUOTE BAND ── */
.quote-band {
  padding: 80px 60px;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.quote-band blockquote {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin: 0 auto 20px;
  font-style: italic;
}
.quote-band cite {
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  font-style: normal;
  letter-spacing: 0.06em;
}

/* ── STATS ── */
.stats {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stats-left h2 {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.stats-left p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.stat-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
}
.stat-number {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--green); }
.stat-desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.02em;
}

/* ── SERVICES ── */
.services {
  padding: 0 60px 120px;
}
.services-header {
  margin-bottom: 48px;
}
.services-header h2 {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  transition: border-color 0.2s;
}
.service-item:hover { border-color: var(--green-dark); }
.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(89,61,143,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 20px; height: 20px; color: var(--green); }
.service-item h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.service-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

/* ── CONTACT CTA ── */
.contact-cta {
  padding: 120px 60px;
  background: var(--card);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-cta h2 {
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.contact-cta h2 span { color: var(--green); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-row-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
.contact-row-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-row-value:hover { color: var(--green); }

/* ── FOOTER ── */
footer {
  padding: 32px 60px;
  background: #0a0a0a;
  border-top: 1px solid #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.03em;
}
.footer-logo span { color: var(--green); }
.footer-copy { font-size: 12px; color: #888888; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 12px;
  color: #888888;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #ffffff; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
}
.lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  transform: translateY(24px);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.lightbox.open .lightbox-panel { transform: translateY(0); }
.lightbox-img-side {
  position: relative;
  background: #0d0d0d;
  overflow: hidden;
}
.lightbox-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1428 0%, #2a1f42 60%, #1a1428 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-placeholder svg { width: 72px; height: 72px; color: rgba(89,61,143,0.25); }
.lightbox-img-counter {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}
.lightbox-detail-side {
  background: var(--dark);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 56px 60px;
  overflow-y: auto;
  position: relative;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px; height: 44px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.lightbox-close:hover { border-color: var(--gray); background: rgba(255,255,255,0.05); }
.lightbox-close svg { width: 18px; height: 18px; color: var(--white); }
.lb-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green-light); margin-bottom: 16px;
}
.lb-name {
  font-size: clamp(36px, 3.5vw, 56px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px;
  color: #ffffff;
}
.lb-years { font-size: 15px; color: rgba(255,255,255,0.45); margin-bottom: 40px; }
.lb-divider { width: 40px; height: 2px; background: var(--green); margin-bottom: 32px; }
.lb-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 10px;
}
.lb-description { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 36px; }
.lb-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.lb-meta-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.lb-meta-value { font-size: 15px; font-weight: 600; color: #ffffff; }
.lb-nav {
  margin-top: auto; padding-top: 40px;
  border-top: 1px solid #2a2a2a;
  display: flex; align-items: center; justify-content: space-between;
}
.lb-nav-btn {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.4);
  cursor: pointer; background: none; border: none;
  font-family: 'Inter', sans-serif; letter-spacing: -0.02em;
  transition: color 0.2s; padding: 0;
}
.lb-nav-btn:hover { color: #ffffff; }
.lb-nav-btn svg { width: 18px; height: 18px; }
.lb-nav-btn:disabled { opacity: 0.25; cursor: default; }
.lb-nav-dots { display: flex; gap: 6px; }
.lb-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #333333; transition: background 0.2s, transform 0.2s; cursor: pointer;
}
.lb-dot.active { background: var(--green); transform: scale(1.4); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .lightbox-panel { grid-template-columns: 1fr; }
  .lightbox-img-side { height: 45vh; }
  .lightbox-detail-side { padding: 36px 32px; }
}

@media (max-width: 768px) {
  #nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 80px 24px 40px; }
  .hero-right { height: 50vw; }
  .hero-scroll { left: 24px; bottom: 20px; }

  .about-strip { grid-template-columns: 1fr 1fr; }
  .about-strip-item:nth-child(2) { border-right: none; }
  .about-strip-item:nth-child(3) { border-top: 1px solid var(--border); }
  .about-strip-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

  .about { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
  .artists { padding: 0 24px 60px; }
  .artists-grid { grid-template-columns: 1fr; gap: 12px; }
  .artists-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .artists-header > a { display: none; }
  .artists-view-all-mobile { display: inline-block; margin-top: 24px; }
  .artist-card:hover { transform: none; }
  .quote-band { padding: 60px 24px; }
  .stats { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services { padding: 0 24px 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-cta { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
  footer { flex-direction: column; gap: 16px; padding: 28px 24px; text-align: center; }
  .footer-links { justify-content: center; }
}
