:root {
  --top-strip-height: 34px;
  --bg: #f6f8fb;
  --ink: #101828;
  --muted: #445268;
  --line: #d8e0ea;
  --primary: #f97316;
  --primary-2: #ef4444;
  --surface: #ffffff;
  --shadow: 0 14px 34px rgba(16, 24, 40, 0.09);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

button,
input,
select,
textarea {
  font-family: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7rem;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}

ul {
  margin: 0 0 1rem 1.1rem;
  color: var(--muted);
}

li {
  margin-bottom: 0.35rem;
}

.eyebrow {
  margin-bottom: 0.45rem;
  color: #d45510;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

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

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

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

.top-strip {
  background: linear-gradient(90deg, #ff5608, #ff3e2c 46%, #ff8a14);
  color: #fff7ef;
  font-size: 0.8rem;
  min-height: var(--top-strip-height);
}

.top-strip a {
  color: #fffdfa;
}

.top-strip-inner {
  min-height: var(--top-strip-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.site-header {
  position: sticky;
  top: calc(-1 * var(--top-strip-height));
  z-index: 80;
  background: linear-gradient(96deg, rgba(255, 241, 219, 0.96), rgba(255, 211, 161, 0.96));
  border-bottom: 1px solid rgba(232, 116, 26, 0.46);
  backdrop-filter: blur(10px);
}

.nav-shell {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.brand-logo {
  height: 78px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.site-nav > a,
.site-nav .site-nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.72rem;
  border-radius: 10px;
  color: #6f2f14;
  font-weight: 600;
  font-size: 0.9rem;
}

.site-nav .site-nav-dropdown-toggle {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.site-nav > a.active,
.site-nav > a:hover,
.site-nav .site-nav-dropdown-toggle.active,
.site-nav .site-nav-dropdown:hover .site-nav-dropdown-toggle,
.site-nav .site-nav-dropdown:focus-within .site-nav-dropdown-toggle {
  background: rgba(255, 247, 239, 0.9);
  color: #9a3412;
}

.site-nav-dropdown {
  position: relative;
}

.site-nav-dropdown-toggle {
  gap: 0.32rem;
}

.site-nav-dropdown-caret {
  font-size: 0.72rem;
  transition: transform 0.2s ease;
}

.site-nav-dropdown:hover .site-nav-dropdown-caret,
.site-nav-dropdown:focus-within .site-nav-dropdown-caret {
  transform: rotate(180deg);
}

.site-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 190px;
  border-radius: 12px;
  border: 1px solid rgba(238, 174, 115, 0.45);
  background: linear-gradient(180deg, #fff8ef, #ffebd4);
  box-shadow: 0 16px 30px rgba(89, 41, 16, 0.17);
  padding: 0.34rem;
  display: grid;
  gap: 0.15rem;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 84;
}

.site-nav-dropdown:hover .site-nav-dropdown-menu,
.site-nav-dropdown:focus-within .site-nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-nav-dropdown-menu a {
  border-radius: 8px;
  padding: 0.5rem 0.62rem;
  color: #7a3616;
  font-size: 0.86rem;
  font-weight: 600;
}

.site-nav-dropdown-menu a.active,
.site-nav-dropdown-menu a:hover {
  color: #9a3412;
  background: rgba(255, 255, 255, 0.86);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-actions form {
  margin: 0;
}

.mobile-menu {
  display: none;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu-close {
  border: 1px solid #d6e2ef;
  background: #fff;
  color: #1f2d40;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  line-height: 1;
  display: inline-grid;
  place-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0.62rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.btn-outline {
  border-color: #c7d2df;
  color: #253246;
  background: #fff;
}

.btn-light {
  border-color: #efba8b;
  background: #ffe7d1;
  color: #972f09;
}

.nav-actions .btn-outline {
  border-color: #f2c29b;
  background: #fff5ed;
  color: #8f3711;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #c8d4e2;
  background: #fff;
  color: #1f2d40;
  font-size: 1.2rem;
  line-height: 1;
}

.flash-zone {
  margin-top: 0.7rem;
}

.flash {
  padding: 0.72rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #ced8e4;
  font-weight: 600;
}

.flash-success {
  background: #e8fbef;
}

.flash-error {
  background: #ffe8e8;
}

.flash-info {
  background: #edf5ff;
}

.flash-warn {
  background: #fff5e7;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0, 1);
  will-change: transform, opacity;
}

[data-reveal="left"] {
  transform: translate3d(-26px, 0, 0);
}

[data-reveal="right"] {
  transform: translate3d(26px, 0, 0);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero-slider {
  position: relative;
  min-height: clamp(540px, 84vh, 760px);
  overflow: hidden;
  background: #0b1220;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.03);
  filter: brightness(0.84) saturate(1.5) contrast(1.08);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.8s ease, transform 6s ease;
  background-position: center;
  background-size: cover;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 16%, rgba(249, 115, 22, 0.42), transparent 35%),
    linear-gradient(110deg, rgba(7, 12, 22, 0.93) 12%, rgba(7, 12, 22, 0.72) 48%, rgba(7, 12, 22, 0.92) 96%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: clamp(540px, 84vh, 760px);
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
}

.hero-copy {
  max-width: 680px;
  color: #fff;
}

.hero-copy .eyebrow {
  margin-bottom: 1rem;
  color: #ffcf9f;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 6vw, 4.5rem);
  color: #fff;
  line-height: 1.05;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  z-index: 2;
}

.hero-tab-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-tab {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 0.85rem;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
}

.hero-tab.active {
  border-color: rgba(249, 115, 22, 0.7);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(9px);
}

.page-hero::before {
  width: 240px;
  height: 240px;
  right: -40px;
  top: 60px;
  background: rgba(255, 255, 255, 0.14);
}

.page-hero::after {
  width: 190px;
  height: 190px;
  left: -40px;
  bottom: 10px;
  background: rgba(249, 115, 22, 0.2);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: clamp(300px, 42vh, 420px);
  padding: 2.8rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1.1rem;
  align-items: center;
}

.page-hero-copy {
  max-width: 720px;
}

.page-hero-copy .eyebrow {
  color: #ffd5b2;
}

.page-hero-copy h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.04;
  color: #fff;
}

.page-hero-copy p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

.page-hero-pills {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  padding: 0.24rem 0.68rem;
  font-size: 0.79rem;
  font-weight: 700;
}

.page-hero-media {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(7, 16, 27, 0.28);
  min-height: 300px;
  height: 300px;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.page-hero-tag {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.46);
  color: #fff;
  padding: 0.34rem 0.72rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero-about {
  background:
    linear-gradient(125deg, rgba(7, 12, 22, 0.9), rgba(82, 24, 6, 0.78) 55%, rgba(176, 44, 16, 0.72)),
    url("/img/stock/unsplash-1469474968028-56623f02e42e.jpg") center/cover no-repeat;
}

.page-hero-gallery {
  background:
    linear-gradient(125deg, rgba(6, 17, 31, 0.9), rgba(52, 22, 8, 0.75) 55%, rgba(140, 45, 16, 0.72)),
    url("/img/stock/unsplash-1514525253161-7a46d19cd819.jpg") center/cover no-repeat;
}

.page-hero-blog {
  background:
    linear-gradient(125deg, rgba(9, 18, 31, 0.9), rgba(44, 19, 7, 0.76) 55%, rgba(169, 64, 18, 0.72)),
    url("/img/stock/unsplash-1481627834876-b7833e8f5570.jpg") center/cover no-repeat;
}

.page-hero-events {
  background:
    linear-gradient(125deg, rgba(9, 16, 29, 0.92), rgba(43, 17, 6, 0.78) 55%, rgba(168, 52, 17, 0.74)),
    url("/img/stock/unsplash-1501281668745-f7f57925c3b4.jpg") center/cover no-repeat;
}

.page-hero-donate {
  background:
    linear-gradient(125deg, rgba(8, 18, 30, 0.9), rgba(41, 18, 6, 0.76) 55%, rgba(149, 53, 15, 0.73)),
    url("/img/stock/unsplash-1489515217757-5fd1be406fef.jpg") center/cover no-repeat;
}

.page-hero-contact {
  background:
    linear-gradient(125deg, rgba(9, 18, 30, 0.9), rgba(43, 22, 9, 0.76) 55%, rgba(150, 58, 19, 0.74)),
    url("/img/stock/unsplash-1521737604893-d14cc237f11d.jpg") center/cover no-repeat;
}

.page-hero-books {
  background:
    linear-gradient(125deg, rgba(6, 16, 28, 0.9), rgba(41, 19, 7, 0.76) 55%, rgba(152, 54, 16, 0.74)),
    url("/img/stock/unsplash-1456513080510-7bf3a84b82f8.jpg") center/cover no-repeat;
}

.page-hero-ebooks {
  background:
    linear-gradient(125deg, rgba(9, 18, 30, 0.9), rgba(40, 19, 8, 0.78) 55%, rgba(143, 52, 16, 0.72)),
    url("/img/stock/unsplash-1456324463128-7ff6903988d8.jpg") center/cover no-repeat;
}

.page-hero-library {
  background:
    linear-gradient(125deg, rgba(9, 18, 30, 0.9), rgba(38, 18, 8, 0.76) 55%, rgba(130, 45, 13, 0.72)),
    url("/img/stock/unsplash-1512820790803-83ca734da794.jpg") center/cover no-repeat;
}

.section {
  padding: 4.2rem 0;
}

.section-fire {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 179, 67, 0.44), transparent 34%),
    radial-gradient(circle at 88% 84%, rgba(255, 92, 45, 0.3), transparent 32%),
    linear-gradient(132deg, #ffca7a 4%, #ff8f2b 52%, #ff5b2c 100%);
}

.section-fire h2,
.section-fire h3 {
  color: #5a1f09;
}

.section-fire p {
  color: #692a12;
}

.section-white {
  background: #ffffff;
}

.section-alt {
  background: #f6f9fd;
}

.home-page main {
  position: relative;
  overflow-x: clip;
}

.home-page main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(249, 115, 22, 0.08), transparent 34%),
    radial-gradient(circle at 90% 22%, rgba(239, 68, 68, 0.07), transparent 30%),
    radial-gradient(circle at 18% 70%, rgba(251, 146, 60, 0.06), transparent 34%),
    radial-gradient(circle at 84% 86%, rgba(249, 115, 22, 0.06), transparent 32%);
}

.home-page main > * {
  position: relative;
  z-index: 1;
}

.home-page .section-white {
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 170, 62, 0.22), transparent 34%),
    radial-gradient(circle at 10% 84%, rgba(255, 90, 44, 0.18), transparent 30%),
    linear-gradient(180deg, #fff5e5, #ffdfbc);
}

.home-page .section-alt {
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 164, 52, 0.22), transparent 34%),
    radial-gradient(circle at 86% 82%, rgba(255, 87, 43, 0.18), transparent 30%),
    linear-gradient(180deg, #fff1de, #ffd5ae);
}

.home-page .hero-fire {
  min-height: clamp(620px, 88vh, 860px);
}

.home-page .hero-fire .hero-video {
  transform: scale(1.05);
  filter: brightness(0.8) saturate(1.7) contrast(1.1);
}

.home-page .hero-fire .hero-overlay {
  background:
    radial-gradient(circle at 76% 16%, rgba(255, 128, 28, 0.52), transparent 35%),
    radial-gradient(circle at 22% 82%, rgba(255, 188, 82, 0.38), transparent 42%),
    linear-gradient(110deg, rgba(31, 16, 9, 0.58) 10%, rgba(31, 16, 9, 0.34) 50%, rgba(27, 13, 8, 0.52) 94%);
}

.home-page .hero-fire .hero-grid {
  min-height: clamp(620px, 88vh, 860px);
  justify-items: center;
  text-align: center;
  padding: 7rem 0 4rem;
}

.home-page .hero-fire .hero-copy {
  max-width: 860px;
  text-shadow: 0 8px 24px rgba(20, 10, 6, 0.42);
}

.home-page .hero-fire .container,
.home-page .section-soft-fire .container,
.home-page .section-burnsville .container,
.home-page .section-upcoming .container {
  width: min(1260px, calc(100% - 3rem));
}

.home-page .hero-fire .hero-copy .eyebrow {
  margin-bottom: 0.35rem;
  color: #ffe35a;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
}

.home-page .hero-fire .hero-copy h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.6rem, 8.4vw, 5.7rem);
  line-height: 0.9;
  color: #ffe35a;
  text-transform: uppercase;
}

.home-page .hero-fire .hero-copy h1 span {
  display: block;
  color: #ff972d;
}

.home-page .hero-subtitle {
  margin-bottom: 0.35rem;
  color: #ffd95e;
  font-size: clamp(1.1rem, 2.1vw, 2rem);
  font-weight: 800;
}

.home-page .hero-tagline {
  margin-bottom: 0.3rem;
  color: #f4f4f4;
  font-size: 1.02rem;
  font-weight: 700;
}

.home-page .hero-verse {
  margin-bottom: 0.55rem;
  color: #ffd5ad;
  font-style: italic;
  font-size: 0.94rem;
}

.home-page .hero-mission {
  max-width: 760px;
  margin: 0 auto 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.home-page .hero-fire .hero-actions {
  justify-content: center;
  gap: 0.75rem;
}

.home-page .hero-fire .hero-actions .btn {
  min-width: 182px;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.2);
}

.home-page .hero-fire .hero-actions .btn-light {
  border-color: #fbd4b3;
  background: #fff;
  color: #cf4e0f;
}

.section-head-center {
  text-align: center;
}

.section-head-center .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.home-page .section-head h2 span {
  color: #f16310;
}

.section-soft-fire {
  background: #f8f1df;
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
}

.fire-story {
  margin: 1.25rem auto 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(241, 132, 44, 0.3);
  background: linear-gradient(135deg, #fff4e5, #ffe6c8);
  box-shadow: 0 16px 32px rgba(131, 67, 19, 0.14);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.fire-story-reverse .fire-story-media {
  order: 2;
}

.fire-story-media {
  margin: 0;
  width: 100%;
  min-height: 270px;
  padding: 0.72rem;
}

.fire-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.2) contrast(1.04);
  border-radius: 14px;
  border: 1px solid rgba(234, 130, 40, 0.28);
  box-shadow: 0 12px 20px rgba(112, 51, 14, 0.14);
}

.fire-story-copy {
  padding: 1.25rem 1.2rem;
}

.fire-story-kicker {
  margin-bottom: 0.3rem;
  color: #da5509;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.fire-story-copy h3 {
  margin-bottom: 0.45rem;
  color: #8e2f0c;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.fire-story-copy p {
  margin-bottom: 0.6rem;
  color: #5f402a;
}

.fire-story-copy strong {
  display: block;
  margin-bottom: 0.62rem;
  color: #c7500e;
}

.fire-story-consuming {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 127, 30, 0.22), transparent 34%),
    linear-gradient(138deg, #fff4e4, #ffdcb9);
}

.fire-story-ignite {
  border-color: rgba(255, 246, 225, 0.42);
  background: rgba(255, 245, 224, 0.15);
}

.fire-story-ignite .fire-story-kicker {
  color: #ffe67d;
}

.fire-story-ignite .fire-story-copy h3 {
  color: #fff7ec;
}

.fire-story-ignite .fire-story-copy p {
  color: #ffe9d8;
}

.fire-story-become {
  background:
    radial-gradient(circle at 18% 84%, rgba(255, 147, 35, 0.2), transparent 34%),
    linear-gradient(132deg, #fff2de, #ffe2c2);
}

.fire-story-ministry {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 84, 32, 0.2), transparent 34%),
    linear-gradient(132deg, #fff4df, #ffdcb8);
}

.about-highlight {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid #ffd3af;
  border-radius: 14px;
  background: linear-gradient(180deg, #fee9d8, #ffeedf);
  box-shadow: 0 14px 28px rgba(137, 90, 48, 0.08);
  padding: 1.1rem 1.2rem;
  text-align: center;
}

.about-highlight h3 {
  margin-bottom: 0.38rem;
  color: #f1590f;
  letter-spacing: 0.03em;
}

.about-highlight p {
  margin-bottom: 0.32rem;
  color: #734c33;
}

.about-highlight strong {
  color: #de5c13;
  font-size: 0.92rem;
}

.about-copy {
  max-width: 900px;
  margin: 1.1rem auto 0;
  text-align: center;
  color: #5f5040;
  font-weight: 600;
}

.fire-banner {
  margin-top: 1.35rem;
  margin-left: calc(50% - 50vw);
  width: 100vw;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(108deg, #ff5f00, #e9222c);
  box-shadow: 0 18px 34px rgba(176, 73, 17, 0.24);
  text-align: center;
  padding: 0;
}

.fire-banner::before {
  content: "";
  position: absolute;
  inset: -16% 0;
  background:
    linear-gradient(110deg, rgba(36, 10, 4, 0.48), rgba(36, 10, 4, 0.24)),
    url("/img/dummy-image-11.jpeg") center/cover no-repeat;
  transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(1.1);
  filter: saturate(1.48) contrast(1.06);
  z-index: 0;
}

.fire-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 14%, rgba(255, 198, 74, 0.3), transparent 36%),
    radial-gradient(circle at 84% 88%, rgba(255, 93, 47, 0.26), transparent 34%);
  z-index: 0;
}

.fire-banner-inner {
  position: relative;
  z-index: 1;
  width: min(1260px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 2rem 0 1.7rem;
}

.fire-banner h3 {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: #fff7f0;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
}

.fire-banner-icon {
  color: #ffd84a;
  font-size: 1.58rem;
  line-height: 1;
}

.fire-banner p {
  margin-bottom: 0.28rem;
  color: #ffe7d7;
}

.fire-banner-verse {
  margin-bottom: 0.95rem;
  font-style: italic;
  color: #ffd4b7;
  font-size: 1rem;
}

.fire-banner-burn {
  margin-bottom: 0.3rem;
  color: #ffe44d;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  font-weight: 800;
}

.fire-banner-call {
  margin-bottom: 0.88rem;
  color: #fff1e2;
  font-size: clamp(1.22rem, 1.8vw, 1.7rem);
  font-weight: 800;
}

.fire-banner-note {
  margin: 0;
  color: #ffd8c1;
  font-style: italic;
  font-size: clamp(0.95rem, 1.35vw, 1.13rem);
}

.newsletter-box {
  margin-top: 1.45rem;
  border-radius: 14px;
  border: 1px solid #e4dacc;
  background: #f4f6fb;
  box-shadow: 0 14px 24px rgba(28, 37, 52, 0.08);
  text-align: center;
  padding: 1.2rem;
}

.newsletter-box h3 {
  margin-bottom: 0.3rem;
}

.newsletter-box p {
  max-width: 720px;
  margin: 0 auto 0.82rem;
  color: #54617a;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.newsletter-form input {
  width: min(360px, 100%);
  border: 1px solid #d4deeb;
  border-radius: 10px;
  padding: 0.58rem 0.7rem;
  font: inherit;
  color: #203148;
  background: #fff;
}

.newsletter-form .btn {
  min-width: 120px;
}

.mission-head {
  margin-top: 1.9rem;
  margin-bottom: 1.05rem;
}

.mission-head p {
  max-width: 760px;
  margin: 0.5rem auto 0;
  color: #5f4f3c;
}

.mission-head + .ignite-grid {
  margin-top: 0.45rem;
}

.ignite-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ignite-card {
  border-radius: 12px;
  border: 1px solid #dce4ef;
  background: #fff;
  box-shadow: 0 12px 24px rgba(24, 36, 53, 0.08);
  padding: 1.25rem 1rem;
  text-align: center;
}

.ignite-card-media {
  width: 100%;
  margin: 0 0 0.82rem;
  border-radius: 13px;
  overflow: hidden;
  border: 1px solid rgba(233, 135, 47, 0.3);
  box-shadow: 0 10px 20px rgba(105, 52, 22, 0.14);
}

.ignite-card-media img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  display: block;
  filter: saturate(1.26) contrast(1.04);
}

.ignite-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #dc6b07;
  line-height: 1;
  margin-bottom: 0.68rem;
}

.ignite-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ignite-icon-truth {
  background: #f8eec9;
  color: #de7c00;
}

.ignite-icon-transform {
  background: #f8dee6;
  color: #e32a47;
}

.ignite-icon-global {
  background: #faebcc;
  color: #e66d02;
}

.ignite-card h3 {
  margin-bottom: 0.5rem;
  color: #1b2537;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
}

.ignite-card p {
  margin: 0;
  color: #4c5f76;
  font-size: 1.01rem;
}

.section-consuming-fire {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 163, 52, 0.36), transparent 32%),
    radial-gradient(circle at 86% 82%, rgba(255, 95, 41, 0.24), transparent 30%),
    linear-gradient(140deg, #fff5e6 4%, #ffe0be 54%, #ffd0ad);
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.consuming-head {
  margin-bottom: 1.8rem;
}

.consuming-head h2 {
  margin-bottom: 0.5rem;
  color: #e26010;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  letter-spacing: -0.01em;
}

.consuming-subtitle {
  margin-bottom: 0.42rem;
  color: #7c3211;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 800;
}

.consuming-lead {
  margin-bottom: 0.55rem;
  color: #7a4529;
  font-size: 1.04rem;
  font-weight: 600;
}

.consuming-quote {
  max-width: 980px;
  margin: 0 auto;
  color: #855338;
  font-style: italic;
  font-size: 1.05rem;
}

.consuming-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.consuming-card {
  border-radius: 14px;
  border: 1px solid rgba(230, 132, 42, 0.34);
  box-shadow: 0 14px 26px rgba(145, 63, 20, 0.14);
  padding: 1.25rem 1.2rem;
}

.consuming-card-field {
  background: linear-gradient(155deg, #fff7e8, #ffe8cd);
}

.consuming-card-internet {
  background: linear-gradient(155deg, #fff4e8, #ffdcc4);
}

.consuming-title-row {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 0.65rem;
}

.consuming-title-row h3 {
  margin: 0;
  color: #8f300a;
  font-size: clamp(1.5rem, 1.8vw, 2rem);
}

.consuming-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
}

.consuming-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consuming-icon-field {
  background: #f08a1a;
  color: #fff8ef;
}

.consuming-icon-internet {
  background: #e74e1f;
  color: #fff2e8;
}

.consuming-card p {
  color: #724a31;
  font-size: 0.98rem;
}

.consuming-highlight {
  margin-bottom: 0.72rem;
  color: #cb7a12;
  font-weight: 700;
}

.consuming-highlight::before {
  content: "\2665";
  margin-right: 0.35rem;
}

.btn-consume-field {
  background: #e37914;
  color: #fff;
}

.btn-consume-internet {
  background: #ea4f1f;
  color: #fff;
}

.consuming-list {
  margin: 0.78rem 0 0.82rem;
  border-radius: 10px;
  background: rgba(255, 251, 244, 0.72);
  border: 1px solid rgba(226, 122, 40, 0.24);
  padding: 0.72rem 0.78rem;
}

.consuming-list h4 {
  margin: 0 0 0.42rem;
  color: #8f300a;
  font-size: 0.96rem;
}

.consuming-list ul {
  margin: 0;
  padding-left: 1rem;
  color: #754930;
}

.consuming-list li {
  margin-bottom: 0.22rem;
}

.section-ignite-oil {
  background: linear-gradient(124deg, #ff6b0e 4%, #ff3e2e 56%, #ff9a1a 100%);
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
}

.ignite-oil-head {
  margin-bottom: 1.4rem;
}

.ignite-oil-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #ffe453;
  font-size: 1.7rem;
  line-height: 1;
}

.ignite-oil-head h2 {
  margin-bottom: 0.4rem;
  color: #fff8f1;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
}

.ignite-oil-welcome {
  margin-bottom: 0.42rem;
  color: #ffe34d;
  font-size: clamp(1.42rem, 2.2vw, 2.05rem);
  font-weight: 800;
}

.ignite-oil-head p {
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
  color: #ffe8d9;
  font-size: 1rem;
}

.ignite-oil-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
}

.ignite-oil-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 20px rgba(64, 10, 7, 0.12);
  text-align: center;
  padding: 1.1rem 0.9rem;
}

.ignite-oil-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #ffdf42;
  color: #d76e06;
  font-size: 1.42rem;
  line-height: 1;
  margin-bottom: 0.56rem;
}

.ignite-oil-card h3 {
  margin-bottom: 0.35rem;
  color: #fff9f2;
  font-size: clamp(1.36rem, 1.8vw, 1.9rem);
}

.ignite-oil-card p {
  margin: 0;
  color: #ffe3d4;
  font-size: 0.94rem;
}

.ignite-oil-actions {
  margin-top: 1.15rem;
  display: flex;
  justify-content: center;
}

.btn-ignite-oil {
  min-width: 220px;
  background: #f3d043;
  color: #5f3a0a;
  box-shadow: 0 10px 18px rgba(61, 25, 8, 0.2);
}

.section-burnsville {
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 166, 56, 0.24), transparent 34%),
    radial-gradient(circle at 84% 84%, rgba(255, 90, 43, 0.2), transparent 30%),
    linear-gradient(180deg, #fff4e0, #ffe8cb);
  padding-top: 3.6rem;
}

.burnsville-welcome {
  margin-bottom: 0.3rem;
  color: #eb640f;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  font-weight: 800;
}

.burnsville-copy {
  max-width: 720px;
  margin: 0 auto;
}

.become-grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.become-card {
  border-radius: 16px;
  border: 1px solid #dce5f0;
  background: #fff;
  box-shadow: 0 16px 28px rgba(24, 36, 52, 0.11);
  text-align: center;
  padding: 1.3rem 1.1rem;
}

.become-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #ff5c06, #ef2e2c);
  color: #fff;
  font-size: 1.46rem;
  margin-bottom: 0.58rem;
}

.become-card h3 {
  margin-bottom: 0.5rem;
}

.become-card p {
  margin-bottom: 0.9rem;
}

.spread-banner {
  max-width: 760px;
  margin: 1.1rem auto 0;
  border-radius: 14px;
  background: linear-gradient(108deg, #ff5f00, #e9222c);
  box-shadow: 0 18px 32px rgba(173, 76, 26, 0.22);
  text-align: center;
  padding: 1.35rem 1rem;
}

.spread-banner h3 {
  margin-bottom: 0.4rem;
  color: #fff8f1;
}

.spread-banner p {
  margin: 0;
  color: #ffe3cd;
}

.home-page .section-white.section-upcoming {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 179, 66, 0.25), transparent 34%),
    radial-gradient(circle at 88% 84%, rgba(255, 95, 43, 0.2), transparent 30%),
    linear-gradient(180deg, #fff3e2, #ffd9b5);
}

.home-page .section-upcoming .section-head p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.home-page .section-upcoming .card-grid {
  margin-top: 1.35rem;
}

.section-head {
  margin-bottom: 1.3rem;
}

.section-head .eyebrow {
  color: #d45510;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1.15rem;
}

.home-page .section-soft-fire .ignite-card,
.home-page .section-soft-fire .newsletter-box,
.home-page .section-burnsville .become-card,
.home-page .section-white .card,
.home-page .section-alt .book-card {
  border-color: rgba(230, 126, 36, 0.28);
  background: linear-gradient(162deg, rgba(255, 248, 237, 0.96), rgba(255, 229, 198, 0.92));
  box-shadow: 0 14px 26px rgba(142, 66, 21, 0.13);
}

.home-page .section-white .event-card-media,
.home-page .section-alt .book-cover,
.home-page .section-soft-fire .newsletter-form input {
  border-color: rgba(226, 123, 34, 0.26);
  background: #fff1dd;
}

.section-fire .card {
  background: rgba(255, 246, 234, 0.86);
  border-color: rgba(220, 106, 28, 0.46);
  box-shadow: 0 12px 24px rgba(132, 57, 19, 0.16);
}

.section-fire .section-head .eyebrow {
  color: #8d2f0c;
}

.section-fire .card h3 {
  color: #8a2f0b;
}

.section-fire .card p {
  color: #6f3a1f;
}

.event-card {
  display: grid;
  gap: 0.68rem;
}

.event-card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d5dfec;
  background: #f4f7fc;
  display: grid;
  place-items: center;
  text-align: center;
  color: #516177;
  font-weight: 700;
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.ebook-detail-grid {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 1.2rem;
  align-items: start;
}

.book-cover-lg {
  width: min(280px, 100%);
  min-height: 380px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d7e2ee;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  background: #f8fbff;
  color: #516277;
  font-weight: 700;
}

.book-cover-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-card {
  border-radius: var(--radius);
  border: 1px solid #dde6f0;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 1rem;
}

.book-cover {
  width: 118px;
  height: 168px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d7e0ea;
  background: #f8fbff;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  color: #4e5d71;
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price {
  color: #b45309;
  font-weight: 800;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #ffd9be;
  background: #fff6ef;
  color: #9a3412;
  padding: 0.22rem 0.62rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.media-grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
}

.stacked-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.stacked-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #d7e1ee;
}

.stacked-media img.wide {
  grid-column: 1 / -1;
  height: 236px;
}

.icon-card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d7e1ee;
  margin-bottom: 0.8rem;
}

.icon-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.gallery-tile {
  border-radius: 16px;
  border: 1px solid #d8e1ec;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-tile img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.gallery-tile-body {
  padding: 0.9rem;
}

.story-feature {
  border-radius: var(--radius);
  border: 1px solid #d9e2ed;
  box-shadow: var(--shadow);
  background: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
}

.story-feature-copy {
  padding: 1rem;
}

.story-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.story-thumb {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d7e0ea;
  margin-bottom: 0.78rem;
}

.story-thumb img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.mini-panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.9rem;
}

.mini-panel {
  border-radius: 14px;
  border: 1px solid #d8e2ee;
  background: #fff;
  padding: 0.95rem;
  box-shadow: var(--shadow);
}

.event-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.event-meta-row .chip {
  margin: 0;
}

.event-actions {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.impact-tile {
  border-radius: 14px;
  border: 1px solid #d8e2ef;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0.95rem;
  text-align: center;
}

.impact-tile strong {
  display: block;
  font-size: 1.62rem;
  color: #a04108;
}

.impact-tile span {
  color: #4b5a70;
  font-weight: 600;
  font-size: 0.85rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.9rem;
}

.form label {
  display: block;
  margin-bottom: 0.72rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #273649;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  margin-top: 0.3rem;
  border: 1px solid #d6dfeb;
  border-radius: 10px;
  padding: 0.58rem 0.68rem;
  font: inherit;
  color: #1f2d40;
  background: #fff;
}

.auth-wrap {
  max-width: 460px;
  margin: 0 auto;
}

.reader-wrap {
  position: relative;
  border-radius: 16px;
  border: 1px solid #d6e0eb;
  overflow: hidden;
}

.reader-watermark-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem 1rem;
  padding: 1rem;
  transform: rotate(-18deg) scale(1.18);
}

.reader-watermark-layer span {
  color: rgba(149, 83, 24, 0.13);
  font-size: 0.84rem;
  font-weight: 700;
}

.reader-frame {
  width: 100%;
  min-height: 78vh;
  border: 0;
  position: relative;
  z-index: 1;
  background: #fff;
}

.paypal-box {
  margin-top: 0.8rem;
  border: 1px dashed #d8e2ee;
  border-radius: 12px;
  padding: 0.85rem;
  background: #f9fcff;
}

.home-page-alt main {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 180, 74, 0.18), transparent 34%),
    radial-gradient(circle at 86% 84%, rgba(255, 96, 44, 0.16), transparent 32%),
    linear-gradient(180deg, #fff5e7, #ffe2c2);
  overflow-x: clip;
}

.home-page-alt .site-footer {
  margin-top: 0;
}

.alt-home-hero {
  position: relative;
  min-height: clamp(560px, 84vh, 780px);
  color: #fff7ef;
  overflow: hidden;
}

.alt-home-hero-media {
  position: absolute;
  inset: 0;
}

.alt-home-hero-media img,
.alt-home-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.alt-home-hero-video {
  display: block;
  filter: saturate(1.5) contrast(1.08) brightness(0.76);
}

.alt-home-hero-media img {
  filter: saturate(1.45) contrast(1.08) brightness(0.84);
}

.alt-home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 15%, rgba(255, 174, 80, 0.46), transparent 34%),
    linear-gradient(118deg, rgba(8, 10, 14, 0.74), rgba(73, 23, 7, 0.52) 52%, rgba(128, 27, 4, 0.5));
}

.alt-home-hero-inner {
  position: relative;
  z-index: 1;
  min-height: clamp(560px, 84vh, 780px);
  display: grid;
  align-content: center;
  gap: 0.65rem;
  padding: 5.5rem 0 3.5rem;
  max-width: 720px;
}

.alt-home-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  color: #ffd8b7;
}

.alt-home-hero h1 {
  margin: 0;
  color: #fffaf4;
  font-size: clamp(2.6rem, 8vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.alt-home-lead {
  margin: 0;
  color: #ffe6d1;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  max-width: 560px;
}

.alt-home-actions {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.alt-home-links {
  padding-top: 0;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.alt-home-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.alt-home-link {
  border-radius: 14px;
  border: 1px solid rgba(235, 165, 106, 0.48);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.97), rgba(255, 233, 206, 0.95));
  box-shadow: 0 14px 26px rgba(112, 57, 24, 0.16);
  padding: 1rem 0.95rem;
  min-height: 112px;
  display: grid;
  align-content: space-between;
  gap: 0.5rem;
}

.alt-home-link span {
  color: #9e4816;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.alt-home-link strong {
  color: #5d2208;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.alt-home-mission {
  padding-top: 3.4rem;
}

.alt-home-head h2 {
  color: #4f1f0a;
}

.alt-home-head p {
  color: #7a4a2f;
}

.alt-home-pillar-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.alt-home-pillar {
  border-radius: 14px;
  border: 1px solid rgba(231, 154, 87, 0.38);
  background: linear-gradient(165deg, #fff7ec, #ffe6ca);
  box-shadow: 0 14px 24px rgba(121, 64, 23, 0.13);
  overflow: hidden;
}

.alt-home-pillar figure {
  margin: 0;
}

.alt-home-pillar img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.alt-home-pillar h3 {
  margin: 0;
  padding: 1rem 1rem 0.28rem;
  color: #62250b;
}

.alt-home-pillar p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: #734b34;
}

.alt-home-fireline {
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 168, 64, 0.2), transparent 34%),
    linear-gradient(180deg, #fff2dd, #ffd4ac);
}

.alt-home-fireline-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

.alt-home-fireline-copy {
  border-radius: 14px;
  border: 1px solid rgba(229, 146, 74, 0.4);
  background: linear-gradient(165deg, #fff8ef, #ffe4c7);
  box-shadow: 0 14px 26px rgba(119, 57, 16, 0.14);
  padding: clamp(1rem, 2.1vw, 1.5rem);
}

.alt-home-fireline-copy h2 {
  margin-bottom: 0.45rem;
  color: #5e230a;
}

.alt-home-fireline-copy p {
  color: #6b4430;
}

.alt-home-fireline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.alt-home-fireline-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.alt-home-fireline-card {
  border-radius: 13px;
  border: 1px solid rgba(224, 137, 62, 0.36);
  background: linear-gradient(170deg, #fff9f2, #ffe8d1);
  box-shadow: 0 12px 22px rgba(113, 55, 19, 0.12);
  padding: 0.95rem;
}

.alt-home-fireline-card h3 {
  margin: 0 0 0.3rem;
  color: #5f260d;
}

.alt-home-fireline-card p {
  margin: 0;
  color: #714936;
}

.alt-home-fireline-media {
  margin: 0;
  grid-column: span 2;
  border-radius: 13px;
  overflow: hidden;
  border: 1px solid rgba(224, 137, 62, 0.32);
  box-shadow: 0 12px 22px rgba(113, 55, 19, 0.14);
}

.alt-home-fireline-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.alt-home-bonfire {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 163, 61, 0.2), transparent 34%),
    linear-gradient(180deg, #fff5e7, #ffd7b2);
}

.alt-home-bonfire-lead {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(230, 148, 76, 0.38);
  background: linear-gradient(165deg, #fff9f1, #ffe7cf);
  box-shadow: 0 14px 26px rgba(116, 55, 17, 0.13);
  overflow: hidden;
}

.alt-home-bonfire-media img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  display: block;
}

.alt-home-bonfire-copy {
  padding: clamp(1rem, 2.2vw, 1.45rem);
}

.alt-home-bonfire-copy h2 {
  margin-bottom: 0.45rem;
  color: #5f230a;
}

.alt-home-bonfire-copy p {
  color: #6d4430;
}

.alt-home-bonfire-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.alt-home-bonfire-card {
  border-radius: 13px;
  border: 1px solid rgba(228, 145, 70, 0.35);
  background: linear-gradient(170deg, #fff9f2, #ffe8d1);
  box-shadow: 0 12px 22px rgba(113, 55, 19, 0.11);
  padding: 0.95rem;
}

.alt-home-bonfire-card h3 {
  margin: 0 0 0.3rem;
  color: #5f260d;
}

.alt-home-bonfire-card p {
  margin: 0;
  color: #714936;
}

.alt-home-events {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 164, 63, 0.2), transparent 34%),
    linear-gradient(180deg, #fff5e5, #ffdcb8);
}

.alt-home-head-split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.9rem;
}

.alt-home-head-split .eyebrow {
  margin-bottom: 0.24rem;
}

.alt-home-event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.alt-home-event-card {
  border-radius: 14px;
  border: 1px solid rgba(227, 148, 80, 0.34);
  background: linear-gradient(170deg, #fff8f1, #ffe8ce);
  box-shadow: 0 14px 24px rgba(115, 58, 20, 0.12);
  padding: 0.78rem;
  display: grid;
  gap: 0.5rem;
}

.alt-home-event-media {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(224, 134, 54, 0.3);
  min-height: 165px;
  background: #fff4e3;
  display: grid;
  place-items: center;
  color: #8a3a14;
  font-weight: 700;
  font-size: 0.86rem;
}

.alt-home-event-media img {
  width: 100%;
  height: 100%;
  min-height: 165px;
  object-fit: cover;
  display: block;
}

.alt-home-event-card h3 {
  margin: 0;
  color: #5c230a;
}

.alt-home-event-card p {
  margin: 0;
  color: #6e4530;
  font-size: 0.91rem;
}

.alt-home-books {
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 173, 68, 0.22), transparent 34%),
    linear-gradient(180deg, #fff4e1, #ffd6af);
}

.alt-home-book-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.alt-home-book-card {
  border-radius: 14px;
  border: 1px solid rgba(225, 135, 60, 0.36);
  background: linear-gradient(170deg, #fff9f2, #ffe7cb);
  box-shadow: 0 14px 22px rgba(117, 57, 17, 0.12);
  overflow: hidden;
}

.alt-home-book-cover {
  min-height: 240px;
  border-bottom: 1px solid rgba(225, 135, 60, 0.28);
  background: #fff4df;
  display: grid;
  place-items: center;
  color: #8c4319;
  font-weight: 700;
  padding: 0.95rem;
}

.alt-home-book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.alt-home-book-copy {
  padding: 0.95rem;
}

.alt-home-book-copy h3 {
  margin-bottom: 0.3rem;
  color: #5e260d;
}

.alt-home-book-copy p {
  margin-bottom: 0.45rem;
  color: #684330;
}

.alt-home-book-copy .price {
  font-weight: 800;
  color: #d14d09;
}

.alt-home-cta {
  background:
    linear-gradient(120deg, rgba(24, 11, 8, 0.9), rgba(121, 34, 9, 0.78)),
    url("/img/home-consuming-fire.jpeg") center/cover no-repeat;
}

.alt-home-cta-card {
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 218, 188, 0.35);
  background: rgba(35, 12, 6, 0.42);
  box-shadow: 0 20px 36px rgba(4, 7, 12, 0.35);
  padding: clamp(1.25rem, 3vw, 2.2rem);
}

.alt-home-cta-card .eyebrow {
  color: #ffd4af;
}

.alt-home-cta-card h2 {
  color: #fff7ef;
  margin-bottom: 0.42rem;
}

.alt-home-cta-card p {
  color: #ffe0c7;
}

.home2-hero {
  position: relative;
  min-height: clamp(620px, 88vh, 840px);
  overflow: hidden;
  color: #fff7ee;
}

.home2-hero-media {
  position: absolute;
  inset: 0;
}

.home2-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  filter: saturate(1.56) contrast(1.1) brightness(0.75);
}

.home2-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 164, 59, 0.44), transparent 34%),
    linear-gradient(120deg, rgba(8, 10, 14, 0.76), rgba(63, 20, 7, 0.58) 50%, rgba(109, 28, 8, 0.53));
}

.home2-hero-inner {
  position: relative;
  z-index: 1;
  min-height: clamp(620px, 88vh, 840px);
  display: grid;
  align-content: center;
  gap: 0.7rem;
  max-width: 860px;
  padding: clamp(4.8rem, 8vw, 7rem) 0 3.2rem;
}

.home2-hero-inner h1 {
  margin: 0;
  color: #fff8f2;
  font-size: clamp(2.8rem, 8.4vw, 5.5rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.home2-hero-church {
  margin: 0;
  color: #ffd8b8;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.home2-hero-inner p {
  margin: 0;
  max-width: 670px;
  color: #ffe6d0;
  font-size: clamp(1rem, 2.1vw, 1.24rem);
}

.home2-actions {
  margin-top: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.home2-region-strip {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home2-region-strip span {
  border-radius: 999px;
  border: 1px solid rgba(255, 227, 201, 0.36);
  background: rgba(24, 12, 9, 0.36);
  color: #ffe5cf;
  padding: 0.26rem 0.66rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home2-head h2 {
  color: #4f1f0a;
}

.home2-head p {
  color: #6e4733;
}

.home2-locations {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 171, 69, 0.2), transparent 32%),
    linear-gradient(180deg, #fff4e1, #ffd6ad);
}

.home2-tabs {
  display: grid;
  gap: 0.9rem;
}

.home2-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home2-tab {
  border-radius: 999px;
  border: 1px solid rgba(224, 134, 54, 0.33);
  background: rgba(255, 255, 255, 0.82);
  color: #7a3816;
  padding: 0.34rem 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

.home2-tab.is-active {
  color: #fff6eb;
  border-color: transparent;
  background: linear-gradient(90deg, #f97316, #ef4444);
}

.home2-tab-panels {
  border-radius: 14px;
  border: 1px solid rgba(228, 146, 74, 0.35);
  background: linear-gradient(168deg, #fff9f1, #ffe8cf);
  box-shadow: 0 14px 22px rgba(114, 53, 14, 0.12);
  padding: 0.78rem;
}

.home2-tab-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0.8rem;
  align-items: center;
}

.home2-tab-panel[hidden] {
  display: none !important;
}

.home2-tab-panel img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 11px;
  border: 1px solid rgba(224, 134, 54, 0.28);
}

.home2-tab-panel h3 {
  margin: 0 0 0.36rem;
  color: #5d240c;
}

.home2-tab-panel p {
  margin: 0 0 0.7rem;
  color: #6f4833;
}

.home2-regions {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 171, 69, 0.2), transparent 32%),
    linear-gradient(180deg, #fff4e1, #ffd6ad);
}

.home2-region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.home2-region-card {
  border-radius: 13px;
  border: 1px solid rgba(228, 146, 74, 0.36);
  background: linear-gradient(168deg, #fff9f1, #ffe8cf);
  box-shadow: 0 14px 22px rgba(114, 53, 14, 0.12);
  padding: 0.72rem;
  display: grid;
  gap: 0.34rem;
}

.home2-region-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(224, 134, 54, 0.28);
}

.home2-region-card h3 {
  margin: 0;
  color: #5d240c;
}

.home2-region-card p {
  margin: 0;
  color: #6f4833;
  font-size: 0.9rem;
}

.home2-music {
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 165, 61, 0.2), transparent 34%),
    linear-gradient(180deg, #fff5e8, #ffdcb8);
}

.home2-music-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.home2-music-card {
  border-radius: 13px;
  border: 1px solid rgba(227, 145, 73, 0.36);
  background: linear-gradient(168deg, #fff9f1, #ffe8cf);
  box-shadow: 0 14px 22px rgba(114, 53, 14, 0.11);
  overflow: hidden;
}

.home2-music-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.home2-music-card h3 {
  margin: 0;
  padding: 0.88rem 0.8rem 0.26rem;
  color: #5d240c;
}

.home2-music-card p {
  margin: 0;
  padding: 0 0.8rem 0.9rem;
  color: #6f4833;
  font-size: 0.9rem;
}

.home2-conference {
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 165, 61, 0.18), transparent 34%),
    linear-gradient(180deg, #fff4e3, #ffd8b2);
}

.home2-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.9rem;
}

.home2-conference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.home2-conference-card {
  border-radius: 13px;
  border: 1px solid rgba(227, 145, 73, 0.36);
  background: linear-gradient(168deg, #fff9f1, #ffe8cf);
  box-shadow: 0 14px 22px rgba(114, 53, 14, 0.11);
  padding: 0.75rem;
  display: grid;
  gap: 0.45rem;
}

.home2-conference-cover {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(224, 134, 54, 0.28);
  min-height: 210px;
  background: #fff4e3;
  display: grid;
  place-items: center;
  color: #88390f;
  font-weight: 700;
  font-size: 0.86rem;
}

.home2-conference-cover img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
}

.home2-conference-card h3 {
  margin: 0;
  color: #5d240c;
}

.home2-conference-card p {
  margin: 0;
  color: #6f4833;
}

.home2-college {
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 164, 61, 0.18), transparent 34%),
    linear-gradient(180deg, #fff5e8, #ffd9b3);
}

.home2-college-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  align-items: stretch;
}

.home2-college-media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(227, 145, 73, 0.34);
  box-shadow: 0 14px 24px rgba(114, 53, 14, 0.12);
}

.home2-college-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.home2-college-copy {
  border-radius: 14px;
  border: 1px solid rgba(227, 145, 73, 0.34);
  background: linear-gradient(168deg, #fff9f1, #ffe8cf);
  box-shadow: 0 14px 24px rgba(114, 53, 14, 0.12);
  padding: clamp(1rem, 2.4vw, 1.55rem);
  display: grid;
  align-content: center;
}

.home2-college-copy h2 {
  margin-bottom: 0.35rem;
  color: #5d240c;
}

.home2-college-copy p {
  color: #6f4833;
}

.home2-unity {
  background:
    linear-gradient(120deg, rgba(22, 10, 7, 0.9), rgba(116, 32, 8, 0.8)),
    url("/img/home-consuming-fire.jpeg") center/cover no-repeat;
}

.home2-unity-card {
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 218, 188, 0.34);
  background: rgba(30, 13, 8, 0.5);
  box-shadow: 0 20px 34px rgba(7, 10, 14, 0.35);
  padding: clamp(1.25rem, 3vw, 2.2rem);
}

.home2-unity-card h2 {
  color: #fff7ef;
  margin-bottom: 0.42rem;
}

.home2-unity-card p {
  color: #ffe0c7;
}

.home2-blog {
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 171, 69, 0.2), transparent 32%),
    linear-gradient(180deg, #fff4e3, #ffd8b2);
}

.home2-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.home2-blog-card {
  border-radius: 13px;
  border: 1px solid rgba(227, 145, 73, 0.34);
  background: linear-gradient(168deg, #fff9f1, #ffe8cf);
  box-shadow: 0 14px 22px rgba(114, 53, 14, 0.1);
  padding: 0.95rem;
}

.home2-blog-card h3 {
  margin: 0 0 0.32rem;
  color: #5d240c;
}

.home2-blog-card p {
  margin: 0;
  color: #6f4833;
}

.home2-cta {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 172, 68, 0.2), transparent 34%),
    linear-gradient(180deg, #fff5e8, #ffdcb8);
}

.home2-cta-card {
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(227, 145, 73, 0.35);
  background: linear-gradient(168deg, #fff9f1, #ffe8cf);
  box-shadow: 0 20px 30px rgba(114, 53, 14, 0.14);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.home2-cta-card h2 {
  color: #5d240c;
}

.home-page-v3 main {
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 171, 73, 0.16), transparent 32%),
    radial-gradient(circle at 88% 84%, rgba(255, 96, 44, 0.14), transparent 30%),
    linear-gradient(180deg, #fff6ea, #ffe3c8);
  overflow-x: clip;
}

.home-page-v3 .site-footer {
  margin-top: 0;
}

.home3-topline {
  background: linear-gradient(90deg, #38180d, #a23a12 52%, #d64a11);
}

.home3-topline-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.home3-topline-inner a {
  color: #ffe4ca;
  font-size: 0.78rem;
  font-weight: 700;
}

.home3-hero {
  position: relative;
  min-height: clamp(620px, 88vh, 860px);
  overflow: hidden;
  color: #fff7ee;
}

.home3-hero-media {
  position: absolute;
  inset: 0;
}

.home3-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  filter: saturate(1.56) contrast(1.1) brightness(0.76);
}

.home3-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 164, 59, 0.46), transparent 34%),
    linear-gradient(120deg, rgba(8, 10, 14, 0.75), rgba(63, 20, 7, 0.56) 50%, rgba(109, 28, 8, 0.52));
}

.home3-hero-inner {
  position: relative;
  z-index: 1;
  min-height: clamp(620px, 88vh, 860px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: end;
  gap: 1.1rem;
  padding: clamp(5rem, 8vw, 7.2rem) 0 2.5rem;
}

.home3-hero-copy {
  max-width: 680px;
}

.home3-kicker {
  margin: 0 0 0.32rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: #ffd9b7;
  font-weight: 700;
}

.home3-hero-copy h1 {
  margin: 0 0 0.45rem;
  color: #fff8f1;
  font-size: clamp(2.5rem, 7.2vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 0.94;
}

.home3-hero-copy p {
  margin: 0;
  color: #ffe8d2;
  max-width: 560px;
  font-size: clamp(1rem, 2.2vw, 1.22rem);
}

.home3-actions {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.home3-sermon-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 222, 194, 0.35);
  background: rgba(29, 12, 9, 0.5);
  box-shadow: 0 18px 32px rgba(8, 10, 14, 0.35);
  backdrop-filter: blur(8px);
  padding: 1.05rem;
}

.home3-sermon-card h2 {
  margin: 0 0 0.3rem;
  color: #fff7ef;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.home3-sermon-card p {
  margin: 0 0 0.38rem;
  color: #ffe3cc;
}

.home3-sermon-card span {
  color: #ffd6b3;
  font-size: 0.82rem;
  font-weight: 700;
}

.home3-quick {
  margin-top: -1.5rem;
  padding-top: 0;
  position: relative;
  z-index: 2;
}

.home3-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.home3-quick-card {
  border-radius: 14px;
  border: 1px solid rgba(230, 152, 81, 0.4);
  background: linear-gradient(170deg, rgba(255, 251, 245, 0.97), rgba(255, 230, 202, 0.95));
  box-shadow: 0 14px 24px rgba(116, 55, 16, 0.14);
  padding: 0.95rem;
  min-height: 122px;
  display: grid;
  gap: 0.22rem;
}

.home3-quick-card p {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9e4816;
  font-size: 0.7rem;
  font-weight: 700;
}

.home3-quick-card h3 {
  margin: 0;
  color: #5f250d;
}

.home3-quick-card span {
  color: #724a35;
  font-size: 0.88rem;
}

.home3-head h2 {
  color: #4f1f0a;
}

.home3-head p {
  color: #6f4733;
}

.home3-mission {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 172, 70, 0.19), transparent 34%),
    linear-gradient(180deg, #fff3df, #ffd4aa);
}

.home3-mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
  align-items: stretch;
}

.home3-mission-card {
  border-radius: 14px;
  border: 1px solid rgba(227, 145, 73, 0.38);
  background: linear-gradient(165deg, #fff8ef, #ffe5c7);
  box-shadow: 0 14px 24px rgba(116, 55, 16, 0.14);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
}

.home3-mission-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.home3-mission-card > div {
  padding: 1rem;
}

.home3-mission-card h3 {
  margin-bottom: 0.34rem;
  color: #5f240c;
}

.home3-mission-card p {
  color: #714a35;
}

.home3-values {
  border-radius: 14px;
  border: 1px solid rgba(227, 145, 73, 0.38);
  background: linear-gradient(165deg, #fff8ef, #ffe5c7);
  box-shadow: 0 14px 24px rgba(116, 55, 16, 0.13);
  padding: 1rem;
}

.home3-values h3 {
  margin-bottom: 0.5rem;
  color: #5f240c;
}

.home3-values ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.home3-values li {
  margin: 0;
  border-radius: 10px;
  border: 1px solid rgba(225, 138, 62, 0.3);
  background: rgba(255, 255, 255, 0.58);
  color: #6f4732;
  padding: 0.55rem 0.68rem;
  font-weight: 600;
}

.home3-events {
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 171, 70, 0.2), transparent 34%),
    linear-gradient(180deg, #fff5e8, #ffdcb8);
}

.home3-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.9rem;
}

.home3-head-row .eyebrow {
  margin-bottom: 0.24rem;
}

.home3-event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.home3-event-card {
  border-radius: 13px;
  border: 1px solid rgba(225, 138, 62, 0.34);
  background: linear-gradient(168deg, #fff9f2, #ffe8cf);
  box-shadow: 0 14px 22px rgba(114, 53, 14, 0.12);
  padding: 0.78rem;
  display: grid;
  gap: 0.4rem;
}

.home3-event-cover {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(223, 129, 50, 0.28);
  min-height: 178px;
  background: #fff3e0;
  display: grid;
  place-items: center;
  color: #88390f;
  font-weight: 700;
  font-size: 0.85rem;
}

.home3-event-cover img {
  width: 100%;
  height: 100%;
  min-height: 178px;
  object-fit: cover;
  display: block;
}

.home3-event-card h3 {
  margin: 0;
  color: #5c230b;
}

.home3-event-card p {
  margin: 0;
  color: #6b4531;
  font-size: 0.9rem;
}

.home3-community {
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 163, 60, 0.2), transparent 34%),
    linear-gradient(180deg, #fff3de, #ffd4ab);
}

.home3-community-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.home3-community-card {
  border-radius: 13px;
  border: 1px solid rgba(225, 138, 62, 0.34);
  background: linear-gradient(168deg, #fff9f2, #ffe8cf);
  box-shadow: 0 14px 22px rgba(114, 53, 14, 0.11);
  padding: 0.95rem;
}

.home3-community-card h3 {
  margin: 0 0 0.34rem;
  color: #5c230b;
}

.home3-community-card p {
  margin: 0;
  color: #6b4531;
}

.home3-books {
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 169, 65, 0.18), transparent 32%),
    linear-gradient(180deg, #fff5e8, #ffd8b1);
}

.home3-book-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.home3-book-card {
  border-radius: 13px;
  border: 1px solid rgba(225, 138, 62, 0.34);
  background: linear-gradient(168deg, #fff9f2, #ffe8cf);
  box-shadow: 0 14px 22px rgba(114, 53, 14, 0.11);
  overflow: hidden;
  padding: 0.75rem;
  display: grid;
  gap: 0.38rem;
}

.home3-book-cover {
  border-radius: 10px;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(223, 129, 50, 0.28);
  background: #fff3e0;
  display: grid;
  place-items: center;
  color: #88390f;
  font-weight: 700;
  font-size: 0.85rem;
}

.home3-book-cover img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.home3-book-card h3 {
  margin: 0;
  color: #5c230b;
}

.home3-book-card p {
  margin: 0;
  color: #6b4531;
}

.home3-book-card .price {
  color: #cb4b0a;
  font-weight: 800;
}

.home3-cta {
  background:
    linear-gradient(120deg, rgba(23, 11, 8, 0.9), rgba(116, 32, 8, 0.78)),
    url("/img/home-consuming-fire.jpeg") center/cover no-repeat;
}

.home3-cta-card {
  margin: 0 auto;
  max-width: 900px;
  border-radius: 16px;
  border: 1px solid rgba(255, 218, 188, 0.34);
  background: rgba(32, 13, 8, 0.48);
  box-shadow: 0 20px 34px rgba(7, 10, 14, 0.35);
  text-align: center;
  padding: clamp(1.25rem, 3vw, 2.1rem);
}

.home3-cta-card h2 {
  color: #fff7ef;
  margin-bottom: 0.4rem;
}

.home3-cta-card p {
  color: #ffe0c7;
}

.site-footer {
  border-top: 1px solid rgba(255, 180, 120, 0.62);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 204, 84, 0.34), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(255, 112, 42, 0.3), transparent 30%),
    linear-gradient(132deg, #ff8c20, #ff5b26 54%, #ff3e33);
  color: #fff5ee;
  margin-top: 2rem;
}

.home-page main > .section:last-of-type {
  padding-bottom: 1.6rem;
}

.home-page .site-footer {
  margin-top: 0;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #fff0e3;
}

.site-footer h3,
.site-footer h4 {
  color: #fff9f4;
}

.site-footer .footer-bottom {
  border-top-color: rgba(255, 236, 212, 0.42);
}

.footer-grid {
  padding: 2.4rem 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-grid h3,
.footer-grid h4 {
  color: #fff9f4;
}

.footer-grid a {
  color: #fff0e3;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.8rem 0 1.2rem;
}

@media (max-width: 1100px) {
  .brand-logo {
    height: 72px;
  }
}

@media (max-width: 980px) {
  .top-strip {
    display: none;
  }

  .site-header {
    top: 0;
  }

  html.menu-open,
  body.menu-open {
    overflow: hidden;
    height: 100%;
    overscroll-behavior: none;
    touch-action: none;
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 74;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
  }

  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
    z-index: 81;
    border-color: #c8d4e2;
    background: #ffffff;
    color: #1f2d40;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.menu-open .menu-toggle {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.92);
  }

  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 360px);
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid #d7e2ef;
    box-shadow: -18px 0 30px rgba(15, 23, 42, 0.18);
    flex-direction: column;
    z-index: 82;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.26s ease, opacity 0.2s ease, visibility 0.26s step-end;
  }

  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.26s ease, opacity 0.2s ease;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.82rem 0.9rem;
    border-bottom: 1px solid rgba(12, 45, 76, 0.08);
    background: linear-gradient(180deg, #f6fbff, #edf6fd);
  }

  .mobile-menu-header h3 {
    margin: 0;
    font-size: 1rem;
    color: #1b2d42;
  }

  .mobile-menu-body {
    padding: 0.35rem 0.9rem 1rem;
    display: grid;
    gap: 0.7rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
  }

  .mobile-menu-links {
    display: grid;
  }

  .mobile-menu-links a,
  .mobile-menu-group > summary {
    color: #24364c;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #e5edf7;
    border-radius: 0;
    padding: 0.82rem 0.1rem;
    font-size: 0.96rem;
    font-weight: 600;
  }

  .mobile-menu-group {
    border-bottom: 1px solid #e5edf7;
  }

  .mobile-menu-group > summary {
    list-style: none;
    cursor: pointer;
    border-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-menu-group > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu-group > summary::after {
    content: "▾";
    font-size: 0.72rem;
    transition: transform 0.2s ease;
  }

  .mobile-menu-group[open] > summary::after {
    transform: rotate(180deg);
  }

  .mobile-menu-submenu {
    display: grid;
    padding: 0 0 0.4rem 0.85rem;
  }

  .mobile-menu-submenu a {
    padding: 0.65rem 0.1rem;
    border-bottom: 1px solid #eaf0f8;
    font-size: 0.9rem;
  }

  .mobile-menu-submenu a:last-child {
    border-bottom: 0;
  }

  .mobile-menu-links a.active,
  .mobile-menu-links a:hover,
  .mobile-menu-group > summary.active,
  .mobile-menu-group > summary:hover {
    background: transparent;
    border-bottom-color: #f6cfb3;
    color: #e15814;
  }

  .mobile-menu-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding-top: 0.3rem;
  }

  .mobile-menu-actions .btn,
  .mobile-menu-actions form .btn {
    min-width: 104px;
    justify-content: center;
  }

  .mobile-menu-actions form {
    margin: 0;
  }

  .hero-slider {
    min-height: clamp(660px, 94vh, 820px);
  }

  .hero-grid {
    min-height: auto;
    align-items: start;
    padding: 6rem 0 1.1rem;
  }

  .hero-tabs {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0.75rem 0 1.25rem;
  }

  .hero-actions {
    position: relative;
    z-index: 3;
  }

  .hero-tab-grid {
    grid-template-columns: 1fr;
  }

  .home-page .hero-fire {
    min-height: clamp(620px, 90vh, 760px);
  }

  .home-page .hero-fire .container,
  .home-page .section-soft-fire .container,
  .home-page .section-burnsville .container,
  .home-page .section-upcoming .container {
    width: min(1260px, calc(100% - 2rem));
  }

  .home-page .hero-fire .hero-grid {
    min-height: clamp(620px, 90vh, 760px);
    padding: 5.9rem 0 3rem;
  }

  .home-page .hero-fire .hero-copy h1 {
    font-size: clamp(2.4rem, 10vw, 4.3rem);
  }

  .home-page .hero-fire .hero-actions .btn {
    min-width: 166px;
  }

  .home-page-alt .alt-home-hero {
    min-height: clamp(520px, 80vh, 700px);
  }

  .home-page-alt .alt-home-hero-inner {
    min-height: clamp(520px, 80vh, 700px);
    padding: 4.9rem 0 2.8rem;
  }

  .home-page-alt .home2-hero {
    min-height: clamp(560px, 82vh, 720px);
  }

  .home-page-alt .home2-hero-inner {
    min-height: clamp(560px, 82vh, 720px);
    padding: 4.9rem 0 2.5rem;
  }

  .home2-region-grid,
  .home2-music-grid,
  .home2-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home2-conference-grid,
  .home2-college-grid {
    grid-template-columns: 1fr;
  }

  .home2-tab-panel {
    grid-template-columns: 1fr;
  }

  .home2-tab-panel img {
    height: 220px;
  }

  .home2-head-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .alt-home-links {
    margin-top: -1.2rem;
  }

  .alt-home-links-grid,
  .alt-home-pillar-grid,
  .alt-home-event-grid,
  .alt-home-book-grid,
  .alt-home-bonfire-grid,
  .home3-quick-grid,
  .home3-event-grid,
  .home3-community-grid,
  .home3-book-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alt-home-head-split {
    align-items: flex-start;
    flex-direction: column;
  }

  .alt-home-fireline-grid,
  .alt-home-bonfire-lead,
  .home3-hero-inner,
  .home3-mission-grid,
  .home3-mission-card {
    grid-template-columns: 1fr;
  }

  .alt-home-fireline-media {
    grid-column: span 1;
  }

  .home-page-v3 .home3-hero {
    min-height: clamp(560px, 82vh, 720px);
  }

  .home-page-v3 .home3-hero-inner {
    min-height: clamp(560px, 82vh, 720px);
    padding: 4.8rem 0 2.5rem;
    align-items: center;
  }

  .home3-head-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .ignite-grid,
  .consuming-grid,
  .ignite-oil-grid,
  .fire-story,
  .become-grid {
    grid-template-columns: 1fr;
  }

  .fire-story-reverse .fire-story-media {
    order: 0;
  }

  .fire-story-media {
    min-height: 240px;
    padding: 0.25rem;
  }

  .ignite-card-media img {
    height: 215px;
  }

  .fire-banner {
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }

  .section-consuming-fire,
  .section-ignite-oil {
    padding-top: 3.3rem;
    padding-bottom: 3.3rem;
  }

  .consuming-card,
  .ignite-oil-card {
    padding: 1.1rem 0.92rem;
  }

  .consuming-title-row h3 {
    font-size: clamp(1.32rem, 4.8vw, 1.72rem);
  }

  .ignite-oil-card h3 {
    font-size: clamp(1.3rem, 4.2vw, 1.62rem);
  }

  .fire-banner-note {
    font-size: 0.96rem;
  }

  .ignite-card h3 {
    font-size: clamp(1.4rem, 4.8vw, 1.75rem);
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    max-width: 420px;
    margin: 0 auto;
  }

  .newsletter-form input,
  .newsletter-form .btn {
    width: 100%;
  }

  .section-burnsville {
    padding-top: 3rem;
  }

  .page-hero-inner,
  .story-feature,
  .media-grid-two {
    grid-template-columns: 1fr;
  }

  .page-hero-media {
    display: none;
  }

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

  .split,
  .ebook-detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .brand-logo {
    height: 62px;
  }

  .home-page .hero-fire {
    min-height: clamp(540px, 82vh, 680px);
  }

  .home-page .hero-fire .container,
  .home-page .section-soft-fire .container,
  .home-page .section-burnsville .container,
  .home-page .section-upcoming .container {
    width: min(1260px, calc(100% - 1.5rem));
  }

  .section {
    padding: 3.2rem 0;
  }

  .section-consuming-fire,
  .section-ignite-oil {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }

  .home-page .hero-fire .hero-grid {
    min-height: clamp(540px, 82vh, 680px);
    padding: 5rem 0 2.35rem;
  }

  .home-page .hero-fire .hero-copy h1 {
    font-size: clamp(2.25rem, 12vw, 3.5rem);
  }

  .home-page .hero-fire .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-page .hero-fire .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .home-page-alt .alt-home-hero {
    min-height: clamp(500px, 78vh, 620px);
  }

  .home-page-alt .alt-home-hero-inner {
    min-height: clamp(500px, 78vh, 620px);
    padding: 4.6rem 0 2.4rem;
  }

  .home-page-alt .home2-hero {
    min-height: clamp(520px, 80vh, 640px);
  }

  .home-page-alt .home2-hero-inner {
    min-height: clamp(520px, 80vh, 640px);
    padding: 4.5rem 0 2.2rem;
  }

  .home2-hero-inner h1 {
    font-size: clamp(2.25rem, 12vw, 3.9rem);
  }

  .home2-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home2-actions .btn {
    width: 100%;
  }

  .home2-region-grid,
  .home2-music-grid,
  .home2-blog-grid,
  .home2-conference-grid {
    grid-template-columns: 1fr;
  }

  .home2-region-card img,
  .home2-music-card img {
    height: 190px;
  }

  .home2-tab-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 0.2rem;
  }

  .home2-tab {
    white-space: nowrap;
  }

  .home2-tab-panel img {
    height: 195px;
  }

  .home2-conference-cover,
  .home2-conference-cover img {
    min-height: 190px;
  }

  .home2-college-media img {
    min-height: 240px;
  }

  .alt-home-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .alt-home-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .alt-home-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .alt-home-links {
    margin-top: 0;
    padding-top: 0.9rem;
  }

  .alt-home-links-grid,
  .alt-home-pillar-grid,
  .alt-home-event-grid,
  .alt-home-book-grid,
  .alt-home-bonfire-grid,
  .home3-quick-grid,
  .home3-event-grid,
  .home3-community-grid,
  .home3-book-grid {
    grid-template-columns: 1fr;
  }

  .alt-home-link {
    min-height: 96px;
  }

  .alt-home-pillar img {
    height: 200px;
  }

  .alt-home-event-media,
  .alt-home-event-media img {
    min-height: 190px;
  }

  .alt-home-book-cover {
    min-height: 220px;
  }

  .alt-home-fireline-actions .btn {
    width: 100%;
  }

  .alt-home-fireline-media img {
    height: 210px;
  }

  .alt-home-bonfire-media img {
    min-height: 220px;
  }

  .home3-topline-inner {
    min-height: 48px;
    gap: 0.45rem;
    padding: 0.25rem 0;
  }

  .home3-topline-inner a {
    font-size: 0.72rem;
  }

  .home-page-v3 .home3-hero {
    min-height: clamp(520px, 80vh, 640px);
  }

  .home-page-v3 .home3-hero-inner {
    min-height: clamp(520px, 80vh, 640px);
    padding: 4.5rem 0 2.2rem;
  }

  .home3-hero-copy h1 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

  .home3-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home3-actions .btn {
    width: 100%;
  }

  .home3-sermon-card {
    margin-top: 0.15rem;
  }

  .home3-quick {
    margin-top: 0;
    padding-top: 0.9rem;
  }

  .home3-mission-card img {
    min-height: 220px;
  }

  .home3-event-cover,
  .home3-event-cover img {
    min-height: 185px;
  }

  .home3-book-cover,
  .home3-book-cover img {
    min-height: 210px;
  }

  .about-highlight,
  .fire-banner,
  .newsletter-box,
  .become-card {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  .fire-story-copy {
    padding: 1rem 0.95rem;
  }

  .fire-story-media {
    min-height: 250px;
    padding: 0;
  }

  .fire-story-media img {
    border-radius: 16px;
  }

  .ignite-card-media img {
    height: 220px;
  }

  .fire-banner h3 {
    flex-wrap: wrap;
    font-size: clamp(1.45rem, 7vw, 1.88rem);
  }

  .fire-banner-inner {
    width: min(1260px, calc(100% - 1.5rem));
    padding: 1.7rem 0 1.35rem;
  }

  .fire-banner-burn {
    font-size: clamp(1.33rem, 6vw, 1.62rem);
  }

  .fire-banner-call {
    font-size: clamp(1.1rem, 5vw, 1.28rem);
  }

  .fire-banner-note {
    font-size: 0.92rem;
  }

  .mission-head {
    margin-top: 1.5rem;
    margin-bottom: 0.9rem;
  }

  .ignite-icon {
    width: 58px;
    height: 58px;
  }

  .ignite-icon svg {
    width: 27px;
    height: 27px;
  }

  .consuming-icon,
  .ignite-oil-icon {
    width: 52px;
    height: 52px;
  }

  .consuming-icon svg {
    width: 25px;
    height: 25px;
  }

  .consuming-subtitle {
    font-size: clamp(1.2rem, 6vw, 1.52rem);
  }

  .consuming-lead,
  .consuming-quote {
    font-size: 0.95rem;
  }

  .ignite-oil-head p,
  .ignite-oil-card p {
    font-size: 0.9rem;
  }

  .btn-ignite-oil {
    width: 100%;
    min-width: 0;
  }

  .page-hero-copy h1 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .stacked-media {
    grid-template-columns: 1fr;
  }

  .stacked-media img,
  .stacked-media img.wide {
    height: 210px;
    grid-column: auto;
  }

  .impact-strip {
    grid-template-columns: 1fr;
  }

  .book-card {
    grid-template-columns: 1fr;
  }

  .book-cover {
    width: 100%;
    height: 210px;
  }

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