/* ═══════════════════════════════════════════════
   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;
}

/* ═══════════════════════════════════════════════
   WHO WE ARE + VISION & MISSION — same row
═══════════════════════════════════════════════ */
.who-vm-section { background: var(--green); padding: 4.5rem 1.5rem; }
.who-vm-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start;
}
.who-vm-col .about-card-icon { font-size: 2.2rem; margin-bottom: 0.8rem; display: block; }
.who-vm-col .eyebrow--gold {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem;
}
.who-vm-col h2 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  color: var(--white); margin-bottom: 0.9rem; line-height: 1.24;
  font-weight: 700;
}
.who-vm-col h2 strong { color: var(--gold); }
.who-card p {
  color: rgba(255,255,255,0.78); line-height: 1.8; font-size: 0.93rem;
  margin-bottom: 0.8rem;
}
.who-card p:last-of-type { margin-bottom: 0; }
.who-card p strong { color: rgba(255,255,255,0.95); }
.who-card p em { color: var(--gold); font-style: italic; }
.who-vm-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.2rem; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(255,215,0,0.35); padding-bottom: 2px;
  transition: border-color 0.2s, opacity 0.2s;
}
.who-vm-link:hover { opacity: 0.8; border-color: var(--gold); }

.vm-stack { display: flex; flex-direction: column; gap: 2.2rem; }
.vm-block p { color: rgba(255,255,255,0.75); line-height: 1.8; font-size: 0.93rem; }
.vm-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.vm-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  color: rgba(255,255,255,0.8); font-size: 0.92rem; line-height: 1.65;
}
.vm-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 7px;
}

@media (max-width: 900px) {
  .who-vm-grid { grid-template-columns: 1fr; gap: 2.8rem; }
}
@media (max-width: 480px) {
  .who-vm-section { padding: 3rem 1.2rem; }
}

/* 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 ── */

/* ═══════════════════════════════════════════════
   ABOUT CARDS — homepage "Who We Are / What We Offer"
   Visually distinct, eye-catching two-card layout
═══════════════════════════════════════════════ */
.about-cards-section {
  background: var(--charcoal);
  padding: 0;
}
.about-cards-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 380px;
}
.about-card {
  padding: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.about-card:first-child {
  background: var(--green-dark, #155015);
  border-right: 1px solid rgba(255,215,0,0.15);
}
.about-card--alt {
  background: var(--charcoal);
}
.about-card::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,215,0,0.04);
  pointer-events: none;
}
.about-card-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}
.about-card-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.about-card-eyebrow::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: rgba(255,215,0,0.25);
}
.about-card-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 1.1rem;
}
.about-card-title span { color: var(--gold); }
.about-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.82;
  margin-bottom: 0.7rem;
}
.about-card p strong { color: rgba(255,255,255,0.95); }
.about-card p em { color: var(--gold); font-style: italic; }
.about-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,215,0,0.35);
  padding-bottom: 2px;
  transition: border-color 0.2s, opacity 0.2s;
}
.about-card-link:hover { opacity: 0.8; border-color: var(--gold); }

@media (max-width: 768px) {
  .about-cards-wrap { grid-template-columns: 1fr; }
  .about-card { padding: 2.8rem 1.5rem; }
  .about-card:first-child { border-right: none; border-bottom: 1px solid rgba(255,215,0,0.15); }
}
@media (max-width: 480px) {
  .about-card { padding: 2.2rem 1.2rem; }
}

/* Single-card variant (Who We Are alone, no split) */
.about-cards-wrap--single {
  grid-template-columns: 1fr;
  max-width: 820px;
}
.about-cards-wrap--single .about-card:first-child {
  border-right: none;
}

/* ═══════════════════════════════════════════════
   WHAT WE OFFER — dedicated 3-column section
═══════════════════════════════════════════════ */
.offer-section {
  background: var(--cream, #faf9f5);
  padding: 5.5rem 1.5rem;
}
.offer-wrap {
  max-width: 1180px;
  margin: 0 auto;
}
.offer-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.offer-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin: 0.6rem 0 0.9rem;
  color: var(--charcoal);
}
.offer-header h2 strong { color: var(--green); }
.offer-header p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.78;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}

.offer-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.4rem 2rem;
  position: relative;
  box-shadow: 0 2px 14px rgba(34,139,34,0.07);
  border: 1px solid rgba(34,139,34,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(34,139,34,0.14);
}
.offer-card--featured {
  background: var(--green-dark, #155015);
  border-color: var(--green-dark, #155015);
}
.offer-card--featured h3,
.offer-card--featured .offer-card-num { color: var(--white); }
.offer-card--featured .offer-card-sub { color: rgba(255,255,255,0.65); }
.offer-card--featured .offer-card-list li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.1); }
.offer-card--featured .offer-card-list a { color: var(--gold); }
.offer-card--featured .offer-card-list a:hover { color: #fff; }

.offer-card-num {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(34,139,34,0.35);
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}
.offer-card-icon {
  font-size: 2.1rem;
  margin-bottom: 0.8rem;
  display: block;
}
.offer-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.28;
  margin-bottom: 0.5rem;
}
.offer-card-sub {
  font-size: 0.84rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.3rem;
  line-height: 1.5;
}
.offer-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.offer-card-list li {
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.6;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(34,139,34,0.08);
}
.offer-card-list li:last-child { border-bottom: none; }
.offer-card-list a {
  color: var(--green);
  text-decoration: none;
}
.offer-card-list a:hover { text-decoration: underline; }

.offer-footnote {
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 2.8rem;
}
.offer-cta {
  text-align: center;
  margin-top: 1.4rem;
}
.offer-cta .about-card-link {
  color: var(--green);
  border-bottom-color: rgba(34,139,34,0.35);
}
.offer-cta .about-card-link:hover { border-color: var(--green); opacity: 0.8; }

@media (max-width: 900px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card--featured { order: -1; }
}
@media (max-width: 480px) {
  .offer-section { padding: 3.5rem 1.2rem; }
  .offer-card { padding: 2rem 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   TIS MOVEMENT — DESIGN UPGRADE v2.0
   Mobile-first · Modern CSS · Scroll animations · Best-in-class UX
   ─────────────────────────────────────────────────────────────────
   New additions:
   • CSS custom property extensions (spacing, shadow, radius, motion)
   • Glass-morphism nav with scroll shadow
   • Mobile nav slide-in drawer with backdrop
   • Intersection Observer scroll-reveal animations
   • Stagger animations for card grids
   • Enhanced typography & fluid sizing (clamp)
   • 44px touch targets everywhere
   • Safe-area insets for notched phones
   • WhatsApp float pulse animation
   • Enhanced scripture band
   • Improved facts bar grid
   • Improved footer layout
   • prefers-reduced-motion respected
═══════════════════════════════════════════════════════════════════ */

/* ── Extended custom properties ── */
:root {
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-full: 9999px;
  --shadow-xs:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:   0 2px 10px rgba(34,139,34,0.08);
  --shadow-md:   0 8px 28px rgba(34,139,34,0.13);
  --shadow-lg:   0 20px 56px rgba(34,139,34,0.18);
  --shadow-gold: 0 4px 20px rgba(255,215,0,0.25);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0.0, 0.2, 1);
  --dur-fast:    0.18s;
  --dur-base:    0.26s;
  --dur-slow:    0.42s;
  --tap-min:     44px;   /* WCAG touch target */
  --content-max: 740px;
  --site-max:    1180px;
}

/* ── Better base ── */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
*, *::before, *::after { box-sizing: border-box; }
img { display: block; max-width: 100%; height: auto; }

/* ── Focus-visible (keyboard accessibility) ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   Add class="reveal" to any element to make
   it animate in when it enters the viewport.
   Add class="stagger" to a parent to stagger
   animate its direct children.
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
      opacity  0.65s var(--ease-out),
      transform 0.65s var(--ease-out);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition:
      opacity   0.55s var(--ease-out),
      transform 0.55s var(--ease-out);
  }
  .reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
  }

  /* Stagger children */
  .stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity   0.5s var(--ease-out),
      transform 0.5s var(--ease-out);
  }
  .stagger.is-visible > *:nth-child(1)  { transition-delay: 0.05s; opacity: 1; transform: none; }
  .stagger.is-visible > *:nth-child(2)  { transition-delay: 0.14s; opacity: 1; transform: none; }
  .stagger.is-visible > *:nth-child(3)  { transition-delay: 0.23s; opacity: 1; transform: none; }
  .stagger.is-visible > *:nth-child(4)  { transition-delay: 0.32s; opacity: 1; transform: none; }
  .stagger.is-visible > *:nth-child(n+5){ transition-delay: 0.40s; opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════
   NAV — enhanced glass morphism
═══════════════════════════════════════════ */
.nav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid rgba(34,139,34,0.1);
  box-shadow: 0 1px 0 rgba(34,139,34,0.06);
  transition: box-shadow var(--dur-base) var(--ease-out);
}
.nav.is-scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,0.1), 0 1px 0 rgba(34,139,34,0.08);
}

/* Touch-friendly nav items */
.nav-menu > li > a {
  min-height: var(--tap-min);
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-menu > li > a:hover {
  color: var(--green);
  background: var(--green-light);
}

/* ═══════════════════════════════════════════
   MOBILE NAV — slide-in drawer
═══════════════════════════════════════════ */
.mobile-nav {
  /* Always rendered, animated in/out via transform */
  display: flex !important;
  transform: translateX(-105%);
  transition: transform var(--dur-slow) var(--ease-in-out);
  will-change: transform;
  box-shadow: 6px 0 40px rgba(0,0,0,0.1);
  /* iOS safe area */
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  overscroll-behavior: contain;
}
.mobile-nav.open {
  transform: translateX(0);
}

/* Mobile nav backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 298;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition:
    background var(--dur-base) var(--ease-out),
    backdrop-filter var(--dur-base) var(--ease-out);
  pointer-events: none;
}
.nav-backdrop.open {
  display: block;
  pointer-events: all;
  background: rgba(0,0,0,0.46);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* Better tap targets in mobile nav */
.mobile-nav a {
  min-height: var(--tap-min);
  display: flex;
  align-items: center;
  border-radius: var(--radius-md);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.mobile-nav .mob-cta {
  min-height: 52px;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 4px 18px rgba(34,139,34,0.3);
}

/* ═══════════════════════════════════════════
   HERO — improved depth & readability
═══════════════════════════════════════════ */
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.18) 0%,
    rgba(21,80,21,0.55) 50%,
    rgba(0,0,0,0.78) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  letter-spacing: -0.02em;
}
.hero-sub {
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* ═══════════════════════════════════════════
   WHO WE ARE + VISION & MISSION — enhanced
═══════════════════════════════════════════ */
.who-vm-section {
  background: var(--green-dark);
  padding: clamp(3rem, 6vw, 5.5rem) 1.5rem;
  position: relative;
  overflow: hidden;
}
/* Subtle radial glow background */
.who-vm-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 5% 0%, rgba(255,215,0,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 95% 100%, rgba(34,139,34,0.3) 0%, transparent 55%);
  pointer-events: none;
}
.who-vm-grid {
  position: relative;
  z-index: 1;
  max-width: var(--site-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.who-vm-col h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}
.who-vm-link {
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
}

/* ═══════════════════════════════════════════
   WHAT WE OFFER — enhanced cards
═══════════════════════════════════════════ */
.offer-card {
  border-radius: var(--radius-lg);
  border-top: 3px solid rgba(34,139,34,0.12);
  transition:
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    border-top-color var(--dur-base);
}
.offer-card:hover {
  border-top-color: var(--gold);
}
.offer-card--featured {
  border-top-color: var(--gold);
}
/* Add subtle ✦ bullet to list items */
.offer-card-list li {
  padding-left: 1.1rem;
  position: relative;
}
.offer-card-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.65rem;
  font-size: 0.45rem;
  color: var(--gold);
  line-height: 1;
}
.offer-card--featured .offer-card-list li::before {
  color: rgba(255,215,0,0.7);
}

/* ═══════════════════════════════════════════
   SCRIPTURE BAND — enhanced
═══════════════════════════════════════════ */
.scripture-band {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  text-align: center;
  border-bottom: none;
}
/* Large decorative quote mark */
.scripture-band::before {
  content: '\201C';
  position: absolute;
  top: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(8rem, 22vw, 18rem);
  color: rgba(255,215,0,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-style: italic;
}
.scripture-band blockquote {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.8vw, 1.65rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 0.8rem;
  color: rgba(255,255,255,0.92);
}
.scripture-band blockquote strong {
  color: var(--gold);
  font-style: normal;
}
.scripture-band cite {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════════
   FACTS BAR — grid layout
═══════════════════════════════════════════ */
.facts-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--charcoal);
  border-top: 2px solid rgba(255,215,0,0.15);
}
.fact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 1rem;
  text-align: center;
  gap: 0.25rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  min-height: var(--tap-min);
  transition: background var(--dur-fast);
}
.fact-item:last-child { border-right: none; }
.fact-item:hover { background: rgba(255,255,255,0.05); }
.fact-val {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: var(--gold);
  line-height: 1.15;
}
.fact-lbl {
  font-size: clamp(0.58rem, 1.4vw, 0.7rem);
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.fact-div { display: none; }

/* ═══════════════════════════════════════════
   FOOTER — improved
═══════════════════════════════════════════ */
.footer {
  background: #111;
  color: rgba(255,255,255,0.7);
}
.footer-top {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  color: rgba(255,255,255,0.52);
  font-size: 0.84rem;
  text-decoration: none;
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
  transition: color var(--dur-fast);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 1.4rem 1.5rem;
  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;
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT — pulse animation
═══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: max(1.5rem, env(safe-area-inset-bottom, 1.5rem));
  right: 1.5rem;
  z-index: 600;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
  animation: wa-pulse 2.8s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.25); }
  60%       { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ═══════════════════════════════════════════
   BUTTONS — touch improvements
═══════════════════════════════════════════ */
.btn {
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--dur-fast),
    transform  var(--dur-fast),
    box-shadow var(--dur-fast);
  will-change: transform;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold   { box-shadow: 0 2px 12px rgba(255,215,0,0.3); }
.btn-gold:hover { box-shadow: 0 6px 24px rgba(255,215,0,0.45); }

/* ═══════════════════════════════════════════
   CARD HOVER — all card types
═══════════════════════════════════════════ */
.week-card, .conf-card, .community-card, .cc-card {
  transition:
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
  will-change: transform;
}
.week-card:hover,
.conf-card:hover    { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.community-card:hover { transform: translateY(-4px); }

/* ═══════════════════════════════════════════
   PRICE BOX
═══════════════════════════════════════════ */
.price-box {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.amount {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — tablet (1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .who-vm-grid    { gap: 2.5rem; }
  .footer-top     { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .facts-bar      { grid-template-columns: repeat(2, 1fr); }
  .fact-item:nth-child(2) { border-right: none; }
  .fact-item:nth-child(4) { border-right: none; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — mobile (768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-menu   { display: none; }
  .hamburger  { display: flex; }
  .mobile-nav { display: flex !important; }

  .who-vm-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .vm-stack       { gap: 1.8rem; }
  .offer-grid     { grid-template-columns: 1fr; }
  .offer-card--featured { order: -1; }
  .offer-header   { margin-bottom: 2.2rem; }
  .facts-bar      { grid-template-columns: repeat(2, 1fr); }
  .footer-top     { grid-template-columns: 1fr 1fr; padding: 2.5rem 1.2rem 2rem; gap: 1.5rem; }
  .footer-bottom  { padding: 1.2rem; flex-direction: column; text-align: center; }

  /* Comfortable reading */
  .scripture-band blockquote { font-size: clamp(1rem, 4.5vw, 1.25rem); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — small mobile (480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --nav-h: 60px; }

  .nav-logo-text .sub { display: none; }
  .who-vm-section { padding: 2.8rem 1.1rem; }
  .offer-section  { padding: 3rem 1.1rem; }
  .offer-card     { padding: 1.6rem 1.3rem; }
  .facts-bar      { grid-template-columns: 1fr; }
  .fact-item      { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 1.2rem 1rem; }
  .fact-item:last-child { border-bottom: none; }
  .footer-top     { grid-template-columns: 1fr; }
  .join-btns      { flex-direction: column; align-items: stretch; }
  .join-btns .btn { width: 100%; }

  /* Tighter hero text on small screens */
  .hero-title  { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .hero-sub    { font-size: 0.92rem; }
  .hero-btns   { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* ═══════════════════════════════════════════
   SAFE AREA — notched phones (iPhone, etc.)
═══════════════════════════════════════════ */
@supports (padding: env(safe-area-inset-bottom)) {
  .mobile-nav {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }
  .wa-float {
    bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }
}
