/* ============================================
   BEYOND ME — site stylesheet, v5
   The marriage: julianmontilla.com's terminal
   DNA (JetBrains Mono, ink + grid, prompts,
   bracket-corner frames, EQ instruments) with
   the editorial artist layer (Oswald display,
   duotone photography, ticker, big booking).
   Palette: periwinkle / lavender / leaf green.
   ============================================ */

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

:root {
  --bg: #0c0b17;
  --panel: #121022;
  --line: #292642;
  --text: #edebf7;
  --text-dim: #7e7a97;
  --accent: #8b8df0;          /* periwinkle */
  --accent-purple: #6d70e4;   /* deep periwinkle */
  --accent-lav: #bab5f6;      /* light lavender */
  --accent-green: #3fa06b;    /* leaf green */
  --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(186,181,246,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(186,181,246,0.02) 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: #0c0b17; }

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

.prompt { color: var(--accent); }
.comment { color: var(--text-dim); }
.comment::before { content: "# "; }
.comment a { color: var(--text); border-bottom: 1px solid var(--line); }
.comment a:hover { color: var(--accent); border-color: var(--accent); }

h1, h2, h3 { font-weight: 600; letter-spacing: -0.01em; }

/* display type — the editorial layer */
.sec-title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 6.4vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 6px 0 10px;
}

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

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 11, 23, 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 — duotone photo inside the terminal shell ---------- */

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); padding: 0 0 40px; }
.hero-photo {
  position: relative;
  height: min(86vh, 800px);
  margin: 0;
  background: url("../img/photos/hero.jpg") center 42% / cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.hero-photo::before, .hero-photo::after {
  content: "";
  position: absolute;
  width: 12px; height: 12px;
  border-color: var(--accent);
  opacity: 0.8;
  z-index: 1;
}
.hero-photo::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.hero-photo::after { bottom: -1px; right: -1px; border-bottom: 2px solid; border-right: 2px solid; }

.hero-content { margin-top: -120px; position: relative; z-index: 2; }
.hero-note {
  display: inline-block;
  font-size: 0.8rem;
  background: rgba(12, 11, 23, 0.85);
  border: 1px solid var(--line);
  padding: 6px 12px;
  margin-bottom: 18px;
}
.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; } }

.hero-word {
  display: block;
  width: min(860px, 94%);
  height: auto;
  margin: 0 0 16px;
  filter: drop-shadow(0 4px 22px rgba(0,0,0,0.55));
}
.hero-tag { color: var(--text-dim); font-size: 0.88rem; margin: 0 0 24px; }

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

.btn {
  display: inline-block;
  font-size: 0.85rem;
  padding: 12px 22px;
  border: 1px solid var(--text-dim);
  color: var(--text);
  background: rgba(12, 11, 23, 0.7);
  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: #0c0b17; font-weight: 600; }
.btn-fill::after { color: #0c0b17; }
.btn-fill:hover { background: var(--accent-lav); border-color: var(--accent-lav); color: #0c0b17; }

/* ---------- EQ instruments ---------- */

.eq {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 38px;
  margin: 40px 0 0;
  opacity: 0.4;
}
.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;
}
.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-green); 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-lav); 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); } }

/* stereo LED peak meters — booking section */
.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-green) 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%; } }

/* ---------- Ticker — the one loud brand moment ---------- */

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--accent-purple);
  color: #0c0b17;
  padding: 10px 0;
}
.ticker-track { display: inline-flex; white-space: nowrap; animation: tick 38s linear infinite; }
.ticker-track span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

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

section.block, .closing { position: relative; }
section.block { padding: 76px 0; border-bottom: 1px solid var(--line); }

/* the periwinkle band — original EPK color blocking, family-dark */
#music {
  background:
    linear-gradient(165deg, rgba(139,141,240,0.14) 0%, rgba(12,11,23,0.4) 100%),
    #262358;
}
#music .frame { border-color: rgba(186,181,246,0.28); background: rgba(12,11,23,0.4); }
#music .label-strip, #music .live-list li { border-color: rgba(186,181,246,0.24); }
#music .comment { color: #a5a1c4; }
.hero .wrap, section.block .wrap, .closing .wrap { position: relative; z-index: 1; }

.section-head { margin-bottom: 38px; }
.section-head .prompt { font-size: 0.85rem; display: block; margin-bottom: 4px; }
.section-head p.comment { margin: 0; font-size: 0.85rem; }

/* line-art lavender — small vector mark opening each section */
.sec-mark {
  display: block;
  height: 44px;
  width: auto;
  margin-bottom: 14px;
  opacity: 0.75;
}

/* full-bleed photo divider */
.band-divider {
  height: clamp(220px, 38vh, 400px);
  background:
    linear-gradient(180deg, rgba(12,11,23,0.5), rgba(12,11,23,0.2) 50%, rgba(12,11,23,0.5)),
    url("../img/photos/divider.jpg") center 35% / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

/* ---------- Bracket-corner frame (shared) ---------- */

.frame {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}
.frame::before, .frame::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--accent);
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}
.frame::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.frame::after { bottom: -1px; right: -1px; border-bottom: 2px solid; border-right: 2px solid; }
.frame img, .frame video, .frame .facade {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: filter 0.3s ease;
}
.frame:hover img, .frame:hover video, .frame:hover .facade { filter: saturate(1); }

/* ---------- Music: random-track player ---------- */

.player {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  margin-bottom: 10px;
}
.pl-btn, .pl-shuffle {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 52'%3E%3Ccircle cx='26' cy='26' r='24' fill='none' stroke='%23bab5f6' stroke-width='1.4' stroke-dasharray='44 7 74 7 10 7'/%3E%3C/svg%3E") center / contain no-repeat,
    rgba(12, 11, 23, 0.6);
  color: var(--text);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  transition: transform 0.2s, color 0.2s;
}
.pl-btn:hover, .pl-shuffle:hover { transform: rotate(14deg) scale(1.06); color: var(--accent); }
.pl-shuffle { width: 42px; height: 42px; font-size: 1.1rem; color: var(--text-dim); }
.pl-info { flex: 1; min-width: 0; }
.pl-title {
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pl-title::before { content: "> "; color: var(--accent); }
.pl-bar {
  position: relative;
  height: 8px;
  border: 1px solid var(--line);
  background: var(--bg);
  cursor: pointer;
}
.pl-fill {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 0%;
  background:
    repeating-linear-gradient(90deg, var(--bg) 0 2px, transparent 2px 6px),
    var(--accent);
}
.pl-time { margin: 6px 0 0; font-size: 0.7rem; color: var(--text-dim); }
.player-note { font-size: 0.78rem; margin: 0 0 44px; }

/* ---------- Music: spotlight + grid ---------- */

.spotlight {
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 56px;
}
.spot-cover { aspect-ratio: 1; }
.spot-info .comment { font-size: 0.8rem; }
.spot-title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 8px 0 10px;
}
.spot-meta { color: var(--text-dim); font-size: 0.85rem; margin: 0 0 24px; }

.release-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.release { aspect-ratio: 1; }
.release img { aspect-ratio: 1; }
.r-cap {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 26px 10px 8px;
  background: linear-gradient(180deg, transparent, rgba(12,11,23,0.94));
  font-size: 0.68rem;
  line-height: 1.5;
  color: var(--text-dim);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.r-cap b { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text); }
.r-cap b::before { content: "> "; color: var(--accent); }
.release:hover .r-cap { opacity: 1; }
@media (hover: none) { .r-cap { opacity: 1; } }

.label-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px 38px;
  padding: 30px 0 26px;
  margin-top: 44px;
  border-top: 1px solid var(--line);
}
.label-strip img { height: 34px; width: auto; opacity: 0.45; transition: opacity 0.2s; }
.label-strip img:hover { opacity: 0.9; }

.credits { font-size: 0.8rem; margin: 0 0 6px; }

/* ---------- Sample packs ---------- */

.packs-cols { display: flex; gap: 48px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.packs-text { flex: 1 1 340px; min-width: 0; }
.pack-shots { display: flex; gap: 22px; flex: 0 0 auto; }
.pack-shot { flex: 0 0 230px; margin: 0; }
.pack-shot img { aspect-ratio: 780 / 1050; }

/* step sequencer — one bar of 174 BPM two-step, playhead sweeping */
.seq {
  position: relative;
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  gap: 4px;
  max-width: 430px;
  margin: 6px 0 30px;
}
.seq i { display: block; aspect-ratio: 1; border: 1px solid var(--line); }
.seq i.k { background: var(--accent); border-color: var(--accent); opacity: 0.9; }
.seq i.s { background: var(--accent-lav); border-color: var(--accent-lav); opacity: 0.9; }
.seq i.h { background: var(--accent-green); border-color: var(--accent-green); opacity: 0.55; }
.seq-head {
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: 0;
  width: calc((100% - 60px) / 16);
  border: 1px solid rgba(186, 181, 246, 0.55);
  background: rgba(139, 141, 240, 0.14);
  animation: seqrun 1.379s steps(16, end) infinite;
  pointer-events: none;
}
@keyframes seqrun { to { transform: translateX(1710%); } }

/* signal wire — pulse travelling to a floret */
.wire {
  position: relative;
  display: block;
  height: 1px;
  max-width: 560px;
  margin: 0 0 30px;
  background: var(--line);
}
.wire::before {
  content: "";
  position: absolute;
  right: -3px; top: -3px;
  width: 7px; height: 7px;
  background: var(--accent-lav);
  transform: rotate(45deg);
  opacity: 0.9;
}
.wire::after {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 14px; height: 3px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0;
  animation: wirepulse 5s linear infinite;
}
@keyframes wirepulse {
  0% { left: 0; opacity: 0.6; }
  22% { left: calc(100% - 14px); opacity: 0.6; }
  24%, 100% { left: calc(100% - 14px); opacity: 0; }
}

/* spinning record — promo mix facade */
.disc {
  position: relative;
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid var(--text-dim);
  background:
    radial-gradient(circle, var(--accent) 0 9px, transparent 10px),
    repeating-radial-gradient(circle, transparent 0 7px, var(--line) 7px 9px);
  opacity: 0.9;
  animation: discspin 5.4s linear infinite;
}
.disc::after {
  content: "";
  position: absolute;
  top: 8px;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 15px;
  background: var(--accent-lav);
  opacity: 0.8;
}
@keyframes discspin { to { transform: rotate(360deg); } }

/* ---------- Sets: carousel of framed embeds ---------- */

.sets-orb {
  position: absolute;
  top: 60px;
  right: 24px;
  width: min(240px, 20vw);
  margin: 0;
  text-align: center;
  z-index: 0;
}
.sets-orb img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  padding: 7px;
  margin-bottom: 10px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='49' fill='none' stroke='%238b8df0' stroke-width='0.8' stroke-dasharray='86 13 141 13 21 13'/%3E%3C/svg%3E") center / contain no-repeat;
}
.sets-orb .comment { font-size: 0.7rem; }

.carousel { position: relative; margin-top: 48px; }
.car-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(186,181,246,0.3) transparent;
}
.car-card { flex: 0 0 min(460px, 84vw); scroll-snap-align: start; }
.car-card .frame { aspect-ratio: 16 / 9; }
.card-idx { font-size: 0.72rem; letter-spacing: 0.26em; color: var(--accent); margin: 14px 0 2px; }
.car-card h3 { font-size: 0.92rem; margin: 0 0 2px; }
.car-card h3::before { content: "> "; color: var(--accent); }
.card-meta { font-size: 0.75rem; color: var(--text-dim); margin: 0; }

.embed { cursor: pointer; }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.facade { position: absolute; inset: 0; background-size: cover; background-position: center; }
.facade-sc {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--panel), #1b1838);
}
.facade-flower { width: 64px !important; height: auto !important; opacity: 0.9; object-fit: contain !important; }
.vid-hint {
  position: absolute;
  right: 8px; bottom: 8px;
  z-index: 1;
  font-size: 0.68rem;
  color: var(--accent);
  background: rgba(12, 11, 23, 0.75);
  padding: 3px 8px;
  pointer-events: none;
}

.car-btn {
  position: absolute;
  top: 32%;
  z-index: 2;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 52'%3E%3Ccircle cx='26' cy='26' r='24' fill='none' stroke='%23bab5f6' stroke-width='1.4' stroke-dasharray='44 7 74 7 10 7'/%3E%3C/svg%3E") center / contain no-repeat,
    rgba(12, 11, 23, 0.85);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s;
  font-family: "JetBrains Mono", monospace;
}
.car-btn:hover { transform: rotate(14deg) scale(1.06); }
.car-prev { left: -10px; }
.car-next { right: -10px; }

/* ---------- Live: tour list over dimmed photo ---------- */

.section-band { overflow: hidden; }
.band-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,11,23,0.82), rgba(12,11,23,0.45) 50%, rgba(12,11,23,0.85)),
    url("../img/photos/band.jpg") center / cover no-repeat;
  opacity: 0.55;
  pointer-events: none;
}
.band-content { position: relative; z-index: 1; }

.live-group { font-size: 0.78rem; margin: 34px 0 4px; }
.live-group::before { content: ""; }
.live-list { list-style: none; margin: 0; padding: 0; }
.live-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.live-list b {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.live-list b a { border-bottom: 1px solid var(--line); }
.live-list b a:hover { color: var(--accent); border-color: var(--accent); }
.live-list span { font-size: 0.78rem; color: var(--text-dim); text-align: right; flex-shrink: 0; }
.live-past b { font-size: clamp(1rem, 2vw, 1.35rem); }

/* booth clips — three framed loops */
.clip-row { display: flex; gap: 22px; flex-wrap: wrap; }
.clip-row .frame { flex: 1 1 200px; max-width: 260px; aspect-ratio: 3 / 4; }

/* ---------- About ---------- */

.about-grid { display: flex; gap: 48px; align-items: flex-start; }
.about-text { flex: 1 1 480px; min-width: 0; }
.pull {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 26px;
}
.about-cols { columns: 2; column-gap: 36px; margin-bottom: 20px; }
.about-cols p { margin: 0 0 14px; color: var(--text-dim); font-size: 0.85rem; break-inside: avoid; }

.about-shot { flex: 0 0 300px; margin: 0; }
.about-shot img { aspect-ratio: 3 / 4; }

/* ---------- Booking (closing) ---------- */

.closing { padding: 80px 0; }
.closing .prompt { display: block; margin-bottom: 12px; font-size: 0.85rem; }

.book-grid { display: flex; gap: 56px; align-items: center; }
.book-main { flex: 1 1 520px; min-width: 0; }
.book-shot { flex: 0 0 280px; margin: 0; }
.book-shot img { aspect-ratio: 3 / 4; }

.book-big {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  color: var(--accent-lav);
  transition: color 0.25s;
}
.book-big span { display: inline-block; transition: transform 0.3s; }
.book-big:hover { color: #fff; }
.book-big:hover span { transform: translateX(12px); }
.book-note { font-size: 0.85rem; margin: 0 0 28px; }

.rider { margin-top: 38px; max-width: 640px; }
details.faq { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; }
details.faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 600;
}
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; }
details.faq .answer p { margin: 0 0 10px; }
details.faq .answer strong { color: var(--text); font-weight: 600; }

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

footer.site { padding: 40px 0; border-top: 1px solid var(--line); }
.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; }
.foot-flower { display: block; height: 34px; width: auto; margin: 0 auto 26px; opacity: 0.8; }

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 .cols a { display: block; margin-bottom: 8px; font-size: 0.82rem; color: var(--text); }
footer.site .cols a:hover { color: var(--accent); }
footer.site .bottom { font-size: 0.75rem; color: var(--text-dim); }
footer.site .bottom::before { content: "# "; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .release-grid { grid-template-columns: repeat(3, 1fr); }
  .sets-orb { display: none; }
  .spotlight { grid-template-columns: 1fr; gap: 28px; }
  .spot-cover { max-width: 340px; }
  .about-grid { flex-direction: column; }
  .about-cols { columns: 1; }
  .about-shot { flex-basis: auto; max-width: 340px; }
}

@media (max-width: 640px) {
  nav.main a:not(.link-accent) { display: none; }
  .book-grid { flex-direction: column; align-items: flex-start; }
  .book-shot { flex-basis: auto; max-width: 300px; }
  .sec-mark { height: 36px; }
  .release-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-content { margin-top: -90px; }
  .hero-photo { height: 52vh; }
  .clip-row .frame { max-width: none; }
  .car-prev { left: 2px; }
  .car-next { right: 2px; }
}

@media (max-width: 700px) {
  .packs-cols { justify-content: center; }
  .pack-shots { flex-wrap: wrap; justify-content: center; }
  .pack-shot { flex-basis: 210px; }
}

@media (prefers-reduced-motion: reduce) {
  .eq span, .bg-eq span, .meter .fill, .live-dot, .transport .t-rec,
  .seq-head, .wire::after, .disc { animation: none !important; }
  .ticker-track { animation: none; }
  html { scroll-behavior: auto; }
}
