:root {
  --primary: #1f5f99;
  --dark: #12395c;
  --light: #eaf4ff;
  --soft: #f7fbff;
  --white: #ffffff;
  --text: #243447;
  --muted: #5f6f82;
  --border: #d6e5f3;
  --shadow: 0 12px 34px rgba(18, 57, 92, 0.12);
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; }
a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--dark);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .03em;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
}

.nav-links a:hover,
.nav-links a:focus { color: var(--primary); }

.hero {
  color: var(--white);
  text-align: center;
  padding: 74px 20px 84px;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.16), transparent 38%),
    linear-gradient(135deg, var(--primary), var(--dark));
}

.logo-frame {
  width: auto;
  margin: 0 auto 24px;
  padding: 0;
  display: block;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hero-logo {
  display: block;
  width: 100%;
  max-width: 320px;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  margin: 0 auto;
}

.hero h1 {
  max-width: 940px;
  margin: 0 auto 18px;
  font-size: clamp(2.25rem, 6vw, 4.3rem);
  line-height: 1.08;
}

.hero-description {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: clamp(1.08rem, 2.5vw, 1.36rem);
}

.hero-faith {
  margin: -2px auto 18px;
  line-height: 1.08;
  letter-spacing: .01em;
}

.hero-faith strong {
  display: block;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
}

.hero-faith span {
  display: block;
  margin-top: 5px;
  font-size: clamp(1.05rem, 2.7vw, 1.45rem);
  font-style: italic;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, opacity .2s ease;
}

.button:hover,
.button:focus { transform: translateY(-2px); opacity: .94; }

.button-light { background: var(--white); color: var(--primary); }
.button-outline { border: 2px solid var(--white); color: var(--white); }
.button-blue { background: var(--primary); color: var(--white); }

section { padding: 72px 0; }
.section-light { background: var(--light); }
.section-soft { background: var(--soft); }

.section-title {
  color: var(--dark);
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-intro {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 1.08rem;
}

.content-box {
  max-width: 930px;
  margin: 34px auto 0;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-box p + p { margin-top: 18px; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.featured-card,
.gallery-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.featured-card img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.featured-card figcaption,
.gallery-card figcaption {
  padding: 15px 16px 18px;
  color: var(--dark);
  font-weight: 800;
  text-align: center;
}

.centered-action { margin-top: 32px; text-align: center; }

.merch-card {
  max-width: 980px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.merch-image-wrap {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 18px;
  background: #f3f6f9;
}

.merch-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: contain;
  border-radius: 12px;
}

.merch-copy {
  align-self: center;
  padding: 36px;
}

.merch-copy h3 {
  margin-bottom: 14px;
  color: var(--dark);
  font-size: 1.65rem;
  line-height: 1.2;
}

.coming-soon {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  color: var(--white);
  background: var(--primary);
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.facebook-box {
  max-width: 840px;
  margin: 34px auto 0;
  padding: 38px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.facebook-box h3 {
  color: var(--dark);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.facebook-box p {
  color: var(--muted);
  margin-bottom: 24px;
}

.scripture {
  padding: 56px 20px;
  color: var(--white);
  text-align: center;
  background: var(--dark);
}

.scripture blockquote {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-style: italic;
}

.scripture p { margin-top: 16px; font-weight: 800; }

.page-header {
  padding: 68px 20px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--dark));
}

.page-header h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

.page-header p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.16rem;
}

.notice {
  max-width: 900px;
  margin: 32px auto 0;
  padding: 18px 20px;
  background: #fff8e8;
  border: 1px solid #edd69b;
  border-radius: 12px;
  color: #5b4716;
}

.gallery-section + .gallery-section { padding-top: 24px; }

.gallery-heading {
  color: var(--dark);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.gallery-description {
  color: var(--muted);
  margin-bottom: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gallery-card.quote img { object-fit: contain; background: #101010; }

/* Photo-specific framing */
.gallery-card img.face-focus {
  object-position: center 14%;
}

.gallery-card img.show-full {
  object-fit: contain;
  object-position: center;
  background: #eef4fa;
}

.gallery-card img.medical-image {
  background: #111827;
}

.journey-video {
  display: grid;
  grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr);
  gap: 30px;
  align-items: center;
  margin-top: 34px;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--dark), #0b2942);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.journey-video h3 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1.15;
}

.journey-video-copy p:last-child { opacity: .9; }

.video-label {
  margin-bottom: 8px;
  color: #b9dcff;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journey-video video {
  display: block;
  width: min(100%, 420px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  background: #000;
  border-radius: 12px;
}

footer {
  padding: 34px 20px;
  color: var(--white);
  text-align: center;
  background: var(--dark);
}

footer p + p { margin-top: 4px; }
.small { font-size: .9rem; opacity: .86; }

@media (max-width: 900px) {
  .cards,
  .featured-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 700px) {
  .nav-inner {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .nav-links { gap: 14px; }
  .hero { padding-top: 54px; }
  section { padding: 56px 0; }
  .cards,
  .featured-grid,
  .gallery-grid,
  .merch-card,
  .journey-video { grid-template-columns: 1fr; }

  .journey-video { padding: 22px; }

  .merch-image-wrap {
    min-height: 0;
  }

  .merch-copy {
    padding: 28px;
  }
  .content-box,
  .facebook-box { padding: 26px; }
  .featured-card img,
  .gallery-card img { height: auto; max-height: 520px; }
}

.merch-prices {
  margin: 18px 0;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--dark);
}

.transport-update {
  max-width: 980px;
  margin: 28px auto 0;
  padding: 30px 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 6px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.transport-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  color: var(--white);
  background: var(--primary);
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.transport-update h3 {
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 1.65rem;
}

.transport-update p:last-child {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.7;
}


.donate-card {
  max-width: 980px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.donate-qr-wrap {
  display: grid;
  place-items: center;
  padding: 16px;
  background: #f3f6f9;
  border-radius: 12px;
}

.donate-qr-wrap img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  background: #fff;
  border-radius: 10px;
}

.donate-copy h3 {
  margin-bottom: 14px;
  color: var(--dark);
  font-size: 1.7rem;
  line-height: 1.2;
}

.donate-copy p + p {
  margin-top: 14px;
}

.donate-actions {
  margin-top: 24px;
}

.donation-link {
  margin-top: 18px;
  font-size: .96rem;
  color: var(--muted);
  line-height: 1.6;
  word-break: break-word;
}

.donation-link a {
  color: var(--primary);
  text-decoration: underline;
}


.transport-gallery-wrap {
  max-width: 1060px;
  margin: 34px auto 0;
}

.transport-gallery-title {
  color: var(--dark);
  text-align: center;
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.transport-gallery-copy {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
  color: var(--muted);
}

.transport-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.transport-gallery .featured-card img {
  height: 260px;
}

@media (max-width: 900px) {
  .transport-gallery {
    grid-template-columns: 1fr;
  }
}
