/* ============================================================
   CONOR PEDERSON — bold & colorful on dark
   Carolina Blue #4B9CD3 · Purple #8A4FFF · Black #08080D
   Display: Oswald · Body: Archivo · Mono: IBM Plex Mono
   ============================================================ */

:root {
  --blue: #4B9CD3;
  --blue-bright: #6FB8EA;
  --purple: #8A4FFF;
  --purple-deep: #5B2EBF;
  --ink: #08080D;
  --ink-2: #0E0E16;
  --ink-3: #15151f;
  --paper: #F2F4F8;
  --muted: #9aa3b5;
  --display: "Oswald", sans-serif;
  --body: "Archivo", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --edge: 1px solid rgba(255, 255, 255, 0.09);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

::selection { background: var(--purple); color: #fff; }

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

.mono { font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.06em; }
.hidden-field { position: absolute; left: -9999px; }

/* --- grain overlay --- */
.noise {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-2%,2%); }
  40% { transform: translate(2%,-1%); }
  60% { transform: translate(-1%,-2%); }
  80% { transform: translate(1%,2%); }
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.5rem;
  background: linear-gradient(rgba(8,8,13,0.85), transparent);
}
.nav__brand {
  font-family: var(--display); font-weight: 700; font-size: 1.5rem;
  text-decoration: none; letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 2px 2px 0 var(--purple), 4px 4px 0 var(--blue);
}
.nav__links { display: flex; gap: 1.6rem; align-items: center; }
.nav__links a {
  font-family: var(--display); font-weight: 500;
  font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.12em;
  text-decoration: none; color: var(--paper);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--blue-bright); }
.nav__cta {
  border: 2px solid var(--blue); padding: 0.35rem 0.9rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
a.nav__cta:hover { background: var(--blue); color: var(--ink); transform: translateY(-2px); }
@media (max-width: 640px) {
  .nav { padding: 0.75rem 1rem; }
  .nav__brand { display: none; }
  .nav__links { width: 100%; justify-content: space-between; gap: 0.6rem; }
  .nav__links a { font-size: 0.82rem; letter-spacing: 0.08em; }
  .nav__cta { padding: 0.3rem 0.7rem; }
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url("/assets/img/hero-live.jpg") center 30% / cover no-repeat;
  filter: saturate(1.25) contrast(1.05);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(75,156,211,0.35) 0%, rgba(8,8,13,0.15) 35%, rgba(138,79,255,0.35) 100%),
    linear-gradient(rgba(8,8,13,0.25) 40%, var(--ink) 96%);
}
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5;
  animation: drift 14s ease-in-out infinite alternate;
}
.hero__glow--blue { width: 45vw; height: 45vw; background: var(--blue); top: -10%; left: -10%; }
.hero__glow--purple { width: 40vw; height: 40vw; background: var(--purple); bottom: 5%; right: -8%; animation-delay: -7s; }
@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(6vw,4vh) scale(1.15); }
}

.hero__inner {
  position: relative; z-index: 2;
  padding: 0 clamp(1.25rem, 6vw, 6rem) clamp(4rem, 9vh, 7rem);
}
.hero__kicker {
  font-family: var(--mono); font-size: 0.85rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--blue-bright);
  margin-bottom: 0.75rem;
}
.hero__name {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 0.92; text-transform: uppercase; letter-spacing: 0.01em;
}
.hero__line { display: block; }
.hero__line--outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--blue);
  text-shadow: 6px 6px 0 rgba(138,79,255,0.55);
}
.hero__actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* buttons */
.btn {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 1rem;
  text-decoration: none; cursor: pointer;
  padding: 0.9rem 2.2rem; display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s, color 0.2s;
}
.btn--primary {
  background: linear-gradient(100deg, var(--blue), var(--purple));
  color: #fff; border: none;
  box-shadow: 4px 4px 0 rgba(255,255,255,0.15);
}
.btn--primary:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 rgba(138,79,255,0.4); }
.btn--ghost {
  border: 2px solid rgba(255,255,255,0.35); color: #fff; background: transparent;
}
.btn--ghost:hover { border-color: var(--blue-bright); color: var(--blue-bright); transform: translateY(-2px); }

/* marquee */
.marquee {
  position: relative; z-index: 3;
  background: linear-gradient(90deg, var(--purple-deep), var(--blue) 55%, var(--purple-deep));
  overflow: hidden; padding: 0.55rem 0;
  transform: rotate(-1.2deg) scale(1.02);
  border-top: var(--edge); border-bottom: var(--edge);
}
.marquee__track {
  display: flex; gap: 1.4rem; align-items: center; white-space: nowrap;
  width: max-content;
  animation: scroll 22s linear infinite;
  font-family: var(--display); font-weight: 600; font-size: 1.05rem;
  letter-spacing: 0.25em; color: #fff;
}
.marquee__track i { font-style: normal; opacity: 0.7; }
@keyframes scroll { to { transform: translateX(-33.333%); } }

/* ============ SECTIONS ============ */
.section { padding: clamp(4rem, 10vh, 7rem) clamp(1.25rem, 6vw, 6rem); position: relative; }
.section__head {
  display: flex; align-items: baseline; gap: 1.2rem; margin-bottom: 2.8rem;
}
.section__num {
  font-family: var(--mono); color: var(--blue); font-size: 1rem;
}
.section__title {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1;
  letter-spacing: 0.02em;
}
.section__title::after {
  content: ""; display: block; width: 4.5rem; height: 5px; margin-top: 0.7rem;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}

/* ============ ABOUT ============ */
.about { background: var(--ink-2); }
.about__grid {
  display: grid; gap: 2rem;
  grid-template-columns: minmax(240px, 380px) 1fr;
  grid-template-areas: "tall copy" "tall wide";
  align-items: start;
}
.about__photo { position: relative; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo--tall { grid-area: tall; border: var(--edge); box-shadow: 10px 10px 0 rgba(75,156,211,0.35); }
.about__photo--wide { grid-area: wide; max-height: 340px; overflow: hidden; border: var(--edge); box-shadow: -10px 10px 0 rgba(138,79,255,0.35); }
.about__copy { grid-area: copy; max-width: 62ch; }
.about__copy p + p { margin-top: 1.1rem; }
.about__lede {
  font-size: 1.35rem; line-height: 1.5; font-weight: 500;
  color: #fff;
}
.about__lede::first-letter { color: var(--blue-bright); }
.about__tag { margin-top: 1.6rem; }
.about__tag .mono {
  color: var(--purple); border: 1px solid var(--purple);
  padding: 0.4rem 0.8rem; display: inline-block;
}
@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; grid-template-areas: "copy" "tall" "wide"; }
}

/* ============ SHOWS ============ */
.shows__list { display: flex; flex-direction: column; }
.show {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.6rem;
  align-items: center; padding: 1.4rem 1rem;
  border-top: var(--edge);
  transition: background 0.2s, transform 0.2s;
}
.show:last-child { border-bottom: var(--edge); }
.show:hover { background: rgba(75,156,211,0.07); transform: translateX(6px); }
.show__date {
  font-family: var(--display); text-transform: uppercase; text-align: center;
  line-height: 1; min-width: 4.6rem;
}
.show__date b { display: block; font-size: 2.2rem; font-weight: 700; color: var(--blue-bright); }
.show__date span { font-size: 0.9rem; letter-spacing: 0.2em; color: var(--muted); }
.show__date em { display:block; font-style: normal; font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
.show__venue { font-family: var(--display); font-weight: 500; font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.03em; }
.show__meta { color: var(--muted); font-size: 0.95rem; font-family: var(--body); text-transform: none; letter-spacing: 0; }
.show__cta .btn { padding: 0.55rem 1.3rem; font-size: 0.85rem; }
.show__cta .badge {
  font-family: var(--display); font-weight: 600; letter-spacing: 0.2em;
  color: var(--ink); background: var(--blue-bright);
  padding: 0.45rem 1.1rem; text-transform: uppercase; font-size: 0.85rem;
  box-shadow: 3px 3px 0 var(--purple);
}
.shows__empty { color: var(--muted); border: var(--edge); padding: 2rem; text-align: center; }
@media (max-width: 640px) {
  .show { grid-template-columns: auto 1fr; }
  .show__cta { grid-column: 2; justify-self: start; }
}

/* ============ MUSIC ============ */
.music { background: var(--ink-2); }
.feat {
  display: grid; grid-template-columns: minmax(260px, 460px) 1fr; gap: 2.5rem;
  align-items: center; margin-bottom: 3.5rem;
  padding: 2rem; border: var(--edge);
  background:
    radial-gradient(ellipse at top left, rgba(75,156,211,0.18), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(138,79,255,0.18), transparent 60%),
    var(--ink-3);
}
.feat__art { position: relative; }
.feat__art img { width: 100%; box-shadow: 14px 14px 0 rgba(138,79,255,0.4); }
.feat__label {
  position: absolute; top: -0.9rem; left: -0.9rem; z-index: 2;
  background: linear-gradient(100deg, var(--blue), var(--purple));
  color: #fff; font-family: var(--display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.8rem;
  padding: 0.45rem 1rem; box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
}
.feat__kicker { font-family: var(--mono); color: var(--blue-bright); letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.8rem; }
.feat__title {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1; margin: 0.5rem 0 0.6rem;
}
.feat__meta { color: var(--muted); margin-bottom: 1.6rem; }
@media (max-width: 820px) { .feat { grid-template-columns: 1fr; } }

.music__grid {
  display: grid; gap: 1.6rem;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.release {
  text-decoration: none; display: block; position: relative;
  border: var(--edge); background: var(--ink-3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.release:hover { transform: translate(-4px,-4px); box-shadow: 8px 8px 0 rgba(75,156,211,0.5); }
.release:nth-child(even):hover { box-shadow: 8px 8px 0 rgba(138,79,255,0.5); }
.release__art { aspect-ratio: 1; overflow: hidden; }
.release__art img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.release:hover .release__art img { transform: scale(1.05); }
.release__body { padding: 1rem 1.1rem 1.2rem; }
.release__title { font-family: var(--display); font-weight: 600; font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.03em; }
.release__meta { font-family: var(--mono); font-size: 0.75rem; color: var(--muted); letter-spacing: 0.08em; margin-top: 0.3rem; }
.release__listen {
  font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.15em;
  color: var(--blue-bright); text-transform: uppercase; margin-top: 0.7rem; display: inline-block;
}
.release__listen::after { content: " →"; }

/* ============ BOOKING ============ */
.booking__grid { display: grid; grid-template-columns: minmax(240px, 1fr) 2fr; gap: 3rem; align-items: start; }
.booking__blurb p { max-width: 36ch; }
.booking__blurb .booking__email { margin-top: 1.2rem; }
.booking__email a { color: var(--blue-bright); text-decoration-color: var(--purple); }
@media (max-width: 820px) { .booking__grid { grid-template-columns: 1fr; } }

.form { border: var(--edge); padding: 2rem; background: var(--ink-2); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.form__field { display: block; margin-bottom: 1.2rem; }
.form__field span {
  display: block; font-family: var(--display); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem;
  color: var(--blue-bright); margin-bottom: 0.4rem;
}
.form__field input, .form__field textarea {
  width: 100%; background: var(--ink); border: 1px solid rgba(255,255,255,0.18);
  color: var(--paper); font-family: var(--body); font-size: 1rem;
  padding: 0.75rem 0.9rem; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form__field input:focus, .form__field textarea:focus {
  border-color: var(--purple); box-shadow: 3px 3px 0 rgba(138,79,255,0.4);
}
.form__field input[type="date"] { color-scheme: dark; }
.form__submit { width: 100%; }

/* ============ FOOTER ============ */
.footer {
  border-top: var(--edge); padding: 3.5rem clamp(1.25rem, 6vw, 6rem) 2.5rem;
  text-align: center; background: var(--ink-2); overflow: hidden;
}
.footer__name {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.5rem, 9vw, 7rem); line-height: 1; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.14);
  margin-bottom: 2rem; user-select: none;
}
.footer__social { display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.6rem; }
.footer__social a {
  font-family: var(--display); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.9rem; text-decoration: none;
  color: var(--paper); border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer__social a:hover { color: var(--blue-bright); border-color: var(--purple); }
.footer__contact a { color: var(--muted); }
.footer__fine { color: var(--muted); opacity: 0.6; margin-top: 0.8rem; }

/* Studio credit — quiet, but a real followed link */
.footer__credit { color: var(--muted); opacity: 0.55; margin-top: 0.55rem; }
.footer__credit a {
  color: var(--blue); text-decoration: none;
  border-bottom: 1px solid rgba(75, 156, 211, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer__credit a:hover, .footer__credit a:focus-visible {
  color: var(--blue-bright); border-bottom-color: var(--blue-bright);
}

/* ============ REVEALS ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track, .hero__glow, .noise { animation: none; }
}
