/* ============================================================
   Metropolitan Community Church of Our Redeemer
   Public Website Theme
   Augusta, Georgia — An LGBTQ-Affirming Christian Community
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* Core color palette */
  --color-primary:       #6B3FA0;
  --color-primary-dark:  #52307A;
  --color-primary-light: #8B5CB8;
  --color-accent:        #D4A017;
  --color-accent-light:  #F0C040;

  /* Backgrounds & surfaces */
  --color-bg:       #FDFAF5;
  --color-bg-alt:   #F5EFE8;
  --color-surface:  #FFFFFF;

  /* Text */
  --color-text:       #2D2D2D;
  --color-text-muted: #6B6B6B;

  /* Borders & structural */
  --color-border:     #DDD5C8;
  --color-nav-bg:     #6B3FA0;
  --color-nav-text:   #FFFFFF;
  --color-footer-bg:  #3A2460;
  --color-footer-text:#EDE8F5;

  /* Typography */
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body:    'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Shape & elevation */
  --radius:       8px;
  --shadow:       0 2px 12px rgba(107, 63, 160, 0.10);
  --shadow-hover: 0 4px 24px rgba(107, 63, 160, 0.18);

  /* Pride rainbow gradient — used sparingly */
  --rainbow: linear-gradient(
    to right,
    #FF0018,
    #FFA500,
    #FFE700,
    #008018,
    #0000F9,
    #86007D
  );

  /* Layout */
  --wrap-wide:   1200px;
  --wrap-content: 860px;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Selection highlight */
::selection {
  background-color: var(--color-primary-light);
  color: #fff;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  text-decoration: underline;
  color: var(--color-primary-dark);
}

hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2rem 0;
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.2rem;
  max-width: 70ch;
}

p:last-child {
  margin-bottom: 0;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

blockquote {
  border-left: 4px solid var(--color-primary-light);
  margin: 1.5rem 0;
  padding: 0.75rem 1.5rem;
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--color-text-muted);
  font-style: italic;
}

blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-style: normal;
  color: var(--color-primary);
}

code,
kbd,
samp {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9em;
  background: var(--color-bg-alt);
  padding: 0.1em 0.35em;
  border-radius: 4px;
  border: 1px solid var(--color-border);
}

pre {
  background: #1e1e2e;
  color: #cdd6f4;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 1.5rem 0;
  line-height: 1.6;
}

pre code {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font-size: 0.9rem;
}

small {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
}


/* ============================================================
   4. SITE HEADER & BANNER
   ============================================================ */
.site-header {
  background: var(--color-surface);
  box-shadow: var(--shadow);
  position: relative;
}

.site-header-banner {
  display: block;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
}

.site-header-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  max-width: var(--wrap-wide);
  margin: 0 auto;
}

.site-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
}

.site-tagline {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}


/* ============================================================
   5. NAVIGATION
   ============================================================ */
.site-nav {
  background: var(--color-nav-bg);
  position: relative;
}

/* Rainbow stripe immediately below the nav */
.site-nav::after {
  content: '';
  display: block;
  height: 5px;
  background: var(--rainbow);
  width: 100%;
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--wrap-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

/* Nav item containers — flex so link + toggle button sit inline */
.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

/* All top-level nav links: bare <a> (Home, Blog) and .nav-parent-link inside .nav-item */
.site-nav-inner > a,
.nav-item > a.nav-parent-link {
  display: block;
  color: var(--color-nav-text);
  text-decoration: none;
  padding: 14px 10px 14px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.site-nav-inner > a {
  padding: 14px 18px;
}

.site-nav-inner > a:hover,
.nav-item > a.nav-parent-link:hover {
  color: var(--color-accent-light);
  background-color: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

/* Active nav link — gold underline indicator */
.site-nav-inner > a.current,
.nav-item.current > a.nav-parent-link {
  color: var(--color-accent-light);
  box-shadow: inset 0 -3px 0 var(--color-accent);
}

/* Dropdown toggle button (▼) */
.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  padding: 0 12px 0 2px;
  font-size: 0.65rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.nav-dropdown-btn:hover {
  color: var(--color-accent-light);
}

/* Dropdown menus */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  z-index: 500;
  padding: 0.5rem 0;
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  text-decoration: none;
}

.nav-dropdown a.current {
  color: var(--color-primary);
  font-weight: 600;
}

/* Open dropdown on hover/focus (desktop) */
.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown {
  display: block;
}

/* Mobile hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  color: var(--color-nav-text);
  cursor: pointer;
  padding: 8px 12px;
  font-size: 1.25rem;
  line-height: 1;
  margin-left: auto;
  transition: border-color 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--color-accent-light);
  color: var(--color-accent-light);
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}


/* ============================================================
   6. MAIN CONTENT AREA
   ============================================================ */
main#main-content {
  min-height: 60vh;
  padding-bottom: 3rem;
}

/* General-purpose content wrapper */
.page-wrap {
  max-width: var(--wrap-content);
  margin: 0 auto;
  padding: 40px 20px;
}

/* Wide wrapper for full-bleed sections that need inner centering */
.wrap-wide {
  max-width: var(--wrap-wide);
  margin: 0 auto;
  padding: 0 20px;
}


/* ============================================================
   7. PAGE HEADINGS
   ============================================================ */
.page-heading {
  font-family: var(--font-heading);
  color: var(--color-primary);
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.6rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

/* Decorative gold underline */
.page-heading::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 0.4rem auto 0;
}

.page-heading-wrap {
  text-align: center;
  margin-bottom: 2rem;
}

.page-intro {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 55ch;
  margin: 0.5rem auto 2rem;
}


/* ============================================================
   8. HOME PAGE
   ============================================================ */

/* ── MCC Home page scoped styles ─────────────────────────────────────────── */
.mcc-home {
  color: #2d2d2d;
}

.mcc-home a {
  color: #6b3fa0;
}

.mcc-home a:hover {
  color: #52307a;
}

.mcc-home-hero,
.mcc-home-section,
.mcc-home-band__inner,
.mcc-home-connect__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.mcc-home-hero {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 184, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(212, 160, 23, 0.10), transparent 30%),
    linear-gradient(135deg, #f8f3ee 0%, #fffdf9 50%, #f4eee7 100%);
  border-bottom: 1px solid #ddd5c8;
}

.mcc-home-kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(107, 63, 160, 0.08);
  color: #52307a;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mcc-home-kicker--light {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.mcc-home-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.08;
  color: #52307a;
}

.mcc-home-lead {
  font-size: 1.12rem;
  line-height: 1.75;
  margin: 0 0 22px;
  max-width: 62ch;
}

.mcc-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 20px;
}

.mcc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.18s ease;
}

.mcc-btn--primary {
  background: #6b3fa0;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(107, 63, 160, 0.18);
}

.mcc-btn--primary:hover {
  background: #52307a;
  color: #ffffff !important;
  text-decoration: none;
}

.mcc-btn--secondary {
  background: #ffffff;
  border: 2px solid #6b3fa0;
  color: #6b3fa0 !important;
}

.mcc-btn--secondary:hover {
  background: #6b3fa0;
  color: #ffffff !important;
  text-decoration: none;
}

.mcc-home-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mcc-home-chips span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid #ddd5c8;
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.93rem;
  color: #6b6b6b;
}

.mcc-home-visit-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(107, 63, 160, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(58, 36, 96, 0.10);
  padding: 24px;
}

.mcc-home-visit-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #52307a;
}

.mcc-home-visit-card__item {
  padding: 14px 0;
  border-top: 1px solid #ddd5c8;
}

.mcc-home-visit-card__item strong {
  display: block;
  margin-bottom: 4px;
  color: #52307a;
}

.mcc-home-band {
  background: #52307a;
  color: #ffffff;
}

.mcc-home-band__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

.mcc-home-band h2 {
  color: #ffffff;
  margin: 0;
}

.mcc-home-band p {
  margin: 0;
}

.mcc-home-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.mcc-home-section--alt {
  background: linear-gradient(180deg, #fffdf9 0%, #f8f2eb 100%);
  border-top: 1px solid #ddd5c8;
  border-bottom: 1px solid #ddd5c8;
}

.mcc-home-section--history {
  background: linear-gradient(180deg, #f6efe8 0%, #fdfaf5 100%);
  border-top: 1px solid #ddd5c8;
  border-bottom: 1px solid #ddd5c8;
}

.mcc-home-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.mcc-home-heading h2 {
  margin: 0 0 10px;
  color: #6b3fa0;
}

.mcc-home-heading p {
  margin: 0;
  color: #6b6b6b;
}

.mcc-home-quote {
  max-width: 900px;
  margin: 0 auto 28px;
  padding: 16px 20px;
  border-left: 4px solid #8b5cb8;
  background: #f5efe8;
  border-radius: 0 8px 8px 0;
  color: #5b5169;
  font-style: italic;
}

.mcc-home-grid {
  display: grid;
  gap: 20px;
}

.mcc-home-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mcc-home-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mcc-home-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mcc-home-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.mcc-card {
  background: #ffffff;
  border: 1px solid #ddd5c8;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(58, 36, 96, 0.05);
}

.mcc-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #6b3fa0;
}

.mcc-card p:last-child {
  margin-bottom: 0;
}

.mcc-card--accent {
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.96), rgba(82, 48, 122, 0.95));
  color: #ffffff;
  border-color: transparent;
}

.mcc-card--accent h3,
.mcc-card--accent a {
  color: #ffffff;
}

.mcc-timeline__year {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #52307a;
}

.mcc-home-connect {
  background: linear-gradient(135deg, #52307a, #291943);
  color: #ffffff;
}

.mcc-home-connect__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 32px;
  padding-bottom: 32px;
}

.mcc-home-connect h2 {
  margin: 0;
  color: #ffffff;
}

.mcc-home-connect__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mcc-home-connect__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.mcc-home-connect__links a:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .mcc-home-hero,
  .mcc-home-band__inner,
  .mcc-home-split {
    grid-template-columns: 1fr;
  }

  .mcc-home-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mcc-home-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mcc-home-connect__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .mcc-home-hero,
  .mcc-home-section,
  .mcc-home-band__inner,
  .mcc-home-connect__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mcc-home-hero,
  .mcc-home-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .mcc-home-actions,
  .mcc-home-connect__links {
    flex-direction: column;
    align-items: stretch;
  }

  .mcc-btn {
    width: 100%;
  }

  .mcc-home-grid--2,
  .mcc-home-grid--3,
  .mcc-home-grid--4 {
    grid-template-columns: 1fr;
  }
}
/* ── End MCC Home page styles ─────────────────────────────────────────────── */

/* ── MCC About page scoped styles ────────────────────────────────────────── */
.mcc-about {
  color: #2d2d2d;
}

.mcc-about a {
  color: #6b3fa0;
}

.mcc-about a:hover {
  color: #52307a;
}

.mcc-about-hero,
.mcc-about-section,
.mcc-about-connect__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.mcc-about-hero {
  padding-top: 56px;
  padding-bottom: 40px;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 184, 0.14), transparent 34%),
    linear-gradient(135deg, #f8f3ee 0%, #fffdf9 50%, #f4eee7 100%);
  border-bottom: 1px solid #ddd5c8;
}

.mcc-about-kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(107, 63, 160, 0.08);
  color: #52307a;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mcc-about-kicker--light {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.mcc-about-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.08;
  color: #52307a;
}

.mcc-about-lead {
  max-width: 70ch;
  font-size: 1.1rem;
  line-height: 1.75;
  margin: 0;
}

.mcc-about-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.mcc-about-section--alt {
  background: linear-gradient(180deg, #fffdf9 0%, #f8f2eb 100%);
  border-top: 1px solid #ddd5c8;
  border-bottom: 1px solid #ddd5c8;
}

.mcc-about-section--history {
  background: linear-gradient(180deg, #f6efe8 0%, #fdfaf5 100%);
  border-top: 1px solid #ddd5c8;
  border-bottom: 1px solid #ddd5c8;
}

.mcc-about-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.mcc-about-intro h2,
.mcc-about-heading h2,
.mcc-about-split h2,
.mcc-about-connect h2 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #6b3fa0;
}

.mcc-about-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.mcc-about-heading p {
  margin: 0;
  color: #6b6b6b;
}

.mcc-about-highlight {
  background: #ffffff;
  border: 1px solid #ddd5c8;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(58, 36, 96, 0.05);
}

.mcc-about-highlight h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #52307a;
}

.mcc-about-highlight ul {
  margin: 0;
  padding-left: 18px;
}

.mcc-about-highlight li {
  margin-bottom: 10px;
}

.mcc-about-quote {
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 22px;
  border-left: 4px solid #8b5cb8;
  background: #f5efe8;
  border-radius: 0 8px 8px 0;
  color: #5b5169;
  font-style: italic;
}

.mcc-about-grid {
  display: grid;
  gap: 20px;
}

.mcc-about-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mcc-about-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mcc-about-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mcc-about-card {
  background: #ffffff;
  border: 1px solid #ddd5c8;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(58, 36, 96, 0.05);
}

.mcc-about-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #6b3fa0;
}

.mcc-about-card p:last-child {
  margin-bottom: 0;
}

.mcc-about-year {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #52307a;
}

.mcc-about-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.mcc-about-connect {
  background: linear-gradient(135deg, #52307a, #291943);
  color: #ffffff;
}

.mcc-about-connect__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 32px;
  padding-bottom: 32px;
}

.mcc-about-connect h2 {
  margin: 0;
  color: #ffffff;
}

.mcc-about-connect__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mcc-about-connect__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.mcc-about-connect__links a:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .mcc-about-intro,
  .mcc-about-split {
    grid-template-columns: 1fr;
  }

  .mcc-about-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mcc-about-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mcc-about-connect__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .mcc-about-hero,
  .mcc-about-section,
  .mcc-about-connect__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mcc-about-hero,
  .mcc-about-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .mcc-about-grid--2,
  .mcc-about-grid--3,
  .mcc-about-grid--4 {
    grid-template-columns: 1fr;
  }

  .mcc-about-connect__links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .mcc-about-connect__links a {
    width: 100%;
  }
}
/* ── End MCC About page styles ────────────────────────────────────────────── */

/* ── MCC About v2 scoped styles ──────────────────────────────────────────── */
.mcc-about-v2,
.mcc-about-v2 * {
  box-sizing: border-box;
  min-width: 0;
}

.mcc-about-v2 {
  color: #2d2d2d;
}

.mcc-about-v2 a {
  color: #6b3fa0;
}

.mcc-about-v2 a:hover {
  color: #52307a;
}

.mcc-about-v2__hero,
.mcc-about-v2__section,
.mcc-about-v2__cta {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.mcc-about-v2__hero {
  padding-top: 56px;
  padding-bottom: 44px;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 184, 0.14), transparent 34%),
    linear-gradient(135deg, #f8f3ee 0%, #fffdf9 50%, #f4eee7 100%);
  border-bottom: 1px solid #ddd5c8;
}

.mcc-about-v2__kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(107, 63, 160, 0.08);
  color: #52307a;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mcc-about-v2__kicker--light {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.mcc-about-v2__hero h1,
.mcc-about-v2__heading h2,
.mcc-about-v2__mission h2,
.mcc-about-v2__panel h2,
.mcc-about-v2__cta h2,
.mcc-about-v2__intro-copy h2 {
  margin: 0 0 12px;
  color: #52307a;
  line-height: 1.1;
  overflow-wrap: anywhere;
  word-break: normal;
}

.mcc-about-v2__hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  max-width: 14ch;
}

.mcc-about-v2__lead {
  max-width: 68ch;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.mcc-about-v2__section {
  padding-top: 52px;
  padding-bottom: 52px;
}

.mcc-about-v2__section--soft {
  background: linear-gradient(180deg, #fffdf9 0%, #f8f2eb 100%);
  border-top: 1px solid #ddd5c8;
  border-bottom: 1px solid #ddd5c8;
}

.mcc-about-v2__section--history {
  background: linear-gradient(180deg, #f6efe8 0%, #fdfaf5 100%);
  border-top: 1px solid #ddd5c8;
  border-bottom: 1px solid #ddd5c8;
}

.mcc-about-v2__section--cta {
  background: linear-gradient(135deg, #52307a, #291943);
  color: #ffffff;
}

.mcc-about-v2__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.mcc-about-v2__info,
.mcc-about-v2__panel {
  background: #ffffff;
  border: 1px solid #ddd5c8;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(58, 36, 96, 0.05);
}

.mcc-about-v2__info h3,
.mcc-about-v2__timeline-copy h3 {
  margin: 0 0 10px;
  color: #6b3fa0;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.mcc-about-v2__info ul {
  margin: 0;
  padding-left: 18px;
}

.mcc-about-v2__info li {
  margin-bottom: 10px;
}

.mcc-about-v2__mission {
  max-width: 900px;
  margin: 0 auto;
}

.mcc-about-v2__mission blockquote {
  margin: 0;
  padding: 18px 22px;
  border-left: 4px solid #8b5cb8;
  background: #f5efe8;
  border-radius: 0 8px 8px 0;
  color: #5b5169;
  font-style: italic;
}

.mcc-about-v2__heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.mcc-about-v2__heading p {
  margin: 0;
  color: #6b6b6b;
}

.mcc-about-v2__values {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.mcc-about-v2__value {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  background: #ffffff;
  border: 1px solid #ddd5c8;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 10px 24px rgba(58, 36, 96, 0.05);
}

.mcc-about-v2__value h3 {
  margin: 0;
  color: #6b3fa0;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: normal;
}

.mcc-about-v2__value p {
  margin: 0;
  color: #4b4b4b;
  line-height: 1.65;
}

.mcc-about-v2__timeline {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.mcc-about-v2__timeline-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  background: #ffffff;
  border: 1px solid #ddd5c8;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 10px 24px rgba(58, 36, 96, 0.05);
}

.mcc-about-v2__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #f2eaf9;
  color: #52307a;
  font-weight: 800;
  font-size: 1.05rem;
}

.mcc-about-v2__timeline-copy p {
  margin: 0;
}

.mcc-about-v2__two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.mcc-about-v2__panel p:last-child {
  margin-bottom: 0;
}

.mcc-about-v2__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.mcc-about-v2__cta h2 {
  margin: 0;
  color: #ffffff;
}

.mcc-about-v2__cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mcc-about-v2__cta-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.mcc-about-v2__cta-links a:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 900px) {
  .mcc-about-v2__hero h1 {
    max-width: none;
  }

  .mcc-about-v2__intro,
  .mcc-about-v2__two-col {
    grid-template-columns: 1fr;
  }

  .mcc-about-v2__value {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mcc-about-v2__timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mcc-about-v2__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .mcc-about-v2__hero,
  .mcc-about-v2__section,
  .mcc-about-v2__cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mcc-about-v2__hero,
  .mcc-about-v2__section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .mcc-about-v2__cta-links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .mcc-about-v2__cta-links a {
    width: 100%;
  }
}
/* ── End MCC About v2 styles ─────────────────────────────────────────────── */

/* ── MCC Worship page scoped styles ──────────────────────────────────────── */
.mcc-worship,
.mcc-worship * {
  box-sizing: border-box;
  min-width: 0;
}

.mcc-worship {
  color: #2d2d2d;
}

.mcc-worship a {
  color: #6b3fa0;
}

.mcc-worship a:hover {
  color: #52307a;
}

.mcc-worship__hero,
.mcc-worship__section,
.mcc-worship__cta {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.mcc-worship__hero {
  padding-top: 56px;
  padding-bottom: 44px;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 184, 0.14), transparent 34%),
    linear-gradient(135deg, #f8f3ee 0%, #fffdf9 50%, #f4eee7 100%);
  border-bottom: 1px solid #ddd5c8;
}

.mcc-worship__kicker,
.mcc-worship__eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(107, 63, 160, 0.08);
  color: #52307a;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mcc-worship__kicker--light {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.mcc-worship__hero h1,
.mcc-worship__heading h2,
.mcc-worship__copy h2,
.mcc-worship__panel h2,
.mcc-worship__cta h2 {
  margin: 0 0 12px;
  color: #52307a;
  line-height: 1.1;
  overflow-wrap: anywhere;
  word-break: normal;
}

.mcc-worship__hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  max-width: 13ch;
}

.mcc-worship__lead {
  max-width: 68ch;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.mcc-worship__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.mcc-worship__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.18s ease;
}

.mcc-worship__btn--primary {
  background: #6b3fa0;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(107, 63, 160, 0.18);
}

.mcc-worship__btn--primary:hover {
  background: #52307a;
  color: #ffffff !important;
  text-decoration: none;
}

.mcc-worship__btn--secondary {
  background: #ffffff;
  border: 2px solid #6b3fa0;
  color: #6b3fa0 !important;
}

.mcc-worship__btn--secondary:hover {
  background: #6b3fa0;
  color: #ffffff !important;
  text-decoration: none;
}

.mcc-worship__section {
  padding-top: 52px;
  padding-bottom: 52px;
}

.mcc-worship__section--soft {
  background: linear-gradient(180deg, #fffdf9 0%, #f8f2eb 100%);
  border-top: 1px solid #ddd5c8;
  border-bottom: 1px solid #ddd5c8;
}

.mcc-worship__section--alt {
  background: linear-gradient(180deg, #f6efe8 0%, #fdfaf5 100%);
  border-top: 1px solid #ddd5c8;
  border-bottom: 1px solid #ddd5c8;
}

.mcc-worship__section--cta {
  background: linear-gradient(135deg, #52307a, #291943);
  color: #ffffff;
}

.mcc-worship__info-grid,
.mcc-worship__come-grid,
.mcc-worship__ministry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.mcc-worship__info-card,
.mcc-worship__card,
.mcc-worship__quote-card,
.mcc-worship__panel {
  background: #ffffff;
  border: 1px solid #ddd5c8;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(58, 36, 96, 0.05);
  height: 100%;
}

.mcc-worship__info-card h2,
.mcc-worship__card h3,
.mcc-worship__quote-card h3 {
  margin: 0 0 10px;
  color: #6b3fa0;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.22;
  overflow-wrap: anywhere;
  word-break: normal;
}

.mcc-worship__info-card p:last-child,
.mcc-worship__card p:last-child,
.mcc-worship__quote-card p:last-child,
.mcc-worship__panel p:last-child {
  margin-bottom: 0;
}

.mcc-worship__split,
.mcc-worship__two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.mcc-worship__heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.mcc-worship__heading p {
  margin: 0;
  color: #6b6b6b;
}

.mcc-worship__card--accent {
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.96), rgba(82, 48, 122, 0.95));
  border-color: transparent;
  color: #ffffff;
}

.mcc-worship__card--accent h3,
.mcc-worship__card--accent a {
  color: #ffffff;
}

.mcc-worship__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.mcc-worship__cta h2 {
  margin: 0;
  color: #ffffff;
}

.mcc-worship__cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mcc-worship__cta-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.mcc-worship__cta-links a:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 900px) {
  .mcc-worship__hero h1 {
    max-width: none;
  }

  .mcc-worship__split,
  .mcc-worship__two-col {
    grid-template-columns: 1fr;
  }

  .mcc-worship__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .mcc-worship__hero,
  .mcc-worship__section,
  .mcc-worship__cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mcc-worship__hero,
  .mcc-worship__section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .mcc-worship__hero-actions,
  .mcc-worship__cta-links {
    flex-direction: column;
    align-items: stretch;
  }

  .mcc-worship__btn,
  .mcc-worship__cta-links a {
    width: 100%;
  }
}
/* ── End MCC Worship page styles ─────────────────────────────────────────── */

/* ── MCC Ministries v1 scoped styles ─────────────────────────────────────── */
.mcc-ministries-v1,
.mcc-ministries-v1 * {
  box-sizing: border-box;
  min-width: 0;
}

.mcc-ministries-v1 {
  color: #2d2d2d;
}

.mcc-ministries-v1 a {
  color: #6b3fa0;
}

.mcc-ministries-v1 a:hover {
  color: #52307a;
}

.mcc-ministries-v1__hero,
.mcc-ministries-v1__section {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.mcc-ministries-v1__hero {
  padding-top: 56px;
  padding-bottom: 44px;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 184, 0.14), transparent 34%),
    linear-gradient(135deg, #f8f3ee 0%, #fffdf9 50%, #f4eee7 100%);
  border-bottom: 1px solid #ddd5c8;
}

.mcc-ministries-v1__kicker,
.mcc-ministries-v1__eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(107, 63, 160, 0.08);
  color: #52307a;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mcc-ministries-v1__hero h1,
.mcc-ministries-v1__heading h2,
.mcc-ministries-v1__panel h2,
.mcc-ministries-v1__cta-card h2,
.mcc-ministries-v1__intro-copy h2 {
  margin: 0 0 12px;
  color: #52307a;
  line-height: 1.1;
  overflow-wrap: anywhere;
  word-break: normal;
}

.mcc-ministries-v1__hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  max-width: 14ch;
}

.mcc-ministries-v1__lead {
  max-width: 68ch;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.mcc-ministries-v1__section {
  padding-top: 52px;
  padding-bottom: 52px;
}

.mcc-ministries-v1__section--soft {
  background: linear-gradient(180deg, #fffdf9 0%, #f8f2eb 100%);
  border-top: 1px solid #ddd5c8;
  border-bottom: 1px solid #ddd5c8;
}

.mcc-ministries-v1__section--alt {
  background: linear-gradient(180deg, #f6efe8 0%, #fdfaf5 100%);
  border-top: 1px solid #ddd5c8;
  border-bottom: 1px solid #ddd5c8;
}

.mcc-ministries-v1__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.mcc-ministries-v1__info,
.mcc-ministries-v1__card,
.mcc-ministries-v1__panel,
.mcc-ministries-v1__serve-item {
  background: #ffffff;
  border: 1px solid #ddd5c8;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(58, 36, 96, 0.05);
  height: 100%;
}

.mcc-ministries-v1__info h3,
.mcc-ministries-v1__card h3,
.mcc-ministries-v1__serve-item h3 {
  margin: 0 0 10px;
  color: #6b3fa0;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.22;
  overflow-wrap: anywhere;
  word-break: normal;
}

.mcc-ministries-v1__info ul {
  margin: 0;
  padding-left: 18px;
}

.mcc-ministries-v1__info li {
  margin-bottom: 10px;
}

.mcc-ministries-v1__heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.mcc-ministries-v1__heading p {
  margin: 0;
  color: #6b6b6b;
}

.mcc-ministries-v1__grid,
.mcc-ministries-v1__serve-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.mcc-ministries-v1__card p:last-child,
.mcc-ministries-v1__panel p:last-child,
.mcc-ministries-v1__serve-item p:last-child {
  margin-bottom: 0;
}

.mcc-ministries-v1__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.mcc-ministries-v1__cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.96), rgba(82, 48, 122, 0.95));
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(58, 36, 96, 0.12);
}

.mcc-ministries-v1__cta-card h2,
.mcc-ministries-v1__cta-card a,
.mcc-ministries-v1__cta-card .mcc-ministries-v1__eyebrow {
  color: #ffffff;
}

.mcc-ministries-v1__cta-card .mcc-ministries-v1__eyebrow {
  background: rgba(255, 255, 255, 0.14);
}

.mcc-ministries-v1__cta-card p:last-child {
  margin-bottom: 0;
}

.mcc-ministries-v1__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.mcc-ministries-v1__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.18s ease;
}

.mcc-ministries-v1__btn--primary {
  background: #ffffff;
  color: #52307a !important;
}

.mcc-ministries-v1__btn--primary:hover {
  background: #f3eefe;
  color: #52307a !important;
  text-decoration: none;
}

.mcc-ministries-v1__btn--secondary {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #ffffff !important;
  background: transparent;
}

.mcc-ministries-v1__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  text-decoration: none;
}

@media (max-width: 900px) {
  .mcc-ministries-v1__hero h1 {
    max-width: none;
  }

  .mcc-ministries-v1__intro,
  .mcc-ministries-v1__split,
  .mcc-ministries-v1__cta-card {
    grid-template-columns: 1fr;
  }

  .mcc-ministries-v1__cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .mcc-ministries-v1__hero,
  .mcc-ministries-v1__section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mcc-ministries-v1__hero,
  .mcc-ministries-v1__section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .mcc-ministries-v1__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mcc-ministries-v1__btn {
    width: 100%;
  }
}
/* ── End MCC Ministries v1 styles ────────────────────────────────────────── */

/* ── MCC Home v2 scoped styles ───────────────────────────────────────────── */
.mcc-home-v2,
.mcc-home-v2 * {
  box-sizing: border-box;
  min-width: 0;
}

.mcc-home-v2 {
  color: #2d2d2d;
}

.mcc-home-v2 a {
  color: #6b3fa0;
}

.mcc-home-v2 a:hover {
  color: #52307a;
}

.mcc-home-v2__hero,
.mcc-home-v2__visit,
.mcc-home-v2__mission,
.mcc-home-v2__welcome,
.mcc-home-v2__next,
.mcc-home-v2__connect-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.mcc-home-v2__hero {
  padding-top: 56px;
  padding-bottom: 48px;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 184, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(212, 160, 23, 0.10), transparent 30%),
    linear-gradient(135deg, #f8f3ee 0%, #fffdf9 50%, #f4eee7 100%);
  border-bottom: 1px solid #ddd5c8;
}

.mcc-home-v2__kicker,
.mcc-home-v2__eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(107, 63, 160, 0.08);
  color: #52307a;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mcc-home-v2__kicker--light {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.mcc-home-v2__hero h1,
.mcc-home-v2__welcome h2,
.mcc-home-v2__next h2,
.mcc-home-v2__connect h2 {
  margin: 0 0 14px;
  color: #52307a;
  line-height: 1.08;
  overflow-wrap: anywhere;
  word-break: normal;
}

.mcc-home-v2__hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  max-width: 12ch;
}

.mcc-home-v2__lead {
  max-width: 64ch;
  margin: 0 0 22px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.mcc-home-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 20px;
}

.mcc-home-v2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.18s ease;
}

.mcc-home-v2__btn--primary {
  background: #6b3fa0;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(107, 63, 160, 0.18);
}

.mcc-home-v2__btn--primary:hover {
  background: #52307a;
  color: #ffffff !important;
  text-decoration: none;
}

.mcc-home-v2__btn--secondary {
  background: #ffffff;
  border: 2px solid #6b3fa0;
  color: #6b3fa0 !important;
}

.mcc-home-v2__btn--secondary:hover {
  background: #6b3fa0;
  color: #ffffff !important;
  text-decoration: none;
}

.mcc-home-v2__quickfacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mcc-home-v2__quickfacts span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid #ddd5c8;
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.93rem;
  color: #6b6b6b;
}

.mcc-home-v2__visit {
  padding-top: 34px;
  padding-bottom: 24px;
}

.mcc-home-v2__visit-grid,
.mcc-home-v2__next-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.mcc-home-v2__card,
.mcc-home-v2__list-card {
  background: #ffffff;
  border: 1px solid #ddd5c8;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(58, 36, 96, 0.05);
  height: 100%;
}

.mcc-home-v2__card h2,
.mcc-home-v2__card h3,
.mcc-home-v2__list-card h3 {
  margin: 0 0 10px;
  color: #6b3fa0;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.22;
  overflow-wrap: anywhere;
  word-break: normal;
}

.mcc-home-v2__card p:last-child,
.mcc-home-v2__list-card p:last-child {
  margin-bottom: 0;
}

.mcc-home-v2__mission {
  padding-top: 18px;
  padding-bottom: 18px;
}

.mcc-home-v2__mission blockquote {
  margin: 0;
  padding: 18px 22px;
  border-left: 4px solid #8b5cb8;
  background: #f5efe8;
  border-radius: 0 8px 8px 0;
  color: #5b5169;
  font-style: italic;
}

.mcc-home-v2__welcome {
  padding-top: 42px;
  padding-bottom: 42px;
}

.mcc-home-v2__split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: start;
}

.mcc-home-v2__copy p:last-child {
  margin-bottom: 0;
}

.mcc-home-v2__list-card ul {
  margin: 0;
  padding-left: 20px;
}

.mcc-home-v2__list-card li {
  margin-bottom: 10px;
}

.mcc-home-v2__next {
  padding-top: 20px;
  padding-bottom: 48px;
}

.mcc-home-v2__sectionhead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.mcc-home-v2__sectionhead h2 {
  color: #6b3fa0;
}

.mcc-home-v2__card--link a {
  font-weight: 700;
}

.mcc-home-v2__card--accent {
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.96), rgba(82, 48, 122, 0.95));
  border-color: transparent;
  color: #ffffff;
}

.mcc-home-v2__card--accent h3,
.mcc-home-v2__card--accent a {
  color: #ffffff;
}

.mcc-home-v2__connect {
  background: linear-gradient(135deg, #52307a, #291943);
  color: #ffffff;
}

.mcc-home-v2__connect h2 {
  margin: 0;
  color: #ffffff;
}

.mcc-home-v2__connect-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.mcc-home-v2__connect-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mcc-home-v2__connect-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.mcc-home-v2__connect-links a:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 900px) {
  .mcc-home-v2__split {
    grid-template-columns: 1fr;
  }

  .mcc-home-v2__hero h1 {
    max-width: none;
  }

  .mcc-home-v2__connect-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .mcc-home-v2__hero,
  .mcc-home-v2__visit,
  .mcc-home-v2__mission,
  .mcc-home-v2__welcome,
  .mcc-home-v2__next,
  .mcc-home-v2__connect-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mcc-home-v2__hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .mcc-home-v2__welcome,
  .mcc-home-v2__next {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .mcc-home-v2__actions,
  .mcc-home-v2__connect-links {
    flex-direction: column;
    align-items: stretch;
  }

  .mcc-home-v2__btn,
  .mcc-home-v2__connect-links a {
    width: 100%;
  }
}
/* ── End MCC Home v2 styles ──────────────────────────────────────────────── */

/* ── Value grid (shared component) ───────────────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.value-card h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

/* Hero section */
.home-hero {
  background: radial-gradient(ellipse at 60% 40%, #f0e6fa 0%, var(--color-bg) 70%);
  padding: 5rem 20px;
  text-align: center;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  background: var(--color-accent);
  color: #1a1000;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.35);
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.hero-cta:hover {
  background: var(--color-accent-light);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.45);
  transform: translateY(-2px);
  text-decoration: none;
  color: #1a1000;
}

/* Home cards — 3-column feature grid */
.home-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: var(--wrap-wide);
  margin: 0 auto;
  padding: 3rem 20px;
}

.home-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.home-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.home-card-title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.home-card-body {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  max-width: none;
}

.home-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Service times section */
.service-times {
  background: var(--color-bg-alt);
  padding: 3rem 20px;
  text-align: center;
}

.service-times h2 {
  margin-bottom: 1.5rem;
}

.service-times-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.service-time-item {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 2rem;
  min-width: 200px;
  border-top: 4px solid var(--color-primary);
}

.service-time-day {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.service-time-hour {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.service-time-note {
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-top: 0.25rem;
}


/* ============================================================
   9. BLOG
   ============================================================ */

/* Blog list grid */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.blog-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-card-image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 3rem;
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-card-meta-sep {
  opacity: 0.4;
}

.blog-card-title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-title a:hover {
  text-decoration: underline;
  color: var(--color-primary-dark);
}

.blog-card-excerpt {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  flex: 1;
  margin-bottom: 1rem;
  max-width: none;
}

.blog-card-read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  align-self: flex-start;
  margin-top: auto;
}

/* Single post */
.post-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.post-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.post-category-badge {
  background: var(--color-primary-light);
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.post-featured-image {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

/* Post body prose */
.post-content {
  color: var(--color-text);
  line-height: 1.8;
}

.post-content p {
  margin-bottom: 1.4rem;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.post-content ul,
.post-content ol {
  list-style: revert;
  padding-left: 1.75rem;
  margin-bottom: 1.4rem;
}

.post-content li {
  margin-bottom: 0.4rem;
}

.post-content blockquote {
  margin: 2rem 0;
}

.post-content img {
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

/* Post tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.post-tag {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  font-size: 0.8rem;
  padding: 3px 12px;
  border-radius: 50px;
  border: 1px solid var(--color-border);
  text-decoration: none;
  transition: background 0.15s ease;
}

.post-tag:hover {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.pagination a {
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

.pagination a:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  text-decoration: none;
}

.pagination .current {
  background: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
}


/* ============================================================
   10. CONTACT FORM
   ============================================================ */
/* Contact page outer layout: form left, info right */
.contact-page-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
  max-width: var(--wrap-wide);
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-form {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}

/* Two-column field row within the form */
.form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.contact-form .form-control {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  padding: 0.65rem 0.85rem;
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(107, 63, 160, 0.12);
  outline: none;
}

.contact-form .form-control::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 180px;
}

/* Church info sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-sidebar-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.contact-sidebar-card h3 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-info-icon {
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  color: var(--color-primary);
}


/* ============================================================
   11. BOARD OF DIRECTORS
   ============================================================ */
.board-section {
  padding: 3rem 0;
}

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

.board-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  transition: box-shadow 0.2s ease;
}

.board-card:hover {
  box-shadow: var(--shadow-hover);
}

/* Circular photo */
.board-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid var(--color-accent);
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

/* Placeholder when no photo is available */
.board-photo-placeholder {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid var(--color-accent);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.board-initials {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  user-select: none;
}

.board-info {
  flex: 1;
  min-width: 0;
}

.board-name {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.board-title {
  color: var(--color-accent);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.board-bio {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  max-width: none;
}

.board-email {
  font-size: 0.8rem;
  color: var(--color-primary-light);
  word-break: break-all;
}

.board-email:hover {
  color: var(--color-primary-dark);
}


/* ============================================================
   12. DONATE SECTION
   ============================================================ */
.donate-section {
  padding: 3rem 20px;
  text-align: center;
  background: var(--color-bg-alt);
}

.donate-intro {
  max-width: 55ch;
  margin: 0 auto 2rem;
  color: var(--color-text-muted);
}

.donate-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.donate-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.donate-btn-paypal {
  background: #003087;
  color: #fff;
}

.donate-btn-paypal:hover {
  color: #fff;
}

.donate-btn-venmo {
  background: #008CFF;
  color: #fff;
}

.donate-btn-venmo:hover {
  color: #fff;
}

.donate-btn-check {
  background: var(--color-primary);
  color: #fff;
}

.donate-btn-check:hover {
  color: #fff;
}

.donate-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  max-width: 50ch;
  margin: 0 auto;
}


/* ============================================================
   13. NEWSLETTER SIGNUP WIDGET
   ============================================================ */
.newsletter-widget {
  padding: 1.25rem 0;
}

.newsletter-widget h3 {
  color: var(--color-accent);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.newsletter-widget p {
  font-size: 0.875rem;
  color: var(--color-footer-text);
  opacity: 0.8;
  margin-bottom: 0.75rem;
  max-width: none;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 160px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 0.6rem 0.9rem;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  border-color: var(--color-accent-light);
  background: rgba(255, 255, 255, 0.18);
}

.newsletter-btn {
  background: var(--color-accent);
  color: #1a1000;
  border: none;
  border-radius: var(--radius);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--color-accent-light);
}

/* Success / error feedback */
.newsletter-msg {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  display: none;
}

.newsletter-msg.success {
  display: block;
  background: rgba(0, 200, 100, 0.15);
  color: #5fffaa;
  border: 1px solid rgba(0, 200, 100, 0.3);
}

.newsletter-msg.error {
  display: block;
  background: rgba(255, 80, 80, 0.15);
  color: #ff9999;
  border: 1px solid rgba(255, 80, 80, 0.3);
}


/* ============================================================
   14. FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 3.5rem 20px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: var(--wrap-wide);
  margin: 0 auto;
  padding-bottom: 2.5rem;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: 0.9rem;
  letter-spacing: 0.03em;
}

.footer-col p {
  font-size: 0.875rem;
  color: rgba(237, 232, 245, 0.75);
  line-height: 1.7;
  max-width: none;
}

/* Direct <a> links inside footer columns (Pages list, address links) */
.footer-col a {
  display: block;
  color: rgba(237, 232, 245, 0.75);
  font-size: 0.875rem;
  text-decoration: none;
  padding: 2px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links a {
  color: rgba(237, 232, 245, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(237, 232, 245, 0.7);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  background: var(--color-primary-light);
  color: #fff;
  border-color: var(--color-primary-light);
  text-decoration: none;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 20px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(237, 232, 245, 0.5);
  max-width: var(--wrap-wide);
  margin: 0 auto;
}

.footer-bottom a {
  color: rgba(237, 232, 245, 0.65);
}

.footer-bottom a:hover {
  color: #fff;
}


/* ============================================================
   15. FORMS & INPUTS (Global)
   ============================================================ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.form-label-required::after {
  content: ' *';
  color: #c0392b;
}

.form-control {
  display: block;
  width: 100%;
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(107, 63, 160, 0.15);
}

.form-control::placeholder {
  color: var(--color-text-muted);
  opacity: 0.65;
}

.form-control:disabled {
  background: var(--color-bg-alt);
  cursor: not-allowed;
  opacity: 0.65;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%236B6B6B' stroke-width='2' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.form-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
}

.form-error {
  display: block;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.3rem;
}

.form-control.is-invalid {
  border-color: #c0392b;
}

.form-control.is-valid {
  border-color: #27ae60;
}


/* ============================================================
   16. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease,
              color 0.18s ease,
              border-color 0.18s ease,
              box-shadow 0.18s ease,
              transform 0.12s ease;
  line-height: 1.3;
}

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

.btn:active {
  transform: translateY(0);
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* Primary — purple */
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(107, 63, 160, 0.35);
}

/* Secondary — outline */
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Accent — gold */
.btn-accent {
  background: var(--color-accent);
  color: #1a1000;
  border-color: var(--color-accent);
}

.btn-accent:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  color: #1a1000;
  box-shadow: 0 4px 14px rgba(212, 160, 23, 0.35);
}

/* Ghost — transparent with white text (for dark backgrounds) */
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

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

/* Sizes */
.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.825rem;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
}

.btn-block {
  display: flex;
  width: 100%;
}


/* ============================================================
   17. ALERTS
   ============================================================ */
.alert {
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius);
  border-left: 4px solid transparent;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.alert-success {
  background: #eafaf2;
  border-left-color: #27ae60;
  color: #1a6b3c;
}

.alert-error {
  background: #fdf0ee;
  border-left-color: #c0392b;
  color: #7d1a13;
}

.alert-warning {
  background: #fef9e7;
  border-left-color: #f39c12;
  color: #7d5a00;
}

.alert-info {
  background: #eef4fb;
  border-left-color: var(--color-primary);
  color: var(--color-primary-dark);
}

.alert strong {
  font-weight: 700;
}

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

.alert-dismissible {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.alert-dismiss-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0.5;
  margin-left: auto;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
  transition: opacity 0.15s ease;
}

.alert-dismiss-btn:hover {
  opacity: 1;
}


/* ============================================================
   18. 404 / ERROR PAGES
   ============================================================ */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 20px;
  min-height: 60vh;
}

.error-symbol {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  opacity: 0.75;
  line-height: 1;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
  opacity: 0.2;
}

.error-page h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.error-page p {
  color: var(--color-text-muted);
  max-width: 45ch;
  margin: 0 auto 2rem;
}

.error-page .btn {
  margin: 0 0.4rem;
}


/* ============================================================
   19. UTILITIES
   ============================================================ */

/* Text alignment */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* Text color helpers */
.text-primary { color: var(--color-primary); }
.text-accent  { color: var(--color-accent); }
.text-muted   { color: var(--color-text-muted); }

/* Margin top */
.mt-0  { margin-top: 0; }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mt-5  { margin-top: 3rem; }
.mt-6  { margin-top: 4rem; }

/* Margin bottom */
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.mb-5  { margin-bottom: 3rem; }
.mb-6  { margin-bottom: 4rem; }

/* Padding helpers */
.py-1  { padding-top: 0.5rem;  padding-bottom: 0.5rem; }
.py-2  { padding-top: 1rem;    padding-bottom: 1rem; }
.py-3  { padding-top: 1.5rem;  padding-bottom: 1.5rem; }
.py-4  { padding-top: 2rem;    padding-bottom: 2rem; }
.py-5  { padding-top: 3rem;    padding-bottom: 3rem; }

.px-1  { padding-left: 0.5rem;  padding-right: 0.5rem; }
.px-2  { padding-left: 1rem;    padding-right: 1rem; }
.px-3  { padding-left: 1.5rem;  padding-right: 1.5rem; }

/* Display */
.d-block  { display: block; }
.d-flex   { display: flex; }
.d-none   { display: none; }

/* Flex helpers */
.flex-wrap { flex-wrap: wrap; }
.gap-1     { gap: 0.5rem; }
.gap-2     { gap: 1rem; }
.gap-3     { gap: 1.5rem; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

/* Visually hidden (accessible) */
.visually-hidden,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.badge-primary   { background: var(--color-primary);       color: #fff; }
.badge-accent    { background: var(--color-accent);         color: #1a1000; }
.badge-success   { background: #27ae60;                    color: #fff; }
.badge-error     { background: #c0392b;                    color: #fff; }
.badge-secondary { background: var(--color-bg-alt);        color: var(--color-text-muted); border: 1px solid var(--color-border); }
.badge-info      { background: var(--color-primary-light); color: #fff; }

/* Divider with text */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* Card generic */
.card {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* Section separator using rainbow stripe */
.rainbow-stripe {
  display: block;
  height: 5px;
  background: var(--rainbow);
  width: 100%;
  border: none;
  margin: 0;
}

/* Accent bar decoration (small horizontal line under a heading) */
.accent-bar {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 0.5rem auto 1.25rem;
}

.accent-bar-left {
  margin-left: 0;
}


/* ============================================================
   20. RESPONSIVE — Tablet (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .home-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page-wrap {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   21. RESPONSIVE — Mobile (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Navigation: collapse to hamburger */
  .nav-toggle {
    display: flex;
    align-items: center;
  }

  .site-nav-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background: var(--color-primary-dark);
  }

  /* Hide all nav items by default; show when .open is toggled */
  .site-nav-inner > a,
  .site-nav-inner > .nav-item {
    display: none;
  }

  .site-nav-inner.open > a,
  .site-nav-inner.open > .nav-item {
    display: flex;
  }

  .site-nav-inner > a,
  .nav-item > a.nav-parent-link {
    padding: 13px 20px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Dropdowns become inline on mobile */
  .nav-dropdown {
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.2);
    display: none;
    padding: 0;
  }

  .nav-item.open > .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-dropdown a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  /* Home hero */
  .home-hero {
    padding: 3.5rem 20px;
  }

  /* Cards: single column */
  .home-cards {
    grid-template-columns: 1fr;
    padding: 2rem 20px;
  }

  /* Board grid: 1 column on mobile */
  .board-grid {
    grid-template-columns: 1fr;
  }

  /* Blog grid: single column */
  .blog-list {
    grid-template-columns: 1fr;
  }

  /* Page wrap tighter padding */
  .page-wrap {
    padding: 24px 16px;
  }

  /* Footer: stack columns */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  /* Contact page: stack sidebar below form on mobile */
  .contact-page-wrap {
    grid-template-columns: 1fr;
    padding: 24px 16px;
  }

  .contact-form {
    padding: 1.75rem 1.25rem;
  }

  .form-row-two {
    grid-template-columns: 1fr;
  }

  /* Service times */
  .service-times-grid {
    flex-direction: column;
    align-items: center;
  }

  /* Donate buttons */
  .donate-buttons {
    flex-direction: column;
    align-items: center;
  }

  .donate-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Newsletter form: stack */
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    width: 100%;
  }

  .newsletter-btn {
    width: 100%;
  }

  /* Headings scale down */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.15rem; }

  /* Page heading inline-block trick: reset on mobile */
  .page-heading {
    left: auto;
    transform: none;
    display: block;
  }
}


/* ============================================================
   22. RESPONSIVE — Small mobile (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {

  .hero-headline {
    font-size: 1.7rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-cta {
    display: block;
    text-align: center;
  }

  /* Board card: stack vertically on mobile */
  .board-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .board-photo,
  .board-photo-placeholder {
    width: 120px;
    height: 120px;
  }

  .board-initials {
    font-size: 1.6rem;
  }

  .contact-form {
    padding: 1.25rem 1rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-sm {
    width: auto;
  }

  .pagination a,
  .pagination span {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  .service-time-item {
    min-width: auto;
    width: 100%;
    max-width: 280px;
  }

  .site-header-branding {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
  }

  .error-page {
    padding: 3rem 16px;
  }

  .error-symbol {
    font-size: 3.5rem;
  }
}


/* ============================================================
   23. PRINT STYLES
   ============================================================ */
@media print {
  .site-nav,
  .site-nav::after,
  .nav-toggle,
  .site-footer,
  .hero-cta,
  .donate-buttons,
  .newsletter-widget {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  h1, h2, h3, h4, h5, h6 {
    color: #000;
    page-break-after: avoid;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .page-wrap {
    max-width: 100%;
    padding: 0;
  }

  .post-content img {
    max-width: 80%;
  }
}


/* ============================================================
   MCC LEADERSHIP V1
   ============================================================ */

/* ── Outer wrapper ─────────────────────────────────────────── */
.mcc-leadership-v1 {
  font-family: var(--font-body);
  color: var(--color-text);
}

/* ── Generic section block ─────────────────────────────────── */
.mcc-leadership-v1__section {
  padding: 4rem 20px;
  max-width: 1100px;
  margin-inline: auto;
}

.mcc-leadership-v1__section--soft {
  background: var(--color-bg-alt);
  max-width: none;
  padding-inline: 20px;
}

.mcc-leadership-v1__section--soft > * {
  max-width: 1100px;
  margin-inline: auto;
}

.mcc-leadership-v1__section--alt {
  background: var(--color-primary);
  max-width: none;
  padding-inline: 20px;
}

.mcc-leadership-v1__section--alt > * {
  max-width: 1100px;
  margin-inline: auto;
}

/* ── Hero ──────────────────────────────────────────────────── */
.mcc-leadership-v1__hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #fff;
  padding: 5rem 20px 4rem;
  text-align: center;
}

.mcc-leadership-v1__hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  max-width: 780px;
  margin: 0.5rem auto 1.25rem;
  line-height: 1.2;
}

.mcc-leadership-v1__kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 0.5rem;
}

.mcc-leadership-v1__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin-inline: auto;
}

/* ── Section heading block ─────────────────────────────────── */
.mcc-leadership-v1__heading {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.mcc-leadership-v1__heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.mcc-leadership-v1__heading p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ── Intro two-column ──────────────────────────────────────── */
.mcc-leadership-v1__intro {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.mcc-leadership-v1__intro-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.mcc-leadership-v1__intro-copy p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.mcc-leadership-v1__info {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.75rem;
  border-top: 4px solid var(--color-accent);
}

.mcc-leadership-v1__info h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.8rem;
}

.mcc-leadership-v1__info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mcc-leadership-v1__info li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.mcc-leadership-v1__info a {
  color: var(--color-primary);
  text-decoration: none;
}

.mcc-leadership-v1__info a:hover {
  text-decoration: underline;
}

/* ── Staff grid ────────────────────────────────────────────── */
.mcc-leadership-v1__staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mcc-leadership-v1__person-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem;
  border-top: 4px solid var(--color-primary);
}

.mcc-leadership-v1__person-card:hover {
  box-shadow: var(--shadow-hover);
}

.mcc-leadership-v1__person-meta {
  margin-bottom: 1rem;
}

.mcc-leadership-v1__person-meta h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.15rem;
  margin: 0;
}

.mcc-leadership-v1__role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.3rem;
}

.mcc-leadership-v1__person-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 0.65rem;
}

.mcc-leadership-v1__person-card p:last-child {
  margin-bottom: 0;
}

/* ── Board list ────────────────────────────────────────────── */
.mcc-leadership-v1__board-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(107,63,160,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.mcc-leadership-v1__board-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border-bottom: 1px solid rgba(107,63,160,0.1);
}

.mcc-leadership-v1__board-item:last-child {
  border-bottom: none;
}

.mcc-leadership-v1__board-item:nth-child(even) {
  background: rgba(253,250,245,0.6);
}

.mcc-leadership-v1__board-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding-top: 0.2rem;
  line-height: 1.4;
}

.mcc-leadership-v1__board-content h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.mcc-leadership-v1__board-content p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Two-column panel ──────────────────────────────────────── */
.mcc-leadership-v1__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.mcc-leadership-v1__panel h2 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 0.85rem;
}

.mcc-leadership-v1__panel p {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.mcc-leadership-v1__panel p:last-child {
  margin-bottom: 0;
}

.mcc-leadership-v1__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 0.4rem;
}

/* ── CTA card ──────────────────────────────────────────────── */
.mcc-leadership-v1__cta-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.mcc-leadership-v1__cta-card .mcc-leadership-v1__eyebrow {
  color: var(--color-accent);
}

.mcc-leadership-v1__cta-card h2 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 0.5rem;
}

.mcc-leadership-v1__cta-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 580px;
  margin: 0;
}

.mcc-leadership-v1__cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── Buttons ───────────────────────────────────────────────── */
.mcc-leadership-v1__btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.mcc-leadership-v1__btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.mcc-leadership-v1__btn--primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.mcc-leadership-v1__btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.mcc-leadership-v1__btn--secondary:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .mcc-leadership-v1__intro {
    grid-template-columns: 1fr;
  }

  .mcc-leadership-v1__staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mcc-leadership-v1__two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .mcc-leadership-v1__hero {
    padding: 3.5rem 20px 2.5rem;
  }

  .mcc-leadership-v1__section {
    padding: 2.5rem 16px;
  }

  .mcc-leadership-v1__staff-grid {
    grid-template-columns: 1fr;
  }

  .mcc-leadership-v1__board-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 1rem 1.1rem;
  }

  .mcc-leadership-v1__cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem 1.25rem;
  }

  .mcc-leadership-v1__cta-actions {
    width: 100%;
  }

  .mcc-leadership-v1__btn {
    flex: 1;
    text-align: center;
  }
}

/* ============================================================
   FORMS LISTING PAGE
   ============================================================ */

.forms-page {
  max-width: 860px;
  margin: 0 auto;
}

.forms-page__header {
  margin-bottom: 2.5rem;
}

.forms-page__title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.forms-page__intro {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 65ch;
}

.forms-page__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Individual form card */
.forms-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--color-surface);
  border: 1px solid rgba(107, 63, 160, 0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  text-decoration: none;
  color: var(--color-text);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}

.forms-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(107, 63, 160, 0.35);
  transform: translateY(-2px);
}

.forms-card__icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 63, 160, 0.08);
  border-radius: 50%;
}

.forms-card__body {
  flex: 1;
  min-width: 0;
}

.forms-card__title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

.forms-card__desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 0.6rem;
}

.forms-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.forms-card:hover .forms-card__link {
  color: var(--color-primary-dark);
}

@media (max-width: 600px) {
  .forms-card {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ============================================================
   24. FOCUS & ACCESSIBILITY
   ============================================================ */

/* Visible focus ring for keyboard navigation */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* High-contrast / reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ============================================================
   MCC GIVE V1
   ============================================================ */

.mcc-give-v1,
.mcc-give-v1 * {
  box-sizing: border-box;
  min-width: 0;
}

.mcc-give-v1 {
  color: #2d2d2d;
}

.mcc-give-v1 a {
  color: #6b3fa0;
}

.mcc-give-v1 a:hover {
  color: #52307a;
}

.mcc-give-v1__hero,
.mcc-give-v1__section {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.mcc-give-v1__hero {
  padding-top: 56px;
  padding-bottom: 44px;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 184, 0.14), transparent 34%),
    linear-gradient(135deg, #f8f3ee 0%, #fffdf9 50%, #f4eee7 100%);
  border-bottom: 1px solid #ddd5c8;
}

.mcc-give-v1__kicker,
.mcc-give-v1__eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(107, 63, 160, 0.08);
  color: #52307a;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mcc-give-v1__hero h1,
.mcc-give-v1__heading h2,
.mcc-give-v1__intro-copy h2,
.mcc-give-v1__panel h2,
.mcc-give-v1__cta-card h2 {
  margin: 0 0 12px;
  color: #52307a;
  line-height: 1.1;
  overflow-wrap: anywhere;
  word-break: normal;
}

.mcc-give-v1__hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  max-width: 14ch;
}

.mcc-give-v1__lead {
  max-width: 68ch;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.mcc-give-v1__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.mcc-give-v1__section {
  padding-top: 52px;
  padding-bottom: 52px;
}

.mcc-give-v1__section--soft {
  background: linear-gradient(180deg, #fffdf9 0%, #f8f2eb 100%);
  border-top: 1px solid #ddd5c8;
  border-bottom: 1px solid #ddd5c8;
}

.mcc-give-v1__section--alt {
  background: linear-gradient(180deg, #f6efe8 0%, #fdfaf5 100%);
  border-top: 1px solid #ddd5c8;
  border-bottom: 1px solid #ddd5c8;
}

.mcc-give-v1__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.mcc-give-v1__info,
.mcc-give-v1__card,
.mcc-give-v1__panel,
.mcc-give-v1__serve-item {
  background: #ffffff;
  border: 1px solid #ddd5c8;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(58, 36, 96, 0.05);
  height: 100%;
}

.mcc-give-v1__info h3,
.mcc-give-v1__card h3,
.mcc-give-v1__serve-item h3 {
  margin: 0 0 10px;
  color: #6b3fa0;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.22;
  overflow-wrap: anywhere;
  word-break: normal;
}

.mcc-give-v1__info ul {
  margin: 0;
  padding-left: 18px;
}

.mcc-give-v1__info li {
  margin-bottom: 10px;
}

.mcc-give-v1__heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.mcc-give-v1__heading p {
  margin: 0;
  color: #6b6b6b;
}

.mcc-give-v1__grid,
.mcc-give-v1__serve-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.mcc-give-v1__card p:last-child,
.mcc-give-v1__panel p:last-child,
.mcc-give-v1__serve-item p:last-child {
  margin-bottom: 0;
}

.mcc-give-v1__two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.mcc-give-v1__cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.96), rgba(82, 48, 122, 0.95));
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(58, 36, 96, 0.12);
}

.mcc-give-v1__cta-card h2,
.mcc-give-v1__cta-card a,
.mcc-give-v1__cta-card .mcc-give-v1__eyebrow {
  color: #ffffff;
}

.mcc-give-v1__cta-card .mcc-give-v1__eyebrow {
  background: rgba(255, 255, 255, 0.14);
}

.mcc-give-v1__cta-card p:last-child {
  margin-bottom: 0;
}

.mcc-give-v1__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.mcc-give-v1__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.18s ease;
}

.mcc-give-v1__btn--primary {
  background: #6b3fa0;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(107, 63, 160, 0.18);
}

.mcc-give-v1__btn--primary:hover {
  background: #52307a;
  color: #ffffff !important;
  text-decoration: none;
}

.mcc-give-v1__btn--secondary {
  background: #ffffff;
  border: 2px solid #6b3fa0;
  color: #6b3fa0 !important;
}

.mcc-give-v1__btn--secondary:hover {
  background: #6b3fa0;
  color: #ffffff !important;
  text-decoration: none;
}

.mcc-give-v1__cta-card .mcc-give-v1__btn--primary {
  background: #ffffff;
  color: #52307a !important;
  box-shadow: none;
}

.mcc-give-v1__cta-card .mcc-give-v1__btn--primary:hover {
  background: #f3eefe;
  color: #52307a !important;
}

.mcc-give-v1__cta-card .mcc-give-v1__btn--secondary {
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #ffffff !important;
}

.mcc-give-v1__cta-card .mcc-give-v1__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
}

.mcc-give-v1__method-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.mcc-give-v1__method {
  padding-top: 18px;
  border-top: 1px solid #ddd5c8;
}

.mcc-give-v1__method strong {
  display: block;
  margin-bottom: 6px;
  color: #52307a;
  font-size: 1rem;
}

.mcc-give-v1__method p {
  margin: 0 0 12px;
  color: #4b4b4b;
}

.mcc-give-v1__method p:last-child {
  margin-bottom: 0;
}

.mcc-give-v1__method .mcc-give-v1__btn {
  margin-top: 4px;
  width: 100%;
}

@media (max-width: 900px) {
  .mcc-give-v1__hero h1 {
    max-width: none;
  }

  .mcc-give-v1__intro,
  .mcc-give-v1__two-col,
  .mcc-give-v1__cta-card {
    grid-template-columns: 1fr;
  }

  .mcc-give-v1__cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .mcc-give-v1__hero,
  .mcc-give-v1__section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mcc-give-v1__hero,
  .mcc-give-v1__section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .mcc-give-v1__hero-actions,
  .mcc-give-v1__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mcc-give-v1__btn {
    width: 100%;
  }
}
