
/* Reduce font-swap CLS — size-adjust fallback fonts to match web fonts */
@font-face {
  font-family: 'Marcellus';
  src: local('Georgia');
  size-adjust: 98%;
  ascent-override: 95%;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: local('Georgia');
  size-adjust: 100%;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: local('system-ui');
  size-adjust: 96%;
  font-display: swap;
}
/* ===== SKIP TO CONTENT (accessibility) ===== */
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--amber); color: var(--ink);
  font-family: var(--sans); font-size: 0.8rem; font-weight: 500;
  padding: 0.5rem 1rem; border-radius: 2px; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   LAKE CITY BAPTIST CHURCH — main.css
   Flathead Lake / Mission Mountains Theme
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --glacier:    #2c4a6e;
  --glacier-dk: #1a2f47;
  --glacier-lt: #4a7098;
  --pine:       #2d4230;
  --pine-lt:    #3d5940;
  --stone:      #7a7060;
  --stone-lt:   #b0a898;
  --amber:      #c08b3a;
  --amber-lt:   #d4a254;
  --sky:        #e8f0f5;
  --sky-lt:     #f0f5f8;
  --snow:       #f5f7f8;
  --white:      #ffffff;
  --ink:        #1e2820;
  --ink-mid:    #3a4035;
  --ink-light:  #6b7060;
  --serif-display: 'Marcellus', Georgia, serif;
  --serif-body:    'Cormorant Garamond', Georgia, serif;
  --sans:          'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--serif-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--snow);
  line-height: 1.85;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(26,47,71,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(192,139,58,0.25);
  overflow: visible;
}

.nav-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }

/* Overflowing logo — larger than nav height, drops into hero */
.nav-emblem {
  width: 128px; height: 128px; flex-shrink: 0;
  margin-top: 48px;          /* top ~22px in nav, ~106px spills into hero */
  position: relative; z-index: 301;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.45));
  contain: layout;
}
.nav-emblem img { width: 100%; height: 100%; display: block; aspect-ratio: 1 / 1; }

.nav-name { font-family: var(--serif-display); font-size: 1.05rem; color: #fff; line-height: 1.2; min-width: 180px; }
.nav-name small { display: block; font-family: var(--sans); font-size: 0.65rem; font-weight: 400; color: var(--amber-lt); letter-spacing: 0.18em; text-transform: uppercase; }

nav ul { list-style: none; display: flex; align-items: center; gap: 1.6rem; }
nav ul li a {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 300;
  color: rgba(255,255,255,0.78); text-decoration: none;
  letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s;
}
nav ul li a:hover { color: var(--amber-lt); }
nav ul li a.nav-give {
  color: var(--ink) !important; background: var(--amber);
  padding: 0.42rem 1.1rem; border-radius: 2px; font-weight: 500;
}
nav ul li a.nav-give:hover { background: var(--amber-lt) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.75); transition: 0.3s; }

/* ===== HERO / SLIDESHOW ===== */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}

.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease-in-out;
  will-change: opacity, transform;
}
.slide.active { opacity: 1; }

@keyframes kb1 { from { transform: scale(1.08) translateX(0);   } to { transform: scale(1)    translateX(-1%); } }
@keyframes kb2 { from { transform: scale(1)    translateX(-1%); } to { transform: scale(1.08) translateX(1%);  } }
@keyframes kb3 { from { transform: scale(1.06) translateY(-1%); } to { transform: scale(1)    translateY(1%);  } }
@keyframes kb4 { from { transform: scale(1)    translateY(1%);  } to { transform: scale(1.07) translateX(-1%);} }
.slide.kb1 { animation: kb1 9s ease-in-out forwards; }
.slide.kb2 { animation: kb2 9s ease-in-out forwards; }
.slide.kb3 { animation: kb3 9s ease-in-out forwards; }
.slide.kb4 { animation: kb4 9s ease-in-out forwards; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(26,47,71,0.35) 0%,
    rgba(26,47,71,0.18) 40%,
    rgba(26,47,71,0.55) 75%,
    rgba(26,47,71,0.82) 100%);
}

.hero-mountain {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  height: 120px; pointer-events: none;
}
.hero-mountain svg { width: 100%; height: 100%; }

.hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 0 2rem; max-width: 900px;
  animation: heroFadeUp 1.2s 0.4s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-location {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase; color: #fff; margin-bottom: 1.75rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}
.hero-location::before, .hero-location::after {
  content: ''; display: block; width: 36px; height: 1px; background: var(--amber); opacity: 1;
}
.hero h1 {
  font-family: var(--serif-display); font-size: clamp(2.8rem, 6.5vw, 6rem);
  color: #fff; line-height: 1.06; text-shadow: 0 2px 24px rgba(26,47,71,0.5);
  margin-bottom: 1.2rem; font-display: swap;
}
.hero h1 em { font-family: var(--serif-body); font-style: italic; color: var(--amber-lt); }
.hero-sub {
  font-family: var(--serif-body); font-style: italic; font-size: 1.35rem; font-weight: 300;
  color: rgba(255,255,255,0.85); line-height: 1.65; margin-bottom: 2.75rem;
  text-shadow: 0 1px 10px rgba(26,47,71,0.7);
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-dots {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; gap: 8px;
}
.dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: transparent; border: none;
  cursor: pointer; transition: background 0.3s, transform 0.2s;
  display: flex; align-items: center; justify-content: center;
  padding: 0; position: relative;
}
.dot::after {
  content: ""; display: block;
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.6);
  transition: background 0.3s, transform 0.2s;
}
.dot.active::after { background: var(--amber); transform: scale(1.3); border-color: var(--amber); }
/* .dot.active handled via ::after pseudo-element */

/* ===== SCHEDULE STRIP ===== */
.schedule-strip { background: var(--glacier-dk); border-bottom: 3px solid var(--amber); }
.strip-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; }
.loc-block { padding: 2rem 3rem; border-right: 1px solid rgba(255,255,255,0.07); }
.loc-block:last-child { border-right: none; }
.loc-eyebrow {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: #f0c060; margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.loc-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(192,139,58,0.3); }
.loc-title { font-family: var(--serif-display); font-size: 1.1rem; color: #fff; margin-bottom: 0.15rem; }
.loc-addr { font-family: var(--sans); font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.65); letter-spacing: 0.04em; margin-bottom: 1rem; }
.sched-row { display: flex; align-items: baseline; gap: 0.85rem; padding: 0.5rem 0; border-top: 1px solid rgba(255,255,255,0.05); }
.s-time { font-family: var(--serif-display); font-size: 1.05rem; color: var(--amber); min-width: 82px; }
.s-name { font-family: var(--sans); font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.78); letter-spacing: 0.06em; text-transform: uppercase; }
.s-note { font-family: var(--serif-body); font-style: italic; font-size: 0.82rem; color: rgba(255,255,255,0.72); }

/* ===== SECTION BASE ===== */
section { scroll-margin-top: 76px; }
.section-wrap { max-width: 1100px; margin: 0 auto; }

.eyebrow {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: #7a5010;
  display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.8rem;
}
.eyebrow::after { content: ''; display: block; width: 26px; height: 1px; background: #7a5010; }

/* Eyebrow labels on DARK backgrounds — lighter for contrast */
.about-pastor .eyebrow,
.gospel .eyebrow,
.watch .eyebrow,
/* ── EYEBROW overrides for DARK background sections ── */
/* Pine green bg (about-pastor): needs bright amber */
.about-pastor .eyebrow { color: var(--amber-lt); }
.about-pastor .eyebrow::after { background: var(--amber-lt); }
/* Dark glacier bg (gospel, watch, give): needs bright amber */
.gospel .eyebrow { color: var(--amber-lt); }
.gospel .eyebrow::after { background: var(--amber-lt); }
.watch .eyebrow { color: var(--amber-lt); }
.watch .eyebrow::after { background: var(--amber-lt); }
.give-section .eyebrow { color: var(--amber-lt); }
.give-section .eyebrow::after { background: var(--amber-lt); }
/* Schedule strip eyebrow already uses #f0c060 via .loc-eyebrow */

/* ── EYEBROW override for BELIEFS section (sky bg #e8f0f5) ── */
/* #9a6e20 on #e8f0f5 = 5.3:1 ratio — passes WCAG AA — no override needed */
.eyebrow-center { justify-content: center; }
.eyebrow-center::before { content: ''; display: block; width: 26px; height: 1px; background: #7a5010; }
.eyebrow-center::after { display: none; }

h2.st {
  font-family: var(--serif-display); font-size: clamp(1.9rem,3.5vw,3rem);
  color: var(--glacier-dk); line-height: 1.12; letter-spacing: 0.01em; margin-bottom: 1rem;
}
h2.st em { font-family: var(--serif-body); font-style: italic; color: var(--pine); }
h2.st.lt { color: #fff; }
h2.st.lt em { color: var(--amber-lt); }

.rule { width: 40px; height: 2px; background: var(--amber); margin-bottom: 1.5rem; }
.rule-center { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; font-family: var(--sans); font-size: 0.7rem;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; padding: 0.9rem 2.2rem; border-radius: 2px;
  border: none; cursor: pointer; transition: 0.2s;
}
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: var(--amber-lt); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.88); border: 1px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: var(--amber-lt); color: var(--amber-lt); }
.btn-glacier { background: var(--glacier); color: #fff; }
.btn-glacier:hover { background: var(--glacier-lt); }
.btn-pine { background: var(--pine); color: #fff; }
.btn-pine:hover { background: var(--pine-lt); }

/* ===== PAGE HEADER (inner pages) ===== */
.page-hero {
  height: 260px; background: var(--glacier-dk);
  display: flex; align-items: flex-end; padding-bottom: 2.5rem;
  position: relative; overflow: hidden; margin-top: 70px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,47,71,0.7) 0%, rgba(45,66,48,0.5) 100%);
}
.page-hero-mountain {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
}
.page-hero-mountain svg { width: 100%; height: 100%; }
.page-hero-content { position: relative; z-index: 2; padding: 0 3rem; }
.page-hero-tag {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem;
}
.page-hero h1 {
  font-family: var(--serif-display); font-size: clamp(2rem,4vw,3.5rem);
  color: #fff; line-height: 1.1; text-shadow: 0 2px 12px rgba(26,47,71,0.5);
}

/* ===== ABOUT ===== */
.about { display: grid; grid-template-columns: 3fr 2fr; background: var(--white); }
.about-text { padding: 6rem 5rem; border-right: 1px solid var(--sky); }
.about-pastor { padding: 6rem 3.5rem; background: var(--pine); position: relative; overflow: hidden; }
.about-pastor::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.06);
}
.pastor-name { font-family: var(--serif-display); font-size: 1.9rem; color: #fff; line-height: 1.1; margin-bottom: 0.3rem; }
.pastor-cred { font-family: var(--sans); font-size: 0.65rem; font-weight: 300; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1.75rem; }
.pastor-bio { font-family: var(--serif-body); font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.78); line-height: 1.85; }
.body-para { font-size: 1.08rem; color: var(--ink-mid); line-height: 1.9; margin-bottom: 1.2rem; }
.scripture-pull { margin-top: 2.25rem; padding: 1.75rem 2rem; background: var(--sky); border-left: 3px solid var(--glacier); }
.scripture-pull blockquote { font-family: var(--serif-body); font-style: italic; font-size: 1.35rem; font-weight: 300; color: var(--glacier-dk); line-height: 1.45; margin-bottom: 0.6rem; }
.scripture-pull cite { font-family: var(--sans); font-style: normal; font-size: 0.62rem; font-weight: 400; letter-spacing: 0.12em; color: var(--glacier); text-transform: uppercase; }

/* ===== BELIEFS ===== */
.beliefs { background: var(--sky); padding: 7rem 6rem; }
.beliefs-intro { display: grid; grid-template-columns: 1fr 1.8fr; gap: 5rem; margin-bottom: 4rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(44,74,110,0.12); align-items: end; }
.beliefs-intro-text { font-size: 1rem; color: var(--ink-mid); line-height: 1.85; }
.beliefs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(44,74,110,0.1); }
.belief-card { background: var(--white); padding: 2.5rem 2rem; transition: background 0.2s; }
.belief-card:hover { background: #eef3f8; }
.belief-roman { font-family: var(--serif-display); font-size: 3rem; color: #7a96ae; line-height: 1; margin-bottom: 0.75rem; }
.belief-title { font-family: var(--serif-display); font-size: 1.18rem; color: var(--glacier-dk); margin-bottom: 0.6rem; line-height: 1.25; }
.belief-body { font-size: 0.92rem; color: var(--ink-mid); line-height: 1.78; }

/* ===== FULL BELIEFS PAGE ===== */
.beliefs-full { background: var(--white); padding: 5rem 6rem; }
.beliefs-full-inner { max-width: 860px; margin: 0 auto; }
.article-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--sky); }
.article-section:last-child { border-bottom: none; }
.article-heading { font-family: var(--serif-display); font-size: 1.15rem; color: var(--glacier-dk); margin-bottom: 0.25rem; }
.article-sub { font-family: var(--sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.85rem; }
.article-text { font-size: 1.02rem; color: var(--ink-mid); line-height: 1.88; margin-bottom: 0.85rem; }
.article-refs { font-family: var(--sans); font-size: 0.78rem; color: var(--stone); line-height: 1.7; }
.article-list { padding-left: 1.5rem; margin-bottom: 0.85rem; }
.article-list li { font-size: 0.97rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 0.4rem; }

/* ===== GOSPEL ===== */
.gospel { background: var(--glacier-dk); padding: 7rem 6rem; position: relative; overflow: hidden; }
.gospel-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.gospel-cols { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; margin-top: 3rem; align-items: start; }
.gospel-side-text { font-family: var(--serif-body); font-style: italic; font-size: 1.3rem; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.55; }
.gospel-side-text strong { font-style: normal; font-weight: 400; color: rgba(255,255,255,0.82); display: block; margin-top: 0.75rem; font-size: 1rem; }
.gospel-steps { display: flex; flex-direction: column; }
.gospel-step { display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem; padding: 1.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); align-items: start; }
.gospel-step:last-child { border-bottom: none; }
.g-num { font-family: var(--serif-display); font-size: 2.8rem; color: rgba(255,255,255,0.07); line-height: 1; }
.g-label { font-family: var(--sans); font-size: 0.58rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.45rem; }
.g-verse { font-family: var(--serif-body); font-style: italic; font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.55; margin-bottom: 0.3rem; }
.g-ref { font-family: var(--sans); font-size: 0.62rem; font-weight: 400; color: var(--amber-lt); letter-spacing: 0.06em; }

/* ===== VISIT ===== */
.visit { background: var(--white); padding: 7rem 6rem; }
.visit-head { text-align: center; margin-bottom: 4rem; }
.two-locations { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--sky); margin-bottom: 3rem; }
.loc-card { background: var(--white); padding: 2.75rem 2.5rem; }
.loc-card.evening { background: var(--sky-lt); }
.loc-badge { display: inline-block; font-family: var(--sans); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.3rem 0.85rem; border-radius: 20px; margin-bottom: 1.1rem; }
.loc-badge.morning { background: var(--glacier); color: #fff; }
.loc-badge.evening { background: var(--pine); color: #fff; }
.loc-card-name { font-family: var(--serif-display); font-size: 1.5rem; color: var(--glacier-dk); margin-bottom: 0.2rem; line-height: 1.2; }
.loc-card-addr { font-family: var(--sans); font-size: 0.78rem; font-weight: 300; color: var(--stone); letter-spacing: 0.04em; margin-bottom: 1.5rem; }
.sched-list { border-top: 1px solid var(--sky); }
.sched-item { display: flex; align-items: baseline; gap: 1rem; padding: 0.65rem 0; border-bottom: 1px solid var(--sky); }
.sched-item:last-child { border-bottom: none; }
.si-time { font-family: var(--serif-display); font-size: 1.05rem; color: var(--glacier); min-width: 85px; }
.si-name { font-family: var(--sans); font-size: 0.76rem; font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-mid); }
.si-sub { font-family: var(--serif-body); font-style: italic; font-size: 0.82rem; color: var(--stone); display: block; }
.map-frame { width: 100%; height: 380px; border: none; display: block; margin-bottom: 2px; }
.dir-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--sky); }
.dir-card { background: var(--sky); padding: 2rem 2.25rem; }
.dir-from { font-family: var(--sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--glacier); margin-bottom: 0.6rem; }
.dir-text { font-family: var(--serif-body); font-size: 0.95rem; color: var(--ink-mid); line-height: 1.7; }
.church-photo { width: 100%; max-width: 700px; display: block; margin: 2.5rem auto 0; border-radius: 2px; }

/* ===== EVENTS ===== */
.events-section { background: var(--white); padding: 5rem 6rem; }
.events-inner { max-width: 860px; margin: 0 auto; }
.event-card {
  display: grid; grid-template-columns: 80px 1fr; gap: 0;
  margin-bottom: 1.5rem; border: 1px solid var(--sky); border-radius: 2px; overflow: hidden;
  transition: box-shadow 0.2s;
}
.event-card:hover { box-shadow: 0 4px 20px rgba(44,74,110,0.1); }
.event-date {
  background: var(--glacier); display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 1.25rem 0.5rem;
  text-align: center;
}
.event-day { font-family: var(--serif-display); font-size: 2rem; color: #fff; line-height: 1; }
.event-month { font-family: var(--sans); font-size: 0.62rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.2rem; }
.event-body { padding: 1.25rem 1.5rem; }
.event-title { font-family: var(--serif-display); font-size: 1.15rem; color: var(--glacier-dk); margin-bottom: 0.35rem; line-height: 1.25; }
.event-meta { font-family: var(--sans); font-size: 0.78rem; font-weight: 300; color: var(--stone); margin-bottom: 0.75rem; }
.event-meta span { color: var(--glacier); font-weight: 400; }
.event-desc { font-size: 1rem; color: var(--ink-mid); line-height: 1.75; }
.no-events { font-family: var(--serif-body); font-style: italic; font-size: 1.05rem; color: var(--stone); text-align: center; padding: 3rem 0; }

/* ===== WATCH ===== */
.watch { background: var(--pine); padding: 6.5rem 6rem; }
.watch-inner { max-width: 980px; margin: 0 auto; }
.watch .rule { background: rgba(255,255,255,0.25); }
.watch-live-btn {
  display: inline-block; font-family: var(--sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  padding: 0.85rem 2rem; background: var(--amber); color: var(--ink);
  border-radius: 2px; margin-bottom: 2.5rem; transition: background 0.2s;
}
.watch-live-btn:hover { background: var(--amber-lt); }
.watch iframe { border: none; border-radius: 2px; }

/* ===== PRAYER ===== */
.prayer-section { background: var(--sky); padding: 7rem 6rem; }
.prayer-inner { max-width: 820px; }
.prayer-lead { font-size: 1.08rem; color: var(--ink-mid); line-height: 1.9; margin-bottom: 1.1rem; }
.prayer-link { color: var(--glacier); text-decoration: none; border-bottom: 1px solid rgba(44,74,110,0.3); transition: color 0.2s, border-color 0.2s; }
.prayer-link:hover { color: var(--pine); border-color: var(--pine); }
.gospel-prose { background: var(--white); padding: 3rem; margin-top: 2.5rem; border-left: 3px solid var(--glacier); }
.gp-title { font-family: var(--serif-display); font-size: 1.3rem; color: var(--glacier-dk); margin-bottom: 1.4rem; line-height: 1.25; border-bottom: 1px solid var(--sky); padding-bottom: 1rem; }
.gp-para { font-size: 1rem; color: var(--ink-mid); line-height: 1.88; margin-bottom: 1.1rem; }
.gp-para:last-child { margin-bottom: 0; }


/* ===== FORM LABELS (accessibility) ===== */
.form-label {
  display: block;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--glacier); margin-bottom: 0.3rem;
}
.form-label .req { color: var(--amber); font-style: normal; }
/* ===== CONTACT ===== */
.contact-section { background: var(--white); padding: 7rem 6rem; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; max-width: 1100px; margin: 0 auto; }
.contact-detail-list { margin-top: 2rem; }
.cd-item { padding: 1.25rem 0; border-bottom: 1px solid var(--sky); }
.cd-item:last-child { border-bottom: none; }
.cd-label { font-family: var(--sans); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--glacier); margin-bottom: 0.3rem; }
.cd-val { font-family: var(--serif-body); font-size: 1.05rem; color: var(--ink-mid); line-height: 1.65; }
.cd-val a { color: var(--ink-mid); text-decoration: none; border-bottom: 1px solid var(--sky); transition: color 0.2s, border-color 0.2s; }
.cd-val a:hover { color: var(--glacier); border-color: var(--glacier); }

.form-title { font-family: var(--serif-display); font-size: 1.3rem; color: var(--glacier-dk); margin-bottom: 0.4rem; }
.form-sub { font-family: var(--sans); font-size: 0.65rem; font-weight: 200; color: var(--stone); letter-spacing: 0.06em; margin-bottom: 1.5rem; }

.lcbc-form { display: flex; flex-direction: column; gap: 0.8rem; }
.lcbc-form .form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.lcbc-form input, .lcbc-form select, .lcbc-form textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--sky); border: 1px solid rgba(44,74,110,0.12);
  font-family: var(--serif-body); font-size: 0.95rem; color: var(--ink);
  outline: none; appearance: none; border-radius: 1px; transition: border-color 0.2s;
}
.lcbc-form input::placeholder, .lcbc-form textarea::placeholder { color: var(--stone-lt, #b0a898); }
.lcbc-form input:focus, .lcbc-form select:focus, .lcbc-form textarea:focus { border-color: var(--glacier); background: #fff; }
.lcbc-form textarea { min-height: 120px; resize: vertical; }
.lcbc-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237a7060'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer;
}
.lcbc-form input[disabled], .lcbc-form select[disabled], .lcbc-form textarea[disabled] { opacity: 0.6; cursor: not-allowed; }
.form-success { color: var(--pine); font-family: var(--sans); font-size: 0.85rem; font-weight: 500; padding: 1rem; background: rgba(45,66,48,0.08); border-left: 3px solid var(--pine); border-radius: 1px; }
.form-error { color: var(--amber); font-family: var(--sans); font-size: 0.85rem; padding: 1rem; background: rgba(192,139,58,0.08); border-left: 3px solid var(--amber); border-radius: 1px; }

/* ===== GIVE ===== */
.give-section { background: var(--glacier-dk); padding: 7rem 6rem; }
.give-inner { max-width: 760px; margin: 0 auto; }
.give-verse { background: rgba(255,255,255,0.04); border-left: 3px solid var(--amber); padding: 2rem 2.25rem; margin: 2.25rem 0; font-family: var(--serif-body); font-style: italic; font-size: 1.35rem; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.5; }
.give-ref { display: block; font-family: var(--sans); font-style: normal; font-size: 0.62rem; font-weight: 400; letter-spacing: 0.12em; color: var(--amber); margin-top: 0.6rem; }
.give-text { font-family: var(--serif-body); font-size: 1rem; color: rgba(255,255,255,0.68); line-height: 1.85; margin-bottom: 1rem; }
.give-apps { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0; }
.give-apps img { height: 44px; width: auto; }

/* ===== FOOTER ===== */
/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  border-top: 3px solid var(--amber);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 4rem 3rem 2.5rem;
  display: grid; grid-template-columns: 1.6fr 1fr 1.4fr; gap: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {}
.footer-emblem {
  width: 72px; height: 72px; margin-bottom: 1.25rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.footer-emblem img { width: 100%; height: 100%; display: block; }
.footer-name {
  font-family: var(--serif-display); font-size: 1.15rem;
  color: #fff; margin-bottom: 0.5rem; line-height: 1.2;
}
.footer-tagline {
  font-family: var(--serif-body); font-style: italic; font-size: 0.88rem;
  font-weight: 300; color: rgba(255,255,255,0.62); margin-bottom: 1.25rem; line-height: 1.6;
}
.footer-social a {
  display: inline-block; font-family: var(--sans); font-size: 0.62rem;
  font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber); text-decoration: none; border: 1px solid rgba(192,139,58,0.35);
  padding: 0.35rem 0.9rem; border-radius: 2px; transition: 0.2s;
}
.footer-social a:hover { background: var(--amber); color: var(--ink); }

.footer-col-title {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(192,139,58,0.25);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links li a {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 200;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.48);
  text-decoration: none; transition: color 0.2s;
}
.footer-links li a:hover { color: var(--amber-lt); }

.footer-contact-item { margin-bottom: 1rem; }
.footer-contact-label {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.58); margin-bottom: 0.2rem;
}
.footer-contact-val {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 200;
  color: rgba(255,255,255,0.52); line-height: 1.65;
}
.footer-contact-val a { color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.2s; }
.footer-contact-val a:hover { color: var(--amber-lt); }

.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding: 1.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-copy {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 300;
  color: rgba(255,255,255,0.52); letter-spacing: 0.06em;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--amber-lt); }

/* Developer credit bar */
.footer-devbar {
  background: rgba(0,0,0,0.25);
  text-align: center;
  padding: 0.75rem 1rem;
  font-family: var(--sans); font-size: 0.65rem; font-weight: 300;
  color: rgba(255,255,255,0.38); letter-spacing: 0.06em;
}
.footer-devbar a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s, border-color 0.2s;
}
.footer-devbar a:hover { color: var(--amber-lt); border-color: var(--amber-lt); }

/* ===== ADMIN STYLES ===== */
.admin-body { font-family: var(--sans); background: var(--sky); min-height: 100vh; color: var(--ink); }
.admin-nav { background: var(--glacier-dk); padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 3px solid var(--amber); }
.admin-nav-brand { font-family: var(--serif-display); font-size: 1rem; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.admin-nav-brand small { font-family: var(--sans); font-size: 0.6rem; font-weight: 200; color: var(--amber-lt); letter-spacing: 0.15em; text-transform: uppercase; display: block; }
.admin-nav-right { display: flex; align-items: center; gap: 1.5rem; }
.admin-nav-user { font-family: var(--sans); font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.admin-nav-user span { color: var(--amber-lt); font-weight: 500; }
.admin-nav-logout { font-family: var(--sans); font-size: 0.68rem; color: rgba(255,255,255,0.5); text-decoration: none; border: 1px solid rgba(255,255,255,0.2); padding: 0.3rem 0.85rem; border-radius: 2px; transition: 0.2s; }
.admin-nav-logout:hover { border-color: var(--amber); color: var(--amber-lt); }

.admin-main { max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem; }
.admin-breadcrumb { font-family: var(--sans); font-size: 0.68rem; color: var(--stone); margin-bottom: 2rem; }
.admin-breadcrumb a { color: var(--glacier); text-decoration: none; }
.admin-breadcrumb a:hover { color: var(--pine); }

.admin-card { background: var(--white); border-radius: 4px; border: 1px solid rgba(44,74,110,0.1); box-shadow: 0 2px 12px rgba(44,74,110,0.06); overflow: hidden; }
.admin-card-header { padding: 1.5rem 2rem; border-bottom: 1px solid var(--sky); display: flex; align-items: center; justify-content: space-between; background: var(--glacier-dk); }
.admin-card-title { font-family: var(--serif-display); font-size: 1.2rem; color: #fff; }
.admin-card-sub { font-family: var(--sans); font-size: 0.68rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }
.admin-card-body { padding: 2rem; }

.admin-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.admin-table th { font-family: var(--sans); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); padding: 0.75rem 1rem; border-bottom: 2px solid var(--sky); text-align: left; white-space: nowrap; }
.admin-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--sky); vertical-align: top; color: var(--ink-mid); font-size: 0.83rem; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--sky-lt); }
.admin-table .td-actions { white-space: nowrap; }
.admin-table .td-actions a { font-family: var(--sans); font-size: 0.68rem; color: var(--glacier); text-decoration: none; margin-right: 0.75rem; }
.admin-table .td-actions a:hover { color: var(--pine); }
.admin-table .td-actions a.danger { color: #c0392b; }
.admin-table .td-actions a.danger:hover { color: #922b21; }

.status-pill { display: inline-block; font-family: var(--sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.65rem; border-radius: 20px; }
.status-unread { background: rgba(192,139,58,0.15); color: var(--amber); }
.status-read { background: rgba(44,74,110,0.1); color: var(--glacier); }
.status-archived { background: var(--sky); color: var(--stone); }
.status-enabled { background: rgba(45,66,48,0.12); color: var(--pine); }
.status-disabled { background: rgba(192,139,58,0.1); color: var(--stone); }
.status-super { background: rgba(26,47,71,0.12); color: var(--glacier-dk); }
.status-basic { background: rgba(44,74,110,0.1); color: var(--glacier); }
.status-member { background: var(--sky); color: var(--stone); }

.admin-form { display: flex; flex-direction: column; gap: 1.1rem; max-width: 700px; }
.admin-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.admin-form label { font-family: var(--sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--glacier); display: block; margin-bottom: 0.4rem; }
.admin-form input, .admin-form select, .admin-form textarea {
  width: 100%; padding: 0.7rem 0.9rem;
  background: var(--sky); border: 1px solid rgba(44,74,110,0.15);
  font-family: var(--sans); font-size: 0.85rem; color: var(--ink);
  outline: none; appearance: none; border-radius: 2px; transition: border-color 0.2s;
}
.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus { border-color: var(--glacier); background: #fff; }
.admin-form textarea { min-height: 100px; resize: vertical; }
.admin-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237a7060'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2rem; cursor: pointer;
}
.admin-btn { display: inline-block; font-family: var(--sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; padding: 0.75rem 1.75rem; border-radius: 2px; border: none; cursor: pointer; transition: 0.2s; }
.admin-btn-primary { background: var(--glacier); color: #fff; }
.admin-btn-primary:hover { background: var(--glacier-lt); }
.admin-btn-amber { background: var(--amber); color: var(--ink); }
.admin-btn-amber:hover { background: var(--amber-lt); }
.admin-btn-danger { background: #c0392b; color: #fff; }
.admin-btn-danger:hover { background: #922b21; }
.admin-btn-ghost { background: transparent; color: var(--glacier); border: 1px solid var(--glacier); }
.admin-btn-ghost:hover { background: var(--glacier); color: #fff; }

.admin-alert { padding: 1rem 1.25rem; border-radius: 2px; font-family: var(--sans); font-size: 0.8rem; margin-bottom: 1.5rem; }
.admin-alert-success { background: rgba(45,66,48,0.1); border-left: 3px solid var(--pine); color: var(--pine); }
.admin-alert-error { background: rgba(192,0,0,0.07); border-left: 3px solid #c0392b; color: #922b21; }
.admin-alert-info { background: rgba(44,74,110,0.08); border-left: 3px solid var(--glacier); color: var(--glacier-dk); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1.25rem; }
.menu-item { display: flex; flex-direction: column; align-items: flex-start; text-decoration: none; background: var(--white); border: 1px solid rgba(44,74,110,0.1); border-radius: 4px; padding: 1.75rem 1.5rem; transition: box-shadow 0.2s, border-color 0.2s; }
.menu-item:hover { box-shadow: 0 4px 16px rgba(44,74,110,0.12); border-color: var(--glacier); }
.menu-item-icon { width: 44px; height: 44px; background: var(--sky); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.menu-item-icon svg { width: 22px; height: 22px; fill: var(--glacier); }
.menu-item-label { font-family: var(--serif-display); font-size: 1rem; color: var(--glacier-dk); margin-bottom: 0.25rem; }
.menu-item-desc { font-family: var(--sans); font-size: 0.68rem; color: var(--stone); line-height: 1.5; }

.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--glacier-dk); background-image: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(192,139,58,0.12) 0%, transparent 70%); }
.admin-login-box { background: var(--white); border-radius: 4px; padding: 3rem 2.5rem; width: 100%; max-width: 420px; box-shadow: 0 8px 40px rgba(26,47,71,0.4); }
.admin-login-logo { text-align: center; margin-bottom: 2rem; }
.admin-login-logo .cross { width: 48px; height: 48px; position: relative; margin: 0 auto 0.75rem; }
.admin-login-logo .cross::before { content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 6px; height: 100%; background: var(--glacier); border-radius: 3px; }
.admin-login-logo .cross::after  { content: ''; position: absolute; top: 33%; left: 0; width: 100%; height: 6px; background: var(--glacier); border-radius: 3px; }
.admin-login-title { font-family: var(--serif-display); font-size: 1.4rem; color: var(--glacier-dk); text-align: center; margin-bottom: 0.25rem; }
.admin-login-sub { font-family: var(--sans); font-size: 0.65rem; color: var(--stone); text-align: center; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2rem; }

/* ===== EVENT PREVIEW (admin) ===== */
.event-preview { background: var(--sky); border: 1px solid rgba(44,74,110,0.1); border-radius: 2px; padding: 1.25rem 1.5rem; margin-top: 1.25rem; }
.event-preview-label { font-family: var(--sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.75rem; }
.event-preview .event-card { margin-bottom: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  nav { padding: 0 1.25rem; }
  .nav-emblem { width: 88px; height: 88px; margin-top: 30px; }
  nav ul { display: none; }
  nav ul.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: rgba(26,47,71,0.98); padding: 1.5rem; gap: 0.75rem; border-bottom: 1px solid rgba(192,139,58,0.2); z-index: 300; }
  .hamburger { display: flex; }
  .strip-inner { grid-template-columns: 1fr; }
  .loc-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 1.5rem; }
  .about { grid-template-columns: 1fr; }
  .about-text { padding: 4rem 2rem; border-right: none; border-bottom: 1px solid var(--sky); }
  .about-pastor { padding: 4rem 2rem; }
  .beliefs { padding: 5rem 1.5rem; }
  .beliefs-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .beliefs-grid { grid-template-columns: 1fr; }
  .gospel { padding: 5rem 1.5rem; }
  .gospel-cols { grid-template-columns: 1fr; gap: 2rem; }
  .visit { padding: 5rem 1.5rem; }
  .two-locations { grid-template-columns: 1fr; }
  .dir-row { grid-template-columns: 1fr; }
  .watch { padding: 5rem 1.5rem; }
  .prayer-section { padding: 5rem 1.5rem; }
  .contact-section { padding: 5rem 1.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .lcbc-form .form-2 { grid-template-columns: 1fr; }
  .give-section { padding: 5rem 1.5rem; }
  .events-section { padding: 5rem 1.5rem; }
  .beliefs-full { padding: 4rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem 2rem; }
  .footer-bottom { padding: 1.25rem 1.5rem; flex-direction: column; align-items: flex-start; }
  .page-hero { height: 200px; }
  .page-hero-content { padding: 0 1.5rem; }
  .admin-main { padding: 1.5rem 1rem; }
  .admin-form .form-row { grid-template-columns: 1fr; }
}
