:root {
  --bg: #e3d8c8;
  --accent: #b5a06a;
  --accent2: #426b6b;
  --text: #625577;
  --muted: #9b8798;
  --card: rgba(255, 255, 255, 0.55);
  --rail: 52px;
  font-family: "SF Pro Rounded", "Avenir Next", system-ui, sans-serif;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem calc(1.25rem + var(--rail));
}

.margin-rail {
  position: fixed;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 20;
}

.margin-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid var(--accent2);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.margin-dot.is-active,
.margin-dot:hover {
  background: var(--accent);
  transform: scale(1.15);
}

.hero.collage {
  min-height: 72vh;
  display: grid;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.hero-collage {
  position: relative;
  min-height: 340px;
}

.hero-collage img {
  position: absolute;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(98, 85, 119, 0.22);
}

.collage-a {
  width: 38%;
  left: 0;
  top: 8%;
  transform: rotate(-4deg);
}

.collage-b {
  width: 42%;
  right: 4%;
  top: 0;
  transform: rotate(3deg);
}

.collage-c {
  width: 72%;
  left: 14%;
  bottom: 0;
  z-index: 2;
}

.collage-d {
  width: 28%;
  left: 2%;
  bottom: 6%;
  z-index: 3;
  transform: rotate(6deg);
}

.hero-copy {
  background: var(--card);
  backdrop-filter: blur(8px);
  padding: 1.75rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(181, 160, 106, 0.35);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent2);
  margin: 0 0 0.5rem;
}

.hero-copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.15;
  color: var(--text);
}

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

.band {
  margin-bottom: 3.5rem;
}

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

.band-intro h2 {
  margin: 0 0 0.35rem;
  font-size: 1.65rem;
}

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

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--card);
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  border: 1px solid rgba(155, 135, 152, 0.25);
}

.step-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

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

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

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

.shot img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 3px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 12px 28px rgba(66, 107, 107, 0.18);
}

.pin {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--accent2);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.prose {
  background: var(--card);
  padding: 1.75rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(181, 160, 106, 0.3);
}

.prose p {
  margin: 0 0 1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

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

.dropcap p:first-child::first-letter {
  float: left;
  font-size: 3.2rem;
  line-height: 0.85;
  padding-right: 0.45rem;
  font-weight: 700;
  color: var(--accent);
}

.site-foot {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  padding-top: 1rem;
}

@media (max-width: 720px) {
  main {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .margin-rail {
    top: auto;
    bottom: 1rem;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
  }

  .hero-collage {
    min-height: 260px;
  }

  .collage-c {
    width: 88%;
    left: 6%;
  }

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