/*
Theme Name: Lighthouse Church
Theme URI: https://github.com/jwwise/lighthouse-website
Description: Custom block theme for Lighthouse Independent Baptist Church
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
Author: Justin Wise
License: GPL-2.0-or-later
Text Domain: lighthouse-theme
*/

/* === DESIGN TOKENS === */
:root {
  --navy:       #1a3255;
  --navy-dark:  #122440;
  --gold:       #c8921a;
  --gold-light: #e0a520;
  --cream:      #fdf9f3;
  --white:      #ffffff;
  --dark:       #1c1c1c;
  --muted:      #5c5c5c;
  --border:     #e8e0d4;

  --font-heading: 'Lora', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1100px;
  --radius:    6px;
  --shadow:    0 2px 12px rgba(26, 50, 85, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 50, 85, 0.14);

  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; }
img   { display: block; max-width: 100%; }
ul, ol { list-style: none; }

/* === BASE === */
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem,   4vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem);  }
h4 { font-size: 1.125rem; font-weight: 500;  }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy); }

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section        { padding: var(--space-lg) 0; }
.section-cream  { background: var(--cream); }
.section-white  { background: var(--white); }
.section-navy   { background: var(--navy); color: rgba(255,255,255,0.85); }
.section-navy h2,
.section-navy h3 { color: var(--white); }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img { width: 44px; height: auto; border-radius: 2px; }
.site-logo-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--navy);
  max-width: 180px;
}

.site-nav ul { display: flex; gap: 0.125rem; align-items: center; }
.site-nav a {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover,
.site-nav a.active { color: var(--navy); background: var(--cream); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--navy-dark) !important; color: var(--white) !important; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: var(--white); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  background-size: cover;
  background-position: center 55%;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,50,85,0.88) 0%,
    rgba(26,50,85,0.70) 55%,
    rgba(26,50,85,0.40) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-xl) 1.5rem;
  color: var(--white);
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  max-width: 13ch;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  max-width: 46ch;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* === SERVICE TIMES STRIP === */
.service-strip {
  background: var(--navy-dark);
  padding: 1.125rem 0;
}
.service-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.strip-divider { width: 1px; height: 2rem; background: rgba(255,255,255,0.15); }
.strip-item { display: flex; gap: 0.625rem; align-items: flex-start; }
.strip-icon { color: var(--gold); font-size: 1rem; margin-top: 0.15rem; }
.strip-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); margin-bottom: 0.15rem; }
.strip-value { font-size: 0.9rem; color: var(--white); line-height: 1.4; }

/* === PAGE BANNER === */
.page-banner {
  background: var(--navy);
  padding: 4.5rem 1.5rem 4rem;
  text-align: center;
}
.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}
.page-banner p {
  color: rgba(255,255,255,0.7);
  margin-top: 0.75rem;
  font-size: 1.0625rem;
}

/* === CARDS === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card a { text-decoration: none; display: block; }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-body h3, .card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.card-body p, .card p { color: var(--muted); font-size: 0.9375rem; margin-bottom: 1rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.9rem;
}
.card-link::after { content: '→'; }
.card-link:hover { color: var(--navy); }

/* === MISSION STATEMENT BAND === */
.mission-band {
  background: var(--gold);
  padding: 3rem 1.5rem;
  text-align: center;
}
.mission-band p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--white);
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.55;
  font-style: italic;
}

/* === CONTENT AREA === */
.content-body h2 { margin: 2.25rem 0 1rem; color: var(--navy); }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { margin: 1.75rem 0 0.75rem; color: var(--navy); }
.content-body h4 { margin: 1.25rem 0 0.5rem; color: var(--navy); }
.content-body p { margin-bottom: 1.25rem; }
.content-body ul,
.content-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; list-style: revert; }
.content-body li { margin-bottom: 0.5rem; }

/* === TWO-COLUMN LAYOUTS === */
.two-col       { display: grid; grid-template-columns: 1fr 1fr;       gap: 3.5rem; align-items: start; }
.two-col-wide  { display: grid; grid-template-columns: 3fr 2fr;       gap: 3.5rem; align-items: start; }
.two-col-equal { display: grid; grid-template-columns: 1fr 1fr;       gap: 3.5rem; align-items: center; }

/* === IMAGES === */
.rounded-img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: auto; }

/* === TIMELINE (Church History) === */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.375rem;
  top: 0.45rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.timeline-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.timeline-item p { color: var(--muted); font-size: 0.9375rem; line-height: 1.75; }

/* === STATEMENT OF FAITH === */
.faith-article {
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.75rem;
  margin-bottom: 2.75rem;
}
.faith-article:last-child { margin-bottom: 0; }
.faith-article h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.75rem; }
.faith-article h4 { font-size: 1rem; color: var(--navy); margin: 1.25rem 0 0.4rem; font-weight: 500; }
.faith-article p { color: var(--muted); font-size: 0.9375rem; line-height: 1.85; margin-bottom: 0.9rem; }
.faith-article p:last-child { margin-bottom: 0; }

/* === LIVE STREAM BANNER === */
.livestream-banner {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.livestream-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.livestream-label {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff4040;
  box-shadow: 0 0 0 0 rgba(255,64,64,0.5);
  animation: pulse-live 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,64,64,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(255,64,64,0); }
}
.livestream-text { color: rgba(255,255,255,0.9); font-size: 0.9375rem; }
.livestream-text strong { color: var(--white); }
.btn-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ff0000;
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-live svg { width: 16px; height: 16px; fill: currentColor; }
.btn-live:hover { background: #cc0000; color: var(--white); }

/* === MEDIA PAGE (YouTube playlist cards) === */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.media-card {
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.media-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.media-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  padding: 2rem 1.75rem;
  color: var(--white);
}
.media-card-icon {
  width: 52px;
  height: 52px;
  background: #ff0000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: background 0.2s;
}
.media-card:hover .media-card-icon { background: #cc0000; }
.media-card-icon svg { width: 24px; height: 24px; fill: var(--white); }
.media-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.media-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: auto;
  padding-top: 1rem;
}
.media-card-cta::after { content: '→'; }

/* === CONTACT PAGE === */
.info-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.info-block h3 { margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.info-row { display: flex; gap: 0.875rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-icon { color: var(--gold); font-size: 1.125rem; margin-top: 0.1rem; flex-shrink: 0; width: 1.25rem; text-align: center; }
.info-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.2rem; }
.info-value { font-size: 0.9375rem; color: var(--dark); line-height: 1.55; }
.info-block p { color: var(--dark); font-size: 0.9375rem; line-height: 1.55; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); line-height: 0; margin-top: 1.5rem; }
.map-embed iframe { width: 100%; height: 380px; border: 0; }

/* === FORM === */
.contact-form { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.contact-form h3 { margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--navy); background: var(--white); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* === WPFORMS OVERRIDES === */
.wpforms-form .wpforms-field { margin-bottom: 1.25rem; }
.wpforms-form .wpforms-field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.wpforms-form .wpforms-field-sublabel {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form input[type="url"],
.wpforms-form textarea,
.wpforms-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.wpforms-form input[type="text"]:focus,
.wpforms-form input[type="email"]:focus,
.wpforms-form input[type="tel"]:focus,
.wpforms-form textarea:focus,
.wpforms-form select:focus { outline: none; border-color: var(--navy); background: var(--white); }
.wpforms-form textarea { min-height: 140px; resize: vertical; }
.wpforms-form .wpforms-field-row { display: flex !important; flex-wrap: nowrap !important; width: 100% !important; gap: 1rem; align-items: flex-start; }
.wpforms-form .wpforms-field-row-block { flex: 1 1 0 !important; width: auto !important; min-width: 0 !important; float: none !important; padding: 0 !important; margin: 0 !important; }
.wpforms-form .wpforms-field-sublabel { font-size: 0.8rem; color: var(--muted) !important; margin-top: 0.25rem; }
.wpforms-form input::placeholder,
.wpforms-form textarea::placeholder { color: var(--muted); opacity: 1; }
.wpforms-form .wpforms-required-label { color: var(--gold); margin-left: 2px; }
.wpforms-form .wpforms-error { color: #c0392b; font-size: 0.8rem; margin-top: 0.3rem; }
.wpforms-form .wpforms-submit-container { margin-top: 0.5rem; }
.wpforms-form .wpforms-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem 2rem;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.wpforms-form .wpforms-submit:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

/* === GOOD NEWS PAGE === */
.gn-hero {
  background: radial-gradient(ellipse at 50% 40%, #1a2f55 0%, #0a1220 70%);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
  margin-block-start: 0;
}
.gn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 8%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(2px 2px at 42% 25%, rgba(200,146,26,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 58% 12%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 72% 5%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 20%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 8% 45%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 38%, rgba(200,146,26,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 35% 55%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 48%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 70%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 20% 75%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 65%, rgba(200,146,26,0.5) 0%, transparent 100%);
  pointer-events: none;
}
.gn-hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  position: relative;
}
.gn-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  position: relative;
}
.gn-hero h1 span { color: var(--gold); }
.gn-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  position: relative;
}
.gn-hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}
.gn-hero-scroll svg { animation: gn-bounce 2s ease-in-out infinite; }
@keyframes gn-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

.gn-roadmap { background: #0e1e35; padding: 3rem 1.5rem; margin-block-start: 0; }
.gn-roadmap-inner { max-width: 820px; margin: 0 auto; }
.gn-roadmap h3 {
  color: var(--white);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
}
.gn-roadmap-steps { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.gn-roadmap-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.gn-roadmap-step:hover { background: rgba(200,146,26,0.2); color: var(--white); border-color: var(--gold); }
.gn-roadmap-step span { color: var(--gold); font-weight: 600; }

.gn-step { padding: 5rem 1.5rem; margin-block-start: 0; }
.gn-step-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.gn-step-num {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}
.gn-step-num.gold { background: var(--gold); color: #fff; }
.gn-step-num.light { background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.gn-step-title { margin: 0; }
.gn-step-title .step-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.gn-featured-img {
  margin: 2rem 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.gn-featured-img img { width: 100%; height: auto; display: block; }
.gn-featured-img figcaption,
.gn-featured-img .wp-element-caption {
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-style: italic;
  padding: 0.5rem 1rem;
  line-height: 1.4;
  text-align: center;
}

.scripture {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  margin: 1.75rem 0;
  position: relative;
}
.scripture::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(200,146,26,0.25);
  position: absolute;
  top: -0.5rem;
  left: 1.25rem;
  line-height: 1;
}
.scripture p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
  margin: 0 0 0.75rem;
  position: relative;
}
.scripture cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.scripture.light {
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}
.scripture.light::before { color: rgba(26,50,85,0.1); }
.scripture.light p { color: var(--navy); }
.scripture.light cite { color: var(--gold); }
.scripture.on-dark {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}
.scripture.on-dark::before { color: rgba(200,146,26,0.3); }

.gn-callout {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.75rem 0;
  background: rgba(200,146,26,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.gn-callout p { margin: 0; color: var(--dark); font-size: 1rem; }
.gn-callout strong { color: var(--navy); }
.gn-callout.on-dark { background: rgba(255,255,255,0.07); }
.gn-callout.on-dark p { color: rgba(255,255,255,0.85); }
.gn-callout.on-dark strong { color: var(--gold); }

.gn-road { display: flex; justify-content: center; margin-block-start: 0;; }
.gn-road-line {
  width: 3px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.gn-road-line.light { background: linear-gradient(to bottom, rgba(200,146,26,0.5), transparent); }

.bg-dark { background: #0a1220; }
.bg-sunrise {
  background: radial-gradient(ellipse at 50% 0%, rgba(200,146,26,0.1) 0%, #ffffff 55%);
  border-top: 4px solid var(--gold);
}

.gn-prayer {
  background: linear-gradient(135deg, #1a3255 0%, #0e1e35 100%);
  border-radius: 12px;
  padding: 3rem;
  margin: 2rem 0;
  text-align: center;
  box-shadow: 0 8px 40px rgba(10,18,32,0.35);
}
.gn-prayer h3 { color: var(--gold); margin-bottom: 0.5rem; }
.gn-prayer .prayer-intro { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 2rem; }
.gn-prayer p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.92);
  line-height: 2;
  text-align: left;
  margin: 0;
}
.gn-prayer .prayer-note {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1.75rem;
  text-align: center;
}

.gn-next-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.gn-next-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.gn-next-card .next-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.gn-next-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 0.5rem; }
.gn-next-card p { font-size: 0.875rem; color: var(--muted); margin: 0; }

.gn-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gn-divider::before, .gn-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

@media (max-width: 600px) {
  .gn-hero { min-height: 78vh; padding: 3.5rem 1.25rem 3rem; }
  .gn-roadmap { padding: 2rem 1.25rem; }
  .gn-roadmap-steps { flex-direction: column; align-items: center; }
  .gn-step { padding: 3rem 1.25rem; }
  .gn-step-header { flex-direction: column; gap: 1rem; }
  .gn-prayer { padding: 2rem 1.25rem; }
  /* Override inline 5rem padding on the prayer and what-now sections */
  .wp-block-group.alignfull:has(.gn-divider),
  .wp-block-group.alignfull:has(.gn-prayer) {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

/* === FOOTER === */
.site-footer { background: var(--navy); padding: var(--space-lg) 0 0; }
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.75fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.875rem; }
.footer-brand p { font-size: 0.9375rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 0.5rem; }
.footer-brand .service-highlight { color: rgba(255,255,255,0.85); margin-top: 1.25rem; }
.footer-brand .service-highlight strong { color: var(--gold); display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.35rem; }
.footer-nav-col h4 { color: rgba(255,255,255,0.45); font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-nav-col ul { list-style: none; }
.footer-nav-col li { margin-bottom: 0.625rem; }
.footer-nav-col a { color: rgba(255,255,255,0.65); font-size: 0.9375rem; transition: color 0.2s; }
.footer-nav-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--container);
  margin: var(--space-md) auto 0;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .two-col, .two-col-wide, .two-col-equal { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .media-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-nav { display: none; }
  .hero { min-height: 78vh; }
  .hero h1 { font-size: 2rem; }
  .service-strip-inner { gap: 1.25rem; }
  .strip-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
  .card-grid { grid-template-columns: 1fr; }
}
