:root {
  --bg: #f4efe7;
  --bg-deep: #24344f;
  --surface: rgba(255, 250, 242, 0.82);
  --surface-strong: #fffaf2;
  --text: #213047;
  --muted: #5e6878;
  --line: rgba(61, 82, 112, 0.16);
  --gold: #d49b52;
  --gold-deep: #b97a34;
  --forest: #38567a;
  --forest-soft: #dfe7ef;
  --shadow: 0 22px 70px rgba(33, 48, 71, 0.12);
  --radius: 28px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 155, 82, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(123, 166, 214, 0.16), transparent 24%),
    linear-gradient(180deg, #fbf6ef 0%, #f1ece4 44%, #ece8e5 100%);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 760px);
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(251, 246, 239, 0.76);
  border-bottom: 1px solid rgba(61, 82, 112, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #3a587d, #1c2f48);
  color: #f8efe0;
  font-family: "Newsreader", serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

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

.nav-links a {
  color: rgba(30, 36, 31, 0.82);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.menu-toggle {
  display: none;
  border: 1px solid rgba(44, 62, 52, 0.14);
  background: rgba(255, 250, 242, 0.75);
  color: var(--forest);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 214, 143, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(15, 26, 41, 0.2), rgba(15, 26, 41, 0.5)),
    linear-gradient(135deg, rgba(255, 250, 242, 0.16), rgba(255, 250, 242, 0.02));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: block;
}

.hero-copy,
.feature-card,
.story-card,
.resource-card,
.mini-card,
.contact-card,
.video-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-text,
.lead,
.resource-card p,
.mini-card p,
.contact-card p,
.quote-support {
  color: var(--muted);
}

.hero-text {
  max-width: 32rem;
  font-size: 1.12rem;
  color: rgba(255, 249, 239, 0.92);
  margin-bottom: 0;
  text-shadow: 0 6px 22px rgba(15, 26, 41, 0.25);
}

.mini-label,
.resource-tag,
.feature-number {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow,
.section-label {
  margin: 0 0 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold-deep);
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-family: "Newsreader", serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.6rem, 8vw, 7rem);
  letter-spacing: -0.045em;
  white-space: nowrap;
  color: #fff9ef;
  text-shadow: 0 12px 34px rgba(15, 26, 41, 0.3);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 0.9rem;
}

.section {
  padding: 5.5rem 0;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
  max-width: 44rem;
}

.resources-grid,
.gather-cards {
  display: grid;
  gap: 1.25rem;
}

.prayer-section .section-heading {
  margin: 0 auto;
  max-width: 60rem;
}

.prayer-text {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(1.7rem, 3.3vw, 2.8rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--text);
}

.feature-card {
  padding: 2rem;
  border-radius: 26px;
  background: rgba(255, 250, 242, 0.72);
}

.feature-number {
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

.section-contrast {
  background: linear-gradient(180deg, rgba(89, 132, 191, 0.08), rgba(89, 132, 191, 0.02));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.resource-card {
  padding: 2rem;
  border-radius: 30px;
  background: rgba(255, 250, 242, 0.76);
  min-height: 260px;
}

.resource-card-dark {
  background: linear-gradient(180deg, #273c5a, #1c2e47);
  color: rgba(255, 248, 237, 0.94);
}

.resource-card-dark p,
.resource-card-dark .resource-tag {
  color: rgba(255, 248, 237, 0.78);
}

.resource-tag,
.mini-label {
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.link-row a,
.text-link {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  font-weight: 700;
}

.resource-card-dark .link-row a {
  color: #f6d7a8;
}

.podcast-list {
  display: grid;
  gap: 1.5rem;
}

.podcast-item h3 {
  margin-bottom: 0.5rem;
}

.podcast-space {
  min-height: 120px;
  padding: 1.1rem 1rem;
  border: 1px dashed rgba(246, 215, 168, 0.4);
  border-radius: 20px;
  display: grid;
  place-items: center;
}

.podcast-space p {
  margin: 0;
  color: rgba(255, 248, 237, 0.68);
  text-align: center;
}

.video-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 250, 242, 0.76);
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #0f1724;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #0f1724;
}

.contact-card {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 250, 242, 0.95), rgba(233, 240, 247, 0.82));
  display: grid;
  gap: 1.5rem;
}

.contact-copy {
  display: grid;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff8ed;
  background: linear-gradient(135deg, var(--forest), #233954);
  box-shadow: 0 14px 26px rgba(33, 48, 71, 0.22);
}

.btn-secondary {
  color: var(--forest);
  background: rgba(255, 250, 242, 0.75);
  border: 1px solid rgba(44, 62, 52, 0.14);
}

.site-footer {
  background: #1b2a3f;
  color: rgba(255, 248, 237, 0.82);
  padding: 2.2rem 0;
}

.footer-inner {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: end;
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-family: "Newsreader", serif;
  font-size: 1.5rem;
}

.footer-copy,
.footer-meta {
  margin: 0;
  color: rgba(255, 248, 237, 0.66);
}

@media (max-width: 980px) {
  .resources-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 78px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid rgba(44, 62, 52, 0.14);
    background: rgba(255, 250, 242, 0.98);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .section {
    padding: 4.5rem 0;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
    white-space: normal;
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  .hero-copy,
  .feature-card,
  .resource-card,
  .mini-card,
  .contact-card,
  .video-card {
    border-radius: 24px;
  }

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