﻿:root {
  --bg: #050505;
  --bg-soft: #0b0f0d;
  --panel: rgba(12, 12, 12, 0.84);
  --panel-strong: rgba(18, 18, 18, 0.94);
  --text: #eaeaea;
  --muted: #9ca3af;
  --line: rgba(255, 255, 255, 0.08);
  --green: #59ff88;
  --purple: #63348b;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --container: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(89, 255, 136, 0.06), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(99, 52, 139, 0.08), transparent 26%),
    linear-gradient(180deg, #050505 0%, #080808 35%, #0b0f0d 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.2;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 38%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22));
}
img { display: block; max-width: 100%; }
a, button { font: inherit; }
.site-shell { padding: 24px 0 44px; }
.container { width: var(--container); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 30; padding-bottom: 18px; }
.navbar,
.panel,
.site-footer,
.manifesto-strip,
.gallery-item,
.product-band,
.process-card,
.contact-card,
.instagram-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.72);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 14px; color: inherit; text-decoration: none; }
.brand img { width: 46px; height: 46px; object-fit: contain; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; }
.brand span { display: grid; }
.brand strong {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.14em;
  font-size: 1.35rem;
}
.brand small { color: var(--muted); letter-spacing: 0.04em; }
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  padding: 12px 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.84rem;
  transition: color 180ms ease, text-shadow 180ms ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--purple), var(--green));
  transition: transform 180ms ease;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--text); text-shadow: 0 0 14px rgba(89, 255, 136, 0.35); }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }
.social-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.social-icon:hover {
  color: var(--green);
  border-color: rgba(89, 255, 136, 0.22);
  box-shadow: 0 0 12px rgba(89, 255, 136, 0.25);
  transform: scale(1.08);
}
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255, 255, 255, 0.04); cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; border-radius: 999px; background: var(--text); }
.section { padding-top: 80px; }
.section-heading { display: grid; gap: 14px; margin-bottom: 28px; }
.editorial-heading h1,
.editorial-heading h2,
.page-title,
.story-copy h2,
.instagram-panel h2,
.contact-card h2,
.process-card h2,
.product-band-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-transform: uppercase;
}
.section-tag,
.eyebrow,
.glass-card span,
.product-band-copy span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(89, 255, 136, 0.24);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(89, 255, 136, 0.05);
}
.section-tag::before,
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(89, 255, 136, 0.45);
}
.hero { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr); gap: 24px; }
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.purple-glow-bg {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 80% 60%, rgba(99, 52, 139, 0.12), transparent 40%),
    radial-gradient(circle at 20% 30%, rgba(99, 52, 139, 0.08), transparent 45%);
  filter: blur(60px);
  opacity: 0.6;
}
.hero-ghost-text {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  white-space: nowrap;
  font-family: "Bebas Neue", sans-serif;
  font-size: 180px;
  line-height: 0.84;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(99, 52, 139, 0.04);
  filter: blur(2px);
  mix-blend-mode: soft-light;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  text-align: center;
}
.hero > .panel { position: relative; z-index: 2; }
.panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.96), rgba(10, 10, 10, 0.88)),
    radial-gradient(circle at 20% 20%, rgba(89, 255, 136, 0.05), transparent 28%);
}
.studio-copy,
.studio-visual,
.story-copy,
.contact-card,
.instagram-panel { padding: 34px; }
.studio-copy::before,
.studio-visual::before,
.story-copy::before,
.instagram-panel::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.7;
}
.studio-copy::before {
  width: 220px;
  height: 220px;
  top: -80px;
  left: -50px;
  background: radial-gradient(circle, rgba(99, 52, 139, 0.22), transparent 68%);
}
.studio-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%),
    radial-gradient(circle at 18% 16%, rgba(99, 52, 139, 0.08), transparent 22%),
    radial-gradient(circle at 50% 50%, transparent 48%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}
.studio-visual::before {
  width: 260px;
  height: 260px;
  right: -30px;
  bottom: -60px;
  background: radial-gradient(circle, rgba(89, 255, 136, 0.18), transparent 68%);
}
.hero-copy h1 {
  margin: 18px 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.8rem, 11vw, 9.6rem);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.hero-statement {
  margin: 28px 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 0.94;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-points {
  margin: 18px 0 0;
  color: #eaeaea;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-description,
.story-copy p,
.instagram-panel p,
.contact-card p,
.process-card p,
.product-band-copy p,
.site-footer p,
.site-footer a {
  color: var(--muted);
  line-height: 1.6;
}
.hero-description { max-width: 52ch; margin: 24px 0 0; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #050505;
  background: linear-gradient(135deg, rgba(89, 255, 136, 0.92), rgba(78, 222, 122, 0.88));
  box-shadow: 0 0 30px rgba(89, 255, 136, 0.14);
}
.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}
.studio-visual {
  display: grid;
  align-content: end;
  min-height: 680px;
  background:
    radial-gradient(circle at 50% 20%, rgba(89, 255, 136, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.92)),
    #050505;
}
.studio-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 32%, rgba(5, 5, 5, 0.3) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.2));
  pointer-events: none;
}
.studio-visual img {
  width: min(100%, 520px);
  max-height: 560px;
  margin: 10px auto 0;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.42));
  animation: heroFloat 8s ease-in-out infinite;
}
.glass-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(89, 255, 136, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}
.manifesto-strip {
  padding: 26px 28px;
  border-radius: 26px;
  background: rgba(10, 10, 10, 0.72);
}
.manifesto-strip p {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%, transparent 72%, rgba(0, 0, 0, 0.18));
  z-index: 1;
  pointer-events: none;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.35));
  opacity: 0;
  transition: opacity 180ms ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 220ms ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 7; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 5; }
.split-story { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr); gap: 22px; }
.production-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
  gap: 40px;
}
.production-media,
.production-copy,
.artist-photo-wrap,
.artist-copy {
  padding: 28px;
}
.production-media {
  position: relative;
  min-height: 420px;
}
.production-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.28)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}
.production-media video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 22px;
}
.production-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}
.production-copy h2,
.artist-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-transform: uppercase;
}
.artist-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
}
.artist-photo-wrap {
  display: grid;
  place-items: center;
}
.artist-photo {
  width: min(100%, 320px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 18px rgba(89, 255, 136, 0.1));
}
.artist-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}
.artist-role {
  margin: -4px 0 6px;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.story-copy h2 { max-width: 10ch; margin-top: 18px; }
.story-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.96);
}
.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.instagram-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 72px;
  padding: 48px;
  background:
    radial-gradient(circle at 80% 20%, rgba(99, 52, 139, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(14, 14, 14, 0.96), rgba(9, 9, 9, 0.9));
}
.instagram-copy .section-tag { margin-bottom: 18px; }
.instagram-copy h2 { margin-bottom: 16px; }
.instagram-copy p { line-height: 1.6; }
.product-stack { display: grid; gap: 40px; }
.product-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.96), rgba(10, 10, 10, 0.88));
}
.product-band.reverse { grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); }
.product-band.reverse .product-band-media { order: 2; }
.product-band.reverse .product-band-copy { order: 1; }
.product-band-media {
  position: relative;
  min-height: 360px;
  background:
    radial-gradient(circle at top, rgba(89, 255, 136, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.02);
}
.product-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 26%, transparent 70%, rgba(5, 5, 5, 0.2));
  pointer-events: none;
}
.product-band-media img { width: 100%; height: 100%; object-fit: cover; }
.product-band-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 34px;
}
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 28px; }
.process-card { padding: 28px; border-radius: var(--radius-lg); }
.contact-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
.artisan-contact .contact-card { min-height: 320px; }
.social-list { display: grid; gap: 14px; padding: 0; list-style: none; }
.social-list li { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.social-list span { color: var(--text); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; }
.social-list a { color: var(--muted); text-decoration: none; }
.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 48px;
  margin-top: 30px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(10, 10, 10, 0.84);
}
.footer-column a { margin-bottom: 12px; }
.social { margin-top: 14px; }
.site-footer strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.35rem;
}
.site-footer a { display: block; margin-bottom: 12px; text-decoration: none; }
.site-footer a:hover,
.social-list a:hover,
.text-link:hover { color: var(--green); }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 6, 5, 0.88);
  backdrop-filter: blur(22px);
}
.lightbox[hidden] { display: none !important; }
.lightbox-card {
  width: min(920px, 100%);
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(11, 15, 13, 0.94);
}
.lightbox-card img { border-radius: 20px; }
.lightbox-card figcaption { margin-top: 14px; color: var(--muted); }
.lightbox-close {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 960px) {
  .hero,
  .production-section,
  .artist-section,
  .split-story,
  .product-band,
  .product-band.reverse,
  .contact-layout,
  .process-grid,
  .site-footer,
  .instagram-panel,
  .masonry-grid {
    grid-template-columns: 1fr;
  }
  .studio-visual { min-height: 520px; }
  .hero-ghost-text { top: 18px; font-size: clamp(5rem, 16vw, 9rem); letter-spacing: 0.12em; }
  .purple-glow-bg { inset: -14%; filter: blur(72px); }
  .manifesto-strip p { font-size: clamp(1.5rem, 7vw, 2.6rem); }
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { grid-column: auto; grid-row: auto; }
  .gallery-item img { min-height: 260px; }
  .product-band.reverse .product-band-media,
  .product-band.reverse .product-band-copy { order: initial; }
  .instagram-panel { align-items: flex-start; }
  .navbar { position: relative; border-radius: 24px; }
  .menu-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(320px, 100%);
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8, 11, 10, 0.96);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    transform: translateX(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }
  .nav-links.is-open { transform: translateX(0); opacity: 1; pointer-events: auto; }
}
@media (max-width: 640px) {
  :root { --container: min(100% - 20px, 1180px); }
  .site-shell { padding-top: 18px; }
  .studio-copy,
  .studio-visual,
  .story-copy,
  .contact-card,
  .instagram-panel,
  .product-band-copy,
  .process-card { padding: 22px; }
  .button-row { flex-direction: column; }
  .button { width: 100%; }
  .hero-copy h1 { font-size: clamp(4rem, 22vw, 6rem); }
  .hero-statement { font-size: clamp(1.5rem, 9vw, 2.4rem); }
  .hero-ghost-text { top: 10px; font-size: clamp(4.2rem, 18vw, 6.2rem); letter-spacing: 0.08em; }
}
