/* ============================================
   Julian Montilla — site stylesheet, v3
   Terminal / CLI aesthetic. Zero photo
   dependency: monospace type, near-black,
   one restrained green accent, box-panel
   graphics, and a procedural EQ/waveform
   visualizer instead of hero photography.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  --bg: #0a0b0a;
  --panel: #101211;
  --line: #262b28;
  --text: #ece7e0;
  --text-dim: #7d776f;
  --accent: #e2b567;
  --accent-dim: rgba(226, 181, 103, 0.14);
  --accent-purple: #ab97cf;
  --accent-purple-dim: rgba(171, 151, 207, 0.14);
  --accent-orange: #d98a5e;
  --accent-wine: #bd5b52;
  --max-w: 1120px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "JetBrains Mono", "Cascadia Code", Consolas, monospace;
  line-height: 1.65;
  font-size: 0.95rem;
  -webkit-font-smoothing: antialiased;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 42px 42px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

::selection { background: var(--accent); color: #06120a; }

/* ---------- prompt / terminal typography helpers ---------- */

.prompt { color: var(--accent); }
.comment { color: var(--text-dim); }
.comment::before { content: "# "; }

h1, h2, h3 {
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ---------- Header ---------- */

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 11, 10, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; }

.logo { font-weight: 700; font-size: 0.95rem; }
.logo::before { content: "> "; color: var(--accent); }

nav.main { display: flex; gap: 4px; flex-wrap: wrap; }
nav.main a {
  color: var(--text-dim);
  font-size: 0.82rem;
  padding: 6px 10px;
  border: 1px solid transparent;
}
nav.main a::before { content: "["; color: var(--line); }
nav.main a::after { content: "]"; color: var(--line); }
nav.main a:hover { color: var(--accent); }
nav.main a.link-accent { color: var(--accent); }

/* ---------- Hero ---------- */

.hero { position: relative; overflow: hidden; padding: 64px 0 56px; border-bottom: 1px solid var(--line); }
.hero .wrap, section.block .wrap, .closing .wrap { position: relative; z-index: 1; }

.live-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-wine); margin-right: 7px;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ---------- Ambient background instruments (decorative, subtle) ---------- */

/* Background spectrum analyzer — LED bar strip along a section's bottom edge */
.bg-eq {
  position: absolute; left: 0; right: 0; bottom: 0; height: 110px;
  display: flex; align-items: flex-end; gap: 6px;
  padding: 0 24px;
  opacity: 0.07; pointer-events: none; z-index: 0;
}

/* Stereo LED peak meters — L/R, closing sections */
.meter-row {
  position: absolute; right: 24px; bottom: 18px;
  display: flex; flex-direction: column; gap: 6px;
  width: 150px; opacity: 0.55; pointer-events: none; z-index: 0;
}
.meter { display: flex; align-items: center; gap: 8px; }
.meter .ch { font-size: 0.6rem; color: var(--text-dim); line-height: 1; }
.meter .track { position: relative; flex: 1; height: 8px; border: 1px solid var(--line); background: var(--panel); overflow: hidden; }
.meter .fill {
  position: absolute; top: 0; bottom: 0; left: 0; width: 70%;
  background:
    repeating-linear-gradient(90deg, var(--bg) 0 2px, transparent 2px 6px),
    linear-gradient(90deg, var(--accent) 0 72%, var(--accent-orange) 72% 88%, var(--accent-wine) 88% 100%);
  background-size: 100% 100%, 140px 100%;
  animation: meterL 2.4s ease-in-out infinite;
}
.meter:nth-child(2) .fill { animation-name: meterR; animation-duration: 2.9s; }
@keyframes meterL { 0% { width: 35%; } 18% { width: 82%; } 35% { width: 55%; } 55% { width: 96%; } 72% { width: 60%; } 88% { width: 78%; } 100% { width: 35%; } }
@keyframes meterR { 0% { width: 45%; } 15% { width: 62%; } 34% { width: 90%; } 52% { width: 50%; } 70% { width: 84%; } 90% { width: 58%; } 100% { width: 45%; } }

/* Console fader bank — static, footer */
.fader-bank { display: block; width: 260px; max-width: 60%; height: 30px; margin: 0 auto 26px; opacity: 0.5; }
.fader-bank line { stroke: var(--line); stroke-width: 1.5; }
.fader-bank rect { fill: var(--accent); }
.fader-bank rect.c2 { fill: var(--accent-purple); }
.fader-bank rect.c3 { fill: var(--accent-orange); }
.fader-bank rect.c4 { fill: var(--accent-wine); }

section.block, .closing { position: relative; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  font-weight: 600;
  color: var(--text);
  max-width: 780px;
}
.hero h1 .accent { color: var(--accent); }

.hero .lead {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 0 28px;
  line-height: 1.6;
}

/* ---------- Hero viz — mastering chain (signal path, very subtle) ---------- */

.viz4 {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  font-family: "JetBrains Mono", Consolas, monospace;
}
.viz4-mod {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 64px;
  height: 74px;
  padding: 10px 12px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}
.viz4-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1;
}

/* signal wires between modules, with a pulse travelling down the chain */
.viz4-wire { position: relative; flex: 1 1 20px; height: 1px; background: var(--line); }
.viz4-wire::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 12px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0;
  animation: viz4pulse 7s linear infinite;
  animation-delay: var(--d, 0s);
}
@keyframes viz4pulse {
  0% { left: 0; opacity: 0.55; }
  9% { left: calc(100% - 12px); opacity: 0.55; }
  10%, 100% { left: calc(100% - 12px); opacity: 0; }
}

/* in / out chips */
.viz4-leds { display: flex; gap: 5px; }
.viz4-leds i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  opacity: 0.25;
  animation: viz4led 3.4s ease-in-out infinite;
}
.viz4-leds i + i { animation-delay: -1.7s; }
@keyframes viz4led { 0%, 100% { opacity: 0.25; } 50% { opacity: 0.7; } }
.viz4-lufs { font-size: 0.62rem; color: var(--text-dim); line-height: 1; }

/* eq — gentle bell curve, node breathing */
.viz4-eq { width: 56px; height: 28px; }
.viz4-curve { fill: none; stroke: var(--text-dim); stroke-width: 1.2; opacity: 0.7; }
.viz4-node { fill: var(--accent); opacity: 0.8; animation: viz4node 5.6s ease-in-out infinite; }
@keyframes viz4node { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(2.5px); } }

/* comp — gain-reduction bar, fills downward from the top */
.viz4-gr { position: relative; width: 12px; height: 30px; border: 1px solid var(--line); border-radius: 2px; overflow: hidden; }
.viz4-gr i {
  position: absolute; top: 0; left: 0; right: 0;
  height: 20%;
  background: var(--accent);
  opacity: 0.45;
  animation: viz4gr 5.2s ease-in-out infinite;
}
@keyframes viz4gr { 0%, 100% { height: 14%; } 35% { height: 46%; } 60% { height: 26%; } 80% { height: 40%; } }

/* multiband — three bands breathing at their own pace */
.viz4-mb { display: flex; align-items: flex-end; gap: 5px; height: 30px; }
.viz4-mb i { width: 7px; border-radius: 1px; opacity: 0.5; animation: viz4mb 4.1s ease-in-out infinite; }
.viz4-mb i:nth-child(1) { height: 22px; background: var(--accent-wine); animation-duration: 5.3s; }
.viz4-mb i:nth-child(2) { height: 26px; background: var(--accent); }
.viz4-mb i:nth-child(3) { height: 18px; background: var(--accent-purple); animation-duration: 3.7s; animation-delay: -1.2s; }
@keyframes viz4mb { 0%, 100% { transform: scaleY(0.75); } 50% { transform: scaleY(1); } }
.viz4-mb i { transform-origin: bottom; }

/* limiter — ceiling line + rare peak LED */
.viz4-lim { position: relative; width: 44px; height: 30px; }
.viz4-lim .viz4-ceil { position: absolute; top: 4px; left: 0; right: 0; height: 0; border-top: 1px dashed var(--text-dim); opacity: 0.6; }
.viz4-lim .viz4-bar {
  position: absolute; bottom: 0; left: 14px; width: 16px; height: 18px;
  background: var(--line);
  transform-origin: bottom;
  animation: viz4limbar 4.6s ease-in-out infinite;
}
@keyframes viz4limbar { 0%, 100% { transform: scaleY(0.7); } 42% { transform: scaleY(1.18); } 55% { transform: scaleY(0.9); } }
.viz4-lim .viz4-led {
  position: absolute; top: 0; right: 0;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-wine);
  opacity: 0.12;
  animation: viz4peak 4.6s linear infinite;
}
@keyframes viz4peak { 0%, 40%, 50%, 100% { opacity: 0.12; } 43%, 46% { opacity: 0.9; } }

/* stereo image — correlation scale with drifting marker */
.viz4-img { position: relative; width: 52px; height: 30px; }
.viz4-img .viz4-scale { position: absolute; left: 0; right: 0; top: 50%; height: 0; border-top: 1px solid var(--line); }
.viz4-img::before, .viz4-img::after {
  position: absolute; top: 1px;
  font-size: 0.55rem; color: var(--text-dim); opacity: 0.7; line-height: 1;
}
.viz4-img::before { content: "L"; left: 0; }
.viz4-img::after { content: "R"; right: 0; }
.viz4-img .viz4-tick { position: absolute; left: 50%; top: calc(50% - 3px); width: 1px; height: 7px; background: var(--text-dim); opacity: 0.5; }
.viz4-img .viz4-dot {
  position: absolute; top: calc(50% - 2.5px); left: 30%;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  opacity: 0.75;
  animation: viz4drift 8.4s ease-in-out infinite;
}
@keyframes viz4drift { 0%, 100% { left: 32%; } 30% { left: 58%; } 55% { left: 44%; } 78% { left: 64%; } }

@media (max-width: 720px) {
  .viz4 .viz4-hide-m { display: none; }
  .viz4-wire.viz4-hide-m { display: none; }
  .viz4-mod { min-width: 54px; padding: 8px 9px 6px; }
}
@media (prefers-reduced-motion: reduce) {
  .viz4 * { animation: none !important; }
}

/* ---------- Hero viz — track pipeline (idea → master), same chain chrome ---------- */

/* idea — a spark: center dot + expanding ring */
.viz5-idea { position: relative; display: block; width: 30px; height: 30px; }
.viz5-idea::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px;
  border-radius: 50%; background: var(--accent); opacity: 0.85;
}
.viz5-idea::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 24px; height: 24px; margin: -12px 0 0 -12px;
  border-radius: 50%; border: 1px solid var(--accent); opacity: 0;
  animation: viz5spark 3.8s ease-out infinite;
}
@keyframes viz5spark { 0% { transform: scale(0.2); opacity: 0.55; } 60% { transform: scale(1); opacity: 0; } 100% { opacity: 0; } }

/* compose — mini piano roll, notes lighting up in melody order */
.viz5-roll { position: relative; display: block; width: 46px; height: 30px; border-left: 1px solid var(--line); }
.viz5-roll i { position: absolute; height: 4px; border-radius: 1px; background: var(--accent-purple); opacity: 0.3; animation: viz5note 4.8s linear infinite; }
.viz5-roll i:nth-child(1) { top: 22px; left: 3px;  width: 9px; }
.viz5-roll i:nth-child(2) { top: 14px; left: 12px; width: 7px;  animation-delay: 0.6s; }
.viz5-roll i:nth-child(3) { top: 6px;  left: 19px; width: 11px; animation-delay: 1.2s; }
.viz5-roll i:nth-child(4) { top: 14px; left: 30px; width: 7px;  animation-delay: 1.8s; }
.viz5-roll i:nth-child(5) { top: 2px;  left: 37px; width: 8px;  animation-delay: 2.4s; }
@keyframes viz5note { 0%, 5% { opacity: 0.95; } 14%, 100% { opacity: 0.3; } }

/* arrange — clip lanes, one clip drops in and out */
.viz5-arr { display: flex; flex-direction: column; gap: 4px; width: 46px; }
.viz5-arr b { display: flex; gap: 3px; height: 7px; }
.viz5-arr i { display: block; height: 100%; border-radius: 1px; opacity: 0.45; }
.viz5-arr b:nth-child(1) i:nth-child(1) { width: 18px; background: var(--accent); }
.viz5-arr b:nth-child(1) i:nth-child(2) { width: 12px; background: var(--accent); opacity: 0.28; }
.viz5-arr b:nth-child(2) i:nth-child(1) { width: 30px; background: var(--accent-purple); }
.viz5-arr b:nth-child(3) i:nth-child(1) { width: 10px; background: var(--accent-orange); }
.viz5-arr b:nth-child(3) i:nth-child(2) { width: 16px; background: var(--accent-orange); animation: viz5clip 6s ease-in-out infinite; }
@keyframes viz5clip { 0%, 20% { opacity: 0; } 35%, 80% { opacity: 0.45; } 95%, 100% { opacity: 0; } }

/* produce — two knobs being tweaked */
.viz5-knobs { display: block; width: 46px; height: 26px; }
.viz5-knobs circle { fill: none; stroke: var(--text-dim); stroke-width: 1.2; opacity: 0.75; }
.viz5-knobs line { stroke: var(--accent); stroke-width: 1.4; stroke-linecap: round; }
.viz5-knobs g { transform-box: fill-box; transform-origin: center; animation: viz5knob 5.4s ease-in-out infinite; }
.viz5-knobs g:nth-child(2) { animation-duration: 4.2s; animation-delay: -2s; }
@keyframes viz5knob { 0%, 100% { transform: rotate(-28deg); } 50% { transform: rotate(30deg); } }

/* mix — three mini faders riding */
.viz5-fad { display: flex; gap: 10px; height: 30px; }
.viz5-fad i { position: relative; display: block; width: 9px; height: 100%; }
.viz5-fad i::before { content: ""; position: absolute; left: 4px; top: 0; bottom: 0; width: 1px; background: var(--line); }
.viz5-fad i::after {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 9px; height: 4px; border-radius: 1px;
  background: var(--accent); opacity: 0.8;
  animation: viz5fader 6.2s ease-in-out infinite;
}
.viz5-fad i:nth-child(2)::after { background: var(--accent-purple); animation-duration: 5.1s; animation-delay: -2.2s; }
.viz5-fad i:nth-child(3)::after { background: var(--accent-orange); animation-duration: 7s; animation-delay: -3.6s; }
@keyframes viz5fader { 0%, 100% { top: 8px; } 40% { top: 18px; } 70% { top: 12px; } }

/* master — a spinning record */
.viz5-disc {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--text-dim);
  background:
    radial-gradient(circle, var(--accent) 0 3.5px, transparent 4px),
    repeating-radial-gradient(circle, transparent 0 4px, var(--line) 4px 5.5px);
  opacity: 0.85;
  animation: viz5spin 5.4s linear infinite;
}
.viz5-disc::after {
  content: "";
  position: absolute;
  top: 3px;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 6px;
  background: var(--accent);
  opacity: 0.7;
}
@keyframes viz5spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .viz5-disc { animation: none; } }

.eq {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 64px;
  margin: 28px 0 0;
}
.eq span, .bg-eq span {
  flex: 1;
  align-self: flex-end;
  height: 100%;
  background:
    repeating-linear-gradient(0deg, var(--bg) 0 2px, transparent 2px 4px),
    var(--accent);
  opacity: 0.75;
  border-radius: 1px;
  transform-origin: bottom;
  animation: eqA 1.9s ease-in-out infinite;
}
.eq span:nth-child(4n+2), .bg-eq span:nth-child(4n+2) { background: repeating-linear-gradient(0deg, var(--bg) 0 2px, transparent 2px 4px), var(--accent-purple); animation-name: eqB; animation-duration: 1.3s; }
.eq span:nth-child(4n+3), .bg-eq span:nth-child(4n+3) { background: repeating-linear-gradient(0deg, var(--bg) 0 2px, transparent 2px 4px), var(--accent-orange); animation-name: eqC; animation-duration: 2.2s; }
.eq span:nth-child(4n), .bg-eq span:nth-child(4n) { background: repeating-linear-gradient(0deg, var(--bg) 0 2px, transparent 2px 4px), var(--accent-wine); animation-name: eqA; animation-duration: 1.6s; }
.eq span:nth-child(3n), .bg-eq span:nth-child(3n) { animation-delay: -0.4s; }
.eq span:nth-child(5n), .bg-eq span:nth-child(5n) { animation-delay: -0.9s; }
.eq span:nth-child(7n), .bg-eq span:nth-child(7n) { animation-delay: -1.3s; }

@keyframes eqA { 0% { transform: scaleY(0.08); } 15% { transform: scaleY(0.65); } 30% { transform: scaleY(0.2); } 48% { transform: scaleY(0.95); } 65% { transform: scaleY(0.35); } 80% { transform: scaleY(0.7); } 100% { transform: scaleY(0.08); } }
@keyframes eqB { 0% { transform: scaleY(0.15); } 20% { transform: scaleY(0.9); } 42% { transform: scaleY(0.3); } 60% { transform: scaleY(0.6); } 82% { transform: scaleY(0.1); } 100% { transform: scaleY(0.15); } }
@keyframes eqC { 0% { transform: scaleY(0.3); } 25% { transform: scaleY(0.1); } 50% { transform: scaleY(0.8); } 72% { transform: scaleY(0.45); } 90% { transform: scaleY(0.9); } 100% { transform: scaleY(0.3); } }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.btn {
  display: inline-block;
  font-size: 0.85rem;
  padding: 12px 22px;
  border: 1px solid var(--text-dim);
  color: var(--text);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.btn::after { content: " →"; color: var(--accent); }
.btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.btn-fill { background: var(--accent); border-color: var(--accent); color: #14100a; font-weight: 600; }
.btn-fill::after { color: #14100a; }
.btn-fill:hover { background: #ecc57f; border-color: #ecc57f; color: #14100a; }

/* ---------- DAW detail chips, transport & players ---------- */

.io-tag {
  display: inline-block;
  margin-left: 12px;
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  vertical-align: middle;
  white-space: nowrap;
}
.io-tag i { font-style: normal; color: var(--accent); margin-right: 5px; }
.io-tag.t2 i { color: var(--accent-purple); }
.io-tag.t3 i { color: var(--accent-orange); }
.io-tag.t4 i { color: var(--accent-wine); }

.transport { display: block; width: 150px; margin: 0 auto 12px; opacity: 0.55; }
.transport .t-dim { fill: var(--text-dim); }
.transport .t-play { fill: var(--accent); }
.transport .t-rec { fill: var(--accent-wine); animation: pulse 1.8s ease-in-out infinite; }

.spotify-embed { display: block; width: 100%; height: 352px; border: 0; border-radius: 12px; margin-top: 18px; }

/* ---------- Section shell ---------- */

section.block { padding: 64px 0; border-bottom: 1px solid var(--line); }
section.block:last-of-type { border-bottom: none; }

.section-head { margin-bottom: 34px; }
.section-head .prompt { font-size: 0.85rem; display: block; margin-bottom: 8px; }
.section-head h2 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); margin: 0 0 8px; font-weight: 600; }
.section-head p.comment { margin: 0; font-size: 0.85rem; }

/* ---------- Panel (bracket-corner card) ---------- */

.panel {
  position: relative;
  border: 1px solid var(--line);
  padding: 22px 24px;
  background: var(--panel);
}
.panel::before, .panel::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--accent-purple);
  opacity: 0.7;
}
.panel::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.panel::after { bottom: -1px; right: -1px; border-bottom: 2px solid; border-right: 2px solid; }

.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.panel h3 { margin: 0 0 6px; font-size: 1rem; }
.panel .meta { color: var(--text-dim); font-size: 0.78rem; margin-bottom: 12px; }
.panel ul { margin: 0; padding-left: 18px; color: var(--text-dim); font-size: 0.85rem; }
.panel ul li { margin-bottom: 5px; }

/* ---------- Artist projects (ascii-ish split) ---------- */

.artist-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 30px 32px;
  position: relative;
}
.artist-panel::before, .artist-panel::after {
  content: ""; position: absolute; width: 12px; height: 12px; border-color: var(--accent-purple); opacity: 0.7;
}
.artist-panel::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.artist-panel::after { bottom: -1px; right: -1px; border-bottom: 2px solid; border-right: 2px solid; }

.artist-panel .comment { display: block; margin-bottom: 10px; }
.artist-panel h3 { font-size: 1.3rem; margin: 0 0 12px; }
.artist-panel h3::before { content: "// "; color: var(--accent); }
.artist-panel p { color: var(--text-dim); margin: 0 0 16px; font-size: 0.88rem; max-width: 520px; }

.mini-eq { display: flex; align-items: flex-end; gap: 3px; height: 30px; margin-bottom: 18px; }
.mini-eq span {
  flex: 1; align-self: flex-end; transform-origin: bottom;
  background: repeating-linear-gradient(0deg, var(--panel) 0 2px, transparent 2px 4px), var(--accent-purple);
  opacity: 0.7; animation: eqB 1.7s ease-in-out infinite;
}
.mini-eq span:nth-child(3n) { background: repeating-linear-gradient(0deg, var(--panel) 0 2px, transparent 2px 4px), var(--accent); animation-name: eqC; }
.mini-eq span:nth-child(4n) { animation-delay: -0.5s; }

/* ---------- Sample pack product shot ---------- */

.samples-cols { display: flex; gap: 48px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.samples-cols .samples-text { flex: 1 1 320px; min-width: 0; }

.pack-shots { display: flex; gap: 22px; flex: 0 0 auto; }
.pack-shot { flex: 0 0 240px; margin: 0; }
.pack-shot img { display: block; width: 100%; height: auto; }

@media (max-width: 640px) {
  .samples-cols { justify-content: center; }
  .pack-shots { flex-wrap: wrap; justify-content: center; }
  .pack-shot { flex-basis: 220px; }
}

/* ---------- Notify-me modal (subtle, in-page, no navigation) ---------- */

.notify-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 11, 10, 0.78);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.notify-backdrop.is-open { opacity: 1; pointer-events: auto; }

.notify-modal {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px 28px 26px;
  transform: translateY(8px) scale(0.98);
  transition: transform 0.18s ease;
}
.notify-backdrop.is-open .notify-modal { transform: translateY(0) scale(1); }
.notify-modal::before, .notify-modal::after {
  content: "";
  position: absolute;
  width: 12px; height: 12px;
  border-color: var(--accent);
  opacity: 0.7;
}
.notify-modal::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.notify-modal::after { bottom: -1px; right: -1px; border-bottom: 2px solid; border-right: 2px solid; }

.notify-close {
  position: absolute;
  top: 10px; right: 12px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}
.notify-close:hover { color: var(--accent); }

.notify-modal .prompt { display: block; font-size: 0.85rem; margin-bottom: 10px; }
.notify-sub { color: var(--text-dim); font-size: 0.85rem; margin: 0 0 20px; line-height: 1.55; }

#notifyForm { display: flex; flex-direction: column; gap: 16px; }
.notify-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.95rem;
  padding: 8px 2px;
  outline: none;
  transition: border-color 0.15s ease;
}
.notify-input::placeholder { color: var(--text-dim); }
.notify-input:focus { border-color: var(--accent); }

.notify-submit { align-self: flex-start; }

.notify-status { min-height: 1.2em; font-size: 0.82rem; margin: 14px 0 0; }
.notify-status.is-ok { color: var(--accent); }
.notify-status.is-err { color: var(--accent-wine); }

/* ---------- Work grid (posters / video cards) ---------- */

.work-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}
.work-grid .work-item { flex: 1 1 210px; max-width: 250px; min-width: 170px; }
#events .work-grid .work-item { flex: 1 1 220px; max-width: 248px; }

.work-item .frame {
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel);
  aspect-ratio: 2 / 3;
  overflow: hidden;
}
.work-item .frame::before, .work-item .frame::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--accent);
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}
.work-item .frame::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.work-item .frame::after { bottom: -1px; right: -1px; border-bottom: 2px solid; border-right: 2px solid; }

.work-item .frame img,
.work-item .frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: filter 0.3s ease;
}
.work-item:hover .frame img,
.work-item:hover .frame video { filter: saturate(1); }

.work-item .caption { margin-top: 12px; }
.work-item .caption h3 { margin: 0 0 2px; font-size: 0.95rem; }
.work-item .caption h3::before { content: "> "; color: var(--accent); }
.work-item .caption .role { color: var(--text-dim); font-size: 0.78rem; }

/* per-section frame ratios: artists square, event flyers 4:5 */
#artists .work-item .frame { aspect-ratio: 1 / 1; }
#events .work-item .frame { aspect-ratio: 4 / 5; }

/* video cards (commercials) — wider, 16:9, hover-to-preview */
.work-grid.videos .work-item { flex: 1 1 290px; max-width: 336px; }
.work-item.video .frame { aspect-ratio: 16 / 9; cursor: pointer; }
.work-item.video .vid-hint {
  position: absolute;
  right: 8px; bottom: 8px;
  z-index: 1;
  font-size: 0.68rem;
  color: var(--accent);
  background: rgba(10, 11, 10, 0.75);
  padding: 3px 8px;
  pointer-events: none;
}

/* ---------- Service glyphs — one minimal graphic per service ---------- */

.svc-glyph { display: block; width: 100%; max-width: 190px; height: auto; aspect-ratio: 68 / 30; margin-top: 14px; opacity: 0.7; }
.panel > .svc-glyph { margin: 0 auto 16px; max-width: 140px; }
.svc-glyph line, .svc-glyph path, .svc-glyph circle { fill: none; stroke: var(--accent); stroke-width: 1.1; }
.svc-glyph rect { fill: var(--accent); }
.svc-glyph .dim { stroke: var(--line); }
.svc-glyph .p { stroke: var(--accent-purple); }
.svc-glyph .p-fill { fill: var(--accent-purple); }
.svc-glyph .o { stroke: var(--accent-orange); }
.svc-glyph .o-fill { fill: var(--accent-orange); }
.svc-glyph .w { stroke: var(--accent-wine); }
.svc-glyph .w-fill { fill: var(--accent-wine); }

/* ---------- Services list (ls -la style) ---------- */

.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid;
  grid-template-columns: 1fr 2.4fr auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.svc-row .name::before { content: "> "; color: var(--accent); }
.svc-row .name { font-weight: 600; }
.svc-row .desc { color: var(--text-dim); font-size: 0.85rem; }
.svc-row .desc ul { margin: 8px 0 0; padding-left: 16px; }
.svc-row .desc li { margin-bottom: 4px; }
.svc-row .price { text-align: right; color: var(--accent-orange); font-weight: 700; white-space: nowrap; }
.svc-row .price small { display: block; color: var(--text-dim); font-weight: 400; font-size: 0.7rem; margin-top: 4px; }
.svc-row .book { display: inline-block; margin-top: 10px; font-size: 0.78rem; color: var(--text-dim); }
.svc-row .book:hover { color: var(--accent); }
.svc-row .book::before { content: "book "; color: var(--accent); }

@media (max-width: 760px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-row .price { text-align: left; }
}

/* ---------- FAQ (man-page style) ---------- */

.faq-list { border-top: 1px solid var(--line); }
details.faq { border-bottom: 1px solid var(--line); padding: 18px 0; }
details.faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
details.faq summary::before { content: "> "; color: var(--accent); }
details.faq summary::-webkit-details-marker { display: none; }
details.faq .answer { color: var(--text-dim); margin: 10px 0 0 1.1em; font-size: 0.85rem; }

/* ---------- Closing ---------- */

.closing { padding: 72px 0; }
.closing .prompt { display: block; margin-bottom: 10px; font-size: 0.85rem; }
.closing h2 { font-size: clamp(1.2rem, 2.6vw, 1.7rem); margin: 0 0 26px; font-weight: 500; max-width: 640px; }

/* ---------- Footer ---------- */

footer.site { padding: 40px 0; border-top: 1px solid var(--line); }
footer.site .cols { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; margin-bottom: 28px; }
footer.site h4 { color: var(--text-dim); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 12px; }
footer.site a { display: block; margin-bottom: 8px; font-size: 0.82rem; color: var(--text); }
footer.site a:hover { color: var(--accent); }
footer.site .bottom { font-size: 0.75rem; color: var(--text-dim); }
footer.site .bottom::before { content: "# "; }

@media (max-width: 640px) {
  nav.main a:not(.link-accent) { display: none; }
}
