/* =========================================================
   Amy Lee — promo site
   ========================================================= */

:root {
  /* Surfaces */
  --bg: #0A0A0C;
  --bg-elev: #14141A;
  --bg-card: #16161D;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --text: #F4F4F6;
  --text-dim: #A6A6B3;
  --text-mute: #888896;

  /* Accents — pink → purple → blue → green */
  --c-pink:  #FF5C8D;
  --c-purple:#A75CFF;
  --c-blue:  #4F8CFF;
  --c-teal:  #2DD4BF;

  --grad: linear-gradient(95deg, var(--c-pink) 0%, var(--c-purple) 38%, var(--c-blue) 70%, var(--c-teal) 100%);
  --grad-soft: linear-gradient(95deg, rgba(255,92,141,.18), rgba(167,92,255,.18) 38%, rgba(79,140,255,.18) 70%, rgba(45,212,191,.18) 100%);

  /* Type */
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1180px;
  --pad-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(28px, 3.5vw, 56px);

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle ambient glow behind everything */
body::before {
  content: "";
  position: fixed;
  inset: -20vmax;
  background:
    radial-gradient(60vmax 60vmax at 15% 8%, rgba(167, 92, 255, .14), transparent 60%),
    radial-gradient(50vmax 50vmax at 88% 12%, rgba(45, 212, 191, .10), transparent 65%),
    radial-gradient(50vmax 50vmax at 60% 90%, rgba(255, 92, 141, .10), transparent 65%);
  z-index: -1;
  pointer-events: none;
}

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

a { color: inherit; text-decoration: none; }

::selection { background: rgba(167, 92, 255, .45); color: #fff; }

/* Focus ring */
:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 3px;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--c-purple);
  border-radius: 6px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bg-elev);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* =========================================================
   Topbar
   ========================================================= */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--pad-x);
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transform: translateY(-100%);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
  z-index: 50;
}
.topbar.is-visible {
  transform: translateY(0);
  border-bottom-color: var(--line);
}
.topbar__brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 18px;
}
.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.topbar__cta i {
  font-size: 11px;
  color: var(--text-dim);
  transition: transform .2s ease, color .2s ease;
}
.topbar__cta:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line-strong);
}
.topbar__cta:hover i {
  transform: translateX(2px);
  color: var(--text);
}

/* =========================================================
   Shared
   ========================================================= */
.eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(30px, 4.4vw, 52px);
  margin: 0;
}

.section-head { max-width: 720px; margin: 0 0 20px; }
.section-lead {
  margin: 16px 0 0;
  color: var(--text-dim);
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 56ch;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-purple { color: var(--c-purple); font-weight: 600; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .2s ease, border-color .25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn i { font-size: 14px; }
.btn .btn__cue { font-size: 11px; opacity: .75; margin-left: 2px; }
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 30px -10px rgba(167, 92, 255, .55);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -12px rgba(167, 92, 255, .7);
}
.btn--ghost {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.28);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(96px, 11vw, 140px) var(--pad-x) clamp(20px, 3vw, 40px);
  max-width: var(--container);
  margin: 0 auto;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.92;
  font-size: clamp(64px, 12vw, 156px);
  margin: 8px 0 24px;
}
.hero__sub {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  color: var(--text);
  max-width: 36ch;
  margin: 0 0 32px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 1 / 1;
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,.7),
    0 0 0 1px var(--line) inset;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06) brightness(0.96);
}
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(167, 92, 255, .14) 0%, transparent 45%, rgba(45, 212, 191, .10) 100%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.hero__photo-glow {
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: var(--grad);
  filter: blur(40px);
  opacity: 0.5;
}

.hero__stats {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.01em;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}
.hero__stats strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-right: 4px;
}
.hero__stats-sep { color: var(--text-mute); }

@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__photo { max-width: 380px; justify-self: start; order: -1; }
  .hero__sub { max-width: none; }
}

/* =========================================================
   Generic section padding
   ========================================================= */
.current {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-y) var(--pad-x);
}

/* =========================================================
   Currently working with — premium billing
   ========================================================= */
.current__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.current__item {
  position: relative;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
  isolation: isolate;
}
.current__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: -1;
}
.current__item:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.current__item:hover::after { opacity: 1; }

/* Card image — full-bleed at the top */
.current__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 5 / 2;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-elev);
}
.current__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center var(--photo-y, 50%);
  filter: saturate(0.78) contrast(1.06) brightness(0.92);
  transition: transform .6s ease, filter .35s ease;
}
.current__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(10, 10, 12, .55) 100%),
    linear-gradient(135deg, rgba(167, 92, 255, .14) 0%, transparent 45%, rgba(45, 212, 191, .10) 100%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.current__item:hover .current__photo img {
  transform: scale(1.03);
  filter: saturate(0.9) contrast(1.08) brightness(0.96);
}

/* Card body — content sits below the image with the gradient accent line */
.current__body {
  position: relative;
  padding: 22px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.current__body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16%;
  bottom: 16%;
  width: 3px;
  background: var(--grad);
  border-radius: 0 3px 3px 0;
  opacity: .85;
  transition: opacity .3s ease, top .35s ease, bottom .35s ease;
}
.current__item:hover .current__body::before {
  top: 6%;
  bottom: 6%;
  opacity: 1;
}

.current__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.current__year {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-mute);
}

.current__name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.05;
  margin: 0;
}
.current__campaign {
  margin: 0;
  color: var(--text-dim);
  font-size: clamp(14px, 1.2vw, 15px);
  line-height: 1.5;
  max-width: 50ch;
}
.current__campaign em { color: var(--text); font-style: italic; }

.current__also {
  margin: clamp(36px, 4.5vw, 52px) 0 0;
  text-align: center;
}
.current__also-label {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.current__also-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.current__also-list li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.current__also-list li i {
  font-size: 13px;
  color: var(--c-purple);
  opacity: .9;
}
.current__also-list li:hover {
  border-color: rgba(167, 92, 255, .35);
  background: rgba(167, 92, 255, .04);
  transform: translateY(-1px);
}

/* Wider list — supporting credits nested under the headline cards */
.current__wider {
  margin-top: clamp(32px, 4vw, 56px);
  padding-top: clamp(28px, 3.5vw, 44px);
  border-top: 1px solid var(--line);
}
.current__wider-label { margin-bottom: clamp(20px, 2.5vw, 28px); }

@media (max-width: 820px) {
  .current__list { grid-template-columns: 1fr; }
  .current__body { padding: 20px 22px 24px; }
  .current__photo { aspect-ratio: 2 / 1; }
}

/* =========================================================
   Album & show campaign covers
   ========================================================= */
.albums {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 26px);
  max-width: 760px;
}
.album {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.album__cover {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-elev);
  box-shadow:
    0 18px 40px -20px rgba(0, 0, 0, .75),
    0 0 0 1px var(--line) inset;
  transition: transform .35s ease, box-shadow .35s ease;
}
.album__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-pos, center center);
  transition: transform .6s ease;
}
.album:hover .album__cover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 50px -20px rgba(0, 0, 0, .85),
    0 0 0 1px var(--line-strong) inset;
}
.album:hover .album__cover img { transform: scale(1.03); }

.album__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.album__tag {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.album__tag i { color: var(--c-purple); font-size: 12px; }
.album__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.album__title em { font-style: italic; color: var(--text-dim); }
.album__body {
  margin: 4px 0 0;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .albums { grid-template-columns: 1fr; gap: 24px; }
}

/* =========================================================
   Venues marquee (slim variant under notable shows)
   ========================================================= */
.marquee {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.012), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  width: max-content;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: -0.005em;
  color: var(--text-mute);
}
.marquee__dot {
  color: var(--c-purple);
  font-size: 7px;
  opacity: .55;
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}


/* =========================================================
   Notable shows — editorial text list inside Past Experience
   ========================================================= */
.notable {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.notable__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}
.notable__item:hover { background: rgba(255, 255, 255, .02); }
.notable__date {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-purple);
  padding-top: 4px;
}
.notable__lead {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.notable__lead em {
  font-style: italic;
  color: var(--text-dim);
}
.notable__note {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0;
  line-height: 1.5;
}

@media (max-width: 540px) {
  .notable__item { grid-template-columns: 72px 1fr; gap: 14px; }
  .notable__date { font-size: 11px; }
  .notable__lead { font-size: 15px; }
}

/* =========================================================
   Wordmarks (also worked with) — tiered
   ========================================================= */
.past__group { margin-top: clamp(20px, 3vw, 32px); }
.past__group:first-of-type { margin-top: 0; }
.past__group-label {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.wordmarks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.wordmarks--featured { grid-template-columns: repeat(6, 1fr); }
.wordmark {
  position: relative;
  background: var(--bg);
  padding: 22px 12px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 128px;
  transition: background .25s ease;
}
.wordmark__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.wordmark__link:focus-visible {
  outline: 2px solid var(--c-purple);
  outline-offset: -2px;
  border-radius: 6px;
}
.wordmark img {
  max-width: 80%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: opacity(0.85);
  transition: filter .3s ease;
}
.wordmark__name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  line-height: 1.2;
  transition: color .25s ease;
}
.wordmark:hover { background: var(--bg-elev); }
.wordmark:hover img { filter: opacity(1); }
.wordmark:hover .wordmark__name { color: var(--text-dim); }

/* Black-on-transparent logos (Disney, Sony Pictures) get inverted to render
   as white wordmarks on the dark cell. Also used for Tankee since its navy
   mark would otherwise sit too low-contrast on the dark surface. */
.wordmark--invert img {
  filter: brightness(0) invert(1) opacity(0.7);
}
.wordmark--invert:hover img {
  filter: brightness(0) invert(1) opacity(0.95);
}

@media (max-width: 1080px) {
  .wordmarks,
  .wordmarks--featured { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .wordmarks,
  .wordmarks--featured { grid-template-columns: repeat(2, 1fr); }
}

/* Other artists — mini horizontal cards sibling to the headline cards */
.other-artists {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.other-artist {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px 18px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform .25s ease, border-color .25s ease;
}
.other-artist:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}
.other-artist__photo {
  position: relative;
  margin: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 0 0 1px var(--line-strong) inset;
}
.other-artist__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(167, 92, 255, .14) 0%, transparent 45%, rgba(45, 212, 191, .10) 100%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.other-artist__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center var(--photo-y, 50%);
  filter: saturate(0.78) contrast(1.06) brightness(0.94);
}
.other-artist__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.other-artist__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.other-artist__sub {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.other-artist__blurb {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.45;
}

@media (max-width: 720px) {
  .other-artists { grid-template-columns: 1fr; }
  .other-artist { grid-template-columns: 72px 1fr; gap: 14px; padding: 14px 18px 14px 14px; }
  .other-artist__photo { width: 72px; height: 72px; }
  .other-artist__name { font-size: 17px; }
}

/* =========================================================
   Contact — bold finale: gradient title, ambient glow, big CTAs
   ========================================================= */
.contact {
  position: relative;
  overflow: hidden;
  margin-top: clamp(8px, 1.5vw, 24px);
  border-top: 1px solid var(--line);
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 70% at 25% 35%, rgba(255, 92, 141, .22), transparent 70%),
    radial-gradient(40% 70% at 75% 65%, rgba(45, 212, 191, .18), transparent 70%),
    radial-gradient(50% 80% at 50% 50%, rgba(167, 92, 255, .14), transparent 80%);
  pointer-events: none;
  z-index: -1;
}
.contact__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
  padding: clamp(48px, 6vw, 80px) var(--pad-x);
  isolation: isolate;
}
.contact .eyebrow {
  margin: 0 0 18px;
}
.contact__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(44px, 7vw, 88px);
}
.contact__lead {
  margin: 0 auto clamp(32px, 4vw, 44px);
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-dim);
  max-width: 44ch;
}
.contact__ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.contact__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 999px;
  text-align: left;
  transition: transform .25s ease, box-shadow .3s ease, border-color .25s ease, background .25s ease;
}
.contact__cta--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 14px 36px -10px rgba(167, 92, 255, .55);
}
.contact__cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -10px rgba(167, 92, 255, .75);
}
.contact__cta--ghost {
  background: rgba(20, 20, 26, .55);
  color: var(--text);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.contact__cta--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 92, 255, .55);
  background: rgba(20, 20, 26, .75);
}
.contact__cta--ghost .contact__cta-icon {
  color: var(--c-purple);
}
.contact__cta-icon {
  font-size: 18px;
  flex-shrink: 0;
}
.contact__cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  align-items: flex-start;
}
.contact__cta-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.78;
}
.contact__cta-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  margin-top: 2px;
}
.contact__cta-cue {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-left: 4px;
}
.contact__cta-cue i { font-size: 11px; }

@media (max-width: 540px) {
  .contact__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .contact__cta {
    justify-content: flex-start;
    width: 100%;
  }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  position: relative;
  border-top: 1px solid var(--line);
  margin-top: clamp(24px, 3vw, 40px);
  padding: 28px var(--pad-x) 32px;
  text-align: center;
  color: var(--text-mute);
  font-size: 13px;
}
.footer__line {
  margin: 0;
  line-height: 1.6;
}
.footer__credit a {
  color: var(--text-dim);
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.footer__credit a:hover {
  color: var(--c-purple);
  border-bottom-color: var(--c-purple);
}
.footer__legal {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--text-mute);
  opacity: 0.7;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
.footer__paw {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin: 14px auto 0;
  border-radius: 50%;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-mute);
  font-size: 13px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity .25s ease, color .25s ease, transform .25s ease, border-color .25s ease, background .25s ease;
}
.footer__paw:hover {
  opacity: 1;
  color: var(--c-purple);
  border-color: rgba(167, 92, 255, .35);
  background: rgba(167, 92, 255, .06);
  transform: rotate(-12deg);
}

/* =========================================================
   Paw easter-egg modal
   ========================================================= */
.paw-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.paw-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.paw-modal[hidden] { display: none; }
.paw-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.paw-modal__card {
  position: relative;
  width: min(420px, 100%);
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .8);
  transform: translateY(12px) scale(.98);
  transition: transform .3s ease;
}
.paw-modal.is-visible .paw-modal__card {
  transform: translateY(0) scale(1);
}
.paw-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(10, 10, 12, .6);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.paw-modal__close:hover {
  background: rgba(10, 10, 12, .8);
  border-color: var(--line-strong);
}
.paw-modal__figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  background: var(--bg-elev);
  overflow: hidden;
}
.paw-modal__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.paw-modal__caption {
  padding: 18px 22px 22px;
  text-align: center;
}
.paw-modal__name {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.paw-modal__sub {
  margin: 0;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}

/* =========================================================
   Toast
   ========================================================= */
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 30px);
  padding: 12px 20px;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text);
  box-shadow: 0 14px 40px -12px rgba(0,0,0,.6);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 60;
  pointer-events: none;
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* =========================================================
   Mobile sizing pass — tightens element sizes for phones so
   the page reads as polished as it does on desktop. Layered on
   top of the existing collapse breakpoints (540/560/720/820/880).
   ========================================================= */

@media (max-width: 640px) {
  /* Section breathing — lift padding above the clamp minimum */
  .current { padding: 44px var(--pad-x); }
  .past__group { margin-top: 36px; }

  /* Hero — tighten top spacing and cap photo size */
  .hero { padding-top: 80px; padding-bottom: 24px; }
  .hero__inner { gap: 28px; }
  .hero__photo { max-width: 260px; justify-self: center; }
  .hero__sub { margin-bottom: 24px; }

  /* Albums — switch to horizontal mini-cards (cover left, text right),
     mirroring the .other-artist pattern. Avoids the orphan-cell gap a 2-col
     grid would produce with 3 items, and keeps the section compact. */
  .albums {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: none;
  }
  .album {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  .album__cover {
    flex: 0 0 110px;
    width: 110px;
    align-self: flex-start;
  }
  .album__meta { flex: 1; min-width: 0; }
  .album__title { font-size: 15px; line-height: 1.25; }
  .album__body { font-size: 12px; line-height: 1.45; }
  .album__tag { font-size: 10px; letter-spacing: 0.14em; }

  /* Other artists — bigger thumb so it sits proportionally next to the text */
  .other-artist { grid-template-columns: 88px 1fr; gap: 16px; padding: 16px 18px 16px 16px; }
  .other-artist__photo { width: 88px; height: 88px; }
  .other-artist__name { font-size: 18px; }

  /* Wordmarks — tighter cells; logos read better in less generous frames */
  .wordmark { padding: 16px 10px 14px; min-height: 96px; gap: 10px; }
  .wordmark img { max-height: 38px; }
  .wordmark__name { font-size: 10px; letter-spacing: 0.14em; }
}

@media (max-width: 360px) {
  /* Very narrow phones (iPhone SE-class) — keep layouts intact, shrink a touch more */
  .hero { padding-top: 72px; }
  .hero__photo { max-width: 220px; }

  .albums { gap: 12px; }
  .album { gap: 12px; }
  .album__cover { flex: 0 0 96px; width: 96px; }
  .album__title { font-size: 14px; }
  .album__body { font-size: 11px; line-height: 1.4; }

  .other-artist { grid-template-columns: 76px 1fr; gap: 14px; padding: 14px 14px 14px 12px; }
  .other-artist__photo { width: 76px; height: 76px; }

  .wordmark { padding: 14px 8px 12px; min-height: 84px; }
}
