:root {
  --ink: #0a0a0a;
  --ink-soft: #171717;
  --paper: #ffffff;
  --paper-soft: #f6f4ef;
  --sand: #e7c998;
  --sand-deep: #b89057;
  --muted: #696969;
  --line: rgba(10, 10, 10, 0.12);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
  --header-h: 112px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--sand); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 14px;
  top: -100px;
  z-index: 2000;
  padding: 10px 16px;
  background: var(--sand);
  color: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(8, 8, 8, 0.96);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  height: 84px;
  background: rgba(8,8,8,.985);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.nav-shell {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0 clamp(26px, 2.4vw, 48px);
  display: flex;
  align-items: center;
  gap: clamp(28px, 2.2vw, 46px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  min-width: max-content;
  flex: 0 0 auto;
}
.brand-mark {
  width: 86px;
  height: 86px;
  object-fit: contain;
  transition: width .3s ease, height .3s ease;
}
.site-header.scrolled .brand-mark { width: 66px; height: 66px; }
.brand-copy { display: grid; gap: 5px; line-height: 1; }
.brand-name { font-weight: 850; font-size: 1.48rem; letter-spacing: .12em; }
.brand-sub { color: var(--sand); font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.site-header.scrolled .brand-name { font-size: 1.24rem; }
.site-header.scrolled .brand-sub { font-size: .66rem; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 1.8vw, 38px); margin-left: auto; }
.desktop-nav a {
  position: relative;
  padding: 43px 0 39px;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: .01em;
  text-transform: none;
  color: rgba(255,255,255,.82);
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 29px;
  height: 2px;
  background: var(--sand);
  transition: right .25s ease;
}
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: #fff; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { right: 0; }
.site-header.scrolled .desktop-nav a { padding-top: 31px; padding-bottom: 27px; }
.site-header.scrolled .desktop-nav a::after { bottom: 19px; }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 4px; }
.icon-btn, .lang-btn, .menu-btn {
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  min-width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.icon-btn:hover, .lang-btn:hover, .menu-btn:hover { background: var(--sand); color: var(--ink); border-color: var(--sand); }
.lang-btn { padding: 0 15px; font-size: .78rem; font-weight: 800; letter-spacing: .08em; }
.menu-btn { display: none; }

main { min-height: 70vh; }
.hero {
  position: relative;
  min-height: 100svh;
  background: #050505;
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.hero-media, .hero-media video, .hero-media::after { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media video { object-fit: cover; object-position: center; }
.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.48) 45%, rgba(0,0,0,.1) 78%),
    linear-gradient(0deg, rgba(0,0,0,.76) 0%, transparent 45%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  width: min(100%, 1800px);
  margin: 0 auto;
  padding: calc(var(--header-h) + 80px) clamp(22px, 6vw, 110px) 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: .72rem;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 38px; height: 2px; background: var(--sand); }
.hero h1 {
  margin: 0;
  max-width: 900px;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 8vw, 8.2rem);
  line-height: .9;
  font-weight: 500;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero h1 em { color: var(--sand); font-style: italic; }
.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: clamp(1.06rem, 1.5vw, 1.32rem);
  color: rgba(255,255,255,.84);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .085em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--sand); color: var(--ink); box-shadow: 0 12px 35px rgba(231,201,152,.18); }
.btn-primary:hover { background: #f0d7ae; box-shadow: 0 16px 38px rgba(231,201,152,.28); }
.btn-light { background: white; color: var(--ink); }
.btn-outline { border-color: rgba(255,255,255,.48); color: white; background: rgba(0,0,0,.16); backdrop-filter: blur(10px); }
.btn-outline:hover { border-color: white; background: white; color: var(--ink); }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--sand); color: var(--ink); }
.btn-outline-dark { border-color: var(--ink); background: transparent; color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: white; }
.hero-note {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 4vw, 70px);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-note::before { content: ""; width: 42px; height: 1px; background: rgba(255,255,255,.5); }

.info-strip {
  position: relative;
  z-index: 5;
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.08);
}
.info-strip a, .info-strip div {
  min-height: 118px;
  padding: 24px clamp(22px, 3vw, 54px);
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.info-strip > :last-child { border-right: 0; }
.info-icon { flex: 0 0 42px; height: 42px; border-radius: 50%; background: rgba(231,201,152,.14); color: var(--sand); display: grid; place-items: center; }
.info-label { font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--sand); }
.info-value { margin-top: 4px; font-size: 1rem; color: rgba(255,255,255,.9); }

.section { padding: clamp(76px, 9vw, 150px) clamp(22px, 5vw, 90px); }
.section-inner { width: min(100%, 1500px); margin: 0 auto; }
.section-kicker { margin: 0 0 15px; font-size: .7rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; color: var(--sand-deep); }
.section-title {
  margin: 0;
  max-width: 920px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  line-height: 1.01;
  letter-spacing: -.035em;
  font-weight: 500;
  text-wrap: balance;
}
.section-lead { max-width: 760px; margin: 22px 0 0; font-size: clamp(1rem, 1.4vw, 1.22rem); color: var(--muted); }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 48px; }

.intro-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(36px, 7vw, 110px); align-items: center; }
.intro-copy p { max-width: 680px; color: var(--muted); font-size: 1.08rem; }
.intro-copy .btn { margin-top: 12px; }
.scripture-card {
  position: relative;
  min-height: 500px;
  padding: clamp(34px, 5vw, 70px);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.scripture-card::before {
  content: "14:23";
  position: absolute;
  right: -16px;
  bottom: -54px;
  color: rgba(231,201,152,.08);
  font-family: var(--serif);
  font-size: clamp(8rem, 18vw, 18rem);
  line-height: 1;
}
.scripture-mark { color: var(--sand); font-family: var(--serif); font-size: 6rem; line-height: .6; }
.scripture-card blockquote { position: relative; z-index: 1; margin: 36px 0 26px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.16; letter-spacing: -.02em; }
.scripture-card cite { position: relative; z-index: 1; color: var(--sand); font-style: normal; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; font-size: .72rem; }

.soft-section { background: var(--paper-soft); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card {
  min-height: 305px;
  padding: 34px;
  border-radius: var(--radius-md);
  background: white;
  border: 1px solid rgba(10,10,10,.07);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.info-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.09); }
.card-number { font-family: var(--serif); font-size: 1.15rem; color: var(--sand-deep); }
.info-card h3 { margin: auto 0 12px; font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1.05; }
.info-card p { margin: 0; color: var(--muted); }
.card-link { margin-top: 24px; display: inline-flex; align-items: center; gap: 9px; font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.card-link span { transition: transform .2s ease; }
.info-card:hover .card-link span { transform: translateX(4px); }

.split-feature { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 720px; background: var(--ink); color: white; }
.split-media { position: relative; overflow: hidden; min-height: 500px; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 50%, rgba(10,10,10,.5)); }
.split-copy { padding: clamp(65px, 8vw, 140px) clamp(30px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.split-copy .section-title { color: white; }
.split-copy p { max-width: 640px; color: rgba(255,255,255,.68); font-size: 1.08rem; }
.split-copy .btn { margin-top: 20px; }
.live-pill { margin-bottom: 24px; display: inline-flex; align-items: center; gap: 9px; font-size: .7rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; color: var(--sand); }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #f04545; box-shadow: 0 0 0 6px rgba(240,69,69,.13); }

.ministry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ministry-card {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #222;
  color: white;
  isolation: isolate;
}
.ministry-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.ministry-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,.06) 70%); z-index: 1; }
.ministry-card:hover img { transform: scale(1.06); }
.ministry-content { position: absolute; z-index: 2; inset: auto 0 0; padding: 28px; }
.ministry-content span { color: var(--sand); font-size: .67rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.ministry-content h3 { margin: 8px 0 0; font-family: var(--serif); font-size: 2rem; line-height: 1; font-weight: 500; }
.ministry-card:nth-child(2) img { filter: grayscale(.25) contrast(.96); }
.ministry-card:nth-child(3) img { filter: brightness(.82); }
.ministry-card:nth-child(4) img { filter: saturate(.9); }

.pastors-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px, 7vw, 110px); align-items: center; }
.pastors-image { position: relative; min-height: 650px; border-radius: var(--radius-lg); overflow: hidden; background: #111; }
.pastors-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.pastors-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.38), transparent 55%); }
.pastors-copy .section-title { max-width: 700px; }
.pastors-copy p { max-width: 680px; color: var(--muted); font-size: 1.08rem; }
.name-line { margin: 30px 0 0; padding-top: 24px; border-top: 1px solid var(--line); font-weight: 850; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }

.verse-band { padding: clamp(80px, 10vw, 160px) clamp(22px, 6vw, 110px); background: var(--sand); color: var(--ink); text-align: center; }
.verse-band blockquote { width: min(100%, 1100px); margin: 0 auto; font-family: var(--serif); font-size: clamp(2.3rem, 5vw, 5.3rem); line-height: 1.04; letter-spacing: -.035em; }
.verse-band cite { display: block; margin-top: 28px; font-style: normal; font-size: .72rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }

.location-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 24px; align-items: stretch; }
.location-card { padding: clamp(34px, 5vw, 70px); background: var(--ink); color: white; border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.location-card address { margin: 26px 0 0; font-style: normal; font-family: var(--serif); font-size: clamp(1.65rem, 2.8vw, 2.8rem); line-height: 1.15; }
.location-card p { color: rgba(255,255,255,.64); }
.location-card .btn { margin-top: 24px; }
.map-wrap { min-height: 560px; border-radius: var(--radius-lg); overflow: hidden; background: #ddd; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; min-height: 560px; filter: grayscale(1) contrast(.92); }

.cta-band { padding: clamp(64px, 8vw, 120px) clamp(22px, 5vw, 90px); background: var(--ink); color: white; }
.cta-inner { width: min(100%, 1500px); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { margin: 0; max-width: 850px; font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 500; line-height: 1; letter-spacing: -.035em; }
.cta-inner h2 em { color: var(--sand); font-weight: 500; }

.page-hero {
  position: relative;
  min-height: 68svh;
  padding: calc(var(--header-h) + 100px) clamp(22px, 6vw, 110px) 90px;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero.has-image::before { content: ""; position: absolute; inset: 0; background-image: var(--hero-image); background-size: cover; background-position: center; opacity: .45; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.83), rgba(0,0,0,.25)), linear-gradient(0deg, rgba(0,0,0,.62), transparent); }
.page-hero-inner { position: relative; z-index: 1; width: min(100%, 1500px); margin: 0 auto; }
.page-hero h1 { margin: 0; max-width: 1050px; font-family: var(--serif); font-size: clamp(3.3rem, 8vw, 8rem); line-height: .92; font-weight: 500; letter-spacing: -.045em; }
.page-hero p { max-width: 700px; margin: 24px 0 0; color: rgba(255,255,255,.74); font-size: 1.13rem; }

.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.detail-panel { padding: clamp(32px, 4vw, 58px); border-radius: var(--radius-md); background: var(--paper-soft); }
.detail-panel h2, .detail-panel h3 { margin-top: 0; font-family: var(--serif); font-weight: 500; }
.detail-panel h2 { font-size: 2.4rem; }
.detail-panel h3 { font-size: 1.75rem; }
.detail-panel p { color: var(--muted); }
.schedule-list { margin: 30px 0 0; display: grid; gap: 14px; }
.schedule-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.schedule-row strong { font-size: 1rem; }
.schedule-row span { color: var(--muted); }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 24px 0; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; text-align: left; font-weight: 800; cursor: pointer; }
.faq-question svg { transition: transform .25s ease; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { margin: 0 0 24px; color: var(--muted); max-width: 800px; }

.give-hero-card { width: min(100%, 1100px); margin: 0 auto; padding: clamp(40px, 8vw, 100px); background: var(--ink); color: white; border-radius: var(--radius-lg); text-align: center; position: relative; overflow: hidden; }
.give-hero-card::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: rgba(231,201,152,.12); top: -160px; right: -100px; }
.give-hero-card h2 { position: relative; margin: 0; font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 500; line-height: 1; }
.give-hero-card p { position: relative; max-width: 700px; margin: 24px auto; color: rgba(255,255,255,.68); }
.give-hero-card .btn { position: relative; }

.site-footer { background: #050505; color: white; padding: 72px clamp(22px, 5vw, 90px) 26px; }
.footer-inner { width: min(100%, 1500px); margin: 0 auto; }
.footer-main { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(35px, 6vw, 90px); padding-bottom: 56px; }
.footer-brand .brand-mark { width: 82px; height: 82px; }
.footer-brand p { max-width: 420px; color: rgba(255,255,255,.56); }
.footer-heading { margin: 0 0 16px; font-size: .68rem; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; color: var(--sand); }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: .92rem; }
.footer-links a:hover { color: white; }
.footer-socials { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.social-link { width: 46px; height: 46px; display: inline-grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; transition: background .2s ease, color .2s ease; }
.social-link:hover { background: var(--sand); color: var(--ink); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.42); font-size: .78rem; }

.mobile-menu {
  position: fixed;
  z-index: 990;
  inset: var(--header-h) 0 0;
  background: var(--ink);
  color: white;
  padding: 30px 24px 50px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  overflow: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--serif); font-size: 2rem; }
.mobile-menu .btn { margin-top: 28px; }

.search-modal, .notice-modal {
  position: fixed;
  z-index: 1300;
  inset: 0;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(12px);
  display: none;
  padding: 20px;
}
.search-modal.open, .notice-modal.open { display: grid; place-items: center; }
.search-panel, .notice-panel {
  width: min(100%, 760px);
  max-height: min(780px, calc(100svh - 40px));
  background: white;
  color: var(--ink);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.search-head { padding: 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.search-input { flex: 1; border: 0; outline: 0; font-size: 1.12rem; }
.modal-close { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: white; cursor: pointer; }
.search-results { max-height: 560px; overflow: auto; padding: 12px; }
.search-result { padding: 16px; border-radius: 14px; display: grid; gap: 4px; }
.search-result:hover, .search-result:focus { background: var(--paper-soft); }
.search-result strong { font-size: 1rem; }
.search-result span { font-size: .86rem; color: var(--muted); }
.search-empty { padding: 40px 18px; color: var(--muted); text-align: center; }
.notice-panel { padding: clamp(30px, 5vw, 56px); text-align: center; }
.notice-panel h2 { font-family: var(--serif); font-size: 2.6rem; font-weight: 500; margin: 0; }
.notice-panel p { color: var(--muted); }
.notice-panel .btn { margin-top: 12px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1440px) {
  :root { --header-h: 102px; }
  .nav-shell { padding-inline: 28px; gap: 26px; }
  .brand-mark { width: 74px; height: 74px; }
  .brand-name { font-size: 1.28rem; }
  .brand-sub { font-size: .66rem; }
  .desktop-nav { gap: 22px; }
  .desktop-nav a { padding-top: 38px; padding-bottom: 34px; font-size: .94rem; }
  .desktop-nav a::after { bottom: 25px; }
}

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .nav-actions { margin-left: auto; }
  .menu-btn { display: inline-flex; }
  .ministry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > :last-child { grid-column: 2 / 4; }
}

@media (max-width: 880px) {
  :root { --header-h: 82px; }
  .nav-shell { padding-inline: 20px; }
  .brand-mark { width: 58px; height: 58px; }
  .brand-name { font-size: 1.08rem; }
  .brand-sub { font-size: .58rem; letter-spacing: .13em; }
  .hero-content { padding-top: calc(var(--header-h) + 80px); }
  .hero h1 { font-size: clamp(3.4rem, 16vw, 6rem); }
  .hero-note { display: none; }
  .info-strip { grid-template-columns: 1fr; }
  .info-strip a, .info-strip div { min-height: 96px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .intro-grid, .pastors-grid, .location-grid, .detail-grid { grid-template-columns: 1fr; }
  .scripture-card { min-height: 430px; }
  .card-grid { grid-template-columns: 1fr; }
  .split-feature { grid-template-columns: 1fr; }
  .split-media { min-height: 530px; }
  .split-media::after { background: linear-gradient(0deg, rgba(10,10,10,.65), transparent 50%); }
  .pastors-image { min-height: 540px; }
  .map-wrap, .map-wrap iframe { min-height: 430px; }
  .section-head-row { display: block; }
  .section-head-row .btn { margin-top: 22px; }
  .cta-inner { display: block; }
  .cta-inner .btn { margin-top: 28px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main > :last-child { grid-column: auto; }
}

@media (max-width: 600px) {
  :root { --header-h: 76px; }
  .nav-shell { padding-inline: 14px; gap: 10px; }
  .brand { gap: 9px; }
  .brand-mark { width: 50px; height: 50px; }
  .brand-name { font-size: .94rem; letter-spacing: .08em; }
  .brand-sub { display: none; }
  .icon-btn { display: none; }
  .lang-btn { min-width: 38px; padding: 0 9px; }
  .hero-content { padding-inline: 20px; padding-bottom: 74px; }
  .hero h1 { font-size: clamp(3.25rem, 17vw, 5rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .section { padding-inline: 20px; }
  .section-title { font-size: clamp(2.55rem, 12vw, 4rem); }
  .ministry-grid { grid-template-columns: 1fr; }
  .ministry-card { min-height: 420px; }
  .split-media { min-height: 430px; }
  .split-copy { padding-inline: 22px; }
  .verse-band { padding-inline: 20px; }
  .page-hero { padding-inline: 20px; min-height: 62svh; }
  .page-hero h1 { font-size: clamp(3.4rem, 17vw, 5.4rem); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > :last-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
  .search-modal, .notice-modal { padding: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
.prose-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(34px, 7vw, 100px); align-items: start; }
.prose-aside { position: sticky; top: 120px; }
.prose-body { font-size: 1.08rem; }
.prose-body p { color: var(--muted); margin: 0 0 22px; }
.prose-body h2 { margin: 56px 0 16px; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; font-weight: 500; }
.prose-body h2:first-child { margin-top: 0; }
.fact-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.fact-row { padding: 18px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 24px; }
.fact-row span { color: var(--muted); text-align: right; }
.ministry-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 560px; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-soft); margin-bottom: 24px; }
.ministry-detail:nth-child(even) .ministry-detail-media { order: 2; }
.ministry-detail-media { position: relative; min-height: 420px; overflow: hidden; }
.ministry-detail-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ministry-detail-copy { padding: clamp(38px, 6vw, 84px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.ministry-detail-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4.2rem); line-height: 1; font-weight: 500; }
.ministry-detail-copy p { color: var(--muted); max-width: 620px; }
.media-card { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 600px; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink); color: white; }
.media-card-image { position: relative; min-height: 460px; }
.media-card-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-card-copy { padding: clamp(38px, 7vw, 90px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.media-card-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1; font-weight: 500; }
.media-card-copy p { color: rgba(255,255,255,.68); }
.media-card-copy .btn { margin-top: 18px; }
.placeholder-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.placeholder-card { min-height: 250px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); display: flex; flex-direction: column; justify-content: flex-end; }
.placeholder-card span { color: var(--sand-deep); font-size: .68rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.placeholder-card h3 { margin: 8px 0 0; font-family: var(--serif); font-size: 1.9rem; font-weight: 500; }
.legal-note { margin-top: 28px; padding: 20px 24px; border-left: 3px solid var(--sand-deep); background: var(--paper-soft); color: var(--muted); }
@media (max-width: 880px) {
  .prose-grid, .ministry-detail, .media-card { grid-template-columns: 1fr; }
  .prose-aside { position: static; }
  .ministry-detail:nth-child(even) .ministry-detail-media { order: 0; }
  .placeholder-grid { grid-template-columns: 1fr; }
}

/* V3: real Morada photo story */
.photo-story-section { background: #fff; }
.photo-story-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: repeat(2, minmax(260px, 34vw));
  gap: 18px;
}
.photo-story {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ink);
}
.photo-story-wide { grid-row: 1 / 3; }
.photo-story img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.photo-story:hover img { transform: scale(1.035); }
.photo-story::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.55), transparent 45%); }
.photo-story figcaption { position: absolute; z-index: 2; left: 24px; bottom: 20px; color: white; font-size: .75rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
@media (max-width: 760px) {
  .photo-story-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .photo-story, .photo-story-wide { grid-row: auto; min-height: 360px; }
}

/* V4: full-width lower navigation board */
.site-footer {
  padding-left: clamp(28px, 3.2vw, 62px);
  padding-right: clamp(28px, 3.2vw, 62px);
}
.footer-inner {
  width: 100%;
  max-width: none;
  margin: 0;
}
.footer-main {
  grid-template-columns: minmax(280px, 1.55fr) repeat(3, minmax(150px, .85fr));
  justify-content: space-between;
  column-gap: clamp(44px, 7vw, 150px);
}
.footer-main > :last-child {
  justify-self: end;
  min-width: 180px;
}
.footer-heading { font-size: .75rem; }
.footer-links a { font-size: 1rem; }
.footer-bottom { width: 100%; }

/* Ministry photography: consistent editorial crops */
.ministry-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#ninos .ministry-detail-media img { object-position: center 45%; }
#jovenes .ministry-detail-media img { object-position: center 35%; }
#damas .ministry-detail-media img { object-position: center 42%; }
#hombres .ministry-detail-media img { object-position: center 42%; }

@media (max-width: 1100px) {
  .footer-main > :last-child { justify-self: start; min-width: 0; }
}

/* V5: confirmed pastors photo and Instagram social channel */
.footer-brand .footer-socials { margin-top: 18px; }


/* V6: spacing, mission/vision editorial section, and cinematic worship moment */
.page-progress {
  position: fixed;
  z-index: 2001;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: var(--sand);
  pointer-events: none;
  box-shadow: 0 0 18px rgba(231, 201, 152, .45);
}

/* Prevent translated labels and values from visually colliding. */
.info-strip a > span:last-child,
.info-strip div > span:last-child {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 7px;
}
.info-label,
.info-value {
  display: block;
  line-height: 1.25;
}
.info-label { margin: 0; }
.info-value { margin: 0; }

.purpose-section {
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(520px, .92fr);
  background: var(--paper-soft);
  overflow: hidden;
}
.purpose-media {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: #181818;
}
.purpose-media img {
  position: absolute;
  inset: -5% 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.055) translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}
.purpose-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.72), transparent 52%), linear-gradient(90deg, transparent 68%, rgba(246,244,239,.16));
}
.purpose-media-caption {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 5vw, 88px);
  right: 28px;
  bottom: clamp(28px, 4vw, 68px);
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.36);
  color: white;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.purpose-copy {
  padding: clamp(78px, 8vw, 145px) clamp(38px, 6vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.purpose-copy .section-title { max-width: 780px; }
.purpose-intro {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
}
.purpose-statements {
  width: 100%;
  margin: 46px 0 36px;
  border-top: 1px solid var(--line);
}
.purpose-statement {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  column-gap: clamp(24px, 3vw, 52px);
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.purpose-label {
  padding-top: 5px;
  color: var(--sand-deep);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.purpose-statement h3 {
  grid-column: 2;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 2.5vw, 3rem);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -.025em;
}
.purpose-statement p {
  grid-column: 2;
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--muted);
}

.worship-feature {
  position: relative;
  min-height: clamp(720px, 82vw, 930px);
  background: #050505;
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.worship-feature-media,
.worship-feature-shade {
  position: absolute;
  inset: 0;
}
.worship-feature-media img {
  position: absolute;
  inset: -6% 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.045) translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}
.worship-feature-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.24) 0%, rgba(0,0,0,.08) 38%, rgba(0,0,0,.74) 72%, rgba(0,0,0,.92) 100%),
    linear-gradient(0deg, rgba(0,0,0,.62) 0%, transparent 48%);
}
.worship-feature-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  width: 100%;
  padding: clamp(70px, 8vw, 140px) clamp(24px, 5vw, 90px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.worship-feature-panel {
  width: min(100%, 720px);
  padding: clamp(38px, 5vw, 76px);
  background: rgba(5,5,5,.72);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
}
.worship-feature-panel .section-title { color: white; }
.worship-feature-panel > p {
  max-width: 620px;
  color: rgba(255,255,255,.76);
  font-size: 1.08rem;
}
.worship-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}
.worship-times > span {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
}
.worship-times strong,
.worship-times small { display: block; }
.worship-times strong {
  color: var(--sand);
  font-size: .66rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.worship-times small {
  margin-top: 7px;
  color: white;
  font-size: .95rem;
}

@media (max-width: 1100px) {
  .purpose-section { grid-template-columns: 1fr; }
  .purpose-media { min-height: 680px; }
  .purpose-copy { min-height: auto; }
  .worship-feature-shade {
    background: linear-gradient(0deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.3) 72%, rgba(0,0,0,.12) 100%);
  }
  .worship-feature-inner { align-items: flex-end; justify-content: center; }
}

@media (max-width: 700px) {
  .info-strip a, .info-strip div { padding-block: 20px; }
  .purpose-media { min-height: 520px; }
  .purpose-copy { padding: 72px 22px; }
  .purpose-statement { grid-template-columns: 1fr; gap: 10px; }
  .purpose-statement h3,
  .purpose-statement p { grid-column: 1; }
  .purpose-label { padding-top: 0; }
  .worship-feature { min-height: 820px; }
  .worship-feature-media img { object-position: 48% center; }
  .worship-feature-inner { padding: 28px 18px 44px; }
  .worship-feature-panel { padding: 34px 24px; border-radius: 24px; }
  .worship-times { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .purpose-media img,
  .worship-feature-media img { transform: scale(1.03); }
  .page-progress { display: none; }
}


/* V7: groups language, improved spacing, inquiry layout and richer gallery */
.section-head-row { margin-bottom: 62px; }

.ministry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.ministry-card { min-height: 430px; }
.ministry-card img { object-position: center; }
.ministry-content h3 { font-size: clamp(1.55rem, 1.7vw, 2rem); line-height: 1.02; }
.ministry-card:nth-child(5) img { filter: saturate(1.06) contrast(.96); }

.purpose-media img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}
.purpose-media::after {
  background: linear-gradient(0deg, rgba(0,0,0,.58), transparent 52%), linear-gradient(90deg, transparent 68%, rgba(246,244,239,.16));
}

.worship-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, .82fr);
  min-height: 720px;
  background: #050505;
  color: white;
  overflow: hidden;
}
.worship-feature-media {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3vw, 38px);
  background: #050505;
}
.worship-feature-media img {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: contain;
  object-position: center center;
  transform: none;
  will-change: auto;
}
.worship-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,5,.08) 62%, rgba(5,5,5,.58) 100%), linear-gradient(0deg, rgba(0,0,0,.18), rgba(0,0,0,.18));
  pointer-events: none;
}
.worship-feature-shade,
.worship-feature-inner { display: none; }
.worship-feature-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(52px, 6vw, 90px) clamp(24px, 5vw, 72px);
}
.worship-feature-panel {
  width: min(100%, 560px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(420px, 1.22fr);
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.inquiry-contact-card,
.inquiry-social-card,
.inquiry-form {
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(10,10,10,.08);
}
.inquiry-contact-card {
  margin-top: 30px;
  padding: 22px 24px;
}
.inquiry-label {
  display: block;
  margin-bottom: 8px;
  color: var(--sand-deep);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.inquiry-contact-card strong { font-size: 1.05rem; }
.inquiry-social-card {
  margin-top: 22px;
  padding: 24px;
}
.inquiry-social-card h3 {
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  font-weight: 500;
}
.inquiry-social-card p { color: var(--muted); }
.social-inline { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.inquiry-form {
  padding: clamp(26px, 4vw, 34px);
  display: grid;
  gap: 18px;
}
.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.inquiry-form label { display: grid; gap: 10px; }
.inquiry-form label span {
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(10,10,10,.14);
  padding: 15px 16px;
  font: inherit;
  background: #fbfaf7;
}
.inquiry-form textarea { min-height: 160px; resize: vertical; }
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--sand-deep);
  box-shadow: 0 0 0 4px rgba(188, 155, 105, .14);
}
.inquiry-submit { width: 100%; justify-content: center; }

.gallery-section { background: #fff; }
.gallery-wide-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.gallery-wide-item {
  position: relative;
  grid-column: span 4;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ink);
}
.gallery-wide-large {
  grid-column: span 8;
  min-height: 520px;
}
.gallery-wide-item img,
.gallery-wide-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-wide-video video { object-position: center; }
.gallery-wide-item::after,
.gallery-wide-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.56), transparent 42%);
}
.gallery-wide-item figcaption,
.gallery-wide-caption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 18px;
  color: white;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.gallery-wide-item:nth-child(4),
.gallery-wide-item:nth-child(5) { min-height: 360px; }

@media (max-width: 1380px) {
  .ministry-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1100px) {
  .worship-feature { grid-template-columns: 1fr; }
  .worship-feature-copy { padding-top: 0; }
  .inquiry-layout { grid-template-columns: 1fr; }
  .gallery-wide-item { grid-column: span 6; }
  .gallery-wide-large { grid-column: span 12; }
}
@media (max-width: 900px) {
  .ministry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .inquiry-grid { grid-template-columns: 1fr; }
  .gallery-wide-grid { grid-template-columns: 1fr; }
  .gallery-wide-item,
  .gallery-wide-large { grid-column: auto; min-height: 300px; }
}
@media (max-width: 600px) {
  .ministry-grid { grid-template-columns: 1fr; }
  .worship-feature-media { min-height: 420px; padding: 16px; }
  .worship-feature-copy { padding: 34px 20px 42px; }
}


/* V8: refined group cards and added story/gallery images */
.ministry-content span { display: none; }
.ministry-content { gap: 0; }
.photo-story-grid {
  grid-template-columns: 1.22fr .78fr;
  grid-template-rows: repeat(3, minmax(190px, 19vw));
}
.photo-story-wide { grid-row: 1 / 4; }
.photo-story img { object-position: center; }
.gallery-wide-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
}
.gallery-wide-item { grid-column: span 4; min-height: 280px; }
.gallery-wide-item:nth-child(5), .gallery-wide-item:nth-child(6), .gallery-wide-item:nth-child(7) { min-height: 320px; }
.gallery-wide-large { grid-column: span 8; min-height: 520px; }
@media (max-width: 760px) {
  .photo-story-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .photo-story, .photo-story-wide { grid-row: auto; min-height: 320px; }
}


/* V10: embedded Zeffy giving experience */
.give-page-hero::before { background-position: center 36%; opacity: .42; }
.give-embed-section { background: #fff; }
.give-embed-layout {
  display: grid;
  grid-template-columns: minmax(290px, .72fr) minmax(560px, 1.28fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}
.give-intro { position: sticky; top: calc(var(--header-h) + 34px); }
.give-intro .section-title { font-size: clamp(2.7rem, 4.4vw, 4.8rem); }
.give-trust-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.give-trust-list > div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.give-trust-list strong,
.give-trust-list span { display: block; }
.give-trust-list strong {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.give-trust-list span { margin-top: 7px; color: var(--muted); }
.give-fallback-link {
  display: inline-flex;
  margin-top: 22px;
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}
.give-form-shell {
  min-width: 0;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(10,10,10,.08);
  border-radius: 30px;
  background: var(--paper-soft);
  box-shadow: 0 28px 90px rgba(0,0,0,.09);
}
.give-form-head { margin-bottom: 22px; }
.give-form-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--sand);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.give-form-head h2 {
  margin: 18px 0 8px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  font-weight: 500;
}
.give-form-head p { margin: 0; color: var(--muted); }
.zeffy-embed-wrap {
  min-height: 620px;
  overflow: visible;
  border-radius: 22px;
  background: #fff;
}
.zeffy-embed-wrap [data-zeffy-embed] { min-height: 620px; }
.zeffy-fallback-frame {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  width: 100%;
  border-radius: 22px;
  background: #fff;
}
.zeffy-fallback-frame iframe {
  position: absolute;
  border: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1100px) {
  .give-embed-layout { grid-template-columns: 1fr; }
  .give-intro { position: static; }
}
@media (max-width: 700px) {
  .give-form-shell { padding: 18px; border-radius: 22px; }
  .zeffy-embed-wrap,
  .zeffy-embed-wrap [data-zeffy-embed] { min-height: 680px; }
  .zeffy-fallback-frame { min-height: 820px; }
}
