/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #4a5e3a;
  --green-dark:  #38482c;
  --green-light: #8a9e74;
  --cream:       #f5f0e8;
  --cream-dark:  #ede7d9;
  --tan:         #b5a48a;
  --tan-light:   #d9ceba;
  --charcoal:    #2c2c2c;
  --white:       #ffffff;
  --text-muted:  #6b6355;

  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-width: 1100px;
  --section-pad: 80px 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Skip Link (Accessibility) ────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--green);
  color: var(--white);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  border-radius: 0 0 4px 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Utility ──────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 18px;
}

.section-body {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible {
  outline: 3px solid var(--tan);
  outline-offset: 3px;
}

.btn-primary { background: var(--tan); color: var(--charcoal); }
.btn-primary:hover { background: var(--tan-light); color: var(--charcoal); }

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

.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); }

.btn-ghost {
  border: 1.5px solid var(--tan);
  color: var(--tan-light);
  background: transparent;
  padding: 11px 24px;
}
.btn-ghost:hover { background: var(--tan); color: var(--white); }

/* ── Top Bar ──────────────────────────────────── */
.top-bar {
  background: var(--green-dark);
  color: var(--tan-light);
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  padding: 9px 24px;
  letter-spacing: 0.03em;
}
.top-bar strong { color: var(--white); font-weight: 500; }

/* ── Header / Nav ─────────────────────────────── */
header {
  background: var(--green);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.site-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
.site-title span {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-top: 2px;
}

nav { display: flex; gap: 6px; align-items: center; }

nav a {
  color: var(--tan-light);
  font-size: 13.5px;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
nav a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
nav a:focus-visible { outline: 2px solid var(--tan-light); outline-offset: 2px; }
nav a.active { color: var(--white); font-weight: 500; }

nav .nav-cta {
  background: var(--tan);
  color: var(--charcoal);
  font-weight: 500;
  margin-left: 6px;
}
nav .nav-cta:hover { background: var(--tan-light); color: var(--charcoal); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ── Page Banner (interior pages) ────────────── */
.page-banner {
  background: var(--green);
  padding: 56px 24px;
  text-align: center;
}
.page-banner .banner-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 12px;
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 14px;
}
.page-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Breadcrumb ───────────────────────────────── */
.breadcrumb {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--tan-light);
  padding: 10px 24px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.breadcrumb .container { display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-hidden="true"] { color: var(--tan); }
.breadcrumb span[aria-current="page"] { color: var(--text-muted); font-weight: 500; }

/* ── Two Column Layout ────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── Worship Steps ────────────────────────────── */
.worship-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.worship-steps li { display: flex; align-items: flex-start; gap: 14px; }
.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
  margin-top: 8px;
}
.step-text strong {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.step-text span { font-size: 13.5px; color: var(--text-muted); }

/* ── FAQ Block ────────────────────────────────── */
.faq-block { display: flex; flex-direction: column; gap: 24px; }
.faq-item { border-left: 3px solid var(--tan); padding-left: 18px; }
.faq-item h3, .faq-item h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 5px;
}
.faq-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── Info Card ────────────────────────────────── */
.info-card {
  background: var(--white);
  border: 1px solid var(--tan-light);
  border-radius: 8px;
  overflow: hidden;
}
.info-card-header {
  background: var(--green);
  padding: 18px 24px;
}
.info-card-header h2, .info-card-header h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}
.info-card-body { padding: 24px; }

/* ── Schedule List ────────────────────────────── */
.schedule-list { list-style: none; padding: 0; }
.schedule-list li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 14px;
}
.schedule-list li:last-child { border-bottom: none; }
.schedule-list .time {
  font-weight: 500;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
  width: 110px;
}
.schedule-list .event-name { color: var(--charcoal); line-height: 1.5; flex: 1; }
.schedule-list .event-note {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Address Block ────────────────────────────── */
.address-block {
  background: var(--white);
  border: 1px solid var(--tan-light);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.address-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal);
}
.address-line svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.address-line a { color: var(--green); }
.address-line a:hover { text-decoration: underline; }

/* ── Map Embed ────────────────────────────────── */
.map-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--tan-light);
  height: 280px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── Zoom Note ────────────────────────────────── */
.zoom-note {
  background: var(--cream-dark);
  border: 1px solid var(--tan-light);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.zoom-note a { color: var(--green); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }

/* ── Testimony Cards ──────────────────────────── */
.testimony-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.testimony-card {
  background: var(--white);
  border: 1px solid var(--tan-light);
  border-radius: 8px;
  padding: 22px 16px;
  text-align: center;
}
.testimony-initial {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
  margin-bottom: 10px;
}
.testimony-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.testimony-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

/* ── Timeline ─────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--tan-light);
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--tan-light);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.timeline-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── Highlight Box ────────────────────────────── */
.highlight-box {
  background: var(--green);
  border-radius: 8px;
  padding: 32px;
  color: var(--white);
}
.highlight-box h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.highlight-box p { font-size: 14.5px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 16px; }
.highlight-box a { color: var(--tan-light); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }

/* ── Clearance Badge ──────────────────────────── */
.clearance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-dark);
  border: 1px solid var(--tan-light);
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 18px;
}
.clearance-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Contact Form Area ────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

/* ── Footer ───────────────────────────────────── */
footer {
  background: var(--green-dark);
  color: var(--tan-light);
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .site-title { font-size: 18px; margin-bottom: 12px; }
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 280px;
}
.footer-col h2 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--tan);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-bottom {
  max-width: var(--max-width);
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 860px) {
  .two-col,
  .contact-grid,
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }

  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--green);
    padding: 16px 24px;
    gap: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }
  .nav-toggle { display: flex; }

  .testimony-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .testimony-grid { grid-template-columns: 1fr; }
  .btn { text-align: center; width: 100%; }
}
