@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,600&family=DM+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #032d4f;
  --navy-deep: #011c34;
  --blue: #006d96;
  --green: #159a63;
  --green-dark: #087247;
  --cream: #f7f5ef;
  --white: #ffffff;
  --ink: #11243a;
  --muted: #617183;
  --line: #dce5e7;
  --shadow: 0 18px 55px rgba(3, 45, 79, 0.13);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 1000; background: var(--white); padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 16px; }
.eyebrow { margin: 0 0 8px; color: var(--green-dark); font-size: .78rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.section-title { margin: 0; color: var(--navy); font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif; font-size: clamp(2.25rem, 4.4vw, 4rem); font-weight: 700; line-height: 1.02; letter-spacing: -.035em; }
.lead { color: var(--muted); font-size: clamp(1rem, 1.8vw, 1.16rem); }
.section { padding: 90px 0; }
.section-soft { background: linear-gradient(145deg, #f8fbfa, #eef7f6); }
.section-dark { color: var(--white); background: radial-gradient(circle at 90% 15%, rgba(21,154,99,.28), transparent 30%), linear-gradient(135deg, var(--navy-deep), var(--navy)); }
.section-dark .section-title, .section-dark .eyebrow, .section-dark .lead { color: var(--white); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 22px; border: 0; border-radius: 999px; background: linear-gradient(135deg, var(--green), var(--blue)); color: var(--white); text-decoration: none; font-size: .86rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; box-shadow: 0 10px 30px rgba(0,109,150,.2); transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,109,150,.28); }
.btn-light { color: var(--navy); background: var(--white); }
.btn-outline { color: var(--navy); background: transparent; border: 1px solid rgba(3,45,79,.25); box-shadow: none; }
.btn svg { width: 17px; height: 17px; }

.announcement-bar { position: sticky; top: 0; z-index: 101; min-height: 38px; display: grid; place-items: center; padding: 7px 18px; color: var(--white); background: linear-gradient(90deg, var(--green-dark), var(--blue)); text-align: center; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.announcement-bar a { color: inherit; text-decoration: none; }
.announcement-bar a:hover { text-decoration: underline; text-underline-offset: 3px; }
.site-header { position: sticky; top: 38px; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(3,45,79,.08); box-shadow: 0 8px 30px rgba(3,45,79,.06); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 245px; }
.brand img { width: 62px; height: 54px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { color: var(--navy); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.25rem; letter-spacing: .025em; }
.brand-copy span { color: var(--green-dark); font-size: .62rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { position: relative; color: var(--navy); text-decoration: none; font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.main-nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--green); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.main-nav .btn { color: var(--white); padding-inline: 19px; }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: var(--navy); color: var(--white); border-radius: 12px; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: currentColor; }

.hero { position: relative; min-height: 760px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--navy); }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-slide:nth-child(2) img { object-position: center 30%; }
.hero-slide:nth-child(3) img, .hero-slide:nth-child(4) img, .hero-slide:nth-child(5) img { object-position: center 35%; }
.hero::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(1,28,52,.97) 0%, rgba(1,28,52,.88) 42%, rgba(1,28,52,.38) 75%, rgba(1,28,52,.25) 100%); }
.hero::after { content: ""; position: absolute; z-index: 1; inset: auto -10% -34% 35%; height: 72%; background: radial-gradient(ellipse, rgba(21,154,99,.55), transparent 67%); transform: rotate(-8deg); }
.hero-inner { position: relative; z-index: 2; padding: 100px 0 170px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: #bcebd4; font-size: .78rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.hero-kicker::before { content: ""; width: 44px; height: 2px; background: var(--green); }
.hero h1 { max-width: 780px; margin: 0; font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif; font-size: clamp(4rem, 9vw, 8.2rem); font-weight: 700; line-height: .82; letter-spacing: -.065em; }
.hero h1 em { display: block; color: #58d294; font-family: "Allura", "Segoe Script", "Brush Script MT", cursive; font-size: .8em; font-weight: 400; line-height: 1.05; transform: rotate(-3deg); }
.hero-copy { max-width: 650px; margin: 28px 0 30px; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn-outline { color: var(--white); border-color: rgba(255,255,255,.45); }
.hero-slide-dots { display: flex; gap: 9px; margin-top: 34px; }
.hero-slide-dots button { width: 30px; height: 4px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.42); cursor: pointer; transition: width .2s ease, background .2s ease; }
.hero-slide-dots button.is-active { width: 54px; background: #75e0a9; }
.service-bar { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; background: rgba(0,78,103,.92); border-top: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(12px); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.service-item { min-height: 112px; display: flex; align-items: center; gap: 15px; padding: 20px 28px; border-right: 1px solid rgba(255,255,255,.22); }
.service-item:last-child { border-right: 0; }
.service-icon { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; border-radius: 50%; color: #9ff2c8; background: rgba(255,255,255,.1); }
.service-icon svg { width: 24px; height: 24px; }
.service-item span { display: block; color: #cce5ec; font-size: .72rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.service-item strong { display: block; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.5rem; line-height: 1.15; }

.quick-links { position: relative; z-index: 5; margin-top: -22px; }
.quick-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.quick-card { min-height: 142px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 18px 12px; text-align: center; text-decoration: none; background: var(--white); border: 1px solid rgba(3,45,79,.08); border-radius: 16px; box-shadow: var(--shadow); transition: transform .2s ease, border-color .2s ease; }
.quick-card:hover { transform: translateY(-5px); border-color: rgba(21,154,99,.5); }
.quick-card svg { width: 30px; height: 30px; color: var(--blue); }
.quick-card strong { color: var(--navy); font-size: .88rem; letter-spacing: .03em; text-transform: uppercase; }
.quick-card span { color: var(--muted); font-size: .78rem; }

.welcome-grid, .pastor-grid, .visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.welcome-copy p { max-width: 650px; }
.welcome-mark { position: relative; min-height: 470px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.welcome-mark img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.welcome-mark::after { content: "Faith. Family. Community."; position: absolute; left: 22px; right: 22px; bottom: 22px; padding: 22px 24px; color: var(--white); background: rgba(1,28,52,.84); border: 1px solid rgba(255,255,255,.2); border-radius: 16px; font-family: Georgia, serif; font-size: clamp(1.35rem, 3vw, 2rem); backdrop-filter: blur(10px); }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 38px; }
.value { padding: 18px; border-top: 3px solid var(--green); background: rgba(255,255,255,.8); box-shadow: 0 10px 30px rgba(3,45,79,.06); }
.value strong { display: block; color: var(--navy); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.3rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.feature { position: relative; min-height: 360px; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); background: var(--navy); border-right: 1px solid rgba(255,255,255,.45); }
.feature:last-child { border-right: 0; }
.feature::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(1,28,52,.96), rgba(1,28,52,.12)); transition: transform .35s ease; }
.feature:nth-child(1) { background: url('../images/community-honorees.jpg') center/cover; }
.feature:nth-child(2) { background: url('../images/pastor-speaking.jpg') center/cover; }
.feature:nth-child(3) { background: url('../images/church-fellowship.jpg') center/cover; }
.feature:hover::before { transform: translateY(-6px); }
.feature-content { position: relative; z-index: 1; padding: 36px; }
.feature-content h3 { margin: 0 0 8px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.05rem; }
.feature-content p { margin: 0 0 20px; color: #e5f1f3; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: inherit; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }

.pastor-portrait { position: relative; min-height: 650px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; background: radial-gradient(circle at 50% 35%, #0b7392, var(--navy-deep) 68%); border-radius: 40% 40% 18px 18px; }
.pastor-portrait::before { content: ""; position: absolute; width: 76%; aspect-ratio: 1; top: 7%; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.pastor-portrait img { position: relative; z-index: 1; width: 94%; max-height: 620px; object-fit: contain; object-position: bottom; }
.pastor-copy .signature { margin: 0 0 4px; color: var(--green-dark); font-family: "Allura", "Segoe Script", "Brush Script MT", cursive; font-size: 2.7rem; }
.pastor-copy h2 { margin-bottom: 24px; }
.pastor-copy p { color: var(--muted); }

.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 210px; gap: 12px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; border-radius: 14px; background: #dce6e6; }
.gallery-grid figure:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-grid figure:nth-child(2) { grid-column: span 7; }
.gallery-grid figure:nth-child(3), .gallery-grid figure:nth-child(4) { grid-column: span 3; }
.gallery-grid figure:nth-child(5) { grid-column: span 4; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.04); }

.page-hero { position: relative; min-height: 390px; display: grid; align-items: center; color: var(--white); overflow: hidden; background: var(--navy-deep); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(1,28,52,.96), rgba(1,28,52,.55)), var(--page-image, url('../images/worship-community.jpg')) center/cover; }
.page-hero .container { position: relative; z-index: 1; padding-block: 82px; }
.page-hero h1 { max-width: 850px; margin: 0 0 14px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(3.5rem, 8vw, 7rem); line-height: .9; letter-spacing: -.05em; }
.page-hero p { max-width: 700px; margin: 0; color: #d9eaee; font-size: 1.15rem; }
.content-narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.prose h2 { color: var(--navy); font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.35rem; }
.prose p { color: #475d70; }
.history-grid, .leadership-couple { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.history-image { min-height: 680px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.history-image img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; }
.leadership-couple { grid-template-columns: 1.1fr .9fr; }
.leadership-couple p { max-width: 650px; color: #d7e8ec; }
.couple-photo { max-height: 660px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 220px 220px 24px 24px; box-shadow: 0 25px 70px rgba(0,0,0,.28); }
.couple-photo img { width: 100%; height: 660px; object-fit: cover; object-position: center 30%; }
.ministry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.ministry-card { min-height: 160px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 10px 30px rgba(3,45,79,.06); }
.ministry-card span { display: inline-grid; place-items: center; width: 36px; height: 36px; margin-bottom: 18px; color: var(--white); background: linear-gradient(135deg, var(--green), var(--blue)); border-radius: 50%; font-size: .8rem; font-weight: 800; }
.ministry-card h3 { margin: 0; color: var(--navy); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.55rem; }
.media-card { display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; background: var(--navy-deep); border-radius: var(--radius); box-shadow: var(--shadow); }
.media-card img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.media-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 55px; color: var(--white); }
.media-copy h2 { color: var(--white); }
.media-copy p { color: #d7e7eb; }
.event-placeholder { padding: 62px; text-align: center; background: linear-gradient(145deg, #f0faf6, #edf4f7); border: 1px solid var(--line); border-radius: var(--radius); }
.event-placeholder svg { width: 56px; height: 56px; color: var(--green-dark); }
.event-placeholder h2 { margin: 14px 0 8px; color: var(--navy); font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.6rem; }
.event-feature { display: grid; grid-template-columns: 1.12fr .88fr; overflow: hidden; background: #1c0835; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.event-flyer { position: relative; align-self: center; aspect-ratio: 16 / 9; overflow: hidden; background: #1c0835; }
.event-flyer img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.event-details { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 58px; background: var(--white); }
.event-meta { width: 100%; display: grid; gap: 14px; margin: 26px 0; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.event-meta div { display: grid; grid-template-columns: 82px 1fr; gap: 16px; }
.event-meta span { color: var(--green-dark); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.event-meta strong { color: var(--navy); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.contact-panel { padding: 38px; color: var(--white); background: linear-gradient(145deg, var(--navy), var(--navy-deep)); border-radius: var(--radius); }
.contact-panel h2 { color: var(--white); }
.contact-list { display: grid; gap: 20px; margin-top: 26px; }
.contact-list a, .contact-list div { display: flex; align-items: flex-start; gap: 14px; text-decoration: none; }
.contact-list svg { width: 22px; height: 22px; flex: 0 0 22px; margin-top: 2px; color: #83deb0; }
.map { min-height: 520px; overflow: hidden; background: #dfe8e8; border-radius: var(--radius); }
.map iframe { width: 100%; height: 100%; min-height: 520px; border: 0; }
.visit-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 28px; }
.visit-card { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.visit-card h3 { margin: 0 0 8px; color: var(--navy); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.45rem; }

.fund-home { position: relative; overflow: hidden; color: var(--white); background: var(--navy-deep); }
.fund-home-grid { min-height: 610px; display: grid; grid-template-columns: .92fr 1.08fr; }
.fund-home-copy { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 80px max(40px, calc((100vw - var(--max)) / 2)); padding-right: 70px; background: radial-gradient(circle at 0 0, rgba(21,154,99,.32), transparent 35%), linear-gradient(135deg, var(--navy-deep), var(--navy)); }
.fund-home-copy .eyebrow, .fund-home-copy .section-title { color: var(--white); }
.fund-home-copy p { max-width: 610px; color: #d7e8ec; }
.fund-home-image { position: relative; min-height: 500px; }
.fund-home-image img { width: 100%; height: 100%; object-fit: cover; }
.fund-home-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,45,79,.45), transparent 45%); }
.fund-home-badge { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px; padding: 10px 14px; color: #dff8eb; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.17); border-radius: 999px; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.fund-hero { position: relative; min-height: 760px; display: grid; align-items: end; overflow: hidden; color: var(--white); background: var(--navy-deep); }
.fund-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(1,28,52,.96) 2%, rgba(1,28,52,.5) 48%, rgba(1,28,52,.2) 100%), url('../images/new-campus-sanctuary.jpg') center/cover; transform: scale(1.01); }
.fund-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 25%, rgba(21,154,99,.35), transparent 32%); }
.fund-hero-content { position: relative; z-index: 1; max-width: 900px; padding: 100px 0 90px; }
.fund-hero h1 { margin: 0 0 18px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(4.4rem, 10vw, 9rem); line-height: .8; letter-spacing: -.06em; }
.fund-hero h1 span { display: block; color: #6be0a2; font-family: "Allura", cursive; font-size: .72em; font-weight: 400; transform: rotate(-2deg); }
.fund-hero p { max-width: 660px; color: #e6f1f4; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.legacy-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.legacy-quote { position: relative; padding: 55px; color: var(--white); background: linear-gradient(145deg, var(--green-dark), var(--blue)); border-radius: var(--radius); box-shadow: var(--shadow); }
.legacy-quote::before { content: "“"; position: absolute; top: -20px; left: 28px; color: rgba(255,255,255,.18); font-family: Georgia, serif; font-size: 9rem; line-height: 1; }
.legacy-quote p { position: relative; margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 600; line-height: 1.12; }
.campus-quote { padding: 0; overflow: hidden; }
.campus-quote::before { display: none; }
.campus-quote img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.campus-quote p { padding: 38px 42px 46px; }
.give-panel { max-width: 960px; margin-inline: auto; padding: 70px; text-align: center; color: var(--white); background: radial-gradient(circle at 50% 0, rgba(21,154,99,.42), transparent 42%), linear-gradient(145deg, var(--navy), var(--navy-deep)); border-radius: 32px; box-shadow: var(--shadow); }
.give-panel .section-title { color: var(--white); }
.give-panel p { max-width: 720px; margin-inline: auto; color: #d7e8ec; }
.giving-choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 34px; text-align: left; }
.giving-choice { padding: 30px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 20px; }
.giving-choice > span { display: inline-grid; place-items: center; width: 34px; height: 34px; color: var(--navy-deep); background: #7ce2ad; border-radius: 50%; font-size: .75rem; font-weight: 800; }
.giving-choice h3 { margin: 18px 0 8px; color: var(--white); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.75rem; line-height: 1.05; }
.giving-choice p { min-height: 76px; margin: 0 0 22px; font-size: .92rem; }
.giving-choice .btn { width: 100%; padding-inline: 14px; font-size: .75rem; }
.secure-note { margin-top: 18px !important; font-size: .82rem; opacity: .86; }

.cta { padding: 84px 0; text-align: center; color: var(--white); background: radial-gradient(circle at 15% 50%, rgba(21,154,99,.45), transparent 32%), linear-gradient(135deg, var(--navy-deep), var(--blue)); }
.cta h2 { max-width: 800px; margin: 0 auto 14px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 1; }
.cta p { max-width: 650px; margin: 0 auto 26px; color: #d9edf2; }
.site-footer { color: #d8e8ec; background: #001728; }
.footer-main { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 70px; padding: 64px 0 45px; }
.footer-brand img { width: 180px; max-height: 130px; padding: 6px; object-fit: contain; background: var(--white); border-radius: 12px; }
.footer-brand p { max-width: 430px; }
.footer-title { color: var(--white); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #d8e8ec; text-decoration: none; }
.footer-links a:hover { color: #80deb0; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; background: rgba(255,255,255,.08); border-radius: 50%; }
.socials svg { width: 20px; height: 20px; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); color: #9cb2bd; font-size: .82rem; }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .main-nav { position: fixed; inset: 122px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 26px 28px 60px; overflow-y: auto; background: rgba(1,28,52,.99); transform: translateX(100%); transition: transform .25s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 17px 8px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.12); }
  .main-nav a:not(.btn)::after { display: none; }
  .main-nav .btn { margin-top: 18px; border-bottom: 0; }
  .hero { min-height: 820px; }
  .hero::before { background: linear-gradient(90deg, rgba(1,28,52,.97), rgba(1,28,52,.65)); }
  .hero-slide img { object-position: 60% center; }
  .hero-inner { padding-top: 72px; padding-bottom: 260px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-item { min-height: 70px; padding: 12px 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .service-item:last-child { border-bottom: 0; }
  .service-icon { width: 38px; height: 38px; flex-basis: 38px; }
  .service-item strong { font-size: 1.15rem; }
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .welcome-grid, .pastor-grid, .visit-grid, .media-card, .contact-grid, .history-grid, .leadership-couple, .event-feature { grid-template-columns: 1fr; gap: 42px; }
  .fund-home-grid, .legacy-grid { grid-template-columns: 1fr; }
  .fund-home-copy { padding: 75px max(36px, calc((100vw - var(--max)) / 2)); }
  .fund-home-image { min-height: 440px; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .pastor-portrait { min-height: 560px; }
  .history-image, .history-image img { min-height: 520px; }
  .couple-photo { max-width: 620px; margin-inline: auto; }
  .event-flyer { min-height: 0; max-height: none; aspect-ratio: 16 / 9; }
  .event-flyer img { min-height: 0; height: 100%; object-fit: cover; object-position: center; transform: none; }
  .ministry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 68px 0; }
  .nav-wrap { min-height: 74px; }
  .main-nav { top: 112px; }
  .brand { min-width: 0; }
  .brand img { width: 50px; height: 44px; }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy span { font-size: .48rem; }
  .hero { min-height: 850px; }
  .hero h1 { font-size: clamp(3.7rem, 20vw, 5.6rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-slide-dots { margin-top: 24px; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-card { min-height: 128px; }
  .welcome-grid, .pastor-grid { gap: 34px; }
  .welcome-mark, .welcome-mark img { min-height: 360px; }
  .values { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { min-height: 310px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.4); }
  .pastor-portrait { min-height: 470px; border-radius: 150px 150px 18px 18px; }
  .gallery-head { align-items: flex-start; flex-direction: column; }
  .gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .gallery-grid figure, .gallery-grid figure:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-grid figure:nth-child(1) { grid-column: 1 / -1; }
  .page-hero { min-height: 330px; }
  .page-hero .container { padding-block: 60px; }
  .ministry-grid { grid-template-columns: 1fr; }
  .media-copy { padding: 36px 26px; }
  .event-details { padding: 38px 24px; }
  .event-meta div { grid-template-columns: 1fr; gap: 2px; }
  .event-placeholder { padding: 44px 22px; }
  .visit-cards { grid-template-columns: 1fr; }
  .contact-panel { padding: 28px; }
  .fund-home-copy { padding: 62px 28px; }
  .fund-home-image { min-height: 320px; }
  .fund-hero { min-height: 650px; }
  .fund-hero-content { padding: 76px 0 64px; }
  .legacy-quote, .give-panel { padding: 42px 24px; }
  .campus-quote { padding: 0; }
  .campus-quote p { padding: 30px 24px 36px; }
  .couple-photo img { height: 520px; }
  .giving-choices { grid-template-columns: 1fr; }
  .giving-choice p { min-height: 0; }
  .map, .map iframe { min-height: 400px; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
