  /* -----------------------------------------
   Into the Ether — Creature-style layout
   with red/purple/blue diagonal identity
   ----------------------------------------- */

:root {
  /* Palette */
  --bg: #0a0612;            /* near-black violet */
  --surface: rgba(255,255,255,0.04);
  --text: #f2eefb;
  --muted: #c8c0dc;
  --line: rgba(255,255,255,0.12);

  --accent-a: #ff2a6d;      /* hot red-pink */
  --accent-b: #a84bff;      /* purple */
  --accent-c: #2b8cff;      /* electric blue */

  /* Layout + type */
  --max: 68ch;
  --pad: clamp(1rem, 3vw, 1.5rem);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { color-scheme: dark; }

body {
  margin: 0;
  font-family: var(--font);
  line-height: 1.6;
  color: var(--text);

  /* Diagonal identity glow */
  background:
    radial-gradient(900px 600px at 20% -10%, rgba(255,42,109,0.20), transparent 60%),
    radial-gradient(900px 600px at 70% 20%, rgba(168,75,255,0.18), transparent 60%),
    radial-gradient(900px 700px at 110% 10%, rgba(43,140,255,0.18), transparent 60%),
    linear-gradient(135deg, rgba(255,42,109,0.10), rgba(168,75,255,0.08) 45%, rgba(43,140,255,0.10)),
    var(--bg);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b), var(--accent-c));
  color: #06020e;
  border-radius: 0 0 10px 0;
  font-weight: 700;
}
.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

/* Layout */
.wrap {
  width: min(var(--max), 100% - (var(--pad) * 2));
  margin-inline: auto;
}

.flow > * + * { margin-top: 1.25rem; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(10, 6, 18, 0.70);
  backdrop-filter: blur(10px);
}

.header-inner {
  padding: var(--pad) 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand {
	margin-inline: auto;
 	display: flex;
	flex-direction: column;
  	align-items: center;
	text-align: center;
	gap: 0.35rem;
}

/* Simple “mark” placeholder (swap for logo later) */
.brand__mark {
  width: clamp(52px, 8vw, 84px);
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,42,109,0.85), rgba(168,75,255,0.75) 50%, rgba(43,140,255,0.85));
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.brand__name {
  margin: 0.2rem 0 0;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 1.1rem;
	fill: white;
	width: 200px;
}

.brand__tagline {
  margin: 0;
  color: var(--muted);
  max-width: 28ch;
  font-size: 0.98rem;
}

/* Nav */
.site-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

a:focus-visible {
  outline: 3px solid rgba(168,75,255,0.9);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Main */
.site-main {
  padding: calc(var(--pad) * 1.25) 0 calc(var(--pad) * 1.75);
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 2.5vw, 1.4rem);
  box-shadow: var(--shadow);
}

h1, h2 {
  line-height: 1.2;
  margin: 0 0 0.6rem;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
h2 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }

.subhead {
  margin: 1rem 0 0.4rem;
  font-size: 1rem;
  color: var(--text);
}

p { margin: 0.75rem 0; }

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 1rem 0;
}

.muted { color: var(--muted); }

.small {
  font-size: 0.95rem;
}

/* Lists */
.list {
  padding-left: 1.1rem;
  margin: 0.75rem 0 0;
}

.list li + li { margin-top: 0.5rem; }

/* Buttons */
.buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.button {
  display: inline-block;
  text-decoration: none;
  color: #06020e;
  font-weight: 800;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;

  background: linear-gradient(135deg, var(--accent-a), var(--accent-b), var(--accent-c));
  border: 1px solid rgba(255,255,255,0.18);
}

.button:hover { filter: brightness(1.06); }

/* Footer */
.site-footer {
  margin-top: 0.5rem;
  padding: 0.25rem 0 0.5rem;
  text-align: center;
  color: var(--muted);
}


.band-members {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.9rem;
}

.band-member {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.band-member__image {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.band-member__name {
  margin: 0;
  font-weight: 700;
}

.band-member__role {
  margin: 0.1rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}


/* Gigs dropdown */
.gig-history {
  margin-top: 0.75rem;
}

.gig-history__summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
}

.gig-history__summary::-webkit-details-marker {
  display: none;
}

.gig-history__summary::before {
  content: "▸ ";
  color: var(--muted);
}

.gig-history[open] .gig-history__summary::before {
  content: "▾ ";
}

.gig-history__summary:focus-visible {
  outline: 3px solid rgba(168,75,255,0.9);
  outline-offset: 4px;
  border-radius: 6px;
}

.gig-history__list {
  margin-top: 0.6rem;
}

.label-link {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dotted var(--line);
}

.label-link:hover {
  color: var(--text);
  border-bottom-color: currentColor;
}


