/* =============================================
   THE FLAME GROUP – Main Stylesheet
   ============================================= */

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

:root {
  --navy:      #0a1628;
  --navy-dark: #060e1a;
  --navy-mid:  #0f2040;
  --gold:      #F4B22D;
  --gold-dark: #D99C1A;
  --white:     #FFFFFF;
  --light-bg:  #F5F7FA;
  --text-gray: #6B7280;
  --card-shadow: 0 4px 18px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: #222;
  background: var(--white);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 26px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 5px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-gold-sm:hover { background: var(--gold-dark); }

.btn-dark {
  background: var(--navy-dark);
  color: var(--white);
  border: 2px solid var(--navy-dark);
}
.btn-dark:hover { background: #060f25; }

/* =============================================
   HERO SECTION — Trade Show Banner Style
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  display: flex;
  min-height: 560px;
}

/* ── LEFT: White/light side ────────────────── */
.hero-left {
  flex: 1;
  position: relative;
  background: #f0f2f5;
  padding: 48px 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-left-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.08;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-silhouette {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(1) contrast(1.2);
}

/* 5 Pillars icons row */
.hero-pillars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 14px 0;
}
.hero-pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-pillar i {
  font-size: 1.4rem;
  color: var(--gold);
}
.hero-pillar span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--navy);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-pillar + .hero-pillar {
  border-left: 1px solid rgba(244,178,45,0.4);
}

/* Gold star divider */
.hero-star-divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
}
.hero-star-divider span {
  flex: 1;
  height: 1px;
  background: var(--gold);
}
.hero-star-divider i {
  font-size: 0.7rem;
  color: var(--gold);
}
.hero-star-small { margin: 10px 0; }

/* Flame Group brand */
.hero-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 4px;
}
.hero-brand-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}
.hero-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
}
.hero-brand-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* Main headline */
.hero-headline-block {
  position: relative;
  z-index: 1;
  margin: 8px 0;
}
.hero-big-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -1px;
}
.hero-line-navy {
  display: block;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  color: var(--navy);
}
.hero-line-red {
  display: block;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  color: #c0392b;
}
.hero-amp {
  font-size: 0.7em;
  color: var(--navy);
}

/* Services row */
.hero-services-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hero-services-row i {
  font-size: 0.35rem;
  color: var(--gold);
}

/* ── RIGHT: Dark navy side with logos ──────── */
.hero-right {
  width: 280px;
  flex-shrink: 0;
  position: relative;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
}

/* Gold diagonal border */
.hero-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: -40px;
  width: 80px;
  height: 100%;
  background: var(--gold);
  transform: skewX(-6deg);
  z-index: 0;
}
.hero-right::after {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 40px;
  height: 100%;
  background: var(--navy);
  transform: skewX(-6deg);
  z-index: 1;
}

.hero-logo-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.hero-stack-item {
  display: block;
  text-decoration: none;
  transition: transform 0.25s;
}
.hero-stack-item:hover {
  transform: scale(1.1);
}
.hero-stack-item img {
  width: 140px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  background: var(--light-bg);
  padding: 60px 40px 70px;
}

.services-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: stretch;
}

.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 32px;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Services main column — flex so CTA pins to bottom */
.services-main {
  display: flex;
  flex-direction: column;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 18px;
  flex: 1;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  padding: 36px 18px 30px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244,178,45,0.15), rgba(244,178,45,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid rgba(244,178,45,0.3);
}

.service-icon i {
  font-size: 1.4rem;
  color: var(--gold);
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1.35;
}

.service-card p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* =============================================
   PROMO CARDS
   ============================================= */
.promo-cards-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.promo-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(244,178,45,0.25);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  flex-shrink: 0;
  overflow: hidden;
}

/* ── FLAME card ── */
.promo-flame {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px 24px;
  background: var(--navy);
  text-align: center;
  position: relative;
}

/* Corner accent diamonds */
.promo-flame-deco {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.promo-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.promo-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

/* Title with decorative side rules */
.promo-flame-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 10px;
}
.promo-flame-rule span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,178,45,0.6));
}
.promo-flame-rule span:last-child {
  background: linear-gradient(90deg, rgba(244,178,45,0.6), transparent);
}

.promo-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
  text-align: center;
  letter-spacing: 2px;
  white-space: nowrap;
  text-shadow: 0 2px 16px rgba(244,178,45,0.4);
  margin: 0;
}

.promo-full-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: 14px;
}

.promo-body {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.72);
  text-align: center;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 220px;
}

/* Full-width outlined button to match Spark Guards style */
.promo-flame-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.35);
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  margin-top: auto;
}
.promo-flame-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  color: var(--gold);
}

/* Spark Guards card */
.promo-sparks {
  background: var(--navy-dark);
  padding: 0;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.promo-spark-header {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  flex: 1;
  min-height: 0;
}

.promo-spark-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
}

.promo-card .btn-gold-sm {
  display: block;
  text-align: center;
  margin: 0 auto;
  width: fit-content;
}

/* CTA box inside services section */
.services-cta-box {
  background: var(--gold);
  border-radius: 12px;
  padding: 26px 32px;
  margin-top: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.services-cta-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.services-cta-phone {
  font-size: 2rem;
  color: var(--navy-dark);
  flex-shrink: 0;
}

.services-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 4px;
}

.services-cta-sub {
  font-size: 1rem;
  color: rgba(9,21,48,0.72);
  line-height: 1.4;
}

/* =============================================
   WHY SECTION
   ============================================= */
.why-section {
  background: var(--navy);
  padding: 52px 40px;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.why-pillars {
  flex: 1;
}

.why-pillars-full {
  flex: none;
  width: 100%;
}

.why-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-grid-full {
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(244,178,45,0.12);
  border: 2px solid rgba(244,178,45,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.why-icon i {
  font-size: 1.2rem;
  color: var(--gold);
}

.why-item strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.why-item span {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}



/* =============================================
   MISSION & VISION SECTION
   ============================================= */
.mv-section {
  background: var(--white);
  padding: 80px 40px;
  border-top: 1px solid rgba(13,31,69,0.07);
}

.mv-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 60px;
  align-items: stretch;
  /* force both card columns to same row height */
  grid-auto-rows: 1fr;
}

/* Vertical divider */
.mv-divider {
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(244,178,45,0.5) 20%,
    rgba(244,178,45,0.5) 80%,
    transparent
  );
  width: 1px;
  align-self: stretch;
  margin: 10px 0;
}

/* Card — flex column so tag row always pins to bottom */
.mv-card {
  position: relative;
  padding: 44px 40px 40px;
  border-radius: 16px;
  background: var(--light-bg);
  border: 1px solid rgba(13,31,69,0.07);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
.mv-card:hover {
  box-shadow: 0 18px 50px rgba(13,31,69,0.10);
  transform: translateY(-3px);
}

/* Gold top-edge accent bar */
.mv-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 16px 16px 0 0;
}

/* Icon circle */
.mv-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(13,31,69,0.22);
}
.mv-icon-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
}

/* Eyebrow */
.mv-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 8px;
}

/* Heading */
.mv-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  line-height: 1.1;
}

/* Body text — grows to push tag row to bottom */
.mv-text {
  font-size: 1.02rem;
  color: var(--text-gray);
  line-height: 1.85;
  margin-bottom: 0;
  flex: 1;
  padding-bottom: 28px;
}

/* Tag row — always at the bottom of the card */
.mv-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(13,31,69,0.07);
}
.mv-tag-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(244,178,45,0.10);
  border: 1px solid rgba(244,178,45,0.30);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--navy);
}
.mv-tag-row i {
  color: var(--gold);
  font-size: 0.6rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .mv-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .mv-divider {
    display: none;
  }
  .mv-card {
    margin-bottom: 28px;
  }
  .services-layout {
    grid-template-columns: 1fr;
  }
  .promo-cards-col {
    flex-direction: row;
    justify-content: center;
  }
  .promo-card {
    flex: 1;
    max-width: 340px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid-full {
    grid-template-columns: repeat(4, 1fr);
  }
  .why-inner {
    flex-direction: column;
  }
  .services-cta-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .services-cta-inner {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .mv-section   { padding: 56px 24px; }
  .mv-card      { padding: 32px 26px 28px; }
  .mv-heading   { font-size: 1.35rem; }
  .hero-inner { flex-direction: column; min-height: auto; }
  .hero-left { padding: 40px 24px 36px; }
  .hero-right { width: 100%; padding: 32px 24px; }
  .hero-right::before, .hero-right::after { display: none; }
  .hero-logo-stack { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 20px; }
  .hero-stack-item img { width: 100px; }
  .hero-brand-name { font-size: 1.3rem; }
  .hero-brand-logo { width: 60px; height: 60px; }
  .hero-pillars { gap: 0; padding: 10px 0; }
  .hero-pillar i { font-size: 1.1rem; }
  .hero-pillar span { font-size: 0.6rem; }
  .services-section {
    padding: 44px 20px 52px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-cards-col {
    flex-direction: column;
    align-items: center;
  }
  .promo-card {
    max-width: 100%;
  }
  .why-section {
    padding: 44px 20px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-cta-box {
    padding: 22px 20px;
  }
  .services-cta-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-left { padding: 32px 20px 28px; }
  .hero-pillars { flex-wrap: wrap; gap: 4px; }
  .hero-pillar { flex: 0 0 33%; }
  .hero-pillar + .hero-pillar { border-left: none; }
  .hero-big-text { letter-spacing: 0; }
  .hero-brand-name { font-size: 1.1rem; letter-spacing: 1px; }
  .hero-stack-item img { width: 80px; }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   A CHILD'S PRAYER – POEM SECTION
   ============================================= */
.poem-section {
  position: relative;
  background: linear-gradient(175deg, var(--navy-dark) 0%, var(--navy) 45%, #1a3a70 100%);
  padding: 100px 40px;
  overflow: hidden;
  text-align: center;
}

/* Floating ember particles */
.poem-embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.poem-ember {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: ember-rise 7s ease-in infinite;
}
.pe-1 { left: 10%; animation-delay: 0s;    animation-duration: 7s;  width: 4px; height: 4px; }
.pe-2 { left: 25%; animation-delay: 1.5s;  animation-duration: 9s;  width: 3px; height: 3px; background: #ff7043; }
.pe-3 { left: 45%; animation-delay: 3s;    animation-duration: 8s;  width: 5px; height: 5px; }
.pe-4 { left: 60%; animation-delay: 0.8s;  animation-duration: 6s;  width: 3px; height: 3px; background: #ffb74d; }
.pe-5 { left: 75%; animation-delay: 2.2s;  animation-duration: 10s; width: 4px; height: 4px; }
.pe-6 { left: 88%; animation-delay: 4s;    animation-duration: 7.5s;width: 3px; height: 3px; background: #ff7043; }

@keyframes ember-rise {
  0%   { opacity: 0;    transform: translateY(0)    scale(1); }
  15%  { opacity: 0.85; }
  85%  { opacity: 0.4; }
  100% { opacity: 0;    transform: translateY(-340px) scale(0.4); }
}

/* Soft radial glow in centre */
.poem-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(244,178,45,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.poem-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
}

/* Header */
.poem-flame-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--navy-dark);
  box-shadow: 0 0 0 8px rgba(244,178,45,0.12), 0 8px 28px rgba(244,178,45,0.3);
}

.poem-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

.poem-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
  margin-bottom: 24px;
}
.poem-title span {
  color: var(--gold);
}

/* Decorative rule with cross */
.poem-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}
.poem-rule span {
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,178,45,0.5));
}
.poem-rule span:last-child {
  background: linear-gradient(90deg, rgba(244,178,45,0.5), transparent);
}
.poem-rule i {
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0.75;
}

/* Stanzas */
.poem-stanzas {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.poem-stanza {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 28px 36px;
  transition: background 0.3s, border-color 0.3s;
}
.poem-stanza:hover {
  background: rgba(244,178,45,0.10);
  border-color: rgba(244,178,45,0.30);
}

.poem-stanza p {
  font-family: 'Open Sans', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 2;
  letter-spacing: 0.2px;
}

/* Closing stanza highlight */
.poem-stanza-closing {
  background: rgba(244,178,45,0.08);
  border-color: rgba(244,178,45,0.25);
}
.poem-stanza-closing p {
  color: rgba(255,255,255,0.88);
}
.poem-closing-line {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  font-style: normal !important;
  font-size: 1.25rem !important;
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 10px;
}

/* Footer */
.poem-footer {
  margin-top: 52px;
}
.poem-copyright {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 10px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.45);
}
.poem-copyright i {
  color: var(--gold);
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .poem-section   { padding: 72px 24px; }
  .poem-stanza    { padding: 22px 24px; }
  .poem-stanza p  { font-size: 0.97rem; }
}
@media (max-width: 480px) {
  .poem-title          { font-size: 1.75rem; }
  .poem-stanza         { padding: 18px 18px; }
  .poem-closing-line   { font-size: 1.05rem !important; }
}
