/* =============================================
   BEACON CHURCH — Styles
   Template 21 · Church
   Palette: Deep Navy + Vibrant Amber
   Fonts: Space Grotesk (display) + Nunito (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800&family=Nunito:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --bc-navy:          #1a2744;
  --bc-navy-mid:      #243358;
  --bc-navy-light:    #2d4270;
  --bc-amber:         #f5a623;
  --bc-amber-deep:    #d4861a;
  --bc-amber-glow:    rgba(245, 166, 35, .15);
  --bc-white:         #ffffff;
  --bc-cream:         #fefcf8;
  --bc-gray-light:    #f0f2f7;
  --bc-border:        #e5e7eb;
  --bc-text:          #1a1f2e;
  --bc-text-muted:    #6b7280;

  --bc-font-display:  'Space Grotesk', sans-serif;
  --bc-font-body:     'Nunito', sans-serif;

  --bc-nav-height:    76px;
  --bc-banner-height: 36px;
  --bc-radius:        12px;
  --bc-radius-lg:     20px;
  --bc-shadow:        0 4px 24px rgba(26, 39, 68, .08);
  --bc-shadow-lg:     0 12px 48px rgba(26, 39, 68, .16);
  --bc-transition:    .3s ease;
}

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

body {
  font-family: var(--bc-font-body);
  color: var(--bc-text);
  background: var(--bc-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--bc-font-display);
  line-height: 1.15;
  font-weight: 700;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.bc-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Demo Banner ---------- */
.bc-demo-banner {
  background: var(--bc-amber);
  color: var(--bc-navy);
  text-align: center;
  padding: 8px 16px;
  font-family: var(--bc-font-display);
  font-size: .85rem;
  font-weight: 700;
  height: var(--bc-banner-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.bc-demo-banner a {
  color: var(--bc-navy);
  text-decoration: underline;
  font-weight: 700;
}

/* ---------- Navigation ---------- */
.bc-nav {
  position: fixed;
  top: var(--bc-banner-height);
  left: 0;
  width: 100%;
  height: var(--bc-nav-height);
  z-index: 960;
  display: flex;
  align-items: center;
  transition: background var(--bc-transition), box-shadow var(--bc-transition);
  background: transparent;
}

.bc-nav.scrolled {
  background: rgba(26, 39, 68, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}

.bc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.bc-logo {
  font-family: var(--bc-font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bc-white);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -.5px;
}

.bc-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--bc-amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bc-navy);
  flex-shrink: 0;
}

.bc-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.bc-nav-links a {
  font-family: var(--bc-font-display);
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  transition: color var(--bc-transition);
}

.bc-nav-links a:hover { color: var(--bc-amber); }

.bc-nav-cta {
  background: var(--bc-amber);
  color: var(--bc-navy) !important;
  font-weight: 700 !important;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all var(--bc-transition) !important;
}

.bc-nav-cta:hover {
  background: var(--bc-amber-deep) !important;
  transform: translateY(-2px);
}

/* Hamburger */
.bc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 970;
}

.bc-hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--bc-white);
  border-radius: 3px;
  transition: var(--bc-transition);
}

.bc-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.bc-hamburger.active span:nth-child(2) { opacity: 0; }
.bc-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.bc-mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 80%; max-width: 340px;
  height: 100vh;
  background: var(--bc-navy);
  z-index: 950;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 48px 40px;
  transition: right var(--bc-transition);
  box-shadow: -8px 0 40px rgba(0, 0, 0, .3);
}

.bc-mobile-menu.open { right: 0; }

.bc-mobile-menu a {
  font-family: var(--bc-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  transition: color var(--bc-transition);
}

.bc-mobile-menu a:hover { color: var(--bc-amber); }
.bc-mobile-menu hr { border: none; border-top: 1px solid rgba(255,255,255,.1); }

.bc-mobile-cta {
  background: var(--bc-amber);
  color: var(--bc-navy) !important;
  padding: 14px 28px;
  border-radius: 50px;
  text-align: center;
  font-weight: 700 !important;
}

/* ---------- Hero — Full Screen ---------- */
.bc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: calc(var(--bc-banner-height) + var(--bc-nav-height));
}

.bc-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1438032005730-c779502df39b?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
}

.bc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(26, 39, 68, .92) 0%,
    rgba(26, 39, 68, .78) 50%,
    rgba(26, 39, 68, .88) 100%
  );
}

.bc-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 40px 20px;
}

.bc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bc-amber-glow);
  border: 1px solid rgba(245, 166, 35, .35);
  color: var(--bc-amber);
  font-family: var(--bc-font-display);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.bc-hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--bc-white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.5px;
}

.bc-hero-content h1 span { color: var(--bc-amber); }

.bc-hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .72);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.bc-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.bc-btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bc-amber);
  color: var(--bc-navy);
  font-family: var(--bc-font-display);
  font-size: .95rem;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 50px;
  transition: all var(--bc-transition);
  border: none;
  cursor: pointer;
}

.bc-btn-amber:hover {
  background: var(--bc-amber-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 166, 35, .4);
}

.bc-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--bc-white);
  font-family: var(--bc-font-display);
  font-size: .95rem;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, .3);
  transition: all var(--bc-transition);
  cursor: pointer;
}

.bc-btn-outline-white:hover {
  border-color: var(--bc-white);
  background: rgba(255, 255, 255, .08);
  transform: translateY(-2px);
}

/* Hero scroll indicator */
.bc-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .45);
  font-family: var(--bc-font-display);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bc-bounce 2s ease infinite;
}

@keyframes bc-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ---------- Impact Stats ---------- */
.bc-stats {
  background: var(--bc-white);
  padding: 0;
  border-bottom: 1px solid var(--bc-border);
}

.bc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.bc-stat-item {
  padding: 52px 32px;
  text-align: center;
  border-right: 1px solid var(--bc-border);
  position: relative;
  transition: background var(--bc-transition);
}

.bc-stat-item:last-child { border-right: none; }

.bc-stat-item:hover { background: var(--bc-gray-light); }

.bc-stat-number {
  font-family: var(--bc-font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--bc-navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.5px;
}

.bc-stat-number span { color: var(--bc-amber); }

.bc-stat-label {
  font-family: var(--bc-font-display);
  font-size: .82rem;
  font-weight: 600;
  color: var(--bc-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ---------- Section Defaults ---------- */
.bc-section { padding: 100px 0; }

.bc-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.bc-eyebrow {
  display: inline-block;
  font-family: var(--bc-font-display);
  font-size: .78rem;
  font-weight: 700;
  color: var(--bc-amber-deep);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}

.bc-section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--bc-navy);
  margin-bottom: 16px;
  letter-spacing: -.5px;
}

.bc-section-header h2 span { color: var(--bc-amber); }

.bc-section-header p {
  font-size: 1.05rem;
  color: var(--bc-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- Sunday Experience ---------- */
.bc-experience {
  background: var(--bc-cream);
}

.bc-experience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bc-experience-image {
  position: relative;
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  box-shadow: var(--bc-shadow-lg);
}

.bc-experience-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.bc-experience-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--bc-amber);
  color: var(--bc-navy);
  font-family: var(--bc-font-display);
  font-size: .85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  letter-spacing: .5px;
}

.bc-experience-text .bc-eyebrow { display: block; }

.bc-experience-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--bc-navy);
  margin-bottom: 16px;
  letter-spacing: -.5px;
}

.bc-experience-text > p {
  font-size: 1.05rem;
  color: var(--bc-text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.bc-experience-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bc-exp-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.bc-exp-icon {
  width: 48px;
  height: 48px;
  background: var(--bc-amber-glow);
  border: 1.5px solid rgba(245, 166, 35, .3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bc-amber-deep);
  flex-shrink: 0;
}

.bc-exp-item h4 {
  font-family: var(--bc-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bc-navy);
  margin-bottom: 4px;
}

.bc-exp-item p {
  font-size: .9rem;
  color: var(--bc-text-muted);
  line-height: 1.6;
}

/* ---------- Connect Groups ---------- */
.bc-connect {
  background: var(--bc-white);
}

.bc-connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bc-connect-card {
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  box-shadow: var(--bc-shadow);
  transition: all var(--bc-transition);
  border: 1px solid var(--bc-border);
}

.bc-connect-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bc-shadow-lg);
  border-color: transparent;
}

.bc-connect-thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.bc-connect-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.bc-connect-card:hover .bc-connect-thumb img { transform: scale(1.06); }

.bc-connect-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bc-navy);
  color: var(--bc-amber);
  font-family: var(--bc-font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 50px;
}

.bc-connect-body {
  padding: 28px;
}

.bc-connect-body h3 {
  font-size: 1.15rem;
  color: var(--bc-navy);
  margin-bottom: 10px;
}

.bc-connect-body p {
  font-size: .9rem;
  color: var(--bc-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.bc-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--bc-font-display);
  font-size: .88rem;
  font-weight: 700;
  color: var(--bc-amber-deep);
  transition: gap var(--bc-transition);
}

.bc-link-arrow:hover { gap: 10px; }

/* ---------- Sermons ---------- */
.bc-sermons {
  background: var(--bc-navy);
  padding: 100px 0;
}

.bc-sermons .bc-eyebrow { color: var(--bc-amber); }

.bc-sermons .bc-section-header h2 {
  color: var(--bc-white);
}

.bc-sermons .bc-section-header p {
  color: rgba(255, 255, 255, .6);
}

.bc-sermons-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Featured Sermon */
.bc-sermon-featured {
  background: var(--bc-navy-mid);
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  transition: border-color var(--bc-transition);
}

.bc-sermon-featured:hover { border-color: rgba(245, 166, 35, .25); }

.bc-sermon-featured-thumb {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.bc-sermon-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.bc-sermon-featured:hover .bc-sermon-featured-thumb img { transform: scale(1.04); }

.bc-sermon-featured-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, .7) 0%, transparent 60%);
}

.bc-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--bc-amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bc-navy);
  z-index: 1;
  transition: all var(--bc-transition);
  box-shadow: 0 4px 24px rgba(245, 166, 35, .4);
}

.bc-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 32px rgba(245, 166, 35, .5);
}

.bc-sermon-featured-info {
  padding: 28px;
}

.bc-series-tag {
  display: inline-block;
  font-family: var(--bc-font-display);
  font-size: .72rem;
  font-weight: 700;
  color: var(--bc-amber);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.bc-sermon-featured-info h3 {
  font-size: 1.3rem;
  color: var(--bc-white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.bc-sermon-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  font-family: var(--bc-font-display);
  margin-bottom: 20px;
}

.bc-sermon-meta span { display: flex; align-items: center; gap: 5px; }

/* Sermon List */
.bc-sermon-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bc-sermon-card {
  background: var(--bc-navy-mid);
  border-radius: var(--bc-radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 100px 1fr;
  border: 1px solid rgba(255, 255, 255, .05);
  transition: all var(--bc-transition);
  cursor: pointer;
}

.bc-sermon-card:hover {
  border-color: rgba(245, 166, 35, .2);
  transform: translateX(4px);
}

.bc-sermon-card-thumb {
  position: relative;
  overflow: hidden;
}

.bc-sermon-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-play-sm {
  position: absolute;
  inset: 0;
  background: rgba(26, 39, 68, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bc-amber);
  opacity: 0;
  transition: opacity var(--bc-transition);
}

.bc-sermon-card:hover .bc-play-sm { opacity: 1; }

.bc-sermon-card-body {
  padding: 16px 20px;
}

.bc-sermon-card-body .bc-series-tag { margin-bottom: 4px; }

.bc-sermon-card-body h4 {
  font-size: .95rem;
  color: var(--bc-white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.bc-sermon-card-body p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
  font-family: var(--bc-font-display);
}

.bc-sermons-footer {
  text-align: center;
  margin-top: 48px;
}

/* ---------- Community Impact ---------- */
.bc-impact {
  background: var(--bc-white);
}

.bc-impact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bc-impact-image {
  position: relative;
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  box-shadow: var(--bc-shadow-lg);
}

.bc-impact-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.bc-impact-overlay-card {
  position: absolute;
  bottom: 28px;
  right: -28px;
  background: var(--bc-navy);
  color: var(--bc-white);
  padding: 24px 28px;
  border-radius: var(--bc-radius);
  box-shadow: var(--bc-shadow-lg);
  text-align: center;
  min-width: 160px;
}

.bc-impact-overlay-card .bc-stat-number {
  font-size: 2rem;
  color: var(--bc-amber);
  margin-bottom: 4px;
}

.bc-impact-overlay-card p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
  font-family: var(--bc-font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bc-impact-text .bc-eyebrow { display: block; }

.bc-impact-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--bc-navy);
  margin-bottom: 16px;
  letter-spacing: -.5px;
}

.bc-impact-text > p {
  font-size: 1.05rem;
  color: var(--bc-text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.bc-impact-programs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.bc-program-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bc-gray-light);
  border-radius: var(--bc-radius);
  border-left: 3px solid var(--bc-amber);
  transition: background var(--bc-transition);
}

.bc-program-item:hover { background: var(--bc-amber-glow); }

.bc-program-item svg { color: var(--bc-amber-deep); flex-shrink: 0; }

.bc-program-item h4 {
  font-size: .95rem;
  color: var(--bc-navy);
  margin-bottom: 2px;
}

.bc-program-item p {
  font-size: .83rem;
  color: var(--bc-text-muted);
}

/* ---------- CTA ---------- */
.bc-cta {
  background: var(--bc-amber);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bc-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.2) 0%, transparent 70%);
}

.bc-cta-inner { position: relative; z-index: 1; }

.bc-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--bc-navy);
  margin-bottom: 16px;
  letter-spacing: -.5px;
}

.bc-cta p {
  font-size: 1.1rem;
  color: rgba(26, 39, 68, .7);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.bc-btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bc-navy);
  color: var(--bc-white);
  font-family: var(--bc-font-display);
  font-size: .95rem;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  transition: all var(--bc-transition);
  letter-spacing: .3px;
}

.bc-btn-navy:hover {
  background: var(--bc-navy-mid);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(26, 39, 68, .3);
}

/* ---------- Footer ---------- */
.bc-footer {
  background: var(--bc-navy);
  padding: 72px 0 32px;
}

.bc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.bc-footer-brand .bc-logo { margin-bottom: 16px; }

.bc-footer-brand p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 8px;
}

.bc-footer-col h4 {
  font-family: var(--bc-font-display);
  font-size: .75rem;
  font-weight: 700;
  color: var(--bc-amber);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.bc-footer-col ul li { margin-bottom: 12px; }

.bc-footer-col ul li a {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  transition: color var(--bc-transition);
}

.bc-footer-col ul li a:hover { color: var(--bc-amber); }

.bc-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.bc-footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  transition: all var(--bc-transition);
}

.bc-footer-social a:hover {
  background: var(--bc-amber-glow);
  border-color: rgba(245, 166, 35, .3);
  color: var(--bc-amber);
}

.bc-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--bc-font-display);
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

.bc-footer-bottom a {
  color: rgba(255, 255, 255, .35);
  transition: color var(--bc-transition);
}

.bc-footer-bottom a:hover { color: var(--bc-amber); }

/* ---------- Scroll Reveal ---------- */
.bc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.bc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .bc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bc-stats-grid .bc-stat-item:nth-child(2) { border-right: none; }
  .bc-stats-grid .bc-stat-item:nth-child(3) { border-top: 1px solid var(--bc-border); }
  .bc-experience-inner,
  .bc-impact-inner { grid-template-columns: 1fr; gap: 48px; }
  .bc-experience-image img { height: 380px; }
  .bc-impact-overlay-card { right: 16px; }
  .bc-sermons-layout { grid-template-columns: 1fr; }
  .bc-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .bc-hamburger { display: flex; }
  .bc-nav-links,
  .bc-nav-cta { display: none; }
  .bc-connect-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .bc-impact-inner { grid-template-columns: 1fr; }
  .bc-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .bc-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .bc-section { padding: 70px 0; }
  .bc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bc-hero-content h1 { font-size: 2.2rem; }
  .bc-sermon-card { grid-template-columns: 80px 1fr; }
}
