:root {
  --night: #0e0b08;
  --night-2: #17110d;
  --charcoal: #211a15;
  --mahogany: #402018;
  --gold: #c9a35f;
  --gold-2: #f0d99d;
  --cream: #f7f0e3;
  --linen: #ede2cf;
  --stone: #bcb0a2;
  --muted: #756b61;
  --ink: #1a1511;
  --white: #fffdf8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 26px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.section-shell {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}
.narrow { max-width: 880px; text-align: center; }
.sr-only, .hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 20px;
  background: linear-gradient(90deg, #0a0807, #241811, #0a0807);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(240, 217, 157, 0.22);
}
.announcement span:not(:last-child)::after {
  content: "•";
  margin-left: 18px;
  color: rgba(240, 217, 157, 0.55);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(247, 240, 227, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(32, 25, 18, 0.09);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--night);
  background: radial-gradient(circle at 35% 20%, var(--gold-2), var(--gold));
  font-family: "Cormorant Garamond", serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 30px rgba(109, 72, 23, 0.22);
}
.brand-text {
  display: grid;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  color: var(--night);
}
.brand-text small {
  margin-top: 5px;
  font-family: "Inter", sans-serif;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #302722;
  font-size: 0.93rem;
  font-weight: 700;
}
.site-nav a {
  position: relative;
  opacity: 0.9;
}
.site-nav a:hover, .site-nav a.active { color: #000; opacity: 1; }
.site-nav a.active::after,
.site-nav a:not(.nav-cta):hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -7px;
  height: 2px;
  background: var(--gold);
}
.nav-cta {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--night);
  color: var(--gold-2) !important;
  border: 1px solid rgba(201, 163, 95, 0.42);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(32, 25, 18, 0.2);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--night);
}

.hero, .page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 10%, rgba(201, 163, 95, 0.28), transparent 28%),
    radial-gradient(circle at 5% 35%, rgba(80, 32, 24, 0.45), transparent 26%),
    linear-gradient(135deg, #0b0806 0%, #1c120d 46%, #080605 100%);
  color: var(--white);
}
.hero-home { min-height: 760px; display: grid; align-items: center; }
.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 85%);
}
.hero-glow {
  position: absolute;
  right: -170px;
  top: 15%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(201, 163, 95, 0.12);
  filter: blur(6px);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  gap: 62px;
  align-items: center;
  padding: 82px 0 90px;
}
.eyebrow, .section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
}
h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}
h1 { font-size: clamp(3.4rem, 7vw, 6.5rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2.25rem, 4.4vw, 4.15rem); letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; }
p { margin: 0; }
.hero-lede {
  max-width: 735px;
  margin-top: 24px;
  color: #e9dece;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}
.centered-actions { justify-content: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  color: var(--night);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 42px rgba(201, 163, 95, 0.2);
}
.button.secondary {
  color: var(--white);
  border-color: rgba(240, 217, 157, 0.35);
  background: rgba(255, 255, 255, 0.06);
}
.button.ghost {
  color: var(--night);
  border-color: rgba(26, 21, 17, 0.18);
  background: var(--cream);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(240, 217, 157, 0.24);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
  font-weight: 800;
}
.hero-card {
  position: relative;
  border: 1px solid rgba(240, 217, 157, 0.26);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: calc(var(--radius) + 10px);
  background: linear-gradient(145deg, rgba(201, 163, 95, 0.22), transparent 55%);
}
.hero-card img {
  width: 100%;
  min-height: 520px;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  filter: saturate(0.96) contrast(1.03);
}
.hero-quote {
  position: absolute;
  left: -28px;
  right: 28px;
  bottom: 32px;
  padding: 24px;
  border: 1px solid rgba(240, 217, 157, 0.22);
  border-radius: 20px;
  color: var(--night);
  background: rgba(247, 240, 227, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.hero-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
}
.hero-quote span {
  display: block;
  margin-top: 9px;
  color: #735326;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-band {
  padding: 58px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(32, 25, 18, 0.08);
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.3fr 1fr 0.75fr;
  gap: 28px;
  align-items: start;
}
.intro-grid h2 {
  color: var(--night);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}
.intro-grid p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.split-section { padding: 96px 0; }
.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}
.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading h2 { color: var(--night); }
.pillar-grid, .values-grid, .services-grid, .giving-grid, .media-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pillar-card, .value-card, .service-card, .giving-card, .media-card {
  padding: 28px;
  border: 1px solid rgba(32, 25, 18, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 50px rgba(58, 39, 17, 0.065);
}
.pillar-card span, .service-card span, .giving-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pillar-card h3, .value-card h3, .media-card h3 {
  margin-bottom: 14px;
  color: var(--night);
}
.pillar-card p, .value-card p, .service-card p, .giving-card p, .media-card p { color: var(--muted); }

.feature-section, .values-section, .process-section {
  padding: 96px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 0%, rgba(201, 163, 95, 0.2), transparent 32%),
    linear-gradient(135deg, #0c0907, #231610 55%, #0d0907);
}
.feature-grid, .process-grid, .watch-grid, .contact-grid, .about-grid, .giving-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}
.feature-copy h2, .process-section h2 { color: var(--white); }
.feature-copy p, .process-section p { color: #e2d6c7; }
.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--gold-2);
  font-weight: 900;
}
.video-frame {
  overflow: hidden;
  border: 1px solid rgba(240, 217, 157, 0.22);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-frame.large { width: 100%; }

.callout-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 96px;
  margin-bottom: 96px;
  padding: 44px;
  border-radius: var(--radius);
  color: var(--night);
  background: linear-gradient(135deg, var(--gold-2), #d2ab67 72%, #b9883b);
  box-shadow: 0 24px 80px rgba(109, 72, 23, 0.18);
}
.callout-panel .eyebrow { color: #5d3d12; }
.callout-panel h2 { max-width: 760px; }
.callout-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

.page-hero {
  padding: 106px 0 98px;
}
.page-hero .section-shell { position: relative; z-index: 1; }
.page-hero h1 {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(3rem, 6vw, 5.8rem);
}
.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
  color: #e3d7c8;
  font-size: 1.13rem;
}
.compact-hero { padding-bottom: 86px; }

.about-grid { padding: 96px 0; }
.portrait-panel {
  border: 1px solid rgba(32, 25, 18, 0.1);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--white);
  box-shadow: 0 26px 80px rgba(58, 39, 17, 0.13);
}
.portrait-panel img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
}
.rich-copy p { color: var(--muted); margin-top: 20px; }
.signature-card {
  margin-top: 28px;
  padding: 24px;
  border-left: 4px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(58, 39, 17, 0.06);
}
.signature-card strong, .signature-card span { display: block; }
.signature-card strong { color: var(--gold); letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
.signature-card span { margin-top: 8px; font-family: "Cormorant Garamond", serif; font-size: 2rem; line-height: 1.1; font-weight: 700; }
.values-section .section-heading h2 { color: var(--white); }
.values-grid { margin-top: 34px; }
.value-card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(240, 217, 157, 0.18);
  box-shadow: none;
}
.value-card h3 { color: var(--gold-2); }
.value-card p { color: #e2d6c7; }
.nonprofit-panel, .stewardship-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  margin-bottom: 96px;
  padding: 42px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 80px rgba(58, 39, 17, 0.09);
}
.nonprofit-panel p:not(.eyebrow), .stewardship-panel p:not(.eyebrow) { color: var(--muted); margin-top: 16px; }
.ein-box {
  min-width: 220px;
  padding: 28px;
  border-radius: 22px;
  color: var(--white);
  background: var(--night);
  text-align: center;
}
.ein-box.light { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--night); }
.ein-box span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ein-box.light span { color: #5a3f16; }
.ein-box strong { font-size: 1.45rem; }

.services-grid { grid-template-columns: repeat(3, 1fr); padding: 96px 0; }
.service-card { min-height: 310px; background: var(--white); }
.service-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 2.4vw, 2.45rem);
}
.process-grid { align-items: start; }
.steps { display: grid; gap: 16px; }
.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(240, 217, 157, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}
.step span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--night);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
}
.step h3 { color: var(--gold-2); margin-bottom: 6px; }

.watch-grid { padding: 96px 0 44px; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .65fr); align-items: stretch; }
.watch-aside {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 80px rgba(58, 39, 17, 0.09);
}
.watch-aside p { color: var(--muted); margin-top: 16px; }
.platform-list, .contact-list { display: grid; gap: 12px; margin-top: 28px; }
.platform-list a, .contact-list a {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(32, 25, 18, 0.1);
  border-radius: 16px;
  background: rgba(247, 240, 227, 0.62);
}
.platform-list span, .contact-list span { color: var(--muted); font-size: .92rem; }
.media-cards { grid-template-columns: repeat(3, 1fr); padding-bottom: 96px; }

.give-hero, .contact-hero, .thank-you-hero {
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 163, 95, 0.22), transparent 36%),
    linear-gradient(135deg, #0b0806 0%, #24150f 52%, #0b0806 100%);
}
.giving-grid { grid-template-columns: repeat(3, 1fr); padding: 96px 0 32px; }
.giving-card { min-height: 260px; background: var(--white); }
.stewardship-panel { margin-top: 20px; }
.fine-print { font-size: .84rem; color: rgba(247, 240, 227, .66); line-height: 1.55; }
.fine-print.dark { color: var(--muted); }

.contact-grid { align-items: start; padding: 96px 0; }
.contact-copy {
  padding: 38px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 80px rgba(58, 39, 17, 0.09);
}
.contact-copy p { color: var(--muted); margin-top: 16px; }
.contact-form {
  display: grid;
  gap: 18px;
  padding: 38px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 163, 95, 0.18), transparent 35%),
    linear-gradient(135deg, #11100e, #25170f);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(240, 217, 157, 0.22);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}
.contact-form select option { color: #111; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(201, 163, 95, 0.14);
}
.form-button { justify-self: start; border: 0; cursor: pointer; }

.site-footer {
  color: var(--white);
  background: #0a0807;
  border-top: 1px solid rgba(240, 217, 157, 0.16);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .6fr .9fr .75fr;
  gap: 36px;
  padding: 58px 0 38px;
}
.footer-brand {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
}
.site-footer h3 {
  margin-bottom: 15px;
  color: var(--gold-2);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-footer p { color: #d7cab9; margin-bottom: 12px; }
.site-footer a:not(.footer-brand):not(.footer-button) {
  display: block;
  margin-bottom: 10px;
  color: #d7cab9;
}
.site-footer a:hover { color: var(--gold-2); }
.footer-button {
  display: inline-flex;
  margin-top: 8px;
  padding: 12px 15px;
  border: 1px solid rgba(240, 217, 157, 0.28);
  border-radius: 999px;
  color: var(--gold-2);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #bcb0a2;
  font-size: .88rem;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 90px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border-radius: 24px;
    background: rgba(247, 240, 227, 0.98);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .site-nav a.active::after, .site-nav a:not(.nav-cta):hover::after { display: none; }
  .hero-grid, .intro-grid, .feature-grid, .process-grid, .watch-grid, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-home { min-height: auto; }
  .hero-card { max-width: 620px; }
  .hero-quote { left: 22px; right: 22px; }
  .pillar-grid, .values-grid, .services-grid, .giving-grid, .media-cards, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .callout-panel, .nonprofit-panel, .stewardship-panel { grid-template-columns: 1fr; }
}

@media (max-width: 690px) {
  .section-shell { width: min(100% - 28px, var(--max)); }
  .announcement { font-size: .68rem; gap: 8px; }
  .announcement span:not(:last-child)::after { display: none; }
  .site-header { padding: 14px; }
  .brand-text { font-size: 1.25rem; }
  .brand-text small { font-size: .55rem; }
  .brand-mark { width: 46px; height: 46px; }
  .hero-grid { padding: 56px 0 68px; gap: 36px; }
  h1 { font-size: clamp(3rem, 16vw, 4rem); }
  h2 { font-size: clamp(2rem, 11vw, 3rem); }
  .hero-card img { min-height: 430px; }
  .hero-quote { position: static; margin-top: -8px; }
  .intro-band, .split-section, .feature-section, .values-section, .process-section, .about-grid, .services-grid, .watch-grid, .contact-grid { padding: 64px 0; }
  .pillar-grid, .values-grid, .services-grid, .giving-grid, .media-cards, .footer-grid { grid-template-columns: 1fr; }
  .callout-panel, .nonprofit-panel, .stewardship-panel, .contact-form, .contact-copy { padding: 28px; }
  .callout-panel { margin: 64px auto; }
  .page-hero { padding: 76px 0 72px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* Premium ministry graphics */
.brand-graphic-section {
  padding: 34px 0 78px;
  background:
    radial-gradient(circle at 12% 0%, rgba(240, 217, 157, 0.22), transparent 36%),
    linear-gradient(180deg, #17110d 0%, var(--cream) 24%, var(--cream) 100%);
}
.compact-brand-art {
  padding: 42px 0 0;
  background: var(--cream);
}
.brand-graphic,
.graphic-card,
.support-graphic {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 163, 95, 0.28);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 90px rgba(58, 39, 17, 0.16);
}
.brand-graphic {
  margin: 0;
  padding: 10px;
}
.brand-graphic::before,
.graphic-card::before,
.support-graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.42);
  z-index: 2;
}
.brand-graphic picture,
.graphic-card picture,
.support-graphic picture { display: block; }
.brand-graphic img,
.graphic-card img,
.support-graphic img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 12px);
}
.support-graphic {
  margin-top: 96px;
  margin-bottom: 22px;
}
.support-graphic img { border-radius: 0; }
.support-graphic-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 24px 28px;
  border-top: 1px solid rgba(201, 163, 95, 0.2);
  background:
    radial-gradient(circle at 10% 10%, rgba(240, 217, 157, 0.28), transparent 32%),
    var(--white);
}
.support-graphic-footer p {
  max-width: 560px;
  color: var(--night);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
}
.support-graphic-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
.support-graphic + .callout-panel { margin-top: 38px; }
.support-graphic + .giving-grid { padding-top: 64px; }

.visual-devotional-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(201, 163, 95, 0.18), transparent 34%),
    linear-gradient(135deg, #fffdf8 0%, #efe1c7 100%);
  border-top: 1px solid rgba(32, 25, 18, 0.08);
  border-bottom: 1px solid rgba(32, 25, 18, 0.08);
}
.visual-devotional-grid,
.quote-graphic-row {
  display: grid;
  align-items: center;
  gap: 42px;
}
.visual-devotional-grid {
  grid-template-columns: minmax(290px, 0.86fr) minmax(0, 1fr);
}
.devotional-copy-card,
.quote-graphic-copy {
  padding: 36px;
  border: 1px solid rgba(32, 25, 18, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 22px 70px rgba(58, 39, 17, 0.085);
}
.devotional-copy-card h2,
.quote-graphic-copy h2 {
  color: var(--night);
  font-size: clamp(2rem, 3.6vw, 3.55rem);
}
.devotional-copy-card p:not(.eyebrow),
.quote-graphic-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}
.dark-link { color: #6f4e1c; }
.quote-graphic-row {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  padding: 96px 0;
}
.quote-graphic-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
}
.compact-graphic img {
  max-height: 650px;
  object-fit: cover;
}
.compact-brand-art + .watch-grid,
.compact-brand-art + .contact-grid { padding-top: 64px; }

@media (max-width: 1020px) {
  .visual-devotional-grid,
  .quote-graphic-row,
  .quote-graphic-row.reverse { grid-template-columns: 1fr; }
  .quote-graphic-row.reverse .quote-graphic-copy { order: 2; }
  .quote-graphic-row.reverse .graphic-card { order: 1; }
  .support-graphic-footer { align-items: flex-start; }
}

@media (max-width: 690px) {
  .brand-graphic-section { padding: 24px 0 54px; }
  .compact-brand-art { padding: 28px 0 0; }
  .brand-graphic { padding: 6px; border-radius: 20px; }
  .brand-graphic img,
  .graphic-card img,
  .support-graphic img { border-radius: 14px; }
  .visual-devotional-section { padding: 64px 0; }
  .devotional-copy-card,
  .quote-graphic-copy { padding: 28px; }
  .quote-graphic-row { padding: 64px 0; }
  .support-graphic { margin: 64px auto 10px; border-radius: 20px; }
  .support-graphic img { border-radius: 0; }
  .support-graphic-footer {
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
  }
  .support-graphic-footer div { justify-content: flex-start; }
  .support-graphic + .callout-panel { margin-top: 32px; }
  .support-graphic + .giving-grid { padding-top: 52px; }
}
