:root {
  --black: #070707;
  --ink: #111111;
  --red: #e20d18;
  --red-dark: #9f0710;
  --silver: #d7d7d7;
  --white: #ffffff;
  --muted: #b8b8b8;
  --panel: #151515;
  --line: rgba(255,255,255,.12);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5,5,5,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; font-weight: 850; letter-spacing: .055em; }
.brand-mark { width: 38px; height: 38px; border: 2px solid var(--red); border-radius: 50%; display: grid; place-items: center; color: var(--red); font-family: Georgia,serif; }
.brand small { display: block; color: var(--muted); font-size: .7rem; letter-spacing: .18em; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: .3rem; }
.nav-links a { padding: .7rem .85rem; text-decoration: none; color: #ddd; font-size: .92rem; font-weight: 700; border-radius: .3rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,.07); }
.nav-links .donate-link { background: var(--red); color: white; margin-left: .4rem; }
.nav-links .donate-link:hover, .nav-links .donate-link[aria-current="page"] { background: #ff1823; }
.menu-button { display: none; border: 1px solid var(--line); background: transparent; color: white; width: 46px; height: 42px; border-radius: .35rem; font-size: 1.4rem; }

.hero {
  min-height: 690px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #000 url("sog-logo.png") center 45% / min(1180px, 96vw) auto no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.32) 50%, rgba(0,0,0,.88) 100%),
              linear-gradient(0deg, #070707 0%, transparent 38%, rgba(0,0,0,.38) 100%);
}
.hero-content { min-width: 0; padding: 7rem 0 4rem; align-self: end; }
.hero-copy { min-width: 0; max-width: 680px; }
.eyebrow { color: #ff3740; text-transform: uppercase; letter-spacing: .18em; font-weight: 850; font-size: .78rem; }
.hero-copy > .eyebrow {
  display: block;
  max-width: 100%;
  margin-bottom: 1rem;
  padding-block: .15em;
  font-size: .875rem;
  line-height: 1.65;
  white-space: normal;
  overflow-wrap: anywhere;
  text-shadow: 0 2px 8px #000;
}
h1,h2,h3 { margin: 0 0 1rem; line-height: 1.08; }
h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 8vw, 6.8rem); max-width: 800px; letter-spacing: -.035em; }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 5vw, 3.75rem); }
h3 { font-size: 1.2rem; }
.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #e1e1e1; max-width: 720px; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .75rem 1.2rem; text-decoration: none; font-weight: 800; border: 1px solid transparent; border-radius: .3rem; }
.button-primary { background: var(--red); color: white; }
.button-primary:hover { background: #ff1722; }
.button-secondary { border-color: rgba(255,255,255,.35); background: rgba(0,0,0,.45); }
.button-secondary:hover { border-color: white; background: rgba(255,255,255,.08); }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-alt { background: #0e0e0e; }
.section-heading { max-width: 760px; margin-bottom: 2.4rem; }
.section-heading p { color: var(--muted); font-size: 1.1rem; }
.red-rule { display: block; width: 74px; height: 4px; background: var(--red); margin-bottom: 1.2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(2rem,5vw,5rem); align-items: center; }
.cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.card { background: var(--panel); border: 1px solid var(--line); padding: 1.5rem; border-radius: .45rem; }
.card-number { color: var(--red); font-weight: 900; letter-spacing: .12em; font-size: .8rem; }
.card p { color: #c3c3c3; margin-bottom: 0; }
.scripture { border-left: 4px solid var(--red); padding: .5rem 0 .5rem 1.5rem; font-family: Georgia,serif; font-size: clamp(1.4rem,3vw,2.15rem); line-height: 1.35; }
.scripture cite { display: block; margin-top: 1rem; color: var(--muted); font-family: Inter,sans-serif; font-style: normal; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; }

.page-hero { padding: clamp(5rem,10vw,8rem) 0 4rem; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 10%, rgba(226,13,24,.24), transparent 35%), #090909; }
.page-hero::after { content:""; position:absolute; right:-120px; top:-250px; width:500px; height:500px; border:1px solid rgba(226,13,24,.3); border-radius:50%; box-shadow:0 0 0 55px rgba(226,13,24,.04),0 0 0 110px rgba(226,13,24,.025); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(3rem,8vw,6rem); }
.prose { max-width: 780px; color: #d0d0d0; font-size: 1.05rem; }
.goal-list { display: grid; gap: .9rem; margin: 0; padding: 0; list-style: none; }
.goal-list li { position: relative; padding: 1rem 1rem 1rem 3.2rem; background: var(--panel); border: 1px solid var(--line); }
.goal-list li::before { content: "✦"; position: absolute; left: 1.15rem; top: 1rem; color: var(--red); }

.ministry-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.ministry-card { min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(145deg,#1b1b1b,#0c0c0c); border: 1px solid var(--line); padding: 2rem; position: relative; overflow: hidden; }
.ministry-card::before { content: attr(data-number); position: absolute; right: 1rem; top: -.8rem; color: rgba(255,255,255,.035); font-size: 8rem; font-weight: 900; line-height: 1; }
.ministry-card:last-child { grid-column: 1 / -1; }

.donate-panel { max-width: 860px; margin-inline: auto; text-align: center; padding: clamp(2rem,6vw,4rem); background: linear-gradient(145deg,#171717,#0b0b0b); border: 1px solid rgba(226,13,24,.45); box-shadow: 0 20px 80px rgba(0,0,0,.35); }
.donate-panel p { color: #ccc; max-width: 650px; margin-inline: auto; }
.notice { margin-top: 1.6rem; padding: 1rem; color: #d8d8d8; background: rgba(255,255,255,.05); border: 1px solid var(--line); font-size: .95rem; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.2rem; }
.contact-card { background: var(--panel); border: 1px solid var(--line); padding: 2rem; }
.contact-item { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border: 0; }
.contact-item span { display: block; color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.contact-item a { text-decoration-color: var(--red); text-underline-offset: 4px; }

.site-footer { border-top: 1px solid var(--line); padding: 2.4rem 0; background: #040404; }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--muted); font-size: .9rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-nav a { text-decoration: none; }
.footer-nav a:hover { color: white; }

@media (max-width: 820px) {
  .menu-button { display: block; }
  .nav-links { display: none; position: absolute; top: 76px; left: 0; right: 0; padding: .75rem 1rem 1rem; background: #090909; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8rem 1rem; }
  .nav-links .donate-link { margin-left: 0; text-align: center; }
  .hero { min-height: 670px; }
  .hero::before { background-size: 1000px auto; opacity: .72; }
  .grid-2,.contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .ministry-grid { grid-template-columns: 1fr; }
  .ministry-card:last-child { grid-column: auto; }
}

@media (max-width: 540px) {
  .brand { font-size: .86rem; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { min-height: 620px; }
  .hero-content { padding-bottom: 3rem; }
  .actions .button { width: 100%; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
