:root {
  --gold: #8b6914;
  --gold-light: #c9a84c;
  --gold-pale: #f7f0df;
  --gold-soft: #efe1be;

  --navy: #1b2a4a;
  --navy-mid: #2c3e6b;
  --navy-pale: #eef1f8;

  --stone: #f5f3ef;
  --stone-mid: #e8e4dc;

  --ink: #1a1814;
  --ink-mid: #3d3a35;
  --ink-soft: #6b6660;

  --white: #ffffff;

  --glass: rgba(255, 255, 255, 0.08);

  --red-alert: #8b1a1a;
  --red-alert-bg: #fef2f2;

  --font-serif: "EB Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-card: 0 1px 4px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.05);
  --shadow-nav: 0 2px 16px rgba(0, 0, 0, 0.28);
}

/** reset **/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--stone);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-white {
  background: var(--white);
}

.bg-stone {
  background: var(--stone);
}

/* nav */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.nav-title {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 1;
}

.nav-title-top {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 550;
  color: var(--white);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-title-sub {
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2px;
  align-items: center;
}

.nav-links a {
  display: block;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  transition: color 0.18s;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: var(--gold-light);
  transition:
    left 0.22s ease,
    right 0.22s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: #fff;
  background: var(--glass);
}

.nav-links a:hover::after {
  left: 13px;
  right: 13px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lang-pill {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-pill .lang-label {
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 10px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition:
    background 0.14s,
    color 0.14s;
  white-space: nowrap;
  user-select: none;
}

.lang-pill .lang-label:hover {
  color: var(--white);
}

.lang-pill .lang-radio:checked + .lang-label {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.nav-donate {
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}

.nav-donate:hover {
  background: #7a5b10;
}

.nav-donate::after {
  display: none;
}

.nav-hamburger {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.22s,
    opacity 0.22s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-menu {
  background: var(--navy-mid);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  z-index: 99;
  box-shadow: var(--shadow-nav);
}

.mobile-menu.open {
  max-height: 480px;
}

.mobile-menu-inner {
  padding: 8px 0 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.mobile-menu-inner a {
  display: block;
  padding: 12px 24px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.12s;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}

.section-divider {
  height: 1px;
  background: var(--stone-mid);
}

/* About Page Hero Section */
.about-hero {
  background: var(--navy);
  padding: 72px 24px 60px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  inset: 0;
  position: absolute;
  background: radial-gradient(
    ellipse at 80% -10%,
    rgba(139, 105, 20, 0.35) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-hero-content {
  color: var(--white);
}

.about-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.about-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 550;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--white);
}

.about-hero-lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 540px;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.about-hero-visual {
  position: relative;
  width: 100%;
}

.glass-bg-stained {
  position: absolute;
  inset: -20px;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    linear-gradient(225deg, rgba(44, 62, 107, 0.12) 0%, transparent 60%),
    radial-gradient(
      circle at 75% 25%,
      rgba(201, 168, 76, 0.12) 0%,
      transparent 40%
    );
  border-radius: var(--radius-lg);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.collage-container {
  position: relative;
  height: 380px;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.collage-item.arched-main {
  width: 65%;
  height: 90%;
  border-radius: 180px 180px 0 0;
  border: 1px solid rgba(201, 168, 76, 0.35);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.collage-item.offset-child {
  position: absolute;
  right: 0;
  top: 20px;
  width: 48%;
  height: 60%;
  border-radius: var(--radius-md);
  border: 4px solid var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  padding: 24px;
  background: var(--stone-mid);
  border: 1px dashed rgba(27, 42, 74, 0.15);
  transition: background-color 0.2s ease;
}

.image-placeholder svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Remove old placeholder styling */
.about-hero .image-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 !important;
    margin: 0;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden;
}

/* Make the image fill and crop to the placeholder */
.about-hero .image-placeholder img,
.about-hero .about-collage-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: none;
    outline: none;
    box-shadow: none;
}

/* Remove old placeholder icon/text */
.about-hero .image-placeholder svg,
.about-hero .image-placeholder span {
    display: none !important;
}

/* Main arched image shape */
.about-hero .arched-main,
.about-hero .arched-main .image-placeholder,
.about-hero .arched-main .about-collage-img {
    border-radius: 999px 999px 28px 28px;
    overflow: hidden;
}

/* Smaller image shape */
.about-hero .offset-child,
.about-hero .offset-child .image-placeholder,
.about-hero .offset-child .about-collage-img {
    border-radius: 22px;
    overflow: hidden;
}

/* Remove any leftover frame/border from the collage cards */
.about-hero .collage-item {
    border: none !important;
    outline: none !important;
    box-shadow: none;
    background: transparent;
}

/* Crop positioning */
.about-hero .main-photo img {
    object-position: center center;
}

.about-hero .sub-photo img {
    object-position: center center;
}

/* Button UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.18s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: #7a5b10;
  border-color: #7a5b10;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Page Layout Systems */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.section-header {
  margin-bottom: 48px;
}

.section-header.center-align {
  text-align: center;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 550;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 16px;
  color: var(--ink-mid);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.invert-colors .section-title {
  color: var(--white);
}

.invert-colors .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.text-gold {
  color: var(--gold-light) !important;
}

/* Who We Are */
.who-we-are {
  background: var(--stone);
}

.who-we-are-main p {
  font-size: 15.5px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.who-we-are-main p:last-child {
  margin-bottom: 0;
}

.who-we-are-aside {
  width: 100%;
}

.aside-card {
  background: var(--stone);
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.aside-card h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--gold-light);
  padding-bottom: 8px;
  font-weight: 550;
}

.glance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.glance-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.glance-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.glance-value {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
}

.find-here {
  background: var(--stone-mid);
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.mosaic-card {
  grid-column: span 6;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 20px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.mosaic-card.dark-card {
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(201, 168, 76, 0.18) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #111d36 0%, #253d74 60%, #355397 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.mosaic-grid > .mosaic-card:nth-child(even) {
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(201, 168, 76, 0.18) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #111d36 0%, #253d74 60%, #355397 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.mosaic-grid > .mosaic-card:nth-child(even) h3 {
  color: var(--gold-pale);
}

.mosaic-grid > .mosaic-card:nth-child(even) p {
  color: var(--stone-mid);
}

.mosaic-grid > .mosaic-card:nth-child(even) .card-link {
  color: var(--gold-light);
}

.mosaic-grid > .mosaic-card:nth-child(even) .card-link:hover {
  color: var(--white);
}

@media (min-width: 768px) {
  .mosaic-grid > .mosaic-card:nth-child(even) {
    background: var(--white);
    border-color: var(--stone-mid);
  }

  .mosaic-grid > .mosaic-card:nth-child(even) h3 {
    color: var(--navy);
  }

  .mosaic-grid > .mosaic-card:nth-child(even) p {
    color: var(--ink-mid);
  }

  .mosaic-grid > .mosaic-card:nth-child(even) .card-link {
    color: var(--gold);
  }

  .mosaic-grid > .mosaic-card:nth-child(even) .card-link:hover {
    color: #7a5b10;
  }

  .mosaic-grid > .mosaic-card:nth-child(4n + 2),
  .mosaic-grid > .mosaic-card:nth-child(4n + 3) {
    background:
      radial-gradient(
        circle at 100% 0%,
        rgba(201, 168, 76, 0.18) 0%,
        transparent 50%
      ),
      linear-gradient(135deg, #111d36 0%, #253d74 60%, #355397 100%);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .mosaic-grid > .mosaic-card:nth-child(4n + 2) h3,
  .mosaic-grid > .mosaic-card:nth-child(4n + 3) h3 {
    color: var(--gold-pale);
  }

  .mosaic-grid > .mosaic-card:nth-child(4n + 2) p,
  .mosaic-grid > .mosaic-card:nth-child(4n + 3) p {
    color: var(--stone-mid);
  }

  .mosaic-grid > .mosaic-card:nth-child(4n + 2) .card-link,
  .mosaic-grid > .mosaic-card:nth-child(4n + 3) .card-link {
    color: var(--gold-light);
  }

  .mosaic-grid > .mosaic-card:nth-child(4n + 2) .card-link:hover,
  .mosaic-grid > .mosaic-card:nth-child(4n + 3) .card-link:hover {
    color: var(--white);
  }
}

.mosaic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(27, 42, 74, 0.13);
  border-color: rgba(27, 42, 74, 0.28);
}

.mosaic-grid > .mosaic-card:nth-child(even):hover,
.mosaic-grid > .mosaic-card:nth-child(4n + 2):hover,
.mosaic-grid > .mosaic-card:nth-child(4n + 3):hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.mosaic-card.featured-card {
  grid-column: span 12;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  border: none;
}

.card-icon-wrapper {
  width: 48px;
  height: 48px;
  /* background: var(--navy-pale);
    border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* color: var(--navy); */
}

.mosaic-card.featured-card .card-icon-wrapper {
  /* background: rgba(255, 255, 255, 0.1); */
  color: var(--gold-light);
}

.card-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.card-content {
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 550;
}

.mosaic-card.featured-card h3 {
  color: var(--white);
}

.card-content p {
  font-size: 13.5px;
  color: var(--ink-mid);
  margin-bottom: 16px;
  line-height: 1.6;
}

.mosaic-card.featured-card p {
  color: rgba(255, 255, 255, 0.75);
}

.card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
}

.mosaic-card.featured-card .card-link {
  color: var(--gold-light);
}

.card-link:hover {
  color: #7a5b10;
}

.mosaic-card.featured-card .card-link:hover {
  color: var(--white);
}

/* Our Mission & Beliefs */
.mission-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: "";
  inset: 0;
  position: absolute;
  background: radial-gradient(
    ellipse at 20% -10%,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 600;
  color: rgba(201, 168, 76, 0.06);
  position: absolute;
  top: -8px;
  right: 16px;
  line-height: 1;
}

.pillar-card h3 {
  font-family: var(--font-serif);
  color: var(--gold-soft);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 550;
}

.pillar-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.mission-expandable {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Accordion Component */
.accordion-details {
  background: var(--white);
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.accordion-summary {
  padding: 20px 28px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 550;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
  transition: background-color 0.15s ease;
}

.accordion-summary::-webkit-details-marker {
  display: none;
}

.accordion-summary:hover {
  background-color: var(--navy-pale);
}

.summary-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
  color: var(--gold);
  flex-shrink: 0;
}

.accordion-details[open] .summary-arrow {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 28px 32px;
  border-top: 1px solid var(--stone-mid);
  background: var(--bg-main);
}

/* Mission Details Override */
.mission-section .accordion-details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.mission-section .accordion-summary {
  color: var(--white);
}

.mission-section .accordion-summary:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.mission-section .accordion-body {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(27, 42, 74, 0.5);
}

.mission-text-p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.mission-text-p:last-child {
  margin-bottom: 0;
}

.story-section {
  background: var(--stone);
}

.timeline-visual {
  position: relative;
  margin: 48px auto 60px;
  max-width: 800px;
  padding-left: 40px;
}

.timeline-line {
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--gold-light);
  opacity: 0.4;
}

.timeline-node {
  position: relative;
  margin-bottom: 48px;
}

.timeline-node:last-child {
  margin-bottom: 0;
}

.node-year {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}

.node-badge {
  position: absolute;
  left: -40px;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--gold);
  z-index: 2;
  box-shadow: 0 0 0 4px var(--stone);
}

.node-content {
  background: var(--white);
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
}

.node-content h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 18.5px;
  margin-bottom: 8px;
  font-weight: 550;
}

.node-content p {
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.6;
}

.history-expandable {
  max-width: 900px;
  margin: 0 auto;
}

/* Deeper History Content Tweak */
.history-details .accordion-body {
  background: var(--white);
}

.history-full-text h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 550;
}

.history-full-text p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.story-divider {
  border: 0;
  height: 1px;
  background: var(--stone-mid);
  margin: 36px 0;
}

.history-grid-sections {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
}

.pastors-col h4,
.stats-col h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 550;
}

.pastors-intro,
.stats-intro {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  line-height: 1.5;
}

.pastors-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 12px;
}

.pastors-list li {
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--stone-mid);
  padding-bottom: 6px;
  line-height: 1.4;
}

.pastors-list li strong {
  color: var(--ink);
  font-weight: 550;
}

.pastors-list li span {
  color: var(--ink-soft);
}

.stat-bubble {
  background: var(--stone);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid var(--stone-mid);
}

.stat-bubble:last-child {
  margin-bottom: 0;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 8px;
}

.stat-detail {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.5;
}

/* Meet Our Team Section */
.team-section {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 42, 74, 0.08);
}

.team-avatar-placeholder {
  height: 180px;
  background: var(--stone);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--stone-mid);
}

.team-avatar-placeholder svg {
  width: 44px;
  height: 44px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.team-avatar-placeholder span {
  border: 1px dashed rgba(27, 42, 74, 0.18);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.team-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-card-content h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 4px;
  font-weight: 550;
}

.team-role {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 16px;
}

.team-desc {
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.team-contact-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
}

.team-contact-link:hover {
  color: var(--gold);
}

/* Visitor Path Section */
/* .path-section {
    background: var(--stone-mid); 
} */

.paths-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.path-card {
  background: var(--white);
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.path-card:hover {
  transform: translateY(-2px);
}

.path-card h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--gold-pale);
  padding-bottom: 8px;
  font-weight: 550;
}

.path-card p {
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 28px;
}

.path-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.path-links li a {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.15s;
}

.path-links li a:hover {
  color: #7a5b10;
}

.path-links li a::after {
  content: " \2192";
  margin-left: 4px;
  transition: transform 0.15s ease;
}

.path-links li a:hover::after {
  transform: translateX(4px);
}

.final-cta {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  inset: 0;
  position: absolute;
  background: radial-gradient(
    ellipse at 85% 85%,
    rgba(201, 168, 76, 0.22) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.final-cta-info {
  position: relative;
  z-index: 2;
}

.final-cta-info .section-title {
  color: var(--white);
}

.final-cta-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  font-weight: 300;
}

.campuses-addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.campus-item h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold-soft);
  margin-bottom: 8px;
  font-weight: 550;
}

.campus-desc {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.campus-item p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.final-cta-actions-box {
  position: relative;
  z-index: 2;
}

.glass-box {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  padding: 16px 28px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  color: var(--ink);
}

.glass-box h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 550;
}

.glass-box p {
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.5;
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  border-top: 1px solid var(--stone-mid);
  border-bottom: 1px solid var(--stone-mid);
  padding: 20px 0;
}

.contact-details p {
  margin-bottom: 0;
  font-size: 13.5px;
  color: var(--ink-mid);
}

.contact-details a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}

.contact-details a:hover {
  color: #7a5b10;
  text-decoration: underline;
}

.box-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.glass-box .btn-secondary {
  color: var(--navy);
  border-color: rgba(27, 42, 74, 0.25);
}

.glass-box .btn-secondary:hover {
  background: rgba(27, 42, 74, 0.05);
  border-color: var(--navy);
}

@media (max-width: 991px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero-actions {
    justify-content: center;
  }

  .collage-container {
    max-width: 480px;
    margin: 0 auto;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-container.split-layout {
    padding-left: 24px;
    padding-right: 24px;
  }

  .paths-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .campuses-addresses {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .mosaic-card {
    grid-column: span 12;
    padding: 24px;
  }

  .history-grid-sections {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mission-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-visual {
    padding-left: 32px;
  }

  .node-badge {
    left: -32px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 599px) {
  .about-hero {
    padding: 48px 16px 40px;
  }

  .about-hero-content h1 {
    font-size: 32px;
  }

  .about-hero-actions {
    flex-direction: column;
  }

  .about-hero-actions .btn {
    width: 100%;
  }

  .collage-container {
    height: 280px;
  }

  .section-container {
    padding: 32px 16px;
  }

  .mosaic-card {
    flex-direction: column;
    gap: 16px;
  }

  .card-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .card-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }

  .mission-pillars {
    grid-template-columns: 1fr;
  }

  .accordion-summary {
    padding: 16px 20px;
    font-size: 16px;
  }

  .accordion-body {
    padding: 20px;
  }

  .node-year {
    font-size: 22px;
  }

  .node-content {
    padding: 20px;
  }

  .glass-box {
    padding: 24px;
  }
}

.mobile-lang-toggle {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  gap: 12px;
}

.mobile-lang-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.mobile-lang-toggle .mobile-lang-btn {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  cursor: pointer;
  transition:
    background 0.14s,
    color 0.14s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
  user-select: none;
}

.mobile-lang-toggle .mobile-lang-btn:hover {
  color: var(--white);
}

.mobile-lang-toggle .lang-radio:checked + .mobile-lang-btn {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* mobile layout sizing  */
@media (max-width: 600px) {
  .nav-inner {
    padding: 0 16px;
    gap: 12px;
  }

  .nav-title-top {
    font-size: 14px;
    white-space: normal;
    max-width: 160px;
    line-height: 1.2;
  }

  .nav-title-sub {
    font-size: 8.5px;
  }

  .lang-pill {
    display: none;
  }

  .nav-donate {
    padding: 6px 12px;
    font-size: 12.5px;
  }
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 44px 24px 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 24px;
  padding: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.footer-col h4 {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.12s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a {
  color: var(--gold-light);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials .fa {
  width: 36px;
  height: 36px;
  padding: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.6);

  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-decoration: none;

  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.footer-socials .fa:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-2px);
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
