:root {
  --maroon: #881c1c;
  --maroon-dark: #6a1414;
  --ink: #1b2a4a;
  --ink-soft: #44506a;
  --bg: #ffffff;
  --bg-alt: #f4f6fb;
  --line: #e2e6ef;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(27, 42, 74, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: #fff;
  padding: 5rem 1.5rem 4.5rem;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.hero-media { display: flex; justify-content: center; }
.hero-media img {
  width: 240px;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

@media (min-width: 820px) {
  .hero-inner { flex-direction: row; align-items: center; gap: 3.5rem; text-align: left; }
  .hero-text { flex: 1 1 auto; }
  .hero-text .lede { margin-left: 0; margin-right: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-media { flex: 0 0 auto; }
  .hero-media img { width: 320px; }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 0 0.75rem;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  margin: 0 0 1.25rem;
}

.lede {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  max-width: 680px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.08s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: #fff;
  color: var(--maroon);
}
.hero .btn-primary { box-shadow: var(--shadow); }
.section .btn-primary {
  background: var(--maroon);
  color: #fff;
}
.section .btn-primary:hover { background: var(--maroon-dark); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn-block { width: 100%; text-align: center; }

.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ---------- Sections ---------- */
.section {
  max-width: 980px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.section-alt { background: var(--bg-alt); max-width: none; }
.section-alt > * { max-width: 720px; margin-left: auto; margin-right: auto; }

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 0.5rem;
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  margin: 0 auto 2rem;
}

.group-title {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--maroon);
  margin: 2.25rem 0 1rem;
  text-align: center;
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card-date { font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.card-time { color: var(--maroon); font-weight: 600; margin-bottom: 0.75rem; }
.card-loc { color: var(--ink-soft); margin-bottom: 0.5rem; }
.card-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 1.25rem;
}
.card .btn { margin-top: auto; }

.contact {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--ink-soft);
}
.contact a, .footer a { color: var(--maroon); }

/* ---------- Current-plan initiatives (accordion) ---------- */
#current-plan { border-top: 1px solid var(--line); }

.plan-cta {
  text-align: center;
  margin: 0 0 2.25rem;
}

.initiatives {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.initiative {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.initiative > summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.35rem;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  user-select: none;
}
.initiative > summary::-webkit-details-marker { display: none; }

/* chevron */
.initiative > summary::after {
  content: "";
  margin-left: auto;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid var(--maroon);
  border-bottom: 2px solid var(--maroon);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}
.initiative[open] > summary::after { transform: rotate(-135deg); }

.initiative > summary:hover { background: var(--bg-alt); }

.init-num {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.initiative ul {
  margin: 0;
  padding: 0 1.5rem 1.35rem 4.2rem;
  color: var(--ink-soft);
}
.initiative li { margin-bottom: 0.6rem; line-height: 1.5; }
.initiative li:last-child { margin-bottom: 0; }
.initiative li strong { color: var(--maroon); }

/* ---------- Idea form ---------- */
.idea-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.field { display: block; margin-bottom: 1.25rem; position: relative; }
.field-label { display: block; font-weight: 600; margin-bottom: 0.4rem; }
.optional { font-weight: 400; color: var(--ink-soft); }

select, textarea, input[type="email"] {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
select:focus, textarea:focus, input:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(136, 28, 28, 0.12);
}
textarea { resize: vertical; }

.char-count {
  position: absolute;
  right: 2px;
  bottom: -1.25rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.form-status {
  margin: 1rem 0 0;
  text-align: center;
  font-weight: 600;
  min-height: 1.4rem;
}
.form-status.success { color: #1a7f37; }
.form-status.error { color: var(--maroon); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem;
}
.footer-tag {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-meta { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; margin: 0; }
