/* ═══════════════════════════════════════════════
   TIS MOVEMENT — style.css
   #228B22 Green · #FFD700 Gold
   Mobile-first, fully responsive
═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
  --green:       #228B22;
  --green-mid:   #2da82d;
  --green-dark:  #155015;
  --green-light: #e8f5e8;
  --gold:        #FFD700;
  --gold-dark:   #c9a800;
  --gold-light:  #fffbe6;
  --cream:       #faf9f5;
  --charcoal:    #1a1a1a;
  --muted:       #5f6b6f;
  --white:       #ffffff;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --nav-h: 74px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  padding-top: var(--nav-h);
}
img { display: block; max-width: 100%; height: auto; }
h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.18; }

/* ── UTILITIES ── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-block; font-family: var(--sans);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--green);
  padding-bottom: 5px; border-bottom: 2px solid var(--gold);
  margin-bottom: 1rem;
}
.eyebrow--gold  { color: var(--gold);            border-color: rgba(255,215,0,0.5); }
.eyebrow--white { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.3); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.04em; text-decoration: none;
  padding: 0.82rem 1.8rem; border-radius: 3px; cursor: pointer; border: none;
  transition: background 0.18s, transform 0.15s, opacity 0.18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-green        { background: var(--green);   color: var(--white); }
.btn-green:hover  { background: var(--green-mid); }
.btn-gold         { background: var(--gold);    color: var(--charcoal); }
.btn-gold:hover   { background: #ffe033; }
.btn-white        { background: var(--white);   color: var(--green); border: 2px solid var(--white); }
.btn-white:hover  { background: var(--green-light); }
.btn-outline      { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover{ background: rgba(255,255,255,0.12); }
.btn-outline-green{ background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--white); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nav-h);
  background: rgba(255,255,255,0.98); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(34,139,34,0.12);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; width: 100%; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 46px; width: 46px; object-fit: contain; }
.nav-logo-text .name { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--green); line-height: 1; }
.nav-logo-text .sub  { font-size: 0.55rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 2px; }

.nav-menu { display: flex; list-style: none; align-items: center; gap: 0.1rem; }
.nav-menu li { position: relative; }
.nav-menu > li > a {
  display: block; font-size: 0.85rem; font-weight: 500; text-decoration: none;
  color: var(--charcoal); padding: 0.45rem 0.85rem; border-radius: 4px;
  transition: color 0.18s, background 0.18s; white-space: nowrap;
}
.nav-menu > li > a:hover { color: var(--green); background: var(--green-light); }
.has-sub::after { content: ' ▾'; font-size: 0.6rem; opacity: 0.5; }
.cta-btn {
  background: var(--green) !important; color: var(--white) !important;
  padding: 0.5rem 1.2rem !important; border-radius: 3px !important;
  margin-left: 0.3rem;
}
.cta-btn:hover { background: var(--green-mid) !important; }

.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); border: 1px solid rgba(34,139,34,0.12);
  border-top: 2px solid var(--green); border-radius: 0 0 6px 6px;
  min-width: 205px; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 400; list-style: none; padding: 6px 0;
}
.nav-menu li:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block; padding: 9px 16px; font-size: 0.83rem;
  color: var(--charcoal); text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.15s, background 0.15s, border-left-color 0.15s;
}
.nav-dropdown li a:hover { color: var(--green); border-left-color: var(--gold); background: var(--green-light); }

/* hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px; flex-shrink: 0;
}
.hamburger span { width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; display: block; transition: all 0.28s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav panel */
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 299;
  flex-direction: column; padding: 1rem 1.5rem 2rem;
  gap: 0; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none; font-size: 1rem; font-weight: 500;
  color: var(--charcoal); padding: 0.85rem 1rem; border-radius: 6px;
  border-bottom: 1px solid rgba(0,0,0,0.05); transition: background 0.18s;
}
.mobile-nav a:hover { background: var(--green-light); color: var(--green); }
.mobile-nav .mob-cta {
  background: var(--green); color: var(--white) !important;
  text-align: center; border-radius: 4px; margin-top: 0.8rem;
  border-bottom: none; padding: 0.9rem 1rem;
}
.mob-section-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); padding: 1rem 1rem 0.25rem; border-bottom: none;
}

/* ── MARQUEE ── */
.marquee { background: var(--green); padding: 0.8rem 0; overflow: hidden; white-space: nowrap; display: flex; }
.marquee-track {
  display: inline-flex; gap: 2.5rem; flex-shrink: 0;
  animation: marquee-scroll 32s linear infinite; padding-right: 2.5rem;
}
.m-item { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: white; }
.m-dot  { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; height: 420px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.72) 100%);
}
.page-hero-content {
  position: relative; z-index: 1; padding: 2.5rem 1.5rem;
  max-width: 1180px; margin: 0 auto; width: 100%;
}
.page-hero-content h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; max-width: 700px; margin-top: 0.4rem; }
.page-hero-content p  { color: rgba(255,255,255,0.82); font-size: 1rem; max-width: 560px; margin-top: 0.7rem; line-height: 1.7; }

/* ── SECTION HEADER ── */
.section-header { max-width: 1180px; margin: 0 auto; padding: 4rem 1.5rem 2rem; }
.section-header h2 { font-size: clamp(1.7rem, 3vw, 2.7rem); margin-top: 0.5rem; }
.section-header h2 strong { color: var(--green); }
.section-header p { font-size: 0.97rem; color: var(--muted); max-width: 640px; margin-top: 0.8rem; line-height: 1.78; }

/* ── ALTERNATING SECTIONS ── */
.prog-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.prog-section.flip { direction: rtl; }
.prog-section.flip > * { direction: ltr; }
.prog-img { position: relative; overflow: hidden; min-height: 380px; }
.prog-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.prog-section:hover .prog-img img { transform: scale(1.03); }
.prog-num {
  position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2;
  background: var(--gold); color: var(--charcoal);
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.prog-content {
  padding: 3.5rem 3rem; display: flex;
  flex-direction: column; justify-content: center;
}
.prog-section:nth-child(odd)  .prog-content { background: var(--cream); }
.prog-section:nth-child(even) .prog-content { background: var(--white); }
.prog-content h2 { font-size: clamp(1.5rem, 2.2vw, 2.2rem); margin-bottom: 1rem; line-height: 1.2; }
.prog-content h2 strong { color: var(--green); }
.prog-content p  { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.4rem; }
.prog-content .activities { margin-bottom: 1.6rem; display: flex; flex-direction: column; gap: 0.55rem; }
.prog-content .act { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.86rem; color: var(--charcoal); font-weight: 500; }
.act::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 5px; }

/* ── IMPACT BAR ── */
.impact-bar { background: var(--green); padding: 4rem 1.5rem; }
.impact-bar-inner { max-width: 1180px; margin: 0 auto; }
.impact-heading { text-align: center; color: var(--white); font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 2.5rem; }
.impact-heading strong { color: var(--gold); }
.impact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.impact-item { text-align: center; padding: 1.6rem 0.8rem; border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; }
.i-num  { font-family: var(--serif); font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.i-num sup { font-size: 1.2rem; }
.i-div  { width: 22px; height: 2px; background: rgba(255,215,0,0.4); margin: 0.5rem auto; }
.i-label { font-size: 0.84rem; color: rgba(255,255,255,0.82); line-height: 1.5; }

/* ── SCRIPTURE ── */
.scripture-block { background: var(--charcoal); padding: 4rem 1.5rem; text-align: center; }
.scripture-block blockquote {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-style: italic; color: var(--white); max-width: 800px;
  margin: 0 auto 1rem; line-height: 1.55;
}
.scripture-block blockquote strong { color: var(--gold); font-style: normal; }
.scripture-block cite { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ── CARD GRID ── */
.card-grid   { display: grid; gap: 1.2rem; }
.card-grid-2 { grid-template-columns: repeat(2,1fr); }
.card-grid-3 { grid-template-columns: repeat(3,1fr); }
.card-grid-4 { grid-template-columns: repeat(4,1fr); }
.card {
  background: var(--white); border-radius: 4px; padding: 1.8rem 1.6rem;
  border-top: 3px solid var(--green);
  box-shadow: 0 2px 10px rgba(34,139,34,0.07);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(34,139,34,0.12); }
.card-icon { font-size: 1.7rem; margin-bottom: 0.8rem; }
.card h3   { font-size: 1.05rem; margin-bottom: 0.45rem; }
.card p    { font-size: 0.85rem; color: var(--muted); line-height: 1.72; }

/* ── TWO-COL ── */
.two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.two-col-3 { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }

/* ── WEEK / CLASS CARDS ── */
.wk-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.5rem; }
.week-card {
  background: var(--cream); border-radius: 4px; padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--green); transition: border-color 0.2s;
}
.week-card:hover { border-color: var(--gold); }
.wk-num   { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 5px; }
.wk-title { font-family: var(--serif); font-size: 0.95rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.wk-desc  { font-size: 0.8rem; color: var(--muted); line-height: 1.65; }

/* ── MODULE INNER GRID ── */
.module-inner-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.outcome-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; text-align: center; }

/* ── PRICE BOX ── */
.price-box {
  background: var(--charcoal); border-radius: 6px; padding: 2.2rem 1.8rem;
  text-align: center; border: 2px solid var(--gold);
}
.price-box .amount { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 4px; }
.price-box .per    { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; display: block; }
.price-box p       { font-size: 0.84rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 1.4rem; }

/* ── TIMELINE ── */
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.tl-item  { display: grid; grid-template-columns: 64px 1fr; gap: 1.2rem; position: relative; }
.tl-item::before { content: ''; position: absolute; left: 31px; top: 42px; bottom: -14px; width: 2px; background: rgba(34,139,34,0.15); }
.tl-item:last-child::before { display: none; }
.tl-date  { text-align: center; padding-top: 4px; }
.tl-dot   { width: 17px; height: 17px; border-radius: 50%; background: var(--gold); border: 3px solid var(--green-dark); margin: 0 auto 5px; }
.tl-month { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }
.tl-day   { font-family: var(--serif); font-size: 1.3rem; font-weight: 900; color: var(--charcoal); line-height: 1; }
.tl-body  { background: var(--white); border-radius: 4px; padding: 1rem 1.3rem; margin-bottom: 1rem; border-left: 3px solid var(--green); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.tl-body h3 { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 2px; }
.tl-body .tl-sub { font-size: 0.74rem; font-weight: 700; color: var(--gold-dark); margin-bottom: 4px; }
.tl-body p  { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── FAITH LIST ── */
.faith-list { list-style: none; }
.faith-item { display: flex; gap: 1.1rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(34,139,34,0.1); }
.faith-item:last-child { border: none; }
.faith-num  { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; margin-top: 3px; }
.faith-body { font-size: 0.95rem; line-height: 1.78; color: var(--muted); padding-top: 4px; }
.faith-body strong { color: var(--charcoal); }

/* ── JOIN CTA ── */
.join-cta { background: var(--charcoal); color: var(--white); padding: 4.5rem 1.5rem; text-align: center; }
.join-cta h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); max-width: 660px; margin: 0.4rem auto 1rem; line-height: 1.2; }
.join-cta h2 strong { color: var(--gold); }
.join-cta p  { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 2rem; font-size: 0.97rem; line-height: 1.78; }
.join-btns   { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.join-btns .btn { min-width: 140px; }

/* ── CONTACT BLOCK ── */
.contact-block { background: var(--green); padding: 4.5rem 1.5rem; }
.contact-block-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info h2 { color: var(--white); font-size: clamp(1.7rem, 2.5vw, 2.4rem); margin-bottom: 1rem; }
.contact-info p  { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.78; margin-bottom: 2rem; }
.c-details { display: flex; flex-direction: column; gap: 1rem; }
.c-row     { display: flex; align-items: flex-start; gap: 0.9rem; }
.c-icon    { width: 38px; height: 38px; background: rgba(255,215,0,0.15); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.c-text strong { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.c-text span   { font-size: 0.86rem; color: rgba(255,255,255,0.82); line-height: 1.5; }
.c-text a { color: rgba(255,255,255,0.82); text-decoration: none; }
.c-text a:hover { color: var(--gold); }

/* ── FORM CARD ── */
.form-card { background: var(--white); border-radius: 6px; padding: 2.2rem; }
.form-card h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.form-card p  { font-size: 0.84rem; color: var(--muted); margin-bottom: 1.4rem; }
.cf-stack { display: flex; flex-direction: column; gap: 1rem; }
.cf-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-group { display: flex; flex-direction: column; gap: 0.38rem; }
.cf-group label { font-size: 0.78rem; font-weight: 600; color: var(--charcoal); }
.cf-input, .cf-select, .cf-textarea {
  width: 100%; padding: 0.75rem 0.95rem;
  border: 1.5px solid rgba(0,0,0,0.13); border-radius: 4px;
  font-family: var(--sans); font-size: 0.88rem; color: var(--charcoal);
  background: var(--white); outline: none; transition: border-color 0.18s;
}
.cf-input:focus, .cf-select:focus, .cf-textarea:focus { border-color: var(--green); }
.cf-textarea { resize: vertical; min-height: 100px; }
.cf-submit {
  background: var(--green); color: var(--white); border: none;
  padding: 0.88rem 2rem; border-radius: 3px; font-family: var(--sans);
  font-weight: 700; font-size: 0.9rem; cursor: pointer; width: 100%;
  transition: background 0.18s, transform 0.15s;
}
.cf-submit:hover { background: var(--green-mid); transform: translateY(-1px); }
.cf-note    { font-size: 0.73rem; color: var(--muted); text-align: center; margin-top: 0.5rem; }
.cf-note a  { color: var(--green); }
.cf-success { display: none; color: var(--green); font-weight: 600; font-size: 0.88rem; text-align: center; margin-top: 0.5rem; }

/* ── COMMUNITY CARDS ── */
.community-card { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: 0 2px 10px rgba(34,139,34,0.07); transition: transform 0.2s, box-shadow 0.2s; }
.community-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(34,139,34,0.14); }
.cc-header { padding: 1.3rem 1.6rem; border-bottom: 3px solid var(--gold); }
.cc-num    { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.cc-name   { font-family: var(--serif); font-size: 1.35rem; font-weight: 900; color: var(--white); }
.cc-ages   { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.58); margin-top: 2px; letter-spacing: 0.04em; }
.cc-body   { padding: 1.2rem 1.6rem; }
.cc-verse  { border-left: 2px solid var(--gold); padding-left: 0.8rem; margin-bottom: 0.8rem; }
.cc-verse p    { font-style: italic; font-size: 0.82rem; color: var(--muted); line-height: 1.65; margin-bottom: 3px; }
.cc-verse cite { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); font-style: normal; }
.cc-desc   { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* ── CONFERENCE CARD ── */
.conf-card { background: var(--white); border-radius: 6px; overflow: hidden; border-top: 3px solid var(--gold); box-shadow: 0 2px 10px rgba(34,139,34,0.07); transition: transform 0.2s, box-shadow 0.2s; }
.conf-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(34,139,34,0.12); }
.conf-card-body { padding: 1.8rem 1.6rem; }
.conf-icon  { font-size: 2rem; margin-bottom: 0.7rem; }
.conf-num   { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 5px; }
.conf-name  { font-family: var(--serif); font-size: 1.3rem; font-weight: 900; color: var(--charcoal); margin-bottom: 5px; }
.conf-theme { display: inline-block; background: var(--gold-light); color: var(--gold-dark); font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 0.9rem; }
.conf-verse { border-left: 2px solid var(--gold); padding-left: 0.8rem; margin-bottom: 0.9rem; }
.conf-verse p    { font-style: italic; font-size: 0.82rem; color: var(--muted); line-height: 1.65; margin-bottom: 3px; }
.conf-verse cite { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); font-style: normal; }
.conf-desc  { font-size: 0.86rem; color: var(--muted); line-height: 1.7; }

/* ── GIVE BOXES ── */
.give-box { background: var(--white); border-radius: 6px; padding: 1.8rem; border-top: 3px solid var(--gold); box-shadow: 0 2px 8px rgba(0,0,0,0.05); margin-bottom: 1.1rem; }
.give-box h3 { font-size: 1.05rem; margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.55rem; }
.give-row { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); flex-wrap: wrap; gap: 0.5rem; }
.give-row:last-child { border: none; }
.give-row label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.give-row value  { font-size: 0.94rem; font-weight: 700; color: var(--charcoal); }

/* ── SERVICE TIMES BAR ── */
.times-bar {
  background: var(--charcoal); padding: 1.2rem 1.5rem;
  display: flex; justify-content: center; align-items: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.times-item { text-align: center; }
.times-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.times-value { font-size: 0.88rem; color: rgba(255,255,255,0.85); }
.times-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  background: #25D366; color: #fff; width: 52px; height: 52px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── FOOTER ── */
.footer { background: #111; color: rgba(255,255,255,0.75); padding: 3.5rem 1.5rem 1.6rem; }
.footer-top {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo     { display: flex; align-items: center; gap: 9px; margin-bottom: 0.9rem; }
.footer-logo img { height: 40px; width: 40px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.65; }
.footer-logo .fn { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1; }
.footer-logo .fs { font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); }
.footer-tagline  { font-size: 0.83rem; color: rgba(255,255,255,0.48); line-height: 1.72; margin-bottom: 1rem; }
.footer-col h4   { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul   { list-style: none; }
.footer-col li   { margin-bottom: 0.5rem; }
.footer-col a    { color: rgba(255,255,255,0.52); text-decoration: none; font-size: 0.83rem; transition: color 0.18s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom   { max-width: 1180px; margin: 1.5rem auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; color: rgba(255,255,255,0.26); flex-wrap: wrap; gap: 0.5rem; }

/* ──────────────────────────────────────────────
   RESPONSIVE — mobile first, no !important
   Full cascade approach
────────────────────────────────────────────── */

/* Tablet landscape */
@media (max-width: 1024px) {
  .prog-section { grid-template-columns: 1fr; min-height: auto; }
  .prog-section.flip { direction: ltr; }
  .prog-img { min-height: 280px; }
  .prog-content { padding: 2.5rem 2rem; }
  .impact-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-block-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col, .two-col-3 { grid-template-columns: 1fr; gap: 2rem; }
  .card-grid-3 { grid-template-columns: repeat(2,1fr); }
  .card-grid-4 { grid-template-columns: repeat(2,1fr); }
  .wk-grid { grid-template-columns: repeat(2,1fr); }
  .module-inner-grid { grid-template-columns: repeat(2,1fr); }
  .outcome-grid { grid-template-columns: repeat(2,1fr); }
}

/* Tablet portrait / large phone */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-logo img { height: 42px; width: 42px; }

  /* Show hamburger, hide desktop nav */
  .nav-menu   { display: none; }
  .hamburger  { display: flex; }

  /* Page hero */
  .page-hero { height: 280px; }
  .page-hero-content h1 { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
  .page-hero-content p  { font-size: 0.9rem; }

  /* Section header */
  .section-header { padding: 2.5rem 1.2rem 1.5rem; }

  /* Prog sections */
  .prog-img { min-height: 240px; }
  .prog-content { padding: 2rem 1.5rem; }

  /* Grids → 1 column */
  .wk-grid          { grid-template-columns: 1fr; }
  .module-inner-grid{ grid-template-columns: 1fr; }
  .outcome-grid     { grid-template-columns: 1fr; gap: 1rem; }
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }

  /* Inline grids in HTML */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  [style*="grid-template-columns:repeat(2,1fr)"],
  [style*="grid-template-columns: repeat(2, 1fr)"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: 1fr !important; }

  /* Class page two-col (info + price) */
  .two-col, .two-col-3 { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Faith list */
  .faith-item { flex-direction: column; gap: 0.5rem; }
  .faith-num  { align-self: flex-start; }

  /* Timeline */
  .tl-item { grid-template-columns: 52px 1fr; gap: 0.9rem; }

  /* Impact */
  .impact-grid { grid-template-columns: repeat(2,1fr); }

  /* Times bar */
  .times-bar { flex-direction: column; gap: 1rem; align-items: flex-start; padding: 1.5rem; }
  .times-divider { display: none; }

  /* CTA */
  .join-cta { padding: 3rem 1.5rem; }
  .join-btns { flex-direction: column; align-items: center; }
  .join-btns .btn { width: 100%; max-width: 300px; }

  /* Scripture */
  .scripture-block { padding: 3rem 1.5rem; }
  .scripture-block blockquote { font-size: clamp(1.1rem, 4vw, 1.6rem); }

  /* Contact */
  .contact-block { padding: 3rem 1.5rem; }
  .contact-block-inner { grid-template-columns: 1fr; gap: 2rem; }

  /* Form */
  .cf-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 2.5rem 1.5rem 1.2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* Price box */
  .price-box { padding: 1.8rem 1.2rem; }
  .price-box .amount { font-size: 2.2rem; }

  /* Module border block padding */
  [style*="border:2px solid var(--green)"][style*="padding:2.5rem"] { padding: 1.2rem !important; }
  [style*="border:2px solid var(--green)"][style*="padding:2rem"]   { padding: 1rem !important; }

  /* Inline padding reduction */
  [style*="padding:5rem 2rem"] { padding: 2.5rem 1.2rem !important; }
  [style*="padding:4rem 2rem"] { padding: 2rem 1.2rem !important; }
  [style*="padding:3rem 2rem"] { padding: 1.8rem 1.2rem !important; }
  .wrap { padding: 0 1.2rem; }
}

/* Small phones */
@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .nav-logo img { height: 38px; width: 38px; }
  .nav-logo-text .name { font-size: 1rem; }

  /* Page hero */
  .page-hero { height: 220px; }

  /* Impact: 2 small columns */
  .impact-grid { grid-template-columns: repeat(2,1fr); gap: 0.8rem; }
  .impact-item { padding: 1.2rem 0.5rem; }
  .i-num { font-size: 2.2rem; }

  /* Footer: single col */
  .footer-top { grid-template-columns: 1fr; }

  /* Price box */
  .price-box .amount { font-size: 1.9rem; }

  /* Prog section */
  .prog-img { min-height: 200px; }
  .prog-content { padding: 1.8rem 1.2rem; }

  /* Class page: six-doctrines grid */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:0.6rem"] { grid-template-columns: 1fr !important; }

  .join-cta { padding: 2.5rem 1.2rem; }
  .join-btns .btn { font-size: 0.82rem; padding: 0.75rem 1.4rem; }
}

/* Very small phones */
@media (max-width: 360px) {
  .nav-logo-text { display: none; }
  .page-hero { height: 200px; }
  .impact-grid { grid-template-columns: 1fr; }
  .wk-title { font-size: 0.88rem; }
}

/* Vision/Mission grid on homepage */
@media (max-width: 768px) {
  .vm-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
}

/* ═══════════════════════════════════════════
   HOMEPAGE — mobile-first CSS classes
   Replaces all inline styles on index.html
═══════════════════════════════════════════ */

/* Hero */
.hero-section {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 520px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,28,8,0.93) 0%, rgba(8,28,8,0.65) 55%, rgba(8,28,8,0.18) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  width: 100%; max-width: 1180px;
  margin: 0 auto; padding: 0 1.5rem;
}
.hero-location {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem;
}
.hero-title {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 700; line-height: 1.06;
  max-width: 620px; margin-bottom: 1.1rem;
}
.hero-title strong { color: var(--gold); font-weight: 900; }
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: clamp(0.92rem, 2vw, 1.1rem);
  max-width: 460px; line-height: 1.75; margin-bottom: 0.5rem;
}
.hero-sub strong { color: rgba(255,255,255,0.96); }
.hero-times {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem; margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* Vision/Mission */
.vm-section { background: var(--green); padding: 4rem 1.5rem; }
.vm-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.vm-col h2 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--white); margin-bottom: 0.9rem; line-height: 1.22;
}
.vm-col h2 strong { color: var(--gold); }
.vm-col p { color: rgba(255,255,255,0.75); line-height: 1.8; font-size: 0.95rem; }
.vm-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.vm-list li {
  display: flex; align-items: flex-start; gap: 0.85rem;
  color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.72;
}
.vm-list li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 7px;
}

/* Scripture band */
.scripture-band {
  background: var(--white); padding: 3rem 1.5rem;
  text-align: center; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.scripture-band blockquote {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.65rem);
  font-weight: 400; font-style: italic;
  color: var(--charcoal);
  max-width: 780px; margin: 0 auto 0.6rem; line-height: 1.55;
}
.scripture-band blockquote strong { color: var(--green); font-style: normal; }
.scripture-band cite {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}

/* Facts / service times bar */
.facts-bar {
  background: var(--green); padding: 0;
  display: flex; overflow-x: auto;
  border-top: 2px solid rgba(255,255,255,0.1);
}
.fact-item {
  flex: 1; min-width: 0;
  text-decoration: none;
  padding: 1.3rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.fact-item:last-of-type { border-right: none; }
.fact-item:hover { background: rgba(255,255,255,0.08); }
.fact-val {
  font-family: var(--serif); font-size: clamp(0.95rem, 1.5vw, 1.3rem);
  font-weight: 700; color: var(--gold); line-height: 1;
  white-space: nowrap;
}
.fact-lbl {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.72);
  white-space: nowrap;
}
.fact-div { width: 0; } /* hidden — border handled by fact-item */

/* Nav devotion link */
.nav-devotion { color: var(--green) !important; font-weight: 700; }

/* ── DROPDOWN: click-sticky (is-open class set by JS) ── */
.nav-dropdown { display: none; }
.has-dropdown.is-open .nav-dropdown { display: block; }

/* ── HOMEPAGE MOBILE ── */
@media (max-width: 768px) {
  .vm-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-section { min-height: 420px; height: auto; padding: 5rem 0 3rem; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-times { font-size: 0.74rem; }
  .facts-bar { flex-wrap: wrap; }
  .fact-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .fact-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 480px) {
  .hero-section { padding: 4rem 0 2.5rem; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero-sub { font-size: 0.9rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; max-width: 280px; }
  .scripture-band { padding: 2.2rem 1.2rem; }
  .vm-section { padding: 2.5rem 1.2rem; }
  .fact-item { flex: 0 0 50%; }
}

/* ── SITEMAP update ── */
