:root {
  --plum: #4b1d5c;
  --plum-deep: #2e1039;
  --coral: #ff6b5b;
  --sand: #f7f1ea;
  --ink: #1b1520;
  --muted: #6d6472;
  --white: #ffffff;
  --wrap: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

.wrap { width: min(var(--wrap), 100% - 3rem); margin-inline: auto; }

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

h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: 2.2rem; margin-bottom: 1rem; }
h3 { font-size: 1.15rem; }

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247,241,234,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.wordmark {
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--plum);
  margin: 0;
}
.topbar nav { display: flex; gap: 1.75rem; align-items: center; font-weight: 500; }
.topbar nav a:hover { color: var(--coral); }
.cta {
  background: var(--plum);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
}
.cta:hover { background: var(--coral); }

/* Hero */
.hero { padding: 6rem 0 5rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.kicker {
  color: var(--coral);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin: 0 0 1rem;
}
h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}
h1 em { font-style: normal; color: var(--plum); }
.hero p { font-size: 1.15rem; color: var(--muted); max-width: 520px; }

.button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.95rem 1.8rem;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(255,107,91,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,107,91,0.4); }

.hero-art { position: relative; height: 380px; }
.shape { position: absolute; border-radius: 28px; }
.shape-a { width: 60%; height: 60%; background: var(--plum); left: 0; top: 0; }
.shape-b { width: 45%; height: 45%; background: var(--coral); right: 0; bottom: 0; border-radius: 50%; }
.shape-c { width: 35%; height: 35%; background: var(--white); left: 40%; top: 40%; border: 6px solid var(--sand); }

/* Bands */
.band { padding: 5rem 0; }
.band-head { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; margin-bottom: 3rem; }
.band-head p { color: var(--muted); margin: 0; font-size: 1.1rem; }

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(75,29,92,0.15);
}
.step { position: relative; padding-top: 2rem; }
.dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--coral);
  border: 4px solid var(--sand);
}
.step p { color: var(--muted); margin: 0.5rem 0 0; }

.band-dark { background: var(--plum-deep); color: var(--white); }
.band-dark h2 { margin-bottom: 2.5rem; }
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.tile {
  background: var(--plum);
  padding: 1.75rem;
  border-radius: 14px;
  transition: background 0.2s, transform 0.2s;
}
.tile:hover { background: var(--coral); transform: translateY(-4px); }
.tile span { font-size: 0.8rem; opacity: 0.7; font-weight: 700; letter-spacing: 0.1em; }
.tile h3 { margin: 0.5rem 0 0.5rem; }
.tile p { margin: 0; opacity: 0.85; font-size: 0.95rem; }

.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
blockquote {
  margin: 0;
  padding: 2rem;
  background: var(--white);
  border-left: 5px solid var(--coral);
  border-radius: 0 14px 14px 0;
}
blockquote p { margin: 0 0 1rem; font-size: 1.15rem; font-style: italic; }
cite { font-style: normal; font-weight: 600; color: var(--plum); font-size: 0.95rem; }

/* Footer */
.foot { background: var(--ink); color: rgba(255,255,255,0.75); padding: 3rem 0; }
.foot .wordmark { color: var(--white); margin-bottom: 0.5rem; }
.foot p { margin: 0; }
.foot-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.foot-links { display: flex; gap: 1.5rem; }
.foot-links a:hover { color: var(--coral); }

@media (max-width: 800px) {
  .topbar nav a:not(.cta) { display: none; }
  .hero-grid, .band-head, .quotes { grid-template-columns: 1fr; }
  .hero-art { height: 260px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .hero { padding: 4rem 0 3rem; }
}
