:root {
  --ink: #000000;
  --panel: #ebd5d9;
  --panel-2: #e2c4ca;
  --line: #caa7af;
  --line-strong: #a47b84;
  --paper: #f7e8ea;
  --muted: #000000;
  --accent: #000000;
  --accent-dark: #000000;
  --max-width: 1240px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { font-size: 105%; scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.34), transparent 20rem),
    radial-gradient(circle at 8% 72%, rgba(255, 255, 255, 0.2), transparent 18rem),
    linear-gradient(rgba(36, 36, 36, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 36, 36, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 24px 24px, 24px 24px;
  background-repeat: no-repeat, no-repeat, repeat, repeat;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  z-index: 20;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, iframe { display: block; max-width: 100%; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.section-shell {
  width: min(calc(100% - 3rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(calc(100% - 3rem), var(--max-width));
  height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 232, 234, 0.9);
  backdrop-filter: blur(12px);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}
.wordmark strong { color: var(--accent); font-weight: 780; }

.site-nav { display: flex; align-items: center; gap: 1.8rem; }
.site-nav a {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 160ms ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--ink); }
.site-nav .nav-cta {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 0.55rem 0.9rem;
}
.site-nav .nav-cta:hover { background: #deb5be; color: var(--ink); }

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 78px);
  padding-block: clamp(5rem, 9vw, 8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.eyebrow, .section-number, .mini-label {
  margin: 0 0 1rem;
  color: var(--accent-dark);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.section-number {
  display: inline-flex;
  padding: 0.3rem 0.45rem;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.24);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 1.6rem;
  font-family: var(--mono);
  font-size: clamp(3.45rem, 7.7vw, 7.8rem);
  line-height: 0.91;
  letter-spacing: -0.085em;
  font-weight: 700;
  text-transform: uppercase;
}
h2 {
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 5.15rem);
  line-height: 1;
  letter-spacing: -0.052em;
  font-weight: 650;
}
h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.hero-intro {
  max-width: 670px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}
.hero-intro,
.project-card > p,
.section-heading-split > p,
.capability-list p,
.contact-section > p:not(.section-number) {
  padding: 0.55rem 0.7rem;
  background: #e4c6ce;
  border-left: 3px solid var(--ink);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  border: 1px solid var(--line-strong);
  text-decoration: none;
  font-size: 0.85rem;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.button:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.button-primary { background: #deb5be; color: var(--ink); border-color: var(--ink); }
.button-primary:hover { background: #d4a5b0; }
.button-secondary:hover { background: #deb5be; color: var(--ink); }

.signal-panel {
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--panel-2);
  box-shadow: 8px 8px 0 rgba(36, 36, 36, 0.14);
}
.logo-panel {
  display: grid;
  min-height: 440px;
  place-items: center;
  padding: 1.5rem;
  background: #191d20;
}
.logo-panel img {
  width: min(100%, 330px);
  max-height: 520px;
  object-fit: contain;
}
.signal-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
}
.status { color: var(--paper); }
.status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.waveform {
  height: 155px;
  display: flex;
  align-items: center;
  gap: clamp(5px, 1vw, 10px);
  padding-block: 1.8rem;
  border-bottom: 1px solid var(--line);
}
.waveform span {
  flex: 1;
  height: var(--h);
  min-height: 10px;
  background: linear-gradient(to top, rgba(159,189,255,0.32), var(--accent));
  transform-origin: center;
  animation: pulse 3s ease-in-out infinite alternate;
}

.waveform span:nth-child(3n+1) { animation-delay: -0.4s; }
.waveform span:nth-child(3n+2) { animation-delay: -1.1s; }
.waveform span:nth-child(3n) { animation-delay: -1.8s; }
@keyframes pulse { to { transform: scaleY(0.68); opacity: 0.65; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .waveform span { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
}
.stats-grid div { padding: 1.25rem 1rem 1rem 0; }
.stats-grid div:nth-child(odd) { border-right: 1px solid var(--line); }
.stats-grid div:nth-child(even) { padding-left: 1rem; }
.stats-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
.stats-grid dt { font-size: 2.25rem; font-weight: 580; letter-spacing: -0.05em; }
.stats-grid dd { margin: 0; color: var(--muted); font-size: 0.75rem; }

.section-block {
  padding-block: clamp(6rem, 10vw, 10rem);
  border-top: 1px solid var(--line);
}
.section-heading { margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 3rem;
}
.section-heading-split > p, .section-heading-split > a { margin-bottom: 0; color: var(--muted); }

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-bottom: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line);
}
.project-card {
  min-height: 410px;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  background: var(--panel);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.project-card:hover {
  position: relative;
  z-index: 1;
  transform: translate(-4px, -4px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}
.project-card-featured { background: #dab0b9; }
.artist-photo {
  aspect-ratio: 16 / 9;
  margin: 2rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel-2);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.13);
}
.artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.artist-photo--portrait {
  width: min(100%, 440px);
  aspect-ratio: 2 / 3;
  margin-inline: auto;
}
.artist-photo--portrait img { object-position: center; }
.artist-photo--live {
  width: min(100%, 560px);
  aspect-ratio: 3 / 4;
  margin-inline: auto;
}
.artist-photo--live img { object-position: center; }
.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.project-card > p { color: var(--muted); }
.track-list {
  padding: 0;
  margin: auto 0 1.7rem;
  list-style: none;
  border-top: 1px solid var(--line);
}
.track-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.track-list span { color: var(--muted); font-family: var(--mono); font-size: 0.65rem; }
.track-list strong { font-weight: 520; }
.text-link {
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.82rem;
}
.text-link span { color: var(--accent); }
.project-links { display: grid; gap: 0.65rem; }
.project-tagline {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.embed-card {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--panel-2);
  box-shadow: 6px 6px 0 rgba(36, 36, 36, 0.1);
}
.embed-card h3 { margin-bottom: 0; }
.embed-card iframe { border: 0; border-radius: 10px; }

.capability-list { border-top: 1px solid var(--line); }
.capability-list article {
  display: grid;
  grid-template-columns: 0.16fr 1fr;
  gap: 2rem;
  padding-block: 2.3rem;
  border-bottom: 1px solid var(--line);
}
.capability-list article > span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
}
.capability-list h3 { margin-bottom: 0.6rem; }
.capability-list p { max-width: 800px; margin-bottom: 0; color: var(--muted); }

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.13);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}
.gallery-photo {
  grid-column: span 6;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel-2);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.12);
}
.gallery-photo--wide {
  grid-column: span 7;
  aspect-ratio: 4 / 3;
}
.gallery-photo--portrait { grid-column: span 5; }
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 280ms ease;
}
.gallery-photo:hover img { transform: scale(1.035); }

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
}
.about-copy { padding-top: 2rem; }
.about-copy p { color: var(--muted); font-size: 1.02rem; }
.about-copy .lead { color: var(--ink); font-size: clamp(1.35rem, 2.3vw, 2rem); line-height: 1.35; }

.contact-section {
  padding-block: clamp(6rem, 12vw, 11rem);
  border-top: 1px solid var(--line);
}
.contact-section h2 { max-width: 1000px; }
.contact-section > p:not(.section-number) { margin-top: 1.6rem; color: var(--muted); }
.contact-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 4rem;
}
.contact-links a {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  align-items: center;
  padding-block: 1.25rem;
  border-left: 3px solid var(--ink);
  background: #e4c6ce;
  text-decoration: none;
  transition: padding-left 160ms ease, background 160ms ease;
}
.contact-links a:hover { padding-left: 1rem; background: #d9b4be; }
.contact-links span { color: var(--muted); font-size: 0.8rem; }
.contact-links strong { font-weight: 510; }

.site-footer {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .signal-panel { max-width: 620px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 350px; }
  .section-heading-split, .about-grid, .embed-card { grid-template-columns: 1fr; }
  .section-heading-split { align-items: start; }
  .video-grid { grid-template-columns: 1fr; }
  .photo-gallery { grid-template-columns: 1fr; }
  .gallery-photo, .gallery-photo--wide, .gallery-photo--portrait { grid-column: auto; }
}

@media (max-width: 700px) {
  .section-shell, .site-header { width: min(calc(100% - 1.5rem), var(--max-width)); }
  .site-header { height: 66px; }
  .menu-button { display: block; }
  .site-nav {
    position: fixed;
    top: 66px;
    left: 0.75rem;
    right: 0.75rem;
    display: none;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--paper);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.9rem 0.7rem; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav .nav-cta { border: 0; }
  .hero { padding-block: 5.2rem 6rem; }
  h1 { font-size: clamp(3.25rem, 17vw, 5.5rem); }
  .project-meta { flex-direction: column; gap: 0.4rem; }
  .embed-card { padding: 1rem; }
  .capability-list article { grid-template-columns: 44px 1fr; gap: 0.8rem; }
  .contact-links a { grid-template-columns: 1fr; gap: 0.25rem; }
  .site-footer { flex-direction: column; justify-content: center; align-items: flex-start; gap: 0.3rem; }
}
