/* ============================================
   CENTRAL CHURCH OF CHRIST — styles.css
   Soft blue & white, clean & peaceful
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* --- VARIABLES --- */
:root {
  --navy:    #1a3a5c;
  --blue:    #2e6da4;
  --skyblue: #5b9fd6;
  --light:   #e8f2fb;
  --pale:    #f5f9fd;
  --white:   #ffffff;
  --gold:    #c9a84c;
  --text:    #2c3e50;
  --muted:   #6b7c93;
  --border:  #d0e3f0;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Jost', sans-serif;
  --radius:  6px;
  --shadow:  0 4px 24px rgba(26,58,92,0.10);
  --shadow-sm: 0 2px 8px rgba(26,58,92,0.08);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }
ul { list-style: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }
em { font-style: italic; }

/* --- CONTAINER --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-light:hover { background: var(--light); color: var(--navy); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); color: var(--white); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: #b8973e; border-color: #b8973e; color: var(--white); }

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.8rem; }

.link-arrow {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.link-arrow:hover { color: var(--navy); }

/* ============================================
   HEADER & NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-cross {
  font-size: 1.6rem;
  color: var(--blue);
  line-height: 1;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.logo-sub {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: wrap;
}
.main-nav ul li { position: relative; }
.main-nav ul li a {
  display: block;
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: var(--light);
  color: var(--blue);
}
/* Dropdown */
.main-nav .has-dropdown { position: relative; }
.main-nav .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  z-index: 200;
}
.main-nav .has-dropdown.open .dropdown { display: block; }
.main-nav .dropdown li a {
  padding: 0.6rem 1rem !important;
  font-size: 0.82rem !important;
  white-space: nowrap;
  border-radius: 0 !important;
  text-transform: none !important;
}
.main-nav .dropdown li a:hover { background: var(--light); }

/* ── site-logo alias (used by inner pages) ── */
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo .logo-main {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.site-logo .logo-sub {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── site-nav alias (used by inner pages) ── */
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: nowrap;
}
.site-nav ul li { position: relative; }
.site-nav ul li a {
  display: block;
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.site-nav ul li a:hover,
.site-nav ul li.active > a,
.site-nav ul li.has-dropdown.active > a {
  background: var(--light);
  color: var(--blue);
}
.site-nav .has-dropdown { position: relative; }
.site-nav .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  z-index: 200;
}
.site-nav .dropdown li a {
  padding: 0.6rem 1rem !important;
  font-size: 0.82rem !important;
  white-space: nowrap;
  border-radius: 0 !important;
  text-transform: none !important;
}
.site-nav .dropdown li a:hover { background: var(--light); }

/* Dropdown opens on click only (JS toggles .open class) */
.site-nav .has-dropdown.open .dropdown { display: block; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  padding: 0.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--skyblue) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,92,0.35);
}
.hero-watermark {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
  background-image: url('CCC_logo_watermark.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70% auto;
  pointer-events: none;
  user-select: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
  color: var(--white);
  text-align: center;
}
.hero-verse-ref {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(0.82rem, 4.1vw, 2.75rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   INNER PAGE HERO (smaller)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 4rem 2rem 3rem;
  text-align: center;
  color: var(--white);
}
.page-hero-label {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.page-hero .gold-line {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ============================================
   WELCOME STRIP
   ============================================ */
.welcome-strip {
  padding: 5rem 0;
  background: var(--pale);
}
.welcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.welcome-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.welcome-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.welcome-card.featured {
  border-top: 4px solid var(--gold);
}
.wc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.welcome-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.welcome-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

/* ============================================
   SERVICE BANNER
   ============================================ */
.service-banner {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}
.service-banner .section-label {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 500;
}
.service-times {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.service-time {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-time .day {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.service-time .time {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.service-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  align-self: center;
}

/* ============================================
   EVENTS PREVIEW
   ============================================ */
.events-preview {
  padding: 5rem 0;
  background: var(--white);
}
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
.section-header h2 { font-size: 2rem; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.event-card {
  display: flex;
  gap: 1.2rem;
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--pale);
  transition: box-shadow 0.2s;
}
.event-card:hover { box-shadow: var(--shadow); }
.event-date {
  flex-shrink: 0;
  width: 54px;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.5rem 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.event-date .month {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.event-date .day-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 600;
}
.event-info h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.event-info p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* ============================================
   SCRIPTURE SECTION
   ============================================ */
.scripture-section {
  background: linear-gradient(135deg, var(--light) 0%, var(--pale) 100%);
  padding: 5rem 2rem;
  text-align: center;
}
.scripture-quote {
  max-width: 700px;
  margin: 0 auto;
}
.scripture-quote p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.scripture-quote cite {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  font-style: normal;
  font-weight: 500;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section {
  padding: 5rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text h2 {
  margin-bottom: 1.5rem;
}
.about-text p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
}
.about-highlights {
  background: var(--pale);
  padding: 5rem 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.highlight-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.highlight-item .hi-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.highlight-item h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.highlight-item p { font-size: 0.9rem; color: var(--muted); margin: 0; }
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.5rem 0;
  border-radius: 2px;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-section {
  padding: 5rem 0;
}
.services-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}
.services-card-header {
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.services-card-header .day-label {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
}
.services-card-header .day-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.services-card-body {
  padding: 1.5rem 2rem;
}
.service-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
.service-time-badge {
  background: var(--light);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
  min-width: 110px;
  text-align: center;
}
.service-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
}
.service-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.2rem 0 0;
}

/* ============================================
   EVENTS / CALENDAR PAGE
   ============================================ */
.events-section {
  padding: 5rem 0;
}
.calendar-embed-wrapper {
  background: var(--pale);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}
.calendar-embed-wrapper iframe {
  border-radius: var(--radius);
  max-width: 100%;
}
.calendar-placeholder {
  padding: 4rem 2rem;
  color: var(--muted);
}
.calendar-placeholder p { margin-bottom: 0.5rem; }
.calendar-placeholder .cal-icon { font-size: 3rem; margin-bottom: 1rem; }
.events-list { margin-top: 1rem; }
.event-list-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.event-list-item:last-child { border-bottom: none; }
.event-list-date {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.6rem 0.4rem;
}
.event-list-date .eli-month {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}
.event-list-date .eli-day {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
}
.event-list-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.event-list-info .eli-meta {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.event-list-info p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}
.gcal-setup-note {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 2rem;
}
.gcal-setup-note strong { color: var(--blue); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-bottom a {
  color: rgba(255,255,255,0.6);
}
.footer-bottom a:hover { color: var(--white); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .welcome-grid,
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-divider { display: none; }
  .service-times { gap: 2rem; }
}

@media (max-width: 700px) {
  .nav-toggle { display: block; }

  /* main-nav (home page) */
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem;
  }
  .main-nav ul li a { padding: 0.7rem 1rem; font-size: 0.9rem; }

  /* site-nav (inner pages) */
  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .site-nav.open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    flex-wrap: wrap;
  }
  .site-nav ul li a { padding: 0.7rem 1rem; font-size: 0.9rem; }

  /* Dropdowns toggle via JS .open class on all screen sizes */
  .dropdown {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    padding-left: 1rem;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }

  .welcome-grid,
  .highlights-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; gap: 0.5rem; }
  .hero-content { padding: 3.5rem 1rem; }
}

/* ============================================
   ACCORDION SECTIONS (About / Missions pages)
   ============================================ */
.accordion-intro {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}
.accordion-intro p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
}
.accordion {
  max-width: 820px;
  margin: 0 auto;
}
.accordion-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: box-shadow .2s;
}
.accordion-item:hover { box-shadow: 0 4px 22px rgba(0,0,0,.12); }
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--navy);
}
.accordion-icon {
  flex-shrink: 0;
  color: var(--blue);
  font-size: 1rem;
  transition: transform .25s;
}
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-panel { display: none; padding: 0 1.8rem 1.8rem; border-top: 1px solid #edf2f7; }
.accordion-item.open .accordion-panel { display: block; padding-top: 1.4rem; }
.accordion-panel p { color: #444; line-height: 1.8; margin-bottom: 1.1rem; }
.accordion-panel p:last-child { margin-bottom: 0; }
.accordion-panel ul { margin: 0 0 1.1rem 1.2rem; list-style: disc; }
.accordion-panel ul li { color: #444; line-height: 1.8; margin-bottom: .5rem; }
.accordion-panel .btn { margin-top: .5rem; }

/* Notice / callout box — used within accordion panel content */
.notice-box {
  background: #fff8e6;
  border: 1px solid #e8c96a;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1.3rem 1.6rem;
  margin: 0 0 1.2rem;
}
.notice-box p { margin: 0; color: #5a4a10; }
.notice-box strong { color: #9a7a20; }

/* Scripture quote banner — usable standalone or within a panel */
.scripture-banner {
  background: var(--light);
  border-left: 4px solid var(--gold);
  padding: 1.6rem 2rem;
  margin: 0 0 1.5rem;
  border-radius: 0 8px 8px 0;
}
.scripture-banner blockquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  font-style: italic;
  margin: 0 0 .4rem;
  line-height: 1.6;
}
.scripture-banner cite {
  font-family: var(--sans);
  font-size: .82rem;
  color: var(--blue);
  font-style: normal;
}
.scripture-banner.intro {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  padding: 2rem 2.5rem;
}
.scripture-banner.intro blockquote { font-size: 1.25rem; }

@media (max-width: 600px) {
  .accordion-header { font-size: 1.15rem; padding: 1.1rem 1.3rem; }
  .accordion-panel { padding: 0 1.3rem 1.3rem; }
  .accordion, .accordion-intro, .scripture-banner.intro { padding-left: 1rem; padding-right: 1rem; }
}
