/* =============================================
   KINGS HEATH ELIM — Main Stylesheet
   Warm, welcoming church website
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --cream:        #FAF7F2;
  --warm-white:   #FFFFFF;
  --deep:         #1C2B3A;
  --navy:         #243447;
  --gold:         #C8960C;
  --gold-light:   #F0B429;
  --gold-pale:    #FDF3DC;
  --terracotta:   #C4622D;
  --sage:         #6B8F71;
  --sage-light:   #EDF3EE;
  --text:         #2D2D2D;
  --text-muted:   #6B7280;
  --border:       rgba(200, 150, 12, 0.2);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

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

  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--deep);
}

h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(26px, 3vw, 38px); }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  color: var(--deep);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 26px;
  border-radius: 50px;
  border: none;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: white;
  box-shadow: 0 4px 14px rgba(200,150,12,0.35);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--deep);
  border: 2px solid var(--deep);
}
.btn-outline:hover { background: var(--deep); color: white; }

.btn-white {
  background: white;
  color: var(--deep);
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: white; }

/* ---- Cards ---- */
.card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---- Divider ---- */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-cross {
  color: var(--gold);
  font-size: 18px;
}

/* =============================================
   NAV
   ============================================= */

.site-nav {
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-cross {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--deep);
}
.nav-logo-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--deep);
  background: var(--gold-pale);
}

.nav-cta {
  font-size: 13px;
  font-weight: 700;
  background: var(--gold);
  color: white;
  padding: 9px 20px;
  border-radius: 50px;
  border: none;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(200,150,12,0.3);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Dropdowns */
.nav-dropdown { position: relative; display: inline-flex; }
.nav-dropdown-btn {
  font-size: 13px; font-weight: 700; color: var(--text-muted);
  padding: 8px 14px; border-radius: 50px; background: none; border: none;
  cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; gap: 4px; letter-spacing: 0.3px;
}
.nav-dropdown-btn:hover, .nav-dropdown-btn.active { color: var(--deep); background: var(--gold-pale); }
.nav-chevron { font-size: 10px; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.07); min-width: 190px; z-index: 300;
  overflow: hidden; padding: 6px 0;
}
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-menu a {
  display: block; font-size: 13px; font-weight: 600; color: var(--text-muted);
  padding: 10px 18px; transition: all var(--transition);
}
.nav-dropdown-menu a:hover { background: var(--gold-pale); color: var(--deep); }
.drawer-group-label {
  font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); padding: 12px 0 4px; display: block;
}
.nav-drawer .drawer-sub { padding-left: 16px !important; color: var(--text-muted) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  margin: -10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

#nav-toggle { display: none !important; }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-drawer {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 16px 24px 20px;
  gap: 2px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color var(--transition);
}
.nav-drawer a:hover { color: var(--deep); }

/* =============================================
   HERO
   ============================================= */

.hero {
  background: var(--deep);
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  background: url('/images/worship.jpg') center center / cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,150,12,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(107,143,113,0.1) 0%, transparent 50%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg, white 0, white 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}

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

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '✝';
  font-size: 14px;
}

.hero h1 {
  color: white;
  margin-bottom: 20px;
  font-style: italic;
}
.hero h1 em { font-style: normal; color: var(--gold-light); }

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-service-info {
  position: relative;
  z-index: 2;
  margin-top: 52px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-service-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.hero-service-pill span { color: var(--gold-light); font-weight: 700; }

/* =============================================
   WELCOME STRIP
   ============================================= */

.welcome-strip {
  background: var(--gold-pale);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 32px 24px;
  text-align: center;
}
.welcome-strip p {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.5vw, 22px);
  font-style: italic;
  color: var(--deep);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.welcome-strip p em { color: var(--gold); font-style: normal; font-weight: 600; }

/* =============================================
   LIVE STREAM
   ============================================= */

.stream-section { background: var(--deep); color: white; }
.stream-section .section-title { color: white; }
.stream-section .section-sub { color: rgba(255,255,255,0.65); }
.stream-section .section-label { color: var(--gold-light); }
.stream-section .section-label::before { background: var(--gold-light); }

.stream-embed {
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  width: 100%;
}
.stream-embed iframe { width: 100%; height: 100%; border: none; display: block; }

.stream-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.stream-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}
.stream-badge-live {
  background: #ef4444;
  color: white;
}
.stream-badge-live::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.stream-badge-upcoming {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}

/* =============================================
   SERMONS
   ============================================= */

.sermons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.sermon-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.sermon-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.sermon-card-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--deep), var(--navy));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sermon-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  box-shadow: 0 4px 16px rgba(200,150,12,0.4);
  transition: transform var(--transition);
}
.sermon-card:hover .sermon-play-btn { transform: scale(1.1); }

.sermon-card-body { padding: 20px; }
.sermon-series {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.sermon-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--deep);
  margin-bottom: 8px;
  line-height: 1.3;
}
.sermon-meta {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sermon-notes-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  transition: gap var(--transition);
}
.sermon-card:hover .sermon-notes-link { gap: 8px; }

/* =============================================
   SETLISTS
   ============================================= */

.setlists-section { background: var(--sage-light); }

.setlist-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-pill {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 7px 18px;
  border-radius: 50px;
  border: 2px solid transparent;
  background: white;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.filter-pill:hover, .filter-pill.active {
  background: var(--deep);
  color: white;
  border-color: var(--deep);
}

.setlist-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
  transition: all var(--transition);
}
.setlist-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.setlist-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 12px;
}
.setlist-date-badge {
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  text-align: center;
  flex-shrink: 0;
}
.setlist-date-day {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.setlist-date-month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.setlist-info h4 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--deep);
  margin-bottom: 4px;
}
.setlist-info p {
  font-size: 13px;
  color: var(--text-muted);
}
.setlist-songs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.song-chip {
  font-size: 12px;
  background: var(--sage-light);
  color: var(--sage);
  border: 1px solid rgba(107,143,113,0.3);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
}
.song-chip.highlight {
  background: var(--gold-pale);
  color: var(--gold);
  border-color: var(--border);
}

/* =============================================
   ABOUT
   ============================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-block {
  position: relative;
}
.about-image-placeholder {
  background: linear-gradient(135deg, var(--deep) 0%, #2d4a5e 100%);
  border-radius: var(--radius-xl);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-image-cross {
  font-size: 80px;
  color: rgba(255,255,255,0.08);
  position: absolute;
}
.about-image-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 24px;
  position: relative;
  z-index: 1;
}
.about-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.about-stat {
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}
.about-values { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.about-value {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-value-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-value-title {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--deep);
  margin-bottom: 3px;
}
.about-value-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   SERVICE TIMES
   ============================================= */

.times-section { background: var(--deep); color: white; }
.times-section .section-title { color: white; }
.times-section .section-sub { color: rgba(255,255,255,0.6); }
.times-section .section-label { color: var(--gold-light); }
.times-section .section-label::before { background: var(--gold-light); }

.times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.time-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background var(--transition);
}
.time-card:hover { background: rgba(255,255,255,0.1); }
.time-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.time-card-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: white;
  margin-bottom: 6px;
}
.time-card-time {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.time-card-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

.location-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.location-detail h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: white;
  margin-bottom: 8px;
}
.location-detail p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}
.location-detail a { color: var(--gold-light); }

/* =============================================
   EVENTS
   ============================================= */

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.event-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.event-date-col {
  background: var(--deep);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  flex-shrink: 0;
}
.event-date-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.event-date-mon {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.event-body { padding: 18px; }
.event-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 5px;
}
.event-title {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--deep);
  margin-bottom: 6px;
  line-height: 1.3;
}
.event-detail { font-size: 13px; color: var(--text-muted); }

/* =============================================
   CONTACT
   ============================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: white;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-info-value {
  font-size: 15px;
  color: var(--deep);
  font-weight: 600;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: var(--deep);
  color: white;
  padding: 56px 24px 28px;
}
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: white;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand-cross {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 240px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
  cursor: pointer;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-verse { font-size: 13px; color: rgba(255,255,255,0.35); font-style: italic; font-family: var(--font-display); }

/* =============================================
   SERMON NOTES PAGE
   ============================================= */

.notes-page { max-width: 760px; margin: 0 auto; padding: 52px 24px; }
.notes-header { margin-bottom: 32px; }
.notes-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--deep);
  margin-bottom: 12px;
}
.notes-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.notes-body { font-size: 16px; line-height: 1.85; color: var(--text); }
.notes-body h3 {
  font-size: 22px;
  color: var(--deep);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.notes-body p { margin-bottom: 16px; }
.notes-body .scripture {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 17px;
  margin: 20px 0;
  color: var(--deep);
}
.notes-body .key-point {
  background: var(--sage-light);
  border-left: 4px solid var(--sage);
  padding: 14px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 20px 0;
  font-weight: 700;
  color: var(--deep);
}

/* =============================================
   UTILITY & RESPONSIVE
   ============================================= */

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-cream { background: var(--cream); }
.bg-white { background: white; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 64px 20px 52px; }
  .section { padding: 52px 0; }
  .times-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .times-grid { grid-template-columns: 1fr; }
  .hero-service-info { flex-direction: column; gap: 10px; }
  .about-stat-strip { grid-template-columns: 1fr; }
}
