:root {
  color-scheme: light;
  --bg: #fff7f1;
  --panel: #ffffff;
  --ink: #211b1b;
  --muted: #6f6464;
  --line: rgba(112, 44, 44, 0.14);
  --primary: #be123c;
  --primary-dark: #8f0f2f;
  --accent: #f97316;
  --green: #0f9f6e;
  --shadow: 0 22px 70px rgba(87, 24, 24, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 10%, rgba(249, 115, 22, 0.18), transparent 26rem),
    radial-gradient(circle at 90% 6%, rgba(190, 18, 60, 0.14), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 247, 241, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 900;
  letter-spacing: -.04em;
  box-shadow: 0 12px 24px rgba(190, 18, 60, .22);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: .12rem;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(.65rem, 2vw, 1.35rem);
  color: var(--muted);
  font-size: .92rem;
  font-weight: 750;
}

.nav a:hover { color: var(--primary); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1rem, 5vw, 4.5rem) 3rem;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 8.5vw, 6.8rem);
  line-height: .88;
  letter-spacing: -.07em;
}

h2 {
  margin-bottom: .8rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: .95;
  letter-spacing: -.045em;
}

h3 {
  margin-bottom: .55rem;
  font-size: 1.18rem;
  letter-spacing: -.02em;
}

.hero-text,
.section-head p,
.join-band p,
.feature p,
.event-description {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-text {
  max-width: 620px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.events-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: .78rem 1.15rem;
  border: 1px solid transparent;
  font-size: .94rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 34px rgba(190, 18, 60, .24);
}

.btn-secondary {
  background: rgba(255,255,255,.72);
  border-color: var(--line);
  color: var(--ink);
}

.btn-light {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 18px 36px rgba(34, 12, 12, .18);
}

.btn.compact {
  min-height: 40px;
  padding: .62rem 1rem;
}

.partner {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  margin-top: 1.5rem;
  padding: .55rem .65rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.66);
}

.partner span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.partner img {
  width: 82px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-panel {
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(190, 18, 60, .22), rgba(249, 115, 22, .14)),
    url("https://images.unsplash.com/photo-1533240332313-0db49b459ad6?auto=format&fit=crop&w=1200&q=80") center/cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-card {
  width: min(86%, 360px);
  padding: 1.05rem;
  border-radius: 34px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 24px 70px rgba(33, 27, 27, .22);
  backdrop-filter: blur(18px);
}

.phone-top {
  display: flex;
  justify-content: center;
  gap: .28rem;
  margin-bottom: 1.2rem;
}

.phone-top span {
  width: 42px;
  height: 5px;
  border-radius: 99px;
  background: #e8d7d2;
}

.phone-title small,
.activity-card small {
  display: block;
  color: var(--muted);
  font-weight: 750;
}

.phone-title strong {
  display: block;
  margin-top: .25rem;
  font-size: 1.6rem;
  letter-spacing: -.045em;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1rem 0;
}

.metric-grid div,
.activity-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: .9rem;
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid span {
  color: var(--muted);
  font-size: .8rem;
  margin-top: .15rem;
}

.activity-card {
  display: flex;
  gap: .75rem;
  align-items: center;
}

.dot {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(15, 159, 110, .14);
}

.section {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 5vw, 4.5rem);
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(1rem, 5vw, 4.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
  box-shadow: 0 16px 42px rgba(87, 24, 24, .08);
}

.signal-row div {
  padding: 1.1rem;
  background: rgba(255,255,255,.78);
}

.signal-row strong,
.signal-row span {
  display: block;
}

.signal-row strong {
  margin-bottom: .35rem;
  font-size: .98rem;
}

.signal-row span,
.privacy-note {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.section-head {
  max-width: 780px;
  margin-bottom: 1.5rem;
}

.feature-grid,
.how-grid,
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature,
.how-item,
.event-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 18px 42px rgba(87, 24, 24, .07);
}

.feature {
  padding: 1.25rem;
}

.how-section {
  padding-top: 0;
}

.how-item {
  padding: 1.15rem;
}

.feature span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(190, 18, 60, .1);
  color: var(--primary);
  font-size: .82rem;
  font-weight: 950;
}

.how-item span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: .85rem;
  border-radius: 50%;
  background: #e7f0ff;
  color: #1d4ed8;
  font-size: .82rem;
  font-weight: 950;
}

.how-item p {
  color: var(--muted);
  line-height: 1.6;
}

.privacy-note {
  max-width: 760px;
  margin: 1rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid #60a5fa;
}

.events-section {
  background: rgba(255, 255, 255, .42);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.events-head {
  justify-content: space-between;
  max-width: none;
}

.status {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.7);
  color: var(--muted);
  font-weight: 750;
}

.events-grid {
  margin-top: 1rem;
}

.event-card {
  overflow: hidden;
}

.event-image {
  position: relative;
  min-height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.event-image img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

.event-date {
  position: absolute;
  left: .85rem;
  bottom: .85rem;
  padding: .45rem .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--primary-dark);
  font-size: .78rem;
  font-weight: 950;
}

.event-body {
  padding: 1rem;
}

.event-title {
  margin-bottom: .45rem;
  font-size: 1.25rem;
  line-height: 1.1;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
  margin: .75rem 0;
}

.event-meta span {
  padding: .38rem .55rem;
  border-radius: 999px;
  background: #fff2e7;
  color: #7c2d12;
  font-size: .76rem;
  font-weight: 850;
}

.event-description {
  display: -webkit-box;
  min-height: 3.25rem;
  margin-bottom: 1rem;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.event-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
}

.join-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 4.5rem);
  padding: clamp(1.35rem, 4vw, 2.5rem);
  border-radius: 34px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: var(--shadow);
}

.join-band p,
.join-band .eyebrow {
  color: rgba(255,255,255,.86);
}

.join-band h2 {
  max-width: 760px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 5vw, 4.5rem) 2rem;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav { display: none; }

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

  .hero-panel {
    min-height: 420px;
  }

  .feature-grid,
  .how-grid,
  .signal-row,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .join-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  h1 {
    max-width: 10ch;
    font-size: clamp(3.15rem, 17vw, 4.2rem);
  }

  .hero {
    padding-top: 2.6rem;
  }

  .hero-actions .btn,
  .join-band .btn {
    width: 100%;
  }

  .partner {
    width: 100%;
    justify-content: space-between;
  }
}
