:root {
  --ink: #101828;
  --navy: #0d2b45;
  --navy-2: #153c5c;
  --green: #1f6f50;
  --gold: #c58a2a;
  --red-earth: #9f4a2e;
  --paper: #ffffff;
  --soft: #f4f7f4;
  --soft-blue: #eef5f8;
  --line: #d9e1e5;
  --muted: #576575;
  --shadow: 0 18px 50px rgba(13, 43, 69, 0.14);
  --radius: 8px;
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  background: var(--paper);
  overflow-x: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.6rem 0.85rem;
  color: var(--paper);
  background: var(--navy);
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 225, 229, 0.86);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 auto;
  min-width: 230px;
}

.brand-mark {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(16, 47, 74, 0.18);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand strong,
.brand small {
  display: block;
}

.brand > span:last-child {
  min-width: 0;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.05rem;
  color: #253647;
  font-size: 0.91rem;
  font-weight: 650;
}

.site-nav a {
  padding: 0.45rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.is-active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger::after {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-left: 0.38rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.72rem);
  left: 50%;
  z-index: 30;
  display: none;
  min-width: 190px;
  padding: 0.55rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  padding: 0.62rem 0.72rem;
  border: 0;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  color: var(--navy);
  background: var(--soft-blue);
  border: 0;
}

.nav-give {
  padding: 0.52rem 0.78rem !important;
  color: var(--paper) !important;
  background: var(--green);
  border: 0 !important;
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0.65rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 96px);
  display: grid;
  align-items: end;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(8, 26, 43, 0.88) 0%, rgba(8, 26, 43, 0.68) 47%, rgba(8, 26, 43, 0.2) 100%),
    url("assets/photos/family-portrait.jpeg") center 17% / cover no-repeat,
    var(--navy);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 26, 43, 0.65), transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 710px) minmax(240px, 330px);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  padding: clamp(3.3rem, 6vw, 5.6rem) 0 clamp(2rem, 4vw, 3.2rem);
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 5.7vw, 5.15rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.hero-actions,
.give-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.74rem 1rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--paper);
  background: var(--green);
  box-shadow: 0 14px 32px rgba(31, 111, 80, 0.28);
}

.button-primary:hover,
.button-primary:focus {
  background: #185d43;
}

.button-light {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
}

.button-outline {
  color: var(--navy);
  background: var(--paper);
  border-color: rgba(13, 43, 69, 0.24);
}

.hero-verse {
  padding: 1.15rem;
  border-left: 3px solid var(--gold);
  background: rgba(7, 23, 39, 0.42);
  backdrop-filter: blur(8px);
}

.hero-verse span {
  display: block;
  margin-bottom: 0.5rem;
  color: #f0bf65;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-verse p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.35;
}

.trust-strip {
  background: var(--navy);
  color: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.trust-grid div {
  padding: 1.3rem 1.4rem;
  background: var(--navy);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 0.28rem;
  font-size: 0.96rem;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-label {
  margin: 0 0 0.7rem;
  color: var(--red-earth);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2,
h3 {
  color: var(--navy);
  letter-spacing: 0;
}

h2 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
}

h3 {
  margin: 0 0 0.72rem;
  font-size: 1.1rem;
  line-height: 1.25;
}

.lead {
  color: #2c3c4c;
  font-size: 1.12rem;
}

.bio-subtitle {
  margin-top: -0.35rem;
  color: var(--green) !important;
  font-weight: 850;
}

.two-column,
.split-feature,
.contact-layout,
.prayer-grid,
.devotional-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.section-copy p:not(.section-label) {
  color: #314252;
}

.bio-quote {
  margin: 1.4rem 0;
  padding: 1.1rem 1.25rem;
  background: var(--soft-blue);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.bio-quote p {
  margin: 0 0 0.45rem !important;
  color: var(--navy) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.35;
}

.bio-quote cite {
  color: var(--red-earth);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portrait-panel {
  display: grid;
  gap: 1rem;
}

.photo-frame {
  position: relative;
  min-height: 255px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--green));
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.portrait-frame {
  min-height: 520px;
}

.portrait-frame img {
  object-position: center 18%;
}

.photo-frame figcaption {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  padding: 0.72rem 0.82rem;
  color: var(--paper);
  background: rgba(10, 32, 52, 0.72);
  border-radius: 6px;
  font-size: 0.86rem;
  line-height: 1.35;
}

.photo-fallback {
  display: none;
  position: absolute;
  inset: 0;
  place-items: center;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(13, 43, 69, 0.92), rgba(31, 111, 80, 0.88)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 12px);
}

.photo-frame.is-missing img {
  display: none;
}

.photo-frame.is-missing .photo-fallback {
  display: grid;
}

.fruit-card {
  padding: 1.2rem;
  background: var(--soft-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fruit-card span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--navy);
  font-weight: 850;
}

.fruit-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #344656;
}

.scripture-band {
  padding: 4.2rem 0;
  color: var(--paper);
  background: var(--green);
}

.scripture-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1fr;
  gap: 2rem;
  align-items: center;
}

.scripture-inner h2 {
  color: var(--paper);
}

.scripture-inner p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.14;
}

.scripture-inner span {
  display: block;
  margin-top: 0.8rem;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ministry-section,
.updates-section {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading p:not(.section-label) {
  color: var(--muted);
  font-size: 1.06rem;
}

.compact-heading {
  margin-bottom: 1.4rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.filter-button {
  min-height: 38px;
  padding: 0.5rem 0.78rem;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 760;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus {
  color: var(--paper);
  background: var(--navy);
  border-color: var(--navy);
}

.ministry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ministry-card,
.update-card,
.devotional-card,
.need-card {
  border-radius: var(--radius);
}

.ministry-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(217, 225, 229, 0.85);
  box-shadow: 0 12px 32px rgba(13, 43, 69, 0.08);
}

.ministry-card .photo-frame {
  min-height: 210px;
  border-radius: 0;
  box-shadow: none;
}

.ministry-card div:not(.photo-fallback) {
  padding: 1.1rem;
}

.ministry-card p,
.need-card p,
.update-card p,
.devotional-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.ministry-card.is-hidden {
  display: none;
}

.partnerships-section {
  background: var(--paper);
}

.wide-heading {
  max-width: 900px;
}

.split-feature {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
}

.large-photo {
  min-height: 530px;
}

.feature-copy p:not(.section-label) {
  color: #334555;
}

.mission-trip-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(210px, auto);
  gap: 1rem;
  margin: 2rem 0;
}

.trip-photo {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.trip-photo-large {
  grid-row: span 2;
}

.trip-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.trip-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 0.95rem;
  color: var(--paper);
  background: linear-gradient(0deg, rgba(7, 23, 39, 0.88), rgba(7, 23, 39, 0.48));
  font-size: 0.88rem;
  line-height: 1.35;
}

.trip-narrative {
  max-width: 930px;
  margin: 0 0 3.2rem;
  color: #334555;
  font-size: 1.04rem;
}

.visit-options {
  margin: 0 0 3.2rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--soft-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.visit-options-heading {
  max-width: 760px;
  margin-bottom: 1.3rem;
}

.visit-options-heading p:not(.section-label) {
  color: var(--muted);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.visit-card {
  padding: 1.15rem;
  background: var(--paper);
  border: 1px solid rgba(217, 225, 229, 0.95);
  border-radius: var(--radius);
}

.visit-card span {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.visit-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.team-six-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--green);
  font-weight: 850;
  border-bottom: 2px solid rgba(31, 111, 80, 0.22);
}

.inline-link {
  color: var(--green);
  font-weight: 800;
  border-bottom: 1px solid rgba(31, 111, 80, 0.35);
}

.needs-section {
  background: var(--navy);
}

.needs-section h2,
.needs-section h3 {
  color: var(--paper);
}

.needs-section .section-heading p:not(.section-label),
.need-card p {
  color: rgba(255, 255, 255, 0.75);
}

.needs-section .section-label {
  color: #f0bf65;
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.need-card {
  min-height: 270px;
  padding: 1.3rem;
  background: #11324e;
}

.need-number {
  display: block;
  margin-bottom: 1.9rem;
  color: #f0bf65;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.need-photo {
  margin: -0.2rem 0 1rem;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.need-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.updates-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.update-card {
  padding: 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.post-invite {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.post-invite strong,
.post-invite a {
  display: block;
}

.post-invite strong {
  color: var(--navy);
  font-size: 0.9rem;
}

.post-invite a {
  width: fit-content;
  margin-top: 0.35rem;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 850;
  border-bottom: 2px solid rgba(31, 111, 80, 0.22);
}

.update-card span,
.devotional-card span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--red-earth);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.devotional-layout {
  align-items: start;
}

.devotional-stack {
  display: grid;
  gap: 0.85rem;
}

.devotional-card {
  padding: 1.15rem;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(13, 43, 69, 0.06);
}

.prayer-section {
  background: var(--soft-blue);
}

.scripture-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.scripture-list article {
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.scripture-list strong,
.scripture-list span {
  display: block;
}

.scripture-list strong {
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.scripture-list span {
  color: var(--muted);
  font-size: 0.94rem;
}

.give-section {
  background:
    linear-gradient(90deg, rgba(13, 43, 69, 0.94), rgba(13, 43, 69, 0.78)),
    url("assets/photos/partner-church-mission-trip.jpeg") center / cover no-repeat,
    var(--navy);
  color: var(--paper);
}

.give-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 370px);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.give-section h2 {
  color: var(--paper);
}

.give-section .section-label {
  color: #f0bf65;
}

.give-section p {
  color: rgba(255, 255, 255, 0.82);
}

.fine-print {
  font-size: 0.9rem;
}

.give-actions {
  justify-content: flex-start;
  margin-top: 0;
}

.contact-section {
  background: var(--paper);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 780;
}

.hidden-field {
  display: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.82rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #c8d3d9;
  border-radius: 6px;
  font: inherit;
  font-size: 0.96rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(31, 111, 80, 0.18);
  border-color: var(--green);
}

.form-status {
  margin: 0;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-footer {
  color: var(--paper);
  background: #071727;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(120deg, rgba(16, 47, 74, 0.88), rgba(31, 111, 80, 0.78)),
    url("assets/photos/neighborhood-outreach-service.jpeg") center / cover;
}

.thank-you-card {
  max-width: 640px;
  padding: clamp(2rem, 5vw, 3rem);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(16, 47, 74, 0.24);
}

.thank-you-card .brand {
  margin-bottom: 2rem;
}

.thank-you-card h1 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 7vw, 4rem);
  line-height: 0.95;
}

.thank-you-card p:not(.section-label) {
  margin-bottom: 1.6rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
}

.footer-inner strong,
.footer-inner span {
  display: block;
}

.footer-inner span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 0.76rem;
    font-size: 0.86rem;
  }

  .ministry-grid,
  .updates-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .needs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) - 4px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.72rem 0.85rem;
    border-bottom: 0;
    border-radius: 6px;
  }

  .nav-dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    margin: 0.1rem 0 0.35rem 0.75rem;
    padding: 0.25rem;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-give {
    margin-top: 0.3rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 12vw, 3.28rem);
    line-height: 1.02;
    text-wrap: balance;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) - 4px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.72rem 0.85rem;
    border-bottom: 0;
    border-radius: 6px;
  }

  .nav-dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    margin: 0.1rem 0 0.35rem 0.75rem;
    padding: 0.25rem;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-give {
    margin-top: 0.3rem;
  }

  .hero {
    min-height: 78svh;
    background-position: center 16%;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 12vw, 3.28rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-verse {
    max-width: 420px;
  }

  .trust-grid,
  .two-column,
  .split-feature,
  .team-six-feature,
  .contact-layout,
  .prayer-grid,
  .devotional-layout,
  .scripture-inner,
  .give-panel {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    gap: 1px;
  }

  .portrait-frame,
  .large-photo {
    min-height: 390px;
  }

  .scripture-list {
    grid-template-columns: 1fr;
  }

  .mission-trip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trip-photo-large {
    grid-row: span 1;
  }

  .give-actions {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 3.6rem 0;
  }

  .hero-actions,
  .give-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .ministry-grid,
  .updates-list,
  .needs-grid,
  .mission-trip-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .need-card {
    min-height: auto;
  }

  .filter-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.2rem;
  }

  .filter-button {
    flex: 0 0 auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
