@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --green: #4f9a60;
  --green-dark: #2f7646;
  --green-soft: #edf7f0;
  --ink: #202423;
  --muted: #5f6c67;
  --line: #e5ebe7;
  --wash: #f7f9f8;
  --cream: #fffaf0;
  --gold: #f2c766;
  --white: #fff;
  --serif: "Fraunces", Georgia, Cambria, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow: 0 20px 60px rgba(27, 59, 41, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--ink); font-family: var(--sans); line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.screen-reader-text { position: absolute; left: -9999px; }
.screen-reader-text:focus { left: 16px; top: 16px; z-index: 1000; padding: 10px 14px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }

.nav {
  position: absolute;
  top: 14px;
  left: 50%;
  width: min(calc(100% - 28px), 1360px);
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(150px, .74fr) minmax(460px, 1.45fr) minmax(140px, .7fr);
  align-items: center;
  gap: clamp(18px, 2.6vw, 40px);
  min-height: clamp(92px, 8vw, 112px);
  padding: 0 clamp(38px, 5.4vw, 82px);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  border-radius: 22px 22px 0 0;
  background: linear-gradient(180deg, rgba(4, 7, 6, .36), rgba(4, 7, 6, .06));
  color: #fff;
  transform: translateX(-50%);
  backdrop-filter: none;
  box-shadow: none;
}
body.admin-bar .nav { top: 46px; }
.brand { display: inline-flex; align-items: center; gap: 9px; color: inherit; font-family: var(--serif); font-size: 1.12rem; font-weight: 700; letter-spacing: -.018em; }
.brand-mark { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; font-size: .82rem; }
.brand-logo {
  display: block;
  width: auto;
  max-width: 210px;
  max-height: 72px;
  object-fit: contain;
}
.footer-brand .brand-logo {
  max-width: 170px;
  max-height: 48px;
}
.nav-links { display: flex; justify-content: center; gap: clamp(18px, 2.1vw, 36px); margin: 0; padding: 0; list-style: none; color: rgba(255,255,255,.92); font-size: clamp(.9rem, .94vw, .98rem); font-weight: 800; white-space: nowrap; }
.nav-links li { margin: 0; }
.nav-actions { display: flex; justify-content: flex-end; align-items: center; gap: 18px; color: rgba(255,255,255,.92); font-size: .82rem; font-weight: 800; white-space: nowrap; }
.nav-actions .btn.primary {
  min-height: 56px;
  border-radius: 10px;
  padding-inline: clamp(24px, 3.2vw, 42px);
  background: var(--green);
  box-shadow: none;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav.is-open .nav-toggle span:first-child { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:last-child { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 20px;
  background: #fff;
  color: var(--green-dark);
  font-size: .86rem;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn.primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn.gold { background: var(--gold); color: #1f1a0d; border-color: var(--gold); }

.container { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 48px)); margin: 0 auto; text-align: center; }
.section { padding: clamp(72px, 8vw, 116px) 0; }
.wash { background: var(--wash); }
.green-band { background: var(--green); color: #fff; }
.dark-band { background: linear-gradient(135deg, #101719, #12251f); color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid #cde6d4;
  border-radius: 999px;
  padding: 4px 13px;
  background: #f5fbf7;
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
}

h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 600; letter-spacing: -.028em; line-height: 1; }
h1 { max-width: 720px; color: var(--ink); font-size: clamp(3rem, 5.2vw, 5.45rem); }
h2 { font-size: clamp(2.2rem, 3.6vw, 3.7rem); }
h3 { font-size: clamp(1.25rem, 1.7vw, 1.65rem); letter-spacing: -.025em; }
p { margin-top: 0; }
.lead { color: var(--muted); font-family: var(--serif); font-size: clamp(1.05rem, 1.35vw, 1.22rem); font-weight: 400; line-height: 1.62; }
.accent { color: var(--green); font-style: italic; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  min-height: 660px;
  border-bottom: 1px solid var(--line);
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(52px, 8vw, 104px) clamp(28px, 8vw, 112px); }
.hero-copy .lead { max-width: 560px; margin: 28px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-media { min-height: 660px; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.trust-line { display: flex; align-items: center; gap: 13px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.stat-card { display: grid; place-items: center; min-height: 154px; border-radius: 8px; background: var(--green-soft); text-align: center; }
.stat-card strong { color: var(--green); font-family: var(--serif); font-size: 2rem; font-weight: 600; }
.stat-card span { color: var(--muted); font-size: .72rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr); gap: 58px; align-items: start; }
.split.flip { grid-template-columns: minmax(360px, .82fr) minmax(0, 1fr); }
.card { border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 8px 30px rgba(27, 59, 41, .04); overflow: hidden; }
.card-body { padding: 26px; }
.card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.product-grid { align-items: stretch; }
.product-card { height: 100%; }
.product-card .card-body { height: 100%; display: flex; flex-direction: column; align-items: flex-start; }
.product-card .btn { margin-top: auto; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin: 0; padding: 0; list-style: none; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product { float: none; width: auto; margin: 0; }
.tag { display: inline-flex; border-radius: 999px; padding: 5px 10px; background: var(--green); color: #fff; font-size: .7rem; font-weight: 800; }

.timeline { position: relative; display: grid; gap: 30px; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 2px; background: #cfe8d5; }
.timeline-item { position: relative; }
.timeline-item::before { content: ""; position: absolute; left: -28px; top: 7px; width: 11px; height: 11px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px #edf8f0; }
.timeline-item small { color: var(--green); font-weight: 900; }

.numbers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.number strong { display: block; color: var(--green); font-size: 2.2rem; }
.donor-box { margin-top: 28px; border-radius: 10px; padding: 32px; background: var(--green); color: #fff; box-shadow: var(--shadow); }
.donor-box p { color: rgba(255,255,255,.82); }

.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.check-grid { grid-template-columns: repeat(2, 1fr); margin-top: 28px; }
.value { border: 1px solid var(--line); border-radius: 10px; padding: 26px; background: #fff; }
.value-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green); margin-bottom: 22px; }

.leader-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 44px; text-align: center; }
.leader img { width: 96px; height: 96px; margin: 0 auto 16px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); }

.cta { border-radius: 10px; padding: clamp(46px, 6vw, 74px); text-align: center; }
.cta h2 { color: #fff; }
.cta p { max-width: 720px; margin-inline: auto; color: rgba(255,255,255,.78); }

.form { display: grid; gap: 14px; }
.form label { display: grid; gap: 7px; color: #3e4549; font-size: .78rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.form input, .form textarea, .form select { width: 100%; border: 1px solid var(--line); border-radius: 7px; padding: 12px; background: #fff; outline: none; }
.form textarea { min-height: 130px; resize: vertical; }

.footer { border-top: 1px solid var(--line); padding: 56px 0 28px; background: #f9fbfa; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 42px; }
.footer h4 { margin: 0 0 14px; color: var(--ink); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.footer a { display: block; margin: 8px 0; }
.footer ul { margin: 0; padding: 0; list-style: none; }

.emanu-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}
.emanu-hero-bg {
  position: absolute;
  inset: 0;
}
.emanu-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.emanu-hero-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,19,16,.86), rgba(10,19,16,.42) 58%, rgba(10,19,16,.2));
}
.emanu-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .42fr);
  align-items: end;
  gap: 42px;
  min-height: 720px;
  padding-block: 92px;
}
.emanu-hero-copy {
  max-width: 760px;
}
.emanu-hero-copy h1 {
  color: #fff;
  font-size: clamp(3rem, 6vw, 6.8rem);
  letter-spacing: -.035em;
}
.emanu-hero-copy p {
  max-width: 620px;
  color: rgba(255,255,255,.78);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.62;
}
.emanu-service-panel {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  padding: 28px;
  background: rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(14px);
}
.emanu-service-panel span,
.emanu-list span,
.emanu-ministry-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.emanu-service-panel h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.2vw, 2.35rem);
}
.emanu-service-panel p {
  color: rgba(255,255,255,.78);
}
.emanu-overlap {
  margin-top: -82px;
  position: relative;
  z-index: 2;
  padding-top: 0;
}
.emanu-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.emanu-quick-grid article,
.emanu-ministry-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.emanu-quick-grid strong {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 2.4rem;
}
.emanu-list {
  display: grid;
  gap: 14px;
}
.emanu-list div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  background: #fff;
}
.emanu-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.1;
}
.emanu-event-row {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
}
.emanu-events {
  display: grid;
  gap: 16px;
}
.emanu-events article {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  background: #fff;
}
.emanu-events time {
  display: grid;
  place-items: center;
  min-height: 78px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
}
.emanu-closing {
  background: #101719;
  color: #fff;
  text-align: center;
}
.emanu-closing h2 {
  max-width: 900px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
}
.emanu-closing .btn {
  margin-top: 28px;
}

.emanu-light-hero {
  min-height: auto;
  background: linear-gradient(180deg, #f6fbf7, #fff);
}
.community-demo-hero {
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.community-demo-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(42vw, 560px);
  background: var(--green);
  opacity: .12;
  z-index: -1;
}
.emanu-light-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(430px, .9fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
  padding-block: clamp(86px, 10vw, 146px);
}
.emanu-light-grid .emanu-hero-copy h1 {
  color: var(--ink);
  font-size: clamp(3.35rem, 6.4vw, 7rem);
  line-height: .94;
}
.emanu-light-grid .emanu-hero-copy p {
  color: var(--muted);
}
.community-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 600px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.community-proof-strip div {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255,255,255,.72);
}
.community-proof-strip strong {
  display: block;
  color: var(--green);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}
.community-proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.emanu-photo-stack {
  position: relative;
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.emanu-photo-stack img {
  width: 100%;
  min-height: 360px;
  border-radius: 18px;
  object-fit: cover;
}
.emanu-photo-stack img:first-child {
  min-height: 470px;
  transform: translateY(28px);
}
.emanu-photo-stack img:nth-child(2) {
  transform: translateY(-24px);
}
.community-note {
  position: absolute;
  right: 44px;
  bottom: 44px;
  width: min(310px, calc(100% - 88px));
  border-radius: 16px;
  padding: 22px;
  background: #111a17;
  color: #fff;
  box-shadow: 0 22px 70px rgba(17,26,23,.24);
}
.community-note span {
  display: block;
  margin-bottom: 10px;
  color: #9dccaa;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.community-note strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.12;
}
.community-ministry-section {
  background: #fff;
}
.emanu-ministry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.emanu-featured {
  grid-column: span 2;
  grid-row: span 2;
  background: #111a17;
  color: #fff;
}
.emanu-featured h2 {
  color: #fff;
}
.emanu-featured p {
  color: rgba(255,255,255,.8);
}
.community-proof-section {
  background: #f1f7f3;
}
.emanu-quote {
  border-radius: 14px;
  padding: clamp(34px, 5vw, 64px);
  background: #fff;
  box-shadow: var(--shadow);
}
.emanu-quote p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.028em;
}
.emanu-closing-light {
  background: var(--green-soft);
  color: var(--ink);
}
.emanu-closing-light h2 {
  color: var(--ink);
}
.community-journal-section .card {
  border-radius: 18px;
}

.home-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: #0f1714;
  color: #fff;
}
.home-hero-media {
  position: absolute;
  inset: 0;
}
.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.05);
}
.home-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,22,17,.92), rgba(11,22,17,.58) 58%, rgba(11,22,17,.22));
}
.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .44fr);
  gap: 48px;
  align-items: end;
  min-height: 760px;
  padding-block: clamp(120px, 13vw, 180px) 86px;
}
.home-hero-copy {
  max-width: 760px;
}
.home-hero h1,
.page-hero h1 {
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(3.4rem, 6.4vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .92;
}
.home-hero p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.04rem, 1.25vw, 1.22rem);
}
.btn.glass {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(14px);
}
.hero-feature-card {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  padding: 30px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}
.hero-feature-card span,
.service-grid span,
.sermon-grid span,
.post-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-feature-card h2 {
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(1.55rem, 2.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.04;
}
.hero-feature-card p {
  color: rgba(255,255,255,.76);
}
.overlap-cards {
  position: relative;
  z-index: 2;
  margin-top: -78px;
  padding-top: 0;
}
.action-grid,
.service-grid,
.sermon-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.action-grid article,
.service-grid article,
.sermon-grid article,
.post-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(19, 42, 30, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.action-grid article:hover,
.service-grid article:hover,
.sermon-grid article:hover,
.post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,154,96,.28);
  box-shadow: 0 24px 70px rgba(19, 42, 30, .13);
}
.action-grid strong {
  display: block;
  margin-bottom: 30px;
  color: var(--green);
  font-family: var(--sans);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -.06em;
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 88px);
  align-items: center;
}
.image-composition {
  position: relative;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--green-soft);
}
.image-composition img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.image-composition.tall,
.image-composition.tall img {
  min-height: 620px;
}
.play-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 16px;
  padding: 20px;
  background: rgba(15,23,20,.92);
  color: #fff;
  backdrop-filter: blur(14px);
}
.play-card span {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  position: relative;
}
.play-card span::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 14px;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}
.mission-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.mission-points.stacked {
  grid-template-columns: 1fr;
}
.mission-points div,
.check-list div,
.detail-cards div,
.contact-cards div {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}
.mission-points strong,
.contact-cards strong,
.detail-cards strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}
.mission-points span,
.contact-cards span,
.detail-cards span {
  color: var(--muted);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}
.section-head h2 {
  max-width: 720px;
}
.text-link {
  display: inline-flex;
  color: var(--green-dark);
  font-weight: 800;
}
.service-grid {
  grid-template-columns: repeat(4, 1fr);
}
.service-grid.large {
  grid-template-columns: repeat(2, 1fr);
}
.service-grid.large article {
  min-height: 310px;
}
.luxury-donor-box {
  margin-top: 0;
  border-radius: 18px;
}
.events-section {
  background: #f4f8f5;
}
.event-row {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(440px, 1fr);
  gap: 56px;
}
.resource-list {
  display: grid;
  gap: 16px;
}
.resource-list article {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  background: #fff;
}
.resource-list time {
  display: grid;
  place-items: center;
  min-height: 82px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
}
.closing-band {
  background: #111916;
  color: #fff;
  text-align: center;
}
.closing-band h2 {
  max-width: 940px;
  margin: 0 auto 30px;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(2.6rem, 5.2vw, 6rem);
  font-weight: 800;
}
.page-hero {
  background:
    linear-gradient(90deg, rgba(7,12,10,.88), rgba(7,12,10,.62)),
    url("https://www.therespitekn.com/assets/images/@100/100Audience.jpg") center/cover;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .45fr);
  gap: 48px;
  align-items: end;
  min-height: 440px;
  padding-block: 108px 72px;
}
.page-hero p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
}
.quote-panel {
  border-radius: 22px;
  padding: clamp(38px, 6vw, 76px);
  background: var(--green-soft);
}
.quote-panel p {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .98;
}
.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.check-list div::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
}
.detail-layout,
.contact-layout,
.article-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}
.detail-sidebar,
.article-aside {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 12px;
}
.detail-sidebar a {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 16px;
  background: #fff;
  font-weight: 800;
}
.detail-sidebar a.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.sidebar-cta,
.article-aside {
  margin-top: 12px;
  border-radius: 16px;
  padding: 24px;
  background: #111916;
  color: #fff;
}
.sidebar-cta h3,
.article-aside h3 {
  color: #fff;
}
.detail-content img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 34px;
}
.detail-content h2 {
  margin-top: 34px;
}
.detail-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.process-list {
  display: grid;
  gap: 14px;
}
.process-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.process-list span {
  color: var(--green);
  font-weight: 900;
}
.service-detail-page {
  background: #f7f8f6;
}
.service-detail-wrap {
  max-width: 1180px;
}
.service-detail-hero-image {
  margin: 0 0 clamp(24px, 3.4vw, 42px);
  overflow: hidden;
  border-radius: 14px;
  background: #dfe8e1;
}
.service-detail-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 8.9;
  object-fit: cover;
  object-position: center;
}
.service-detail-intro {
  max-width: 1120px;
  color: var(--muted);
  font-size: clamp(.96rem, 1.05vw, 1.05rem);
  font-weight: 600;
  line-height: 1.72;
}
.service-detail-block {
  margin-top: clamp(52px, 6vw, 84px);
}
.service-detail-block h2 {
  color: #111;
  font-family: var(--sans);
  font-size: clamp(2.1rem, 3.4vw, 4.1rem);
  font-weight: 900;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.service-detail-block > p {
  max-width: 1080px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.68;
}
.service-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 6vw, 120px);
  margin-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(30px, 4vw, 46px);
  border-bottom: 1px solid rgba(17, 17, 17, .11);
}
.service-benefits article,
.expect-grid article {
  display: grid;
  gap: 10px;
}
.service-benefits span,
.expect-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
}
.service-benefits h3,
.expect-grid h3 {
  margin-top: 8px;
  color: #111;
  font-family: var(--sans);
  font-size: clamp(.95rem, 1.1vw, 1.08rem);
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.1;
  text-transform: uppercase;
}
.service-benefits p,
.expect-grid p {
  color: var(--muted);
  font-size: .93rem;
  font-weight: 600;
  line-height: 1.6;
}
.expect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 58px);
  margin-top: clamp(28px, 4vw, 44px);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
}
.faq-list {
  display: grid;
  gap: 18px;
  margin-top: clamp(26px, 3vw, 38px);
}
.faq-list details {
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}
.faq-list summary {
  position: relative;
  min-height: 64px;
  padding: 22px 68px 22px 24px;
  color: #111;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: -.01em;
  list-style: none;
  text-transform: uppercase;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  color: currentColor;
  font-size: 1.8rem;
  font-weight: 500;
  transform: translateY(-50%);
}
.faq-list details[open] {
  background: var(--green);
  color: #fff;
}
.faq-list details[open] summary {
  color: #fff;
}
.faq-list details[open] summary::after {
  content: "×";
}
.faq-list details p {
  padding: 0 24px 28px;
  color: rgba(255, 255, 255, .88);
  font-size: .95rem;
  font-weight: 600;
}
.sermon-grid {
  grid-template-columns: repeat(3, 1fr);
}
.contact-layout {
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr);
}
.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.contact-form-card {
  border-radius: 18px;
}
.contact-page-section,
.location-section {
  background: #f7f8f6;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .86fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}
.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 28px;
  border-radius: 999px;
  padding: 6px 15px;
  background: #fff;
  color: #111;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.mini-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.contact-intro h2,
.location-head h2 {
  margin-top: 22px;
  color: #111;
  font-family: var(--sans);
  font-size: clamp(2.4rem, 4.4vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .96;
  text-transform: uppercase;
}
.contact-intro > p,
.location-head p {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.7;
}
.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 36px;
  margin-top: clamp(28px, 4vw, 48px);
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid rgba(17, 17, 17, .12);
}
.contact-methods article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.contact-methods article:last-child {
  grid-column: 1 / -1;
}
.contact-methods article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
}
.contact-methods h3 {
  color: #111;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.15;
  text-transform: uppercase;
}
.contact-methods a,
.contact-methods p {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}
.contact-form-card {
  border-radius: 18px;
  padding: clamp(28px, 4.5vw, 54px);
  background: #fff;
}
.contact-form-card h2 {
  margin-bottom: 28px;
  color: #111;
  font-family: var(--sans);
  font-size: clamp(1.45rem, 2.1vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.02;
  text-transform: uppercase;
}
.contact-form-card .form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}
.contact-form-card .form label {
  color: transparent;
  font-size: 0;
  letter-spacing: 0;
}
.contact-form-card .form label:nth-of-type(3),
.contact-form-card .form label:nth-of-type(4) {
  grid-column: 1 / -1;
}
.contact-form-card .form input,
.contact-form-card .form textarea,
.contact-form-card .form select {
  border: 0;
  border-radius: 9px;
  padding: 18px;
  background: #f3f2ec;
  color: #111;
  font-size: 1rem;
  font-weight: 600;
}
.contact-form-card .form textarea {
  min-height: 138px;
}
.contact-form-card .form .btn {
  justify-self: start;
  min-height: 52px;
  margin-top: 12px;
  border-radius: 9px;
  padding-inline: 26px;
  background: var(--green);
  color: #fff;
  text-transform: none;
}
.location-section {
  padding-top: clamp(22px, 3vw, 42px);
}
.location-head {
  text-align: center;
}
.location-head .mini-pill {
  margin-inline: auto;
}
.location-head h2,
.location-head p {
  margin-inline: auto;
}
.location-head h2 {
  max-width: 980px;
}
.map-panel {
  margin-top: clamp(40px, 5vw, 70px);
  overflow: hidden;
  border-radius: 14px;
  background: #dfe8e1;
}
.map-panel iframe {
  display: block;
  width: 100%;
  height: clamp(360px, 46vw, 590px);
  border: 0;
  filter: saturate(.85) contrast(.98);
}
.blog-card-section {
  background: #f7f8f6;
}
.post-card {
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  padding: 0;
  background: #fff;
  box-shadow: none;
}
.post-card a {
  display: flex;
  height: 100%;
  min-height: 520px;
  flex-direction: column;
}
.post-card-media {
  position: relative;
  aspect-ratio: 16 / 9.7;
  overflow: hidden;
  background: #dfe8e1;
}
.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.post-card:hover .post-card-media img {
  transform: scale(1.045);
}
.post-card-badge {
  position: absolute;
  left: 32px;
  top: 28px;
  z-index: 2;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 9px 22px;
  background: var(--green);
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1;
  text-transform: uppercase;
}
.post-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(28px, 3vw, 44px);
}
.post-card h3 {
  color: #111;
  font-family: var(--sans);
  font-size: clamp(1.35rem, 1.55vw, 1.72rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.08;
  text-transform: uppercase;
}
.post-meta-line {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}
.post-meta-line + .post-meta-line {
  margin-top: 14px;
}
.post-meta-line span {
  margin: 0;
  color: var(--green);
  font-size: .86rem;
  letter-spacing: 0;
}
.post-meta-line strong {
  color: #111;
  font-weight: 900;
}
.post-card-action {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 34px;
  border-top: 1px solid rgba(17, 17, 17, .11);
  color: #111;
  font-size: .92rem;
  font-weight: 900;
  text-transform: uppercase;
}
.post-card-action span {
  font-size: 1.1rem;
  transition: transform .22s ease;
}
.post-card:hover .post-card-action span {
  transform: translate(3px, -3px);
}
.single-hero .page-hero-grid {
  min-height: 520px;
}
.article-body {
  max-width: 760px;
  font-size: 1.08rem;
}
.article-body p {
  color: var(--muted);
}
.footer-newsletter {
  padding: clamp(46px, 7vw, 86px) 0;
  background: #111916;
  color: #fff;
}
.footer-newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .6fr);
  gap: 34px;
  align-items: center;
}
.footer-newsletter h2 {
  max-width: 820px;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -.05em;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
}
.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
}

/* Premium spacing pass: one clean rhythm for labels, text, and CTAs. */
p {
  margin: 0;
}
p + p {
  margin-top: 1rem;
}
h1 + p,
h2 + p,
h3 + p,
.eyebrow + h1,
.eyebrow + h2,
.eyebrow + h3 {
  margin-top: 18px;
}
.lead {
  margin: 18px 0 0;
}
.eyebrow {
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 0 0 0 34px;
  background: transparent;
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
  position: relative;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 22px;
  height: 2px;
  background: currentColor;
}
.home-hero .eyebrow,
.page-hero .eyebrow {
  color: rgba(255,255,255,.82);
}
.btn {
  min-height: 44px;
  border-radius: 4px;
  padding: 11px 18px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: none;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(25, 58, 37, .14);
}
.btn.primary {
  background: #3f8e52;
  border-color: #3f8e52;
}
.btn.glass {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.26);
}
.nav .btn {
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 4px;
}
.hero-actions {
  gap: 10px;
  margin-top: 26px;
}
.home-hero p {
  margin-top: 22px;
}
.home-hero-grid {
  min-height: 700px;
  padding-block: clamp(104px, 11vw, 148px) 74px;
}
.hero-feature-card {
  padding: 26px;
}
.hero-feature-card span,
.service-grid span,
.sermon-grid span,
.post-card span,
.emanu-service-panel span,
.emanu-list span,
.emanu-ministry-card span {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: .68rem;
  letter-spacing: .13em;
}
.hero-feature-card span {
  color: rgba(255,255,255,.72);
}
.hero-feature-card h2 {
  margin-top: 0;
}
.hero-feature-card p,
.service-grid p,
.sermon-grid p,
.post-card p,
.action-grid p,
.resource-list p,
.mission-points span,
.contact-cards span,
.detail-cards span {
  margin-top: 10px;
  line-height: 1.55;
}
.overlap-cards {
  margin-top: -54px;
}
.action-grid article,
.service-grid article,
.sermon-grid article,
.post-card {
  padding: 24px;
  border-radius: 10px;
}
.action-grid strong {
  margin-bottom: 18px;
  font-size: 2.2rem;
}
.section {
  padding: clamp(66px, 7vw, 98px) 0;
}
.section-head {
  margin-bottom: 28px;
}
.story-grid {
  gap: clamp(38px, 6vw, 72px);
}
.mission-points {
  margin: 24px 0;
}
.mission-points div,
.check-list div,
.detail-cards div,
.contact-cards div {
  border-radius: 10px;
  padding: 16px;
}
.image-composition,
.image-composition img {
  min-height: 480px;
}
.play-card {
  border-radius: 10px;
  padding: 16px;
}
.play-card span {
  width: 38px;
  height: 38px;
}
.play-card span::after {
  left: 15px;
  top: 11px;
}
.donor-box {
  border-radius: 10px;
  padding: 28px;
}
.resource-list article {
  border-radius: 10px;
  padding: 18px;
}
.resource-list time {
  min-height: 72px;
  border-radius: 8px;
}
.closing-band h2,
.footer-newsletter h2,
.quote-panel p {
  letter-spacing: -.045em;
}
.page-hero-grid {
  min-height: 400px;
  padding-block: 92px 60px;
}
.page-hero p {
  line-height: 1.55;
}
.footer-newsletter {
  padding: clamp(42px, 6vw, 72px) 0;
}
.newsletter-form {
  border-radius: 8px;
}

/* Page heroes now follow the home-screen header system. */
.page-hero {
  width: 100%;
  margin: 0;
  border-radius: 0;
}
.page-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 12px;
  min-height: clamp(620px, 62vw, 760px);
  padding-top: clamp(132px, 13vw, 190px);
  padding-bottom: clamp(76px, 9vw, 112px);
  text-align: center;
}
.page-hero .eyebrow {
  display: none;
}
.page-hero h1 {
  margin: 0 auto;
  max-width: min(980px, 92vw);
  text-transform: uppercase;
}
.page-hero p {
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  font-weight: 800;
}
.sermons-archive {
  background: #fff;
  padding-top: clamp(72px, 8vw, 112px);
}
.sermons-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.sermon-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(22, 30, 24, .08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(14, 25, 18, .06);
}
.sermon-image {
  position: relative;
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: #dfe8e1;
}
.sermon-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform .35s ease;
}
.sermon-card:hover .sermon-image img {
  transform: scale(1.04);
}
.sermon-image span {
  position: absolute;
  left: 20px;
  top: 18px;
  display: inline-flex;
  border-radius: 4px;
  padding: 7px 12px;
  background: var(--green);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.sermon-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px 32px 28px;
}
.sermon-body h3 {
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.sermon-meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: .95rem;
}
.sermon-meta + .sermon-meta {
  margin-top: 10px;
}
.sermon-meta::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
  vertical-align: 1px;
}
.sermon-meta strong {
  color: var(--ink);
}
.read-more-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #111916;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-newsletter,
.footer {
  width: min(100% - 32px, 1240px);
  margin-inline: auto;
  background-color: #070908;
}
.footer-newsletter {
  margin-top: 82px;
  border-radius: 18px 18px 0 0;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.035) 12.5%, transparent 12.5%, transparent 50%, rgba(255,255,255,.035) 50%, rgba(255,255,255,.035) 62.5%, transparent 62.5%, transparent 100%);
  background-size: 42px 42px;
}
.footer {
  border-top: 1px solid rgba(255,255,255,.1);
  border-radius: 0 0 18px 18px;
  margin-bottom: clamp(28px, 5vw, 72px);
  color: rgba(255,255,255,.72);
}
.footer h4 {
  color: #fff;
}
.footer .brand {
  color: #fff;
}
.footer a {
  color: rgba(255,255,255,.74);
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero h1, .hero .lead, .hero .btn { animation: riseIn .7s cubic-bezier(.2,.8,.2,1) both; }
.hero .lead { animation-delay: .12s; }
.hero .btn { animation-delay: .22s; }
@keyframes riseIn { from { opacity: .86; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 1ms !important; transition-duration: 1ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .nav { gap: 16px; }
  .nav-links { gap: 20px; }
  .nav-actions { gap: 12px; }
  .btn { padding-inline: 16px; }
}

@media (max-width: 980px) {
  .hero, .split, .split.flip, .footer-grid { grid-template-columns: 1fr; }
  .nav { grid-template-columns: auto 1fr auto; padding-inline: 24px; }
  .nav-links { justify-content: center; gap: 18px; }
  .nav-actions { gap: 10px; }
  .hero { min-height: auto; }
  .hero-media { min-height: 430px; order: -1; }
  .hero-copy { padding: 48px 32px 58px; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .card-grid, .card-grid.two, .values { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
  .leader-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .emanu-hero-grid,
  .emanu-light-grid,
  .emanu-event-row {
    grid-template-columns: 1fr;
  }
  .emanu-hero-grid {
    min-height: auto;
    padding-top: 140px;
  }
  .emanu-ministry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .emanu-featured {
    grid-column: span 2;
  }
  .home-hero-grid,
  .page-hero-grid,
  .story-grid,
  .event-row,
  .contact-page-grid,
  .detail-layout,
  .contact-layout,
  .article-layout,
  .footer-newsletter-grid {
    grid-template-columns: 1fr;
  }
  .home-hero-grid {
    min-height: 680px;
    padding-top: 130px;
  }
  .hero-feature-card,
  .detail-sidebar,
  .article-aside {
    position: static;
  }
  .service-grid,
  .action-grid,
  .sermon-grid,
  .post-grid,
  .sermons-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-grid.large {
    grid-template-columns: 1fr;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .contact-page-grid {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .nav {
    grid-template-columns: auto auto;
    align-items: center;
    padding-block: 12px;
  }
  .nav-toggle { display: block; }
  .nav-links,
  .nav-actions {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }
  .nav.is-open .nav-links,
  .nav.is-open .nav-actions { display: flex; }
  .nav-links {
    flex-direction: column;
    justify-content: start;
    gap: 4px;
    padding-top: 10px;
  }
  .nav-links a,
  .nav-actions a:not(.btn) {
    min-height: 42px;
    display: flex;
    align-items: center;
  }
  .nav-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 4px;
  }
  .container, .narrow { width: min(100% - 32px, 1120px); }
  .section { padding: 64px 0; }
  h1 { font-size: clamp(2.35rem, 10vw, 3.25rem); }
  h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-copy { padding: 36px 24px 48px; }
  .hero-media { min-height: 330px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .trust-line { display: grid; gap: 4px; }
  .stats, .card-grid, .card-grid.two, .values, .numbers, .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .leader-grid, .footer-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: 124px; padding: 18px 12px; }
  .stat-card strong, .number strong { font-size: 1.85rem; }
  .stat-card span { font-size: .62rem; letter-spacing: .08em; }
  .card-body, .value, .donor-box { padding: 18px; }
  .card-body h3, .value h3 { font-size: 1.18rem; }
  .card-body p, .value p { font-size: .9rem; line-height: 1.55; }
  .value-icon { width: 32px; height: 32px; margin-bottom: 14px; }
  .cta { border-radius: 8px; padding-inline: 24px; }
  .emanu-hero {
    min-height: auto;
  }
  .emanu-hero-grid,
  .emanu-light-grid {
    padding-block: 58px;
  }
  .emanu-hero-copy h1 {
    font-size: clamp(2.45rem, 10vw, 3.5rem);
  }
  .emanu-service-panel,
  .emanu-quick-grid article,
  .emanu-ministry-card {
    padding: 20px;
  }
  .emanu-quick-grid,
  .emanu-ministry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .emanu-featured {
    grid-column: 1 / -1;
  }
  .emanu-events article {
    grid-template-columns: 1fr;
  }
  .emanu-photo-stack {
    grid-template-columns: 1fr 1fr;
  }
  .emanu-photo-stack img,
  .emanu-photo-stack img:first-child {
    min-height: 260px;
    transform: none;
  }
  .emanu-photo-stack img:nth-child(2) {
    transform: none;
  }
  .community-proof-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .community-note {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
  }
  .home-hero-grid {
    min-height: auto;
    padding-block: 76px 34px;
  }
  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.6rem);
  }
  .hero-feature-card,
  .action-grid article,
  .service-grid article,
  .sermon-grid article,
  .post-card {
    padding: 16px;
  }
  .action-grid,
  .service-grid,
  .sermon-grid,
  .post-grid,
  .sermons-card-grid,
  .mission-points,
  .check-list,
  .detail-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .service-detail-hero-image img {
    aspect-ratio: 4 / 3;
  }
  .service-benefits,
  .expect-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .service-benefits {
    padding-bottom: 30px;
  }
  .faq-list summary {
    min-height: 58px;
    padding: 18px 52px 18px 18px;
    font-size: .78rem;
  }
  .faq-list summary::after {
    right: 18px;
  }
  .faq-list details p {
    padding: 0 18px 22px;
  }
  .page-hero-grid {
    min-height: 360px;
    padding-block: 68px 44px;
  }
  .image-composition,
  .image-composition img,
  .image-composition.tall,
  .image-composition.tall img {
    min-height: 390px;
  }
  .play-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .resource-list article,
  .process-list div {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .contact-methods,
  .contact-form-card .form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .contact-methods article {
    grid-template-columns: 1fr;
  }
  .contact-methods article > span {
    width: 38px;
    height: 38px;
  }
  .contact-methods h3 {
    font-size: .82rem;
  }
  .contact-methods a,
  .contact-methods p {
    font-size: .85rem;
  }
  .contact-form-card {
    padding: 22px;
  }
  .contact-form-card .form input,
  .contact-form-card .form textarea,
  .contact-form-card .form select {
    padding: 14px;
    font-size: .9rem;
  }
}

@media (max-width: 420px) {
  .nav { padding-inline: 16px; }
  .container, .narrow { width: min(100% - 28px, 1120px); }
  h1 { font-size: clamp(2.08rem, 11vw, 2.8rem); }
  .hero-media { min-height: 270px; }
  .section { padding: 54px 0; }
  .stats, .card-grid, .card-grid.two, .values, .numbers { gap: 12px; }
  .card-body, .value { padding: 14px; }
  .community-proof-strip {
    grid-template-columns: 1fr;
  }
  .emanu-photo-stack {
    padding: 14px;
  }
  .action-grid,
  .service-grid,
  .sermon-grid,
  .post-grid,
  .sermons-card-grid,
  .mission-points,
  .check-list,
  .detail-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .action-grid article,
  .service-grid article,
  .sermon-grid article,
  .post-card {
    padding: 16px;
  }
  .post-card {
    padding: 0;
  }
  .post-card a {
    min-height: 430px;
  }
  .post-card-body {
    padding: 18px;
  }
  .post-card-badge {
    left: 16px;
    top: 16px;
    min-height: 32px;
    padding: 7px 13px;
    font-size: .68rem;
  }
  .post-meta-line {
    gap: 8px;
    margin-top: 16px;
    font-size: .8rem;
  }
  .post-card-action {
    padding-top: 20px;
    font-size: .78rem;
  }
  .action-grid strong {
    font-size: 2rem;
    margin-bottom: 18px;
  }
  .service-grid h3,
  .sermon-grid h3,
  .post-card h3 {
    font-size: 1.05rem;
  }
  .service-grid p,
  .sermon-grid p,
  .post-card p {
    font-size: .85rem;
  }
  .sermon-body {
    padding: 18px;
  }
  .sermon-image,
  .sermon-image img {
    min-height: 150px;
  }
  .sermon-body h3 {
    font-size: .95rem;
  }
  .sermon-meta {
    font-size: .8rem;
  }
  .contact-intro h2,
  .location-head h2 {
    font-size: clamp(1.9rem, 11vw, 2.85rem);
  }
  .contact-methods,
  .contact-form-card .form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-form-card .form input,
  .contact-form-card .form textarea,
  .contact-form-card .form select {
    min-width: 0;
    padding: 12px;
    font-size: .82rem;
  }
  .contact-form-card .form textarea {
    min-height: 112px;
  }
  .map-panel iframe {
    height: 330px;
  }
  .service-detail-block h2 {
    font-size: clamp(1.75rem, 10vw, 2.55rem);
  }
  .service-benefits,
  .expect-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .expect-grid {
    padding: 18px;
  }
  .service-benefits span,
  .expect-grid span {
    width: 34px;
    height: 34px;
  }
  .service-benefits h3,
  .expect-grid h3 {
    font-size: .82rem;
  }
  .service-benefits p,
  .expect-grid p {
    font-size: .78rem;
  }
}
