:root {
  --deep: #542238;
  --deep-2: #3e1829;
  --rose: #a52f55;
  --coral: #ed6d72;
  --pink: #f7b8c2;
  --pale: #fff0f3;
  --soft: #fff8f6;
  --white: #ffffff;
  --ink: #2d1721;
  --muted: #6e5360;
  --line: #e9ccd4;
  --shadow: 0 14px 34px rgba(70, 28, 45, 0.13);
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
img, iframe { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
a { color: inherit; }

.page-width {
  width: min(calc(100% - 30px), 980px);
  margin-inline: auto;
}
.compact { max-width: 720px; }
.center { text-align: center; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.24), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(255,255,255,.13), transparent 24%),
    linear-gradient(145deg, #ef7a74 0%, #c94764 52%, #7c294b 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -80px;
  bottom: -100px;
  border: 28px solid rgba(255,255,255,.09);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: max(22px, env(safe-area-inset-top)) 0 24px;
  text-align: center;
}
.kicker, .mini-label {
  margin-bottom: 10px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 9vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.hero-copy {
  max-width: 590px;
  margin-inline: auto;
  margin-bottom: 0;
  font-size: clamp(1rem, 4vw, 1.16rem);
  font-weight: 650;
  opacity: .97;
}

.section {  padding: 20px 0 36px; }
.section-white { background: var(--white); }
.section-soft { background: var(--soft); }
.section-pale { background: var(--pale); }
.section-coral {
  color: var(--white);
  background: linear-gradient(145deg, #e9686d, #b73559);
}
.section-deep {
  color: var(--white);
  background: linear-gradient(155deg, var(--deep), var(--deep-2));
}

.section-title-row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.section-title-row h2 {
  margin: 0;
  font-size: clamp(1.4rem, 5.5vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -.025em;
}
.title-mark { display: none; }
.light-title { color: var(--white); }

.feature-card,
.calendar-shell,
.announcement-card,
.dark-card,
.leader-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 20px 18px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #ffffff, #fff8f6);
  text-align: center;
}
.activity-date-time {
  margin-bottom: 0px;
  color: var(--rose);
  font-size: clamp(1.02rem, 4vw, 1.28rem);
  font-weight: 900;
  line-height: 1.0;
}
.activity-description {
  margin: 0px;
  color: var(--ink);
  font-size: clamp(1.45rem, 6vw, 2.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.03em;
  white-space: pre-line;
  overflow-wrap: anywhere;
}
.activity-location {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 800;
}
.status-message {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}
.status-message.error { color: #8b243f; }

.calendar-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}
.calendar-shell iframe {
    width: 100%;
    height: 650px;
    border: 0;
    background: var(--white);
}

.announcement-list { display: grid; gap: 14px; }
.announcement-card {
  padding: 20px 20px 20px 22px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--coral);
  background: var(--white);
}
.announcement-card h3 {
  margin-bottom: 6px;
  color: var(--deep);
  font-size: clamp(1.18rem, 5vw, 1.55rem);
  line-height: 1.2;
}
.announcement-card p {
  margin-bottom: 0;
  color: #47323c;
  font-size: 1rem;
  font-weight: 620;
  white-space: pre-line;
}

.groupme-section {
  color: var(--white);
  background: linear-gradient(145deg, #26375b 0%, #21578e 52%, #2c7bb0 100%);
}
.groupme-section h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 8vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.035em;
}
.groupme-copy {
  max-width: 560px;
  margin: 0 auto 22px;
  color: rgba(255,255,255,.94);
  font-weight: 650;
}
.primary-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--white);
  color: #17304d;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(5,22,42,.22);
}
.primary-button:hover { transform: translateY(-1px); }


.dark-card {
  padding: 24px 22px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.safety-copy {
  text-align: left;
}

.safety-copy p {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.65;
}

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

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.leader-card {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.1);
  color: var(--white);
  box-shadow: none;
}
.leader-card span {
  display: block;
  margin-bottom: 4px;
  color: #f9c9d2;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.leader-card strong { font-size: 1.08rem; line-height: 1.25; }

footer {
  padding: 24px 0 calc(24px + env(safe-area-inset-bottom));
  background: #28121d;
  color: #f7dfe5;
  text-align: center;
  font-size: .9rem;
  font-weight: 800;
}

@media (max-width: 620px) {
  .calendar-shell iframe {
    height: 360px;}
  .leaders-grid { grid-template-columns: 1fr; }
}

@media (min-width: 760px) {
  .feature-card { padding:16px 18px }
  .announcement-card { padding: 24px 26px; }
}

@media (prefers-reduced-motion: no-preference) {
  .primary-button { transition: transform .18s ease; }
}
