:root {
  --bg: #1c1a24;
  --accent: #ffd700;
  --accent2: #4cc8f0;
  --text: #f4f0e8;
  --muted: #9a94a8;
  --panel: rgba(35, 32, 48, 0.92);
  --rail-w: 72px;
  --max: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

a {
  color: var(--accent2);
}

.rail {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--rail-w);
  background: linear-gradient(180deg, #2b2640 0%, #1a1628 100%);
  border-right: 1px solid rgba(255, 215, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  z-index: 20;
}

.rail-brand {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.rail-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding: 0 0.35rem;
}

.rail-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.65rem 0.25rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}

.rail-tab:hover,
.rail-tab.is-active {
  background: rgba(255, 215, 0, 0.12);
  color: var(--accent);
}

.rail-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.page {
  margin-left: var(--rail-w);
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 3rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 22, 40, 0.85) 0%, rgba(80, 0, 80, 0.35) 100%);
}

.hero-inset {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-left: clamp(1rem, 8vw, 6rem);
  padding: 2rem 2.25rem;
  background: var(--panel);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.hero-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent2);
}

.hero-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
}

.hero-title-accent {
  color: var(--accent);
}

.hero-tagline {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 0.75rem 1.35rem;
  background: linear-gradient(90deg, #b8860b, var(--accent));
  color: #1a1628;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  font-size: 0.9rem;
}

.band {
  padding: 4rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.band-intro--centered {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.band-intro h2 {
  margin: 0 0 0.5rem;
  font-size: 1.85rem;
  color: var(--accent);
}

.band-intro p {
  margin: 0;
  color: var(--muted);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.icon-cell {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(76, 200, 240, 0.15);
  border-radius: 14px;
}

.icon-cell-mark {
  font-size: 1.6rem;
  margin-bottom: 0.65rem;
}

.icon-cell h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--text);
}

.icon-cell p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.annotated-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

.annotated-shot {
  position: relative;
}

.annotated-shot img {
  width: 100%;
  border-radius: 16px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.annotated-pin {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  max-width: 55%;
}

.annotated-pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #1a1628;
  flex-shrink: 0;
  margin-top: 0.15rem;
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.25);
}

.annotated-pin-label {
  background: rgba(26, 22, 40, 0.92);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  font-size: 0.72rem;
  line-height: 1.3;
  color: var(--text);
}

.legal-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.legal-panel {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.legal-panel h2 {
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-size: 1.5rem;
}

.legal-panel h3 {
  margin: 1.25rem 0 0.4rem;
  font-size: 1rem;
  color: var(--accent2);
}

.legal-panel p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.legal-updated {
  font-size: 0.8rem !important;
  font-style: italic;
}

.site-footer {
  margin-left: var(--rail-w);
  padding: 1.5rem 2rem 2.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .annotated-grid {
    grid-template-columns: 1fr;
  }

  .legal-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --rail-w: 56px;
  }

  .rail-label {
    display: none;
  }

  .hero-inset {
    margin-left: 0;
    padding: 1.5rem;
  }

  .icon-grid {
    grid-template-columns: 1fr;
  }

  .band {
    padding: 3rem 1.25rem;
  }
}
