:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --text: #25304a;
  --muted: #5d6780;
  --line: rgba(65, 84, 122, 0.14);
  --shadow: 0 18px 45px rgba(55, 75, 115, 0.10);
  --shadow-soft: 0 12px 30px rgba(55, 75, 115, 0.08);
  --hero-peach: #ffe7d9;
  --hero-pink: #fde7ef;
  --hero-sky: #dff4ff;
  --hero-cream: #fff8dc;
  --mission-bg: #fff6e8;
  --interests-bg: #eef7ff;
  --welcome-bg: #f6efff;
  --primary: #4768d8;
  --primary-dark: #3552b8;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #fffdfa 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { transition: color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}
.narrow { max-width: 860px; }
.centered { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 250, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(65, 84, 122, 0.08);
}
.header-inner, .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-family: "Nunito", "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd8a8, #ffc6da);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.65);
}
.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.site-nav a, .site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.site-nav a:hover, .site-footer a:hover, .brand:hover { color: var(--primary); }

.section-band {
  position: relative;
  overflow: clip;
}
.section-inner,
.hero-grid {
  position: relative;
  z-index: 1;
}
.band-hero {
  padding: 4.75rem 0 4rem;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.95) 0 7%, transparent 8%),
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, 0.65) 0 6%, transparent 7%),
    linear-gradient(135deg, var(--hero-cream) 0%, var(--hero-peach) 34%, var(--hero-pink) 68%, var(--hero-sky) 100%);
}
.band-mission {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, var(--mission-bg) 100%);
}
.band-interests {
  padding: 4rem 0 4.5rem;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,0.7) 0 5%, transparent 6%),
    linear-gradient(180deg, #f8fcff 0%, var(--interests-bg) 100%);
}
.band-welcome {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, var(--welcome-bg) 100%);
}
.hero-decor {
  position: absolute;
  border-radius: 999px;
  opacity: 0.55;
  filter: blur(2px);
}
.hero-decor-left {
  left: -2rem;
  top: 5rem;
  width: 11rem;
  height: 11rem;
  background: radial-gradient(circle, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0) 70%);
}
.hero-decor-right {
  right: -2rem;
  bottom: 2rem;
  width: 13rem;
  height: 13rem;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.eyebrow,
.section-kicker {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(65, 84, 122, 0.08);
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.section-kicker { background: rgba(255,255,255,0.75); }

h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
h1, h2 {
  font-family: "Nunito", "Inter", sans-serif;
}
h1 { font-size: clamp(2.8rem, 5vw, 4.9rem); max-width: 9ch; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.28rem; }
.lead,
.section-band p,
.site-footer p { color: var(--muted); }
.lead {
  font-size: 1.14rem;
  max-width: 56ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.9rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.button.primary:hover { background: var(--primary-dark); }
.button.secondary {
  color: var(--text);
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(65, 84, 122, 0.12);
}

.hero-portrait {
  margin: 0;
  text-align: center;
}
.portrait-rings {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(100%, 420px);
  aspect-ratio: 1;
  pointer-events: none;
}
.portrait-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(71, 104, 216, 0.18);
}
.portrait-rings span:nth-child(1) { transform: scale(1.00); }
.portrait-rings span:nth-child(2) { transform: scale(1.12); border-color: rgba(255, 171, 142, 0.24); }
.portrait-rings span:nth-child(3) { transform: scale(1.24); border-color: rgba(110, 198, 228, 0.24); }
.portrait-shell {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  padding: 14px;
  background: linear-gradient(135deg, #fff8ea, #ffd9cc 45%, #e5f7ff);
  box-shadow: var(--shadow);
}
.portrait-shell::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
}
.portrait-shell img,
.image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, #dbe9ff, #fff2dd 50%, #dff8ff);
}
.image-placeholder {
  display: grid;
  place-items: center;
  padding: 2rem;
  color: var(--muted);
  text-align: center;
}
.hero-portrait figcaption {
  max-width: 34ch;
  margin: 0 auto;
  color: var(--muted);
}

.section-heading { margin-bottom: 2rem; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}
.interest-card {
  position: relative;
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(65, 84, 122, 0.10);
  box-shadow: var(--shadow-soft);
  background: rgba(255,255,255,0.82);
}
.interest-card::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  filter: blur(8px);
}
.icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.62);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
}
.icon-wrap svg {
  width: 2.35rem;
  height: 2.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tone-sky { background: linear-gradient(180deg, #ecf7ff 0%, #dbf0ff 100%); color: #276b99; }
.tone-water { background: linear-gradient(180deg, #e4fbff 0%, #d5f3f5 100%); color: #1f7d88; }
.tone-sun { background: linear-gradient(180deg, #fff8db 0%, #fff1bf 100%); color: #9f7a12; }
.tone-peach { background: linear-gradient(180deg, #ffece1 0%, #ffdacc 100%); color: #ab5e2e; }
.tone-lavender { background: linear-gradient(180deg, #f2ebff 0%, #e7dbff 100%); color: #7151ad; }
.tone-mint { background: linear-gradient(180deg, #e9fff7 0%, #d8f7eb 100%); color: #2d8666; }
.interest-card h3 { color: var(--text); }
.interest-card p { margin: 0; color: #47536c; }

.closing {
  margin-top: 1rem;
  font-weight: 800;
  color: var(--text) !important;
}
.site-footer {
  border-top: 1px solid rgba(65, 84, 122, 0.08);
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 980px) {
  .hero-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 2;
  }

  .hero-portrait {
    order: 1;
  }

  h1 { max-width: none; }
}

@media (max-width: 640px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav { gap: 0.9rem; }
  .band-hero,
  .band-mission,
  .band-interests,
  .band-welcome { padding: 3rem 0; }
  .interest-card { padding: 1.2rem; }
  .portrait-shell { width: min(100%, 300px); }
}
