:root {
  --navy: #102542;
  --navy-2: #16335a;
  --red: #c62839;
  --red-dark: #a41f2e;
  --gold: #f3c969;
  --ink: #18212b;
  --muted: #607086;
  --bg: #f5f7fb;
  --white: #ffffff;
  --border: #dbe3ee;
  --shadow: 0 20px 45px rgba(16, 37, 66, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  cursor: pointer;
}
.button:hover,
button:hover {
  transform: translateY(-1px);
}
.button-primary {
  background: var(--red);
  color: var(--white);
}
.button-primary:hover {
  background: var(--red-dark);
}
.button-secondary {
  background: var(--white);
  color: var(--navy);
}
.button-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.button-dark-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}
.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--bg);
}
.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(198, 40, 57, 0.12);
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.section-heading {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}
.section-copy {
  max-width: 760px;
  margin: 0;
  font-size: 1.08rem;
  color: var(--muted);
}
.topbar {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
}
.topbar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(16, 37, 66, 0.94);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}
/* .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 50% 50%,
      var(--gold),
      #edb84d 52%,
      rgba(255, 255, 255, 0) 54%
    ),
    linear-gradient(135deg, var(--red), #f04b57);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.22);
} */
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text strong {
  font-size: 1.1rem;
}
.brand-text span {
  font-size: 0.72rem;
  opacity: 0.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* .brand-mark {
  width: 180px;
  height: 60px;
  flex: 0 0 180px;
  border-radius: 0;
  background-image: url("../img/Dale-Conoyer-Logo.jpeg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
} */

/* .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  display: none;
} */

/* .brand-text strong {
  font-size: 1.1rem;
}

.brand-text span {
  font-size: 0.72rem;
  opacity: 0.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
} */

/* .nav-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
} */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 48px;
  padding: 0;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle-lines {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle-lines span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.main-nav a {
  font-weight: 700;
  font-size: 0.96rem;
  opacity: 0.9;
}
.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  color: var(--gold);
}
.nav-cta {
  margin-left: 0.5rem;
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      115deg,
      rgba(16, 37, 66, 0.95),
      rgba(16, 37, 66, 0.82) 40%,
      rgba(198, 40, 57, 0.78)
    ),
    radial-gradient(
      circle at top right,
      rgba(243, 201, 105, 0.24),
      transparent 34%
    ),
    linear-gradient(180deg, #1a3c68, #0d1f35);
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -60px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(243, 201, 105, 0.16),
    transparent 68%
  );
}
.hero-inner {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 2rem;
  padding: 6rem 0 5rem;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.hero p {
  max-width: 650px;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.14rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.hero-points span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 700;
  font-size: 0.92rem;
}
.hero-portrait {
  position: relative;
  z-index: 1;
  min-height: 620px;
}
.hero-card {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 37, 66, 0.08), rgba(16, 37, 66, 0.55)),
    url("../img/Dale-Conoyer.jpeg") center/cover no-repeat,
    linear-gradient(135deg, #d7deea, #f4f6fa);
}
.hero-badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  right: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  background: rgba(10, 21, 35, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-badge strong {
  display: block;
  font-size: 1.15rem;
}
.hero-badge span {
  color: rgba(255, 255, 255, 0.75);
}
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.25rem;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 14px 30px rgba(16, 37, 66, 0.06);
}
.card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.3rem;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.icon-chip {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    rgba(198, 40, 57, 0.12),
    rgba(16, 37, 66, 0.08)
  );
  color: var(--red);
  font-size: 1.35rem;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.photo-panel {
  min-height: 440px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(16, 37, 66, 0.12), rgba(16, 37, 66, 0.52)),
    url("../img/St-Charles-Main-St.jfif") center/cover no-repeat,
    linear-gradient(135deg, #dae4f0, #eff3f9);
  box-shadow: var(--shadow);
}
.stat-band {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  border-radius: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat-band strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.stat-band span {
  color: rgba(255, 255, 255, 0.74);
}
.issue-card {
  position: relative;
  padding-top: 4.2rem;
}
.issue-number {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--red);
}
.cta-block {
  background: linear-gradient(135deg, var(--red), #de4253);
  color: var(--white);
  border-radius: 34px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.cta-block p {
  color: rgba(255, 255, 255, 0.84);
}
.list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  list-style: none;
  margin: 1rem 0 0;
}
.list li {
  display: flex;
  gap: 0.75rem;
  color: var(--muted);
}
.list li::before {
  content: "•";
  color: var(--red);
  font-size: 1.35rem;
  line-height: 1;
}
.event-card time,
.post-card span {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}
.post-card a.inline-link,
.event-card a.inline-link,
.inline-link {
  color: var(--red);
  font-weight: 800;
}
.newsletter {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  border-radius: 30px;
  padding: 2rem;
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}
.newsletter-form input,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  font: inherit;
}
.newsletter-form input {
  flex: 1 1 240px;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.newsletter small {
  display: block;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.66);
}
.page-hero {
  padding: 7rem 0 4rem;
  background: linear-gradient(135deg, var(--navy), #29507e);
  color: var(--white);
}
.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
}
.contact-form {
  display: grid;
  gap: 1rem;
}
.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}
.footer {
  background: #0d1b2e;
  color: rgba(255, 255, 255, 0.78);
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.sticky-donate {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  box-shadow: var(--shadow);
}
@media (max-width: 980px) {
  .hero-inner,
  .split,
  .contact-layout,
  .grid-4,
  .grid-3,
  .grid-2,
  .stat-band {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    min-height: unset;
    padding-top: 4.5rem;
  }
  .hero-portrait {
    min-height: 480px;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .main-nav.is-open {
    display: flex;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-cta {
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }
  .hero h1 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }
  .topbar-inner,
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .sticky-donate {
    left: 1rem;
    right: 1rem;
  }
  .sticky-donate .button {
    width: 100%;
  }
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-links a {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 700;
  background: var(--white);
  color: var(--navy);
}
.social-links a:hover {
  border-color: rgba(198, 40, 57, 0.35);
  color: var(--red);
}
.hero-copy .social-links a {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}
.hero-copy .social-links a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}
.card + .card {
  margin-top: 0;
}
.callout-quote {
  margin: 1.5rem 0 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--gold);
  background: rgba(243, 201, 105, 0.12);
  border-radius: 0 16px 16px 0;
  color: var(--ink);
  font-weight: 700;
}
.highlight-text {
  color: var(--red);
  font-weight: 800;
}
.muted-note {
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-meta strong {
  color: var(--white);
}
.footer .social-links {
  margin-top: 0.75rem;
}
.footer .social-links a {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.footer-meta span {
  text-wrap-style: balance;
  color: var(--white);
}
.footer-meta h3 {
  text-wrap-style: balance;
  color: var(--white);
}
.footer .social-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}
.notice-box {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(16, 37, 66, 0.05);
  border: 1px solid var(--border);
}
.notice-box p {
  margin: 0;
}
@media (max-width: 640px) {
  .social-links {
    gap: 0.55rem;
  }
  .social-links a {
    width: 100%;
    justify-content: center;
  }
}

/*Header override for hamburger menu*/
@media (max-width: 640px) {
  .header-inner {
    min-height: 78px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-mark {
    flex: 0 0 auto;
  }

  .brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1;
  }

  .brand-text strong,
  .brand-text span {
    white-space: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex: 0 0 auto;
  }
}
