﻿:root {
  --ink: #1f2937;
  --ink-soft: #6b7280;
  --brand: #2e3192;
  --brand-deep: #24287a;
  --gold: #ffcc00;
  --gold-soft: #ffe58a;
  --paper: #f9fafb;
  --white: #ffffff;
  --line: #d9deea;
  --shadow: 0 12px 35px rgba(46, 49, 146, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
}

p {
  margin: 0 0 1rem;
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(10px);
  background: rgba(244, 246, 252, 0.95);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand img {
  width: 56px;
  height: 34px;
  object-fit: contain;
  border-radius: 6px;
}

.brand-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand);
}

.brand-subtitle {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--brand-deep);
  border-color: var(--brand-deep);
  box-shadow: var(--shadow);
}

.btn-small {
  padding: 0.55rem 0.95rem;
  font-size: 0.92rem;
}

.btn-outline {
  background: transparent;
  color: var(--brand);
}

.hero-intro {
  padding: 4rem 0 3.5rem;
  background: #f9fafb;
}

.hero-intro-content {
  max-width: 760px;
}

.hero-intro h1 {
  font-size: clamp(2.1rem, 5vw, 4.3rem);
  font-variant-ligatures: none;
  color: var(--brand);
}

.hero-intro p {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-intro .btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brand);
}

.hero-intro .btn:hover {
  background: #f2bf00;
  border-color: #f2bf00;
  color: var(--brand);
}

.hero-intro .btn-outline {
  border-color: var(--gold-soft);
  color: var(--brand);
}

.section {
  padding: 5rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.about-card,
.card,
.event-card,
.visit-wrap,
.quick-links {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(46, 49, 146, 0.09);
}

.about-card {
  padding: 1.5rem;
}

.about-card ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.7rem;
}

blockquote {
  margin: 1.1rem 0;
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--gold);
  background: #fff8de;
  border-radius: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
}

.section-head {
  margin-bottom: 2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  padding: 1.3rem;
}

.card-day {
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
  margin-bottom: 0.45rem;
}

.event-grid {
  display: grid;
  gap: 1rem;
}

.event-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
}

.event-card img,
.event-card iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card iframe {
  border: 0;
  display: block;
}

.event-card > div {
  padding: 1.25rem;
}

.text-link {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.media-strip {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.media-strip img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.visit-wrap {
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.quick-links {
  padding: 1rem;
  background: linear-gradient(180deg, #e9edff, #dde3ff);
}

.quick-links ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.65rem;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.7rem;
}

.fundraiser {
  background: #f5f7fd;
}

.fundraiser-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(46, 49, 146, 0.09);
  padding: 1.2rem;
}

.fundraiser-copy p {
  color: var(--ink-soft);
}

.fundraiser-meta {
  margin: 0.9rem 0 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(46, 49, 146, 0.2);
  border-radius: 12px;
  background: rgba(46, 49, 146, 0.05);
}

.fundraiser-meta p {
  margin: 0.35rem 0;
  color: var(--ink);
}

.fundraiser-alert {
  color: #dc2626;
  font-weight: 700;
}

.fundraiser-flyer {
  display: block;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.16);
}

.fundraiser-flyer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fundraiser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.fundraiser-actions .btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brand);
}

.fundraiser-actions .btn:hover {
  background: #f2bf00;
  border-color: #f2bf00;
  color: var(--brand);
}

.fundraiser-actions .btn-outline {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.fundraiser-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 140;
  padding: 1rem;
}

.fundraiser-modal.open {
  display: flex;
}

.fundraiser-modal-panel {
  position: relative;
  width: min(920px, 96vw);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  padding: 1.3rem;
}

.fundraiser-modal-panel h3 {
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.fundraiser-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #4b5563;
  cursor: pointer;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #e8ecf5;
}

.footer-main {
  padding: 1.3rem 0 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  color: var(--ink);
}

.footer-block {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: #f4f6fc;
}

.footer-title {
  margin: 0 0 0.55rem;
  color: var(--brand);
  font-weight: 700;
}

.footer-block p {
  margin: 0.35rem 0;
}

.footer-block a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.footer-block a:hover {
  text-decoration: underline;
}

.footer-wrap {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .two-col,
  .visit-wrap {
    grid-template-columns: 1fr;
  }

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

  .event-card {
    grid-template-columns: 1fr;
  }

  .fundraiser-card {
    grid-template-columns: 1fr;
  }

  .event-card img,
  .event-card iframe {
    max-height: 280px;
  }
}

@media (max-width: 720px) {
  .hero-intro {
    padding: 3rem 0 2.8rem;
  }

  .hero-intro h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .media-strip {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}
