: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: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7rem;
  font-family: "Space Grotesk", "Inter", 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: #0b1320;
  color: #d6dee7;
  font-size: 0.8rem;
  min-height: var(--top-strip-height);
}

.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: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  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 {
  padding: 0.5rem 0.72rem;
  border-radius: 10px;
  color: #293547;
  font-weight: 600;
  font-size: 0.9rem;
}

.site-nav a.active,
.site-nav a:hover {
  background: #fff3ea;
  color: #9a3412;
}

.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: #f8d8bf;
  background: #fff5ec;
  color: #9a3412;
}

.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;
}

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

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

.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 14% 15%, rgba(249, 115, 22, 0.2), transparent 30%),
    linear-gradient(135deg, #23150f, #130a07);
}

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

.section-fire p {
  color: #f4d7c4;
}

.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 92% 10%, rgba(249, 115, 22, 0.11), transparent 34%),
    radial-gradient(circle at 8% 88%, rgba(239, 68, 68, 0.08), transparent 30%),
    #ffffff;
}

.home-page .section-alt {
  background:
    radial-gradient(circle at 14% 14%, rgba(249, 115, 22, 0.12), transparent 34%),
    radial-gradient(circle at 86% 82%, rgba(239, 68, 68, 0.08), transparent 30%),
    linear-gradient(180deg, #fff9f3, #f7fafe);
}

.home-page .top-strip {
  display: none;
}

.home-page .site-header {
  top: 0;
}

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

.home-page .hero-fire .hero-slide {
  transform: scale(1);
  filter: brightness(0.56) saturate(0.76);
}

.home-page .hero-fire .hero-slide.active {
  transform: scale(1.02);
}

.home-page .hero-fire .hero-overlay {
  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%);
}

.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;
}

.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;
}

.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;
  border-radius: 16px;
  background: linear-gradient(108deg, #ff5f00, #e9222c);
  box-shadow: 0 18px 34px rgba(176, 73, 17, 0.24);
  text-align: center;
  padding: 2rem 1.35rem 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;
}

.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-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: #f2f3f7;
  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: #1a2435;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 800;
}

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

.consuming-quote {
  max-width: 980px;
  margin: 0 auto;
  color: #516177;
  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 #d8deeb;
  box-shadow: 0 14px 26px rgba(22, 33, 49, 0.09);
  padding: 1.25rem 1.2rem;
}

.consuming-card-field {
  background: #f4f0e4;
}

.consuming-card-internet {
  background: #e7ecf8;
}

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

.consuming-title-row h3 {
  margin: 0;
  color: #1b2537;
  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: #d9891a;
  color: #fff6ea;
}

.consuming-icon-internet {
  background: #3267e8;
  color: #e9efff;
}

.consuming-card p {
  color: #3f5068;
  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: #d88b1f;
  color: #fff;
}

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

.consuming-list {
  margin: 0.78rem 0 0.82rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(93, 121, 177, 0.22);
  padding: 0.72rem 0.78rem;
}

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

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

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

.section-ignite-oil {
  background: linear-gradient(124deg, #ff5509 4%, #e6242d 56%, #ba4918 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: #f8f1df;
  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: #eef0f4;
}

.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;
}

.section-fire .card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 176, 121, 0.32);
  box-shadow: none;
}

.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;
}

.site-footer {
  border-top: 1px solid rgba(255, 178, 124, 0.36);
  background:
    radial-gradient(circle at 14% 20%, rgba(249, 115, 22, 0.26), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(239, 68, 68, 0.2), transparent 30%),
    linear-gradient(135deg, #23150f, #130a07 58%, #180b07);
  color: #d6dfeb;
  margin-top: 2rem;
}

.site-footer p {
  color: #f3d9c6;
}

.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: #fff2e6;
}

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

.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 {
    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-links a.active,
  .mobile-menu-links a: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;
  }

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

  .fire-banner {
    padding: 1.7rem 1rem 1.35rem;
  }

  .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 .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 {
    padding: 5.45rem 0 2.7rem;
  }

  .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;
  }

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

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

  .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;
  }

  .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));
  }
}
