/* =============================================
   Grace Baptist Church of Andrews — Styles
   ============================================= */

:root {
  --navy:       #1B2A4A;
  --navy-light: #243456;
  --navy-dark:  #111D33;
  --gold:       #C4933F;
  --gold-light: #D4A94F;
  --gold-pale:  #F5E9D0;
  --cream:      #FAF7F2;
  --cream-dark: #F0EAD9;
  --white:      #FFFFFF;
  --border:     #DDD5C4;
  --text-dark:  #1A1A1A;
  --text-med:   #4A4A4A;
  --text-light: #777777;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Open Sans', 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);

  --radius:    6px;
  --radius-lg: 12px;
  --max-width: 1180px;
}

/* ── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

/* ── Typography ────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.3;
  color: var(--navy);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.65rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; color: var(--text-med); }
p:last-child { margin-bottom: 0; }

/* ── Utilities ─────────────────────────── */
.container    { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section      { padding: 5rem 0; }
.section-sm   { padding: 3rem 0; }
.text-center  { text-align: center; }
.text-gold    { color: var(--gold) !important; }
.text-white   { color: var(--white) !important; }

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.section-divider {
  display: block;
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin: 1rem 0 2rem;
}
.section-divider.centered { margin: 1rem auto 2rem; }

/* ── Buttons ───────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  text-align: center;
  text-decoration: none;
}
.btn-primary  { background: var(--gold);  color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-2px); }
.btn-navy     { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost    { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }


/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(17, 29, 51, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196,147,63,.25);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.nav-logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .name {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo-text .location {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: .45rem .85rem;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all .2s;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active  { color: var(--white); background: rgba(196,147,63,.18); }
.nav-cta { background: var(--gold) !important; color: var(--white) !important; margin-left: .35rem; }
.nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }


/* =============================================
   HERO  (Home page)
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 75% 40%, rgba(196,147,63,.11) 0%, transparent 60%),
    linear-gradient(145deg, #0B1624 0%, #1B2A4A 55%, #1F3256 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C4933F' fill-rule='evenodd'%3E%3Crect x='28' y='0' width='4' height='60'/%3E%3Crect x='0' y='28' width='60' height='4'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content { position: relative; z-index: 2; max-width: 760px; }

.hero-eyebrow {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content:''; display:block; width:36px; height:2px; background:var(--gold); }
.hero-eyebrow span {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; font-weight: 700; }
.hero h1 em { color: var(--gold); font-style: normal; }

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.72);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
}
.hero-stat .value {
  font-family: var(--font-serif);
  font-size: 1.8rem; color: var(--gold);
  font-weight: 700; display: block; line-height: 1;
}
.hero-stat .label {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-top: .2rem; display: block;
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.4); font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase; z-index: 2;
}
.hero-scroll-ring {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }


/* =============================================
   SCRIPTURE BANNER
   ============================================= */
.scripture-banner {
  background: var(--navy);
  padding: 2.75rem 0;
  text-align: center;
  border-top: 3px solid var(--gold);
}
.scripture-banner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white);
  font-style: italic;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.9;
}
.scripture-banner cite {
  display: block; font-style: normal;
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold); margin-top: .8rem;
}


/* =============================================
   WELCOME SECTION
   ============================================= */
.welcome-section { background: var(--cream); }

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.church-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.church-visual::before {
  content:'';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(196,147,63,.25), transparent 55%);
}
.church-visual-inner { position: relative; z-index: 1; text-align: center; padding: 2rem; }
.church-visual svg { width: 140px; height: 160px; margin: 0 auto 1.5rem; }
.church-visual .verse-text {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-style: italic;
  color: rgba(255,255,255,.8);
  line-height: 1.8; margin-bottom: .5rem;
}
.church-visual .verse-ref {
  font-size: .78rem; color: var(--gold);
  letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
}

.welcome-text .section-label { text-align: left; }
.welcome-text h2 { margin-bottom: .75rem; }
.welcome-text > p { font-size: 1.05rem; line-height: 1.9; }

.welcome-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .85rem; margin-top: 2rem;
}
.welcome-feature {
  display: flex; align-items: flex-start; gap: .65rem;
}
.feat-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.feat-text strong { display: block; font-size: .88rem; color: var(--navy); margin-bottom: .1rem; }
.feat-text span   { font-size: .8rem; color: var(--text-light); }


/* =============================================
   SERVICE TIMES
   ============================================= */
.services-section  { background: var(--cream-dark); }
.services-header   { margin-bottom: 3rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--gold);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 1.2rem;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.service-time {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 700;
  color: var(--gold); margin-bottom: .35rem;
}
.service-desc { font-size: .83rem; color: var(--text-light); margin: 0; }


/* =============================================
   BELIEFS PREVIEW
   ============================================= */
.beliefs-section {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.beliefs-section::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(196,147,63,.1), transparent 55%);
}
.beliefs-section .container { position: relative; z-index: 1; }
.beliefs-section .section-label { color: var(--gold); }
.beliefs-section h2  { color: var(--white); margin-bottom: .75rem; }
.beliefs-section > .container > p { color: rgba(255,255,255,.68); font-size: 1.05rem; }

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.belief-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(196,147,63,.22);
  border-radius: var(--radius-lg);
  padding: 1.65rem;
  transition: all .2s;
}
.belief-item:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(196,147,63,.5);
}
.belief-item h4 {
  font-family: var(--font-serif);
  color: var(--gold); font-size: 1rem; margin-bottom: .5rem;
}
.belief-item p { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; line-height: 1.7; }

.beliefs-cta { margin-top: 3rem; text-align: center; }


/* =============================================
   EVENTS PREVIEW
   ============================================= */
.events-section { background: var(--cream); }
.events-section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2.5rem;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex; gap: 1.2rem;
  transition: all .25s;
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.event-badge-date {
  background: var(--navy);
  border-radius: var(--radius);
  padding: .65rem .5rem;
  text-align: center;
  min-width: 54px; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.badge-month { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.badge-day   { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 700; color: var(--white); line-height: 1; }
.badge-recur { font-size: .58rem; color: rgba(255,255,255,.45); margin-top: .15rem; }
.event-info h4 { color: var(--navy); font-size: .98rem; margin-bottom: .3rem; }
.event-info p  { font-size: .87rem; color: var(--text-light); margin-bottom: .5rem; }
.event-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-pale);
  border-radius: 20px; padding: .12rem .55rem;
}


/* =============================================
   CONTACT CTA (Home)
   ============================================= */
.contact-cta { background: var(--cream-dark); text-align: center; }
.contact-cta h2   { margin-bottom: 1rem; }
.contact-cta .lead { max-width: 480px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.contact-info-row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 2.5rem;
  border-top: 1px solid var(--border); padding-top: 2.5rem; margin-top: 1rem;
}
.ci-item { display: flex; align-items: center; gap: .75rem; }
.ci-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--navy); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.ci-text strong { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); }
.ci-text span   { font-size: .93rem; color: var(--navy); font-weight: 600; }
.ci-text a      { font-size: .93rem; color: var(--navy); font-weight: 600; }
.ci-text a:hover{ color: var(--gold); }


/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.65);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; display: inline-flex; }
.footer-brand p {
  color: rgba(255,255,255,.52); font-size: .88rem;
  line-height: 1.75; max-width: 290px; margin-bottom: 1.5rem;
}
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { color: rgba(255,255,255,.58); font-size: .88rem; }
.footer-links a:hover { color: var(--white); }
.footer-address { font-size: .88rem; line-height: 2; color: rgba(255,255,255,.55); }
.footer-address strong { color: rgba(255,255,255,.8); display: block; margin-bottom: .25rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: rgba(255,255,255,.38);
  flex-wrap: wrap; gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--white); }


/* =============================================
   PAGE HERO  (inner pages)
   ============================================= */
.page-hero {
  padding: 9rem 0 4.5rem;
  background: var(--navy-dark);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(196,147,63,.1), transparent 60%),
    linear-gradient(140deg, #0B1624 0%, #1B2A4A 100%);
}
.page-hero-pattern {
  position: absolute; inset: 0; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C4933F' fill-rule='evenodd'%3E%3Crect x='28' y='0' width='4' height='60'/%3E%3Crect x='0' y='28' width='60' height='4'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: .45rem;
  font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,.25); }
.page-hero-eyebrow {
  display: flex; align-items: center; gap: .7rem; margin-bottom: .85rem;
}
.page-hero-eyebrow::before { content:''; display:block; width:28px; height:2px; background:var(--gold); }
.page-hero-eyebrow span { font-size: .72rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: .85rem; }
.page-hero .lead { color: rgba(255,255,255,.68); font-size: 1.08rem; max-width: 580px; line-height: 1.85; }


/* =============================================
   VISIT PAGE
   ============================================= */
.schedule-section { background: var(--cream); }

.schedule-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 4rem;
}
.sched-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s;
}
.sched-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.sched-card-head {
  background: var(--navy);
  padding: 1.1rem 1.4rem;
  display: flex; align-items: center; gap: .7rem;
}
.sched-card-head svg { color: var(--gold); flex-shrink: 0; }
.sched-card-head span { font-family: var(--font-serif); font-size: .95rem; color: var(--white); font-weight: 600; }
.sched-card-body { padding: 1.5rem; }
.sched-time { display: block; font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: .2rem; }
.sched-day  { display: block; font-size: .82rem; font-weight: 700; color: var(--gold); letter-spacing: .06em; margin-bottom: .75rem; }
.sched-desc { font-size: .86rem; color: var(--text-light); margin: 0; }

.location-section { background: var(--cream-dark); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.location-info h3 { margin-bottom: 1.5rem; }
.address-block {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.6rem; margin-bottom: 1.5rem;
}
.addr-row {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: .7rem 0;
}
.addr-row:not(:last-child) { border-bottom: 1px solid var(--border); }
.addr-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--navy); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.addr-row-text strong { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); margin-bottom: .15rem; }
.addr-row-text span,
.addr-row-text a { font-size: .93rem; color: var(--text-dark); font-weight: 500; }
.addr-row-text a:hover { color: var(--gold); }

.map-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.1rem;
  position: relative; overflow: hidden;
}
.map-box::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196,147,63,.15), transparent 65%);
}
.map-box svg { z-index: 1; color: var(--gold); }
.map-box .map-addr { z-index:1; font-family:var(--font-serif); font-size:1.05rem; color:var(--white); text-align:center; }
.map-box .map-note { z-index:1; font-size:.82rem; color:rgba(255,255,255,.55); text-align:center; margin:0; }
.map-box .btn { z-index: 1; }

.expect-section { background: var(--cream); }
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.expect-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border);
  transition: all .2s;
}
.expect-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.expect-num {
  width: 54px; height: 54px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--font-serif); font-size: 1.35rem; color: var(--gold); font-weight: 700;
}
.expect-card h4 { margin-bottom: .45rem; }
.expect-card p  { font-size: .88rem; margin: 0; }

.visit-contact { background: var(--cream-dark); }
.visit-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.visit-contact-info h3 { margin-bottom: 1rem; }
.visit-contact-info p  { margin-bottom: 1.5rem; }

.form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: .83rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: .35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .72rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans); font-size: .93rem;
  color: var(--text-dark); background: var(--cream);
  transition: border-color .2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); background: var(--white); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .8rem; color: var(--text-light); margin-top: .5rem; }
.form-success {
  display: none; text-align: center; padding: 2rem;
  color: var(--navy); font-family: var(--font-serif); font-size: 1.1rem;
}


/* =============================================
   BELIEFS PAGE
   ============================================= */
.doctrine-section { background: var(--cream); }
.doctrine-intro { max-width: 680px; margin-bottom: 3.5rem; }
.doctrine-articles { display: flex; flex-direction: column; gap: 2.25rem; }
.doctrine-article {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.article-header {
  background: var(--navy);
  padding: 1.2rem 1.75rem;
  display: flex; align-items: center; gap: 1rem;
}
.article-num {
  background: var(--gold); color: var(--white);
  font-family: var(--font-sans); font-size: .78rem; font-weight: 700;
  padding: .2rem .65rem; border-radius: 4px; flex-shrink: 0;
  letter-spacing: .05em;
}
.article-header h3 { color: var(--white); font-size: 1.05rem; margin: 0; }
.article-body { padding: 1.75rem 2rem; }
.article-body p { margin-bottom: .85rem; font-size: .97rem; }
.article-quote {
  background: var(--cream-dark);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.4rem; margin: 1.1rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--text-dark); font-size: .97rem;
}

.pathway-list { list-style: none; counter-reset: pw; display: flex; flex-direction: column; gap: .65rem; margin: 1rem 0; }
.pathway-list li {
  counter-increment: pw;
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .95rem; color: var(--text-med);
}
.pathway-list li::before {
  content: counter(pw);
  background: var(--navy); color: var(--gold);
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}

.objectives-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .9rem; margin-top: .75rem; }
.obj-item {
  display: flex; align-items: flex-start; gap: .65rem;
  padding: .85rem 1rem; background: var(--cream); border-radius: var(--radius);
}
.obj-check {
  width: 20px; height: 20px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.obj-check svg { width: 11px; height: 11px; color: var(--white); }
.obj-item span { font-size: .88rem; color: var(--text-med); line-height: 1.5; }

.ordinances-section { background: var(--cream-dark); }
.ordinances-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.ord-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; position: relative; overflow: hidden;
}
.ord-card::before {
  content:''; position:absolute; top:0; left:0; right:0;
  height: 4px; background: var(--gold);
}
.ord-icon {
  width: 48px; height: 48px; background: var(--navy); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 1rem;
}
.ord-card h4 { margin-bottom: .55rem; }
.ord-card p  { font-size: .9rem; margin: 0; }

.membership-section { background: var(--cream); }
.discipline-note {
  background: var(--cream-dark); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; margin-top: 1.5rem;
}
.discipline-note h5 { color: var(--navy); margin-bottom: .4rem; }
.discipline-note p  { font-size: .9rem; margin: 0; }


/* =============================================
   EVENTS PAGE
   ============================================= */
.all-events-section { background: var(--cream); }
.all-events-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem; margin-bottom: 4rem;
}
.ev-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .3s;
}
.ev-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.ev-card-top { background: var(--navy); padding: 1.4rem; position: relative; }
.ev-card-top::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--gold); }
.ev-pill {
  display: inline-block; background: var(--gold); color: var(--white);
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .15rem .65rem; border-radius: 20px; margin-bottom: .65rem;
}
.ev-card-top h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .3rem; }
.ev-meta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: .4rem; }
.ev-meta-item {
  display: flex; align-items: center; gap: .3rem;
  font-size: .8rem; color: rgba(255,255,255,.62);
}
.ev-meta-item svg { color: var(--gold); flex-shrink: 0; }
.ev-card-body { padding: 1.4rem; }
.ev-card-body p { font-size: .88rem; margin-bottom: 1rem; }

.recurring-section { background: var(--cream-dark); }
.recurring-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.rec-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  transition: all .3s;
}
.rec-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.rec-icon {
  width: 60px; height: 60px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; color: var(--gold);
}
.rec-freq {
  display: block; font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; color: var(--gold); margin-bottom: .65rem;
}
.rec-card h4 { margin-bottom: .4rem; }
.rec-card p  { font-size: .88rem; margin: 0; }


/* =============================================
   GIVE PAGE
   ============================================= */
.give-section { background: var(--cream); }
.give-content { max-width: 680px; margin: 0 auto; text-align: center; }
.give-content h2 { margin-bottom: 1rem; }
.give-content > p { font-size: 1.05rem; margin-bottom: 0; }
.give-verse {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 2rem 2.5rem; margin: 2.5rem 0; text-align: center;
}
.give-verse blockquote { font-family: var(--font-serif); font-style: italic; color: var(--white); font-size: 1.1rem; line-height: 1.85; }
.give-verse cite { display: block; color: var(--gold); font-size: .82rem; font-style: normal; letter-spacing: .08em; margin-top: .6rem; }
.give-options { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; margin-top: 2rem; }
.give-option {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center;
}
.give-opt-icon {
  width: 52px; height: 52px; background: var(--navy); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: var(--gold);
}
.give-option h4 { margin-bottom: .45rem; }
.give-option p  { font-size: .88rem; }


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid,
  .schedule-cards,
  .expect-grid,
  .recurring-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }

  /* Nav mobile */
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column; padding: .75rem 0; gap: 0;
    border-bottom: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: .8rem 1.5rem; border-radius: 0; }
  .nav-cta { margin: .5rem 1.5rem 0; border-radius: var(--radius) !important; padding: .7rem 1rem !important; text-align: center; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding: 7.5rem 0 4rem; }
  .hero-stats { gap: 1.5rem; }

  /* 2-col → 1-col */
  .welcome-grid, .location-grid, .visit-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .church-visual { aspect-ratio: 16/9; }

  .beliefs-grid, .all-events-grid, .events-grid, .ordinances-grid,
  .objectives-grid, .give-options { grid-template-columns: 1fr; }

  .services-grid, .schedule-cards, .expect-grid,
  .recurring-grid { grid-template-columns: 1fr; }

  .events-section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .contact-info-row { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
