/* =============================================
   LFCC – Living Faith Community Church
   Colour palette from official logo:
     Deep Maroon  #3e0c05
     Burnt Sienna #953304
     Copper       #c4612a
     Silver       #dcdcdc
   ============================================= */

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

:root {
  --maroon-deep:   #3e0c05;
  --maroon-mid:    #5a1508;
  --sienna:        #953304;
  --sienna-light:  #b84010;
  --copper:        #c4612a;
  --silver:        #dcdcdc;
  --silver-light:  #f7f2f0;
  --white:         #ffffff;
  --text:          #2a0e08;
  --muted:         #6b4038;
  --border:        #e0d4d0;
  --top-bg:        #3e0c05;
  --footer-bg:     #2a0800;
  --section-alt:   #f7f2f0;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background-color: #f9f9f9;
  background-image: url('../images/poly.png');
  background-repeat: repeat;
  background-attachment: fixed;
  line-height: 1.75;
}
a { color: var(--sienna); text-decoration: none; }
a:hover { color: var(--sienna-light); }
img { max-width: 100%; height: auto; display: block; }

/* ================================================
   TOP BAR — dark maroon strip, service times right-aligned
   ================================================ */
.top-bar {
  background: var(--top-bg);
  color: #d4b8b0;
  font-size: 0.78rem;
  padding: 7px 0;
  font-family: 'Open Sans', Arial, sans-serif;
}
.top-bar-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.top-bar-clock { font-size: 0.85rem; opacity: 0.85; }
.top-bar-right strong { color: var(--white); font-weight: 700; }

/* ================================================
   SITE HEADER — white, logo left, nav right
   Matches original: logo+wordmark stacked left,
   nav links centred/right, phone + search far right
   ================================================ */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--maroon-deep);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(62,12,5,0.10);
}
.site-header-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
}

/* LOGO — globe image stacked above "LFCC" wordmark */
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  flex-shrink: 0;
  gap: 0;
  padding: 12px 0;
}
.site-logo .logo-img {
  width: 90px;
  height: 86px;
  object-fit: contain;
  display: block;
}
.logo-wordmark {
  font-size: 2rem;
  font-weight: 800;
  color: var(--maroon-deep);
  line-height: 1;
  letter-spacing: 2px;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-top: -2px;
}

/* HEADER RIGHT: nav + phone + search together */
.header-right {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: flex-end;
}

/* ================================================
   MAIN NAV — uppercase, underline on active/hover
   ================================================ */
.main-nav { display: flex; align-items: stretch; }
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  margin: 0; padding: 0;
}
.main-nav > ul > li {
  position: relative;
  display: flex;
  align-items: center;
}
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  color: var(--maroon-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0 12px;
  height: 110px;           /* full header height — underline anchored to bottom */
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'Open Sans', Arial, sans-serif;
}
/* Underline indicator */
.main-nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 3px;
  background: var(--maroon-deep);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: center;
}
.main-nav > ul > li > a:hover { color: var(--sienna); text-decoration: none; }
.main-nav > ul > li > a:hover::after { transform: scaleX(1); background: var(--sienna); }
.main-nav > ul > li.current > a { color: var(--maroon-deep); }
.main-nav > ul > li.current > a::after { transform: scaleX(1); }

/* Dropdown */
.main-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--maroon-deep);
  min-width: 215px;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(62,12,5,0.4);
  border-top: 3px solid var(--sienna);
}
.main-nav li.has-dropdown:hover .dropdown { display: block; }
.main-nav .dropdown li a {
  display: block;
  color: #e0c8c0;
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  height: auto;
}
.main-nav .dropdown li a::after { display: none; }
.main-nav .dropdown li a:hover {
  background: var(--sienna);
  color: var(--white);
  text-decoration: none;
}

/* PHONE + SEARCH — right of nav */
.header-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  position: relative;
  height: 110px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--maroon-deep);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.3px;
  padding: 0 6px;
  font-family: 'Open Sans', Arial, sans-serif;
  text-decoration: none;
  transition: color 0.2s;
}
.header-phone:hover { color: var(--sienna); text-decoration: none; }
.header-phone svg { flex-shrink: 0; }
.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--maroon-deep);
  padding: 8px 6px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.search-btn:hover { color: var(--sienna); }
.search-popup {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(62,12,5,0.15);
  padding: 10px;
  white-space: nowrap;
  z-index: 999;
  border-radius: 3px;
}
.search-popup.open { display: block; }
.search-popup input {
  padding: 7px 10px;
  border: 1px solid var(--silver);
  font-size: 0.85rem;
  border-radius: 3px 0 0 3px;
  outline: none;
  width: 200px;
}
.search-popup button {
  padding: 7px 12px;
  background: var(--sienna);
  color: var(--white);
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
}

/* TAGLINE BAR — dark maroon band directly below header */
.tagline-bar {
  background: var(--maroon-deep);
  color: var(--white);
  text-align: center;
  padding: 11px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.2px;
  line-height: 1.4;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--maroon-deep);
  margin: 5px 0;
  transition: 0.3s;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Open Sans', Arial, sans-serif;
}
.btn-primary { background: var(--sienna); color: var(--white); border-color: var(--sienna); }
.btn-primary:hover { background: var(--sienna-light); border-color: var(--sienna-light); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--sienna); border-color: var(--sienna); }
.btn-outline-dark:hover { background: var(--sienna); color: var(--white); }

/* ================================================
   FULLWIDTH SLIDER  (matches original Rev Slider)
   ================================================ */
.lfcc-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 550px;
  background: var(--maroon-deep);
  display: block;
}
.lfcc-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.lfcc-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}
.lfcc-slide.active { opacity: 1; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 2.5rem;
  line-height: 1;
  padding: 8px 18px;
  cursor: pointer;
  transition: color 0.2s;
  user-select: none;
}
.slider-arrow:hover { color: #fff; }
.slider-prev { left: 0; }
.slider-next { right: 0; }

.slider-dots {
  position: absolute;
  bottom: 16px;
  right: 20px;
  left: auto;
  transform: none;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.75);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}
.slider-dot.active { background: #fff; border-color: #fff; }

/* SERVICE TIMES BAR — dark maroon strip below slider */
.service-bar {
  background: var(--maroon-deep);
  color: #ddc8c0;
  font-size: 0.82rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  text-align: center;
  padding: 11px 24px;
  letter-spacing: 0.2px;
  line-height: 1.5;
}
.service-bar strong { color: #fff; font-weight: 700; }
.service-bar a { color: #ddc8c0; text-decoration: none; }
.service-bar a:hover { color: #fff; }

/* ================================================
   OUR STORY — matches original site exactly
   White section on textured body bg.
   Title 36px maroon, centred separator line,
   two 50/50 columns, photo rounded+grey border,
   pastor name 24px maroon, body text 14px Roboto
   ================================================ */
.our-story {
  background: #fff;
  padding: 64px 30px 60px;
}
.our-story .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.our-story-title {
  font-size: 2.25rem;       /* 36px — matches original h2 */
  font-weight: 700;
  color: #4b1e16;
  text-align: center;
  line-height: 1.25;
  margin: 0 0 18px;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* Centred separator — two lines meeting in the middle, matches vc_separator */
.our-story-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 48px;
  width: 30%;
}
.our-story-sep span {
  flex: 1;
  height: 1px;
  background: #4b1e16;
  display: block;
}

.our-story-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.our-story-person {
  text-align: center;
  padding: 0 10px;
}
.our-story-img-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
/* vc_box_rounded vc_box_border_grey */
.our-story-img-wrap img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  border: none;
  background: #fff;
  display: block;
}
.our-story-name {
  font-size: 1.5rem;        /* 24px — matches original h2 per column */
  font-weight: 700;
  color: #4b1e16;
  line-height: 1.25;
  margin: 0 0 14px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.our-story-person p {
  font-size: 0.875rem;      /* 14px Roboto baseline */
  color: #050202;
  line-height: 1.79;        /* 25px/14px */
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
}
.our-story-person a {
  color: #4b1e16;
  text-decoration: underline;
}
.our-story-person a:hover { opacity: 0.75; }

/* ================================================
   PARALLAX BANNER — Global Church Planting
   Dark overlay over parallax1.jpg, white text,
   same separator style, stat counter boxes
   ================================================ */
.parallax-banner {
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding: 80px 30px 70px;
  text-align: center;
}
.parallax-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 4, 1, 0.68);
}
.parallax-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.parallax-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 18px;
  font-family: 'Open Sans', Arial, sans-serif;
}
/* Same two-line separator, but maroon colour on dark bg */
.parallax-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  width: 30%;
}
.parallax-sep span {
  flex: 1;
  height: 1px;
  background: #4b1e16;
  display: block;
}
.parallax-inner p {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.79;
  margin: 0 0 16px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.stat-item {
  background: rgba(75, 30, 22, 0.5);
  padding: 32px 20px 28px;
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* MISSION BANNER (below hero, matches original dark maroon strip) */
.mission-banner {
  background: var(--maroon-deep);
  color: var(--white);
  text-align: center;
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.2px;
  line-height: 1.6;
}

/* PAGE BANNER */
.page-banner {
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon-mid) 100%);
  color: var(--white);
  padding: 52px 24px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(149,51,4,0.3) 0%, transparent 65%);
}
.page-banner h1 { font-size: 2rem; font-weight: 700; position: relative; z-index: 1; }
.page-banner .breadcrumb { margin-top: 10px; font-size: 0.82rem; color: #c8a090; position: relative; z-index: 1; }
.page-banner .breadcrumb a { color: #dcc0b0; }
.page-banner .breadcrumb a:hover { color: var(--white); }

/* ================================================
   LAYOUT
   ================================================ */
.site-content { max-width: 1200px; margin: 0 auto; padding: 52px 24px; }
.site-content.narrow { max-width: 860px; }
.content-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 44px; max-width: 1200px; margin: 0 auto; padding: 52px 24px; }

/* SECTIONS */
.section { padding: 60px 0; }
.section-alt { background: var(--section-alt); }
.section-dark { background: var(--maroon-deep); color: var(--white); }
.section-dark a { color: var(--copper); }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title { font-size: 1.75rem; font-weight: 700; color: var(--maroon-deep); margin-bottom: 8px; }
.section-dark .section-title { color: var(--white); }
.section-subtitle { color: var(--muted); font-size: 1rem; margin-bottom: 34px; }
.section-dark .section-subtitle { color: #c8a090; }
.section-title-line { width: 50px; height: 3px; background: var(--sienna); margin: 12px 0 30px; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 30px; }
.card { background: var(--white); border-radius: 4px; box-shadow: 0 2px 14px rgba(62,12,5,0.07); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; border: 1px solid var(--border); }
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 26px rgba(62,12,5,0.14); }
.card-img-placeholder { width: 100%; height: 180px; background: linear-gradient(135deg, var(--maroon-deep), var(--sienna)); display: flex; align-items: center; justify-content: center; }
.card-body { padding: 22px; }
.card-body h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--maroon-deep); text-transform: uppercase; letter-spacing: 0.3px; }
.card-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.card-body a.more { display: inline-block; margin-top: 14px; font-size: 0.8rem; font-weight: 700; color: var(--sienna); text-transform: uppercase; letter-spacing: 0.3px; }

/* INFO BOX */
.info-box { background: var(--silver-light); border-left: 4px solid var(--sienna); padding: 20px 24px; margin: 24px 0; border-radius: 0 4px 4px 0; }
.info-box h3 { color: var(--maroon-deep); margin-bottom: 8px; font-size: 1rem; font-weight: 700; }
.info-box p { font-size: 0.92rem; color: var(--text); }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.img-rounded { border-radius: 6px; box-shadow: 0 4px 20px rgba(62,12,5,0.15); }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 30px; }
.team-card { text-align: center; background: var(--white); border-radius: 6px; padding: 28px 24px; box-shadow: 0 2px 14px rgba(62,12,5,0.07); border: 1px solid var(--border); }
.team-photo { width: 160px; height: 160px; border-radius: 50%; margin: 0 auto 18px; overflow: hidden; background: var(--silver); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.team-avatar { width: 110px; height: 110px; border-radius: 50%; background: linear-gradient(135deg, var(--maroon-deep), var(--sienna)); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--white); font-weight: 700; border: 3px solid var(--silver); }
.team-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--maroon-deep); }
.team-card .role { font-size: 0.78rem; color: var(--sienna); font-weight: 700; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.team-card p { font-size: 0.87rem; color: var(--muted); margin-top: 8px; text-align: left; }
.team-card a { color: var(--sienna); }

/* Ministry Coordinators list */
.coordinator-list { border-top: 1px solid var(--border); }
.coordinator-item { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); align-items: baseline; flex-wrap: wrap; }
.coord-role { font-weight: 700; color: var(--maroon-deep); font-size: 0.9rem; min-width: 240px; flex-shrink: 0; }
.coord-contact { font-size: 0.88rem; color: #444; }
.coord-contact a { color: var(--sienna); }

/* LOCATIONS */
.location-card { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; background: var(--white); border-radius: 6px; box-shadow: 0 2px 14px rgba(62,12,5,0.07); padding: 30px; margin-bottom: 28px; border: 1px solid var(--border); }
.location-card h3 { font-size: 1.2rem; color: var(--maroon-deep); margin-bottom: 14px; font-weight: 700; }
.location-card .detail { display: flex; gap: 10px; margin: 8px 0; font-size: 0.9rem; }
.location-card .detail strong { min-width: 90px; color: var(--maroon-deep); }
.map-placeholder { background: var(--silver-light); border: 1px solid var(--silver); border-radius: 6px; height: 200px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.85rem; text-align: center; }

/* CONNECT GROUPS */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.filter-btn { padding: 6px 16px; border-radius: 20px; border: 1px solid var(--silver); background: var(--white); font-size: 0.8rem; cursor: pointer; transition: 0.2s; color: var(--muted); font-family: inherit; }
.filter-btn:hover, .filter-btn.active { background: var(--sienna); color: var(--white); border-color: var(--sienna); }
.group-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 20px 22px; margin-bottom: 14px; }
.group-card h4 { font-weight: 700; margin-bottom: 6px; color: var(--maroon-deep); }
.group-tag { display: inline-block; background: var(--silver-light); color: var(--sienna); border: 1px solid var(--border); font-size: 0.72rem; padding: 2px 8px; border-radius: 10px; margin: 2px; }

/* SERMONS */
.sermon-item { display: flex; gap: 18px; align-items: start; padding: 20px 0; border-bottom: 1px solid var(--border); }
.sermon-thumb { width: 80px; height: 60px; flex-shrink: 0; border-radius: 4px; background: linear-gradient(135deg, var(--maroon-deep), var(--sienna)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.4rem; }
.sermon-meta { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.sermon-actions { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.sermon-btn { font-size: 0.78rem; padding: 5px 12px; border-radius: 3px; border: 1px solid var(--sienna); color: var(--sienna); font-weight: 600; display: inline-block; }
.sermon-btn:hover { background: var(--sienna); color: var(--white); }

/* SIDEBAR */
.sidebar-widget { background: var(--section-alt); border-radius: 4px; padding: 22px; margin-bottom: 24px; border: 1px solid var(--border); }
.sidebar-widget h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--maroon-deep); border-bottom: 2px solid var(--sienna); padding-bottom: 10px; margin-bottom: 16px; }
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li { padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.sidebar-widget ul li:last-child { border-bottom: none; }

/* EVENTS */
.event-item { display: flex; gap: 20px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.event-date { flex-shrink: 0; text-align: center; background: var(--maroon-deep); color: var(--white); border-radius: 4px; padding: 10px 14px; min-width: 58px; }
.event-date .day { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.event-date .month { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px; color: var(--copper); }
.event-body h4 { font-weight: 700; margin-bottom: 5px; color: var(--maroon-deep); }
.event-body p { font-size: 0.88rem; color: var(--muted); }

/* CONTACT */
.contact-form label { display: block; font-size: 0.87rem; font-weight: 700; margin-bottom: 5px; margin-top: 20px; color: var(--maroon-deep); }
.contact-form input, .contact-form textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--silver); border-radius: 3px; font-size: 0.9rem; font-family: inherit; transition: border-color 0.2s; background: var(--white); color: var(--text); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--sienna); }
.contact-form textarea { height: 140px; resize: vertical; }
.contact-form button { margin-top: 22px; }

/* GIVE */
.give-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 28px; }
.give-card { text-align: center; padding: 32px 20px; border-radius: 4px; border: 2px solid var(--border); background: var(--white); transition: 0.2s; }
.give-card:hover { border-color: var(--sienna); box-shadow: 0 4px 16px rgba(149,51,4,0.12); }
.give-card .give-icon { font-size: 2.4rem; margin-bottom: 14px; }
.give-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--maroon-deep); }
.give-card p { font-size: 0.86rem; color: var(--muted); }

/* ================================================
   FOOTER
   ================================================ */
.site-footer { background: var(--footer-bg); color: #c8a090; padding: 56px 0 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; }
.footer-brand p { margin-top: 16px; font-size: 0.87rem; line-height: 1.75; color: #b89080; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.footer-logo-wrap img { width: 46px; height: 46px; object-fit: contain; opacity: 0.85; }
.footer-logo-wrap .name { color: var(--white); font-size: 0.95rem; font-weight: 700; }
.footer-col h4 { color: var(--white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; font-weight: 700; border-bottom: 1px solid rgba(149,51,4,0.4); padding-bottom: 8px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: #c8a090; font-size: 0.87rem; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact p { font-size: 0.87rem; margin-bottom: 9px; color: #b89080; }
.footer-contact a { color: #c8a090; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(149,51,4,0.25); margin-top: 44px; padding: 20px 24px; text-align: center; font-size: 0.78rem; color: #7a4030; }
.footer-bottom a { color: #9a6050; }
.footer-bottom a:hover { color: var(--copper); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .main-nav > ul > li > a { font-size: 0.67rem; padding: 0 8px; letter-spacing: 0.8px; }
  .header-phone { display: none; }
  .lfcc-slider { height: 477px; }
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--sienna);
    box-shadow: 0 8px 20px rgba(62,12,5,0.15);
    z-index: 999;
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; }
  .main-nav > ul > li > a { padding: 14px 24px; height: auto; font-size: 0.82rem; border-bottom: 1px solid var(--border); }
  .main-nav > ul > li > a::after { display: none; }
  .main-nav .dropdown { position: static; box-shadow: none; border-top: none; border-left: 3px solid var(--sienna); background: #f0e8e4; display: none; }
  .main-nav li.has-dropdown:hover .dropdown { display: block; }
  .header-meta { display: none; }
  .site-header-inner { position: relative; min-height: 80px; }
  .site-logo .logo-img { width: 65px; height: 62px; }
  .logo-wordmark { font-size: 1.5rem; }
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .lfcc-slider { height: 400px; }
  .our-story-cols { grid-template-columns: 1fr; gap: 36px; }
  .stat-grid { grid-template-columns: 1fr; gap: 16px; }
  .parallax-banner { background-attachment: scroll; }
  .two-col { grid-template-columns: 1fr; }
  .location-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cards-grid { grid-template-columns: 1fr; }
  .tagline-bar { font-size: 0.78rem; padding: 9px 16px; }
}
@media (max-width: 480px) {
  .lfcc-slider { height: 200px; }
  .slider-arrow { font-size: 1.6rem; padding: 6px 10px; }
  .section-title { font-size: 1.4rem; }
  .page-banner h1 { font-size: 1.5rem; }
  .site-logo .logo-img { width: 55px; height: 52px; }
  .logo-wordmark { font-size: 1.3rem; }
}

/* Values grid */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.value-item { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 20px; }
.value-item h4 { color: var(--maroon-deep); font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.value-item p { font-size: 0.87rem; color: #555; line-height: 1.6; margin: 0; }

/* Event items */
.event-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.event-item:last-of-type { border-bottom: none; }
.event-date { background: var(--maroon-deep); color: #fff; border-radius: 6px; padding: 10px 14px; text-align: center; min-width: 56px; flex-shrink: 0; }
.event-date .day { font-size: 1.1rem; font-weight: 800; line-height: 1; }
.event-date .month { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; opacity: 0.85; }
.event-body h4 { color: var(--maroon-deep); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.event-body p { font-size: 0.88rem; color: #444; line-height: 1.65; margin: 0; }

/* FAQ items */
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item:last-of-type { border-bottom: none; }
.faq-item h3 { color: var(--maroon-deep); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.faq-item p { font-size: 0.88rem; color: #444; line-height: 1.7; margin: 0; }

/* btn-outline */
.btn-outline { background: transparent; border: 2px solid; padding: 9px 20px; border-radius: 3px; font-weight: 700; font-size: 0.82rem; display: inline-block; transition: 0.2s; }

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
}
