:root {
  --bg: #0a0a0c;
  --panel: #141216;
  --accent: #ff6b2e;
  --accent2: #e82a2a;
  --text: #f5f2ef;
  --muted: #b8aea8;
  --max: 980px;
  --pad: clamp(20px, 5vw, 40px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 0%, rgba(232, 42, 42, 0.15), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 46, 0.12), transparent 40%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

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

.margin-dots {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

.margin-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--muted);
  background: transparent;
  text-decoration: none;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.margin-dots .dot::after {
  content: attr(data-label);
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.margin-dots .dot:hover::after,
.margin-dots .dot.is-active::after {
  opacity: 1;
}

.margin-dots .dot.is-active,
.margin-dots .dot:hover {
  border-color: var(--accent);
  background: var(--accent);
}

main {
  padding-right: 48px;
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: var(--pad);
  position: relative;
}

.hero-collage {
  position: absolute;
  inset: var(--pad) var(--pad) 30% 8%;
  max-width: 920px;
  margin-left: auto;
}

.collage-main {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  max-height: min(52vh, 420px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.collage-float {
  position: absolute;
  width: clamp(120px, 22vw, 200px);
  border-radius: 16px;
  border: 3px solid var(--panel);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  object-fit: cover;
}

.collage-float.a {
  top: 8%;
  right: -4%;
  transform: rotate(6deg);
}

.collage-float.b {
  bottom: -6%;
  left: 6%;
  transform: rotate(-4deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding-bottom: 8vh;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 12px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 16px;
  font-weight: 900;
}

.hero-copy h1 span {
  color: var(--muted);
  font-weight: 800;
}

.tagline {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.band {
  padding: clamp(48px, 10vw, 96px) var(--pad);
  max-width: calc(var(--max) + 80px);
  margin: 0 auto;
}

.intro.right-aligned {
  text-align: right;
  margin-bottom: 2.5rem;
  margin-left: auto;
  max-width: 520px;
}

.intro h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

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

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
}

.step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  background: linear-gradient(135deg, rgba(255, 107, 46, 0.08), rgba(20, 18, 22, 0.9));
  border: 1px solid rgba(184, 174, 168, 0.15);
  border-radius: 18px;
  padding: 24px;
}

.step-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent2);
  line-height: 1;
}

.step-list h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.step-list p {
  margin: 0;
  color: var(--muted);
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.shot {
  margin: 0;
  position: relative;
}

.shot img {
  border-radius: 22px;
  border: 1px solid rgba(255, 107, 46, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.shot figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.shot .pin {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 107, 46, 0.25);
  flex-shrink: 0;
}

.legal-body {
  max-width: 640px;
  margin-left: auto;
}

.dropcap::first-letter {
  float: left;
  font-size: 3.4rem;
  line-height: 0.85;
  padding-right: 10px;
  font-weight: 900;
  color: var(--accent);
}

.support-block .support-email {
  font-size: 1.1rem;
  margin-top: 1rem;
}

.site-foot {
  text-align: center;
  padding: 32px var(--pad) 48px;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .margin-dots {
    right: 10px;
    gap: 10px;
  }

  main {
    padding-right: 28px;
  }

  .hero-collage {
    inset: var(--pad) var(--pad) 42% 4%;
  }

  .collage-float {
    display: none;
  }

  .intro.right-aligned {
    text-align: left;
    margin-left: 0;
  }
}
