:root {
  --ink: #241f1d;
  --muted: #6d625d;
  --paper: #f7f1e7;
  --cream: #fffaf0;
  --burgundy: #7f2632;
  --burgundy-dark: #531c25;
  --gold: #c9923d;
  --sage: #4f735d;
  --blue: #263c50;
  --line: rgba(36, 31, 29, 0.14);
  --shadow: 0 22px 60px rgba(37, 30, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--cream);
  background: rgba(25, 25, 23, 0.72);
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 2px solid var(--gold);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  background: var(--gold);
}

.brand-mark::before {
  left: 14px;
  top: 5px;
  width: 3px;
  height: 22px;
}

.brand-mark::after {
  left: 8px;
  top: 12px;
  width: 15px;
  height: 3px;
}

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

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: -4px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.94rem;
}

.main-nav a,
.nav-give,
.button {
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.main-nav a:hover {
  color: var(--cream);
}

.nav-give,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 4px;
  font-weight: 800;
}

.nav-give {
  padding: 0 18px;
  color: var(--cream);
  background: var(--burgundy);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(22, 21, 20, 0.86) 0%, rgba(22, 21, 20, 0.62) 38%, rgba(22, 21, 20, 0.14) 72%),
    linear-gradient(0deg, rgba(22, 21, 20, 0.7), rgba(22, 21, 20, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 36px));
  padding: 170px 0 96px clamp(18px, 5vw, 76px);
}

.eyebrow,
.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow.dark,
.kicker {
  color: var(--burgundy);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 7.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 240, 0.26);
}

.button.primary {
  color: var(--cream);
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.button.secondary {
  color: var(--cream);
  background: rgba(255, 250, 240, 0.08);
}

.button:hover,
.nav-give:hover {
  transform: translateY(-1px);
  background: var(--burgundy-dark);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-info article {
  min-height: 240px;
  padding: clamp(24px, 5vw, 48px);
  background: var(--cream);
}

.quick-info h2 {
  max-width: 420px;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.quick-info p,
.intro-copy p,
.giving-panel p,
.ministry-card p,
.belief-copy p,
.event-list p,
.pledge-board p,
.site-footer p {
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 11vw, 132px) 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.intro-copy {
  padding-top: 22px;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.leadership {
  padding-top: 26px;
}

.leader-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.12fr) repeat(3, minmax(0, 0.9fr));
  gap: 14px;
}

.leader-card {
  min-height: 360px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(36, 31, 29, 0.06);
}

.featured-leader {
  background: #ffffff;
  box-shadow: var(--shadow);
}

.leader-photo {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 24px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    var(--blue);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.leader-card:nth-child(2) .leader-photo {
  background-color: var(--burgundy);
}

.leader-card:nth-child(3) .leader-photo {
  background-color: var(--sage);
}

.leader-card:nth-child(4) .leader-photo {
  background-color: var(--gold);
}

.leader-role {
  display: block;
  margin-bottom: 10px;
  color: var(--burgundy);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.leader-card p {
  color: var(--muted);
}

.leadership-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.leadership-notes article {
  min-height: 150px;
  padding: 24px;
  background: #ffffff;
}

.leadership-notes span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 900;
}

.leadership-notes p {
  margin-bottom: 0;
  color: var(--muted);
}

.ministry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ministry-card {
  min-height: 295px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(36, 31, 29, 0.06);
}

.ministry-symbol {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  color: var(--cream);
  background: var(--blue);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.ministry-card:nth-child(2) .ministry-symbol {
  background: var(--burgundy);
}

.ministry-card:nth-child(3) .ministry-symbol {
  background: var(--sage);
}

.ministry-card:nth-child(4) .ministry-symbol {
  background: var(--gold);
}

.interactive-tools {
  padding-top: 20px;
}

.interactive-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.tool-panel {
  min-height: 0;
  padding: clamp(22px, 4vw, 34px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.prayer-tool {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: start;
}

.ministry-tool,
.question-tool,
.campaign-tool {
  grid-column: span 4;
}

.tool-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--burgundy);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tool-panel h3 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.4rem);
  line-height: 1.02;
}

.prayer-tool h3 {
  max-width: 360px;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}

.tool-panel form,
.retro-tool-grid form {
  display: grid;
  gap: 14px;
}

.prayer-tool .prayer-form {
  grid-column: 2;
  grid-row: 1 / span 3;
}

.prayer-tool .prayer-result {
  grid-column: 1 / -1;
}

.form-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.full-field,
.checkbox-row,
.form-grid .button {
  grid-column: 1 / -1;
}

.compact-form {
  align-content: start;
}

.tool-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.tool-panel input,
.tool-panel select,
.tool-panel textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.tool-panel textarea {
  resize: vertical;
}

.tool-panel input[type="range"] {
  padding: 0;
  accent-color: var(--burgundy);
}

.range-readout {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  color: var(--burgundy);
  background: rgba(127, 38, 50, 0.08);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.checkbox-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px !important;
  line-height: 1.35;
}

.checkbox-row input {
  width: auto;
  margin-top: 4px;
}

.tool-panel .button {
  width: fit-content;
  padding: 0 18px;
}

.tool-result {
  min-height: 96px;
  margin-top: 18px;
  padding: 18px;
  background: rgba(79, 115, 93, 0.1);
  border: 1px solid rgba(79, 115, 93, 0.18);
  border-radius: 8px;
}

.tool-result:empty {
  display: none;
}

.tool-result strong,
.tool-result span {
  display: block;
}

.tool-result strong {
  margin-bottom: 8px;
  color: var(--burgundy);
}

.tool-result span {
  color: var(--muted);
}

.tool-popup {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  width: min(360px, calc(100% - 44px));
  padding: 18px 20px;
  color: var(--cream);
  background: rgba(36, 31, 29, 0.94);
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.tool-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tool-popup strong,
.tool-popup span {
  display: block;
}

.tool-popup strong {
  margin-bottom: 6px;
  color: var(--gold);
}

.tool-popup span {
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.92rem;
}

.tone-meter,
.campaign-meter {
  height: 12px;
  margin-top: 18px;
  overflow: hidden;
  background: rgba(36, 31, 29, 0.1);
  border-radius: 999px;
}

.tone-fill,
.campaign-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--gold), var(--burgundy));
  border-radius: inherit;
  transition: width 180ms ease;
}

.campaign-stats {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.game-section {
  padding-top: 24px;
}

.boggle-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.boggle-board,
.boggle-panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.boggle-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(48px, 1fr));
  gap: 8px;
  width: min(100%, 430px);
  max-width: 100%;
  padding: 18px;
}

.boggle-tile {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  min-width: 0;
  padding: 0;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(36, 31, 29, 0.16);
  border-radius: 4px;
  outline: 0;
  font: inherit;
  font-size: clamp(1.45rem, 4vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.boggle-tile:hover,
.boggle-tile:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 146, 61, 0.2);
}

.boggle-tile.is-selected {
  color: var(--cream);
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.boggle-tile.is-found {
  color: var(--ink);
  background: rgba(201, 146, 61, 0.25);
  border-color: var(--gold);
}

.boggle-panel {
  padding: clamp(22px, 4vw, 34px);
}

.boggle-status {
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 800;
}

.boggle-current,
.boggle-progress {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  color: var(--burgundy);
  background: rgba(127, 38, 50, 0.08);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.boggle-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.boggle-controls .button {
  min-height: 40px;
  padding: 0 16px;
}

.boggle-panel .button.secondary {
  color: var(--burgundy);
  background: rgba(127, 38, 50, 0.08);
  border-color: rgba(127, 38, 50, 0.18);
}

.boggle-panel h3 {
  margin-bottom: 12px;
  color: var(--burgundy);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.boggle-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.boggle-list li {
  padding: 9px 10px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.boggle-list li.is-found {
  color: var(--sage);
  background: rgba(79, 115, 93, 0.12);
  text-decoration: line-through;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.giving-panel,
.pledge-board {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.giving-panel {
  padding: clamp(28px, 5vw, 48px);
}

.giving-panel label {
  display: block;
  margin: 30px 0 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.input-row {
  display: flex;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.input-row span {
  padding-left: 18px;
  color: var(--burgundy);
  font-size: 1.2rem;
  font-weight: 900;
}

.input-row input {
  width: 100%;
  min-width: 0;
  padding: 12px 16px 12px 8px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 800;
}

.giving-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.giving-results div {
  padding: 18px;
  background: rgba(127, 38, 50, 0.08);
  border-radius: 6px;
}

.giving-results span,
.pledge-board span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.giving-results strong {
  display: block;
  margin-top: 8px;
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.pledge-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.pledge-board article {
  padding: 30px 24px;
  border-left: 1px solid var(--line);
}

.pledge-board article:first-child {
  border-left: 0;
}

.pledge-board span {
  margin-bottom: 74px;
  color: var(--burgundy);
}

.beliefs {
  padding-top: 26px;
}

.belief-list {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.belief-toggle {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  color: var(--ink);
  background: var(--cream);
  border: 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 900;
  text-align: left;
}

.belief-toggle:first-child {
  border-top: 0;
}

.belief-toggle:hover,
.belief-toggle[aria-expanded="true"] {
  background: rgba(79, 115, 93, 0.1);
}

.belief-copy {
  padding: 0 24px 28px;
  background: rgba(79, 115, 93, 0.1);
}

.belief-copy p {
  max-width: 780px;
  margin: 0;
  font-size: 1.04rem;
}

.distinctives-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 54px);
  margin-top: 18px;
  padding: clamp(24px, 5vw, 46px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(36, 31, 29, 0.08);
}

.distinctives-intro h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.75rem);
  line-height: 1;
}

.distinctives-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.distinctives-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  min-height: 154px;
  padding: 22px;
  background: var(--cream);
}

.distinctives-list span,
.sermon-series,
.sermon-date {
  display: block;
  color: var(--burgundy);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.distinctives-list h3 {
  margin-bottom: 8px;
}

.distinctives-intro p,
.distinctives-list p,
.sermon-feature p,
.sermon-grid p {
  color: var(--muted);
}

.events {
  padding-top: 20px;
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-list article {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.event-list time {
  display: grid;
  place-items: center;
  align-self: start;
  width: 66px;
  height: 66px;
  color: var(--cream);
  background: var(--burgundy);
  border-radius: 50%;
  font-weight: 900;
  text-transform: uppercase;
}

.event-list h3,
.event-list p {
  margin-bottom: 6px;
}

.sermons {
  padding-top: 20px;
}

.sermon-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(24px, 5vw, 48px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.sermon-screen {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 146, 61, 0.32), rgba(38, 60, 80, 0.85)),
    var(--blue);
  border-radius: 8px;
}

.sermon-screen::before {
  position: absolute;
  inset: 26px;
  content: "";
  border: 1px solid rgba(255, 250, 240, 0.28);
}

.sermon-screen span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  background: var(--cream);
  clip-path: polygon(28% 18%, 28% 82%, 82% 50%);
}

.sermon-feature h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.sermon-button {
  width: fit-content;
  margin-top: 12px;
  padding: 0 20px;
}

.sermon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.sermon-grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.testimonials {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(72px, 10vw, 118px) clamp(18px, 5vw, 70px);
  color: var(--cream);
  background: var(--blue);
}

.testimonials h2 {
  max-width: 520px;
}

.quote-grid {
  display: grid;
  gap: 14px;
}

blockquote {
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
}

blockquote p {
  color: rgba(255, 250, 240, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.18;
}

cite {
  color: rgba(255, 250, 240, 0.6);
  font-style: normal;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 70px);
  background: #1d1918;
  color: var(--cream);
}

.site-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 250, 240, 0.62);
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  .main-nav {
    display: none;
  }

  .quick-info,
  .intro-section,
  .leader-grid,
  .leadership-notes,
  .distinctives-panel,
  .distinctives-list,
  .interactive-grid,
  .boggle-shell,
  .ministry-grid,
  .split-section,
  .sermon-feature,
  .sermon-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

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

  .pledge-board {
    grid-template-columns: 1fr;
  }

  .pledge-board article,
  .pledge-board article:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .pledge-board article:first-child {
    border-top: 0;
  }

  .pledge-board span {
    margin-bottom: 22px;
  }

  .prayer-tool,
  .ministry-tool,
  .question-tool,
  .campaign-tool {
    grid-column: 1 / -1;
  }

  .prayer-tool {
    grid-template-columns: 1fr;
  }

  .prayer-tool .prayer-form,
  .prayer-tool .prayer-result {
    grid-column: 1;
    grid-row: auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .nav-give {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 128px 0 62px 14px;
  }

  h1 {
    font-size: clamp(2.65rem, 17vw, 4.3rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .quick-info article {
    min-height: 0;
  }

  .ministry-grid,
  .leadership-notes,
  .distinctives-list,
  .interactive-grid,
  .boggle-list,
  .giving-results {
    grid-template-columns: 1fr;
  }

  .boggle-board {
    grid-template-columns: repeat(5, minmax(42px, 1fr));
    width: 100%;
    gap: 3px;
    padding: 10px;
  }

  .boggle-tile {
    font-size: 1.3rem;
  }

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

  .site-footer {
    display: block;
  }

  .site-footer > p {
    margin-top: 18px;
  }
}
