/* ============================================================
   POWERHOUSE CHURCH — Global Stylesheet
   Brand: Black #111 | Orange #f47920 | Sun Yellow #f5c518
   Design: Editorial warmth inspired by Santi + Testament
   ============================================================ */

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

:root {
  --orange: #f47920;
  --orange-dark: #d4641a;
  --orange-light: #fff0e6;
  --sun: #f5c518;
  --black: #111111;
  --dark: #1a1a1a;
  --gray-900: #222222;
  --gray-700: #444444;
  --gray-500: #777777;
  --gray-300: #cccccc;
  --gray-100: #f5f5f0;
  --white: #ffffff;
  --cream: #fdfaf6;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 2px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.14);
  --transition: 0.22s ease;
  --max-width: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ── UTILITY ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--gray-700);
  max-width: 540px;
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 26px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); transform: translateY(-1px); }

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}
.logo-img {
  height: 70px;
  width: auto;
  max-width: 320px;
  display: block;
  transition: opacity 0.2s ease;
}
.nav-logo:hover .logo-img { opacity: 0.85; }

/* Remove old text-based logo styles */
.nav-logo .wordmark,
.nav-logo .tagline { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  letter-spacing: 0.3px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 8px; }
.nav-cta a {
  background: var(--orange);
  color: var(--white) !important;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius);
  letter-spacing: 0.5px;
  transition: background var(--transition);
}
.nav-cta a:hover { background: var(--orange-dark); }
.nav-cta a::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 0; /* anniversary bar handles the offset on homepage */
}

/* Full-bleed photo — right 60% of hero */
.hero-photo {
  position: absolute;
  inset: 0;
  background: url('../images/photo-congregation.jpg') center 40% / cover no-repeat;
  z-index: 0;
}

/* Dark gradient from left: solid black → transparent, so photo shows on right */
.hero-overlay-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.92) 35%,
    rgba(10,10,10,0.65) 58%,
    rgba(10,10,10,0.15) 78%,
    rgba(10,10,10,0.05) 100%
  );
  z-index: 1;
}

/* Subtle orange tint overlay at very low opacity for brand warmth */
.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(244,121,32,0.08) 0%,
    transparent 60%
  );
  z-index: 2;
}

.hero-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--orange);
  z-index: 10;
}

.hero-container {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 68px);
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,121,32,0.15);
  border: 1px solid rgba(244,121,32,0.3);
  border-radius: 20px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-badge span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  color: var(--orange);
  font-style: italic;
}

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

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.hero-stat .lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}

@media (max-width: 768px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-overlay-grad {
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.88) 0%,
      rgba(10,10,10,0.75) 100%
    );
  }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}


/* ── SERVICE TIMES STRIP ── */
.service-strip {
  background: var(--orange);
  padding: 0;
}
.strip-inner {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.strip-item {
  flex: 1;
  min-width: 200px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background var(--transition);
}
.strip-item:hover { background: rgba(0,0,0,0.1); }
.strip-item:last-child { border-right: none; }
.strip-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.strip-text .area {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  display: block;
}
.strip-text .time {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

/* ── ABOUT INTRO ── */
.about-intro { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-frame {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--black) 100%);
  opacity: 0.85;
}
.about-img-frame .frame-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}
.frame-quote {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}
.frame-attr {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  width: 100px; height: 100px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge .yr { font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1; }
.about-badge .since { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.85; }

.three-b {
  display: flex;
  gap: 12px;
  margin: 28px 0;
}
.b-pill {
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
}

/* ── VALUES ── */
.values-section { background: var(--cream); }
.values-section .section-title { color: var(--black); }
.values-section .section-sub { color: var(--gray-700); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.value-card {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(244,121,32,0.12);
  border-color: rgba(244,121,32,0.2);
}
.value-r {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 4px;
  position: absolute;
  top: 14px; right: 20px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.value-card p { font-size: 14px; color: var(--gray-700); line-height: 1.75; }

/* ── EVENTS ── */
.events-section { background: var(--white); }
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.event-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-card.featured { border-color: var(--orange); }
.event-header {
  background: var(--black);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.event-card.featured .event-header { background: var(--orange); }
.event-date-block { text-align: center; }
.event-date-block .day {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.event-date-block .month {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.event-tag-pill {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.event-body { padding: 22px; }
.event-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}
.event-body p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.event-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.event-meta span {
  font-size: 12px;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── SERMONS ── */
.sermons-section { background: var(--gray-100); }
.sermons-list { display: flex; flex-direction: column; gap: 1px; margin-top: 40px; }
.sermon-row {
  background: var(--white);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: background var(--transition);
  cursor: pointer;
}
.sermon-row:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.sermon-row:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.sermon-row:hover { background: var(--orange-light); }
.sermon-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gray-300);
  min-width: 24px;
}
.sermon-play {
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.sermon-row:hover .sermon-play { transform: scale(1.1); }
.play-tri {
  width: 0; height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--white);
  margin-left: 3px;
}
.sermon-info { flex: 1; }
.sermon-info .series {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 3px;
}
.sermon-info h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
}
.sermon-info .speaker { font-size: 13px; color: var(--gray-500); }
.sermon-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.sermon-meta .scripture {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: 20px;
}
.sermon-meta .duration { font-size: 12px; color: var(--gray-500); }

/* ── MINISTRIES ── */
.ministries-section { background: var(--cream); }
.ministries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.ministry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ministry-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.ministry-icon {
  width: 48px; height: 48px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.ministry-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}
.ministry-card .subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}
.ministry-card p { font-size: 14px; color: var(--gray-700); line-height: 1.7; margin-bottom: 16px; }
.ministry-schedule {
  font-size: 12px;
  color: var(--gray-500);
  display: flex; flex-direction: column; gap: 4px;
}
.ministry-schedule span { display: flex; align-items: center; gap: 6px; }

/* ── BLOG ── */
.blog-section { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.blog-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-700) 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blog-img-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(244,121,32,0.2) 1px, transparent 1px);
  background-size: 20px 20px;
}
.blog-img-cat {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(0,0,0,0.7);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(244,121,32,0.3);
}
.blog-body { padding: 22px; }
.blog-body .date {
  font-size: 11px;
  color: var(--gray-500);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.blog-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-body p { font-size: 13px; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px; }
.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-500);
}
.blog-author { font-weight: 500; color: var(--orange); }
.read-more {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  display: flex; align-items: center; gap: 4px;
}

/* ── LOCATIONS ── */
.locations-section { background: var(--black); overflow: hidden; }
.locations-section .section-title { color: var(--white); }
.locations-section .section-sub { color: rgba(255,255,255,0.5); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.location-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.location-card:hover { background: rgba(244,121,32,0.08); border-color: rgba(244,121,32,0.3); }
.location-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 8px;
}
.location-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.location-card .schedule {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 12px;
}
.location-card .address { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── CONNECT CTA ── */
.connect-section {
  background: var(--orange);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.connect-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.connect-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.connect-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
}
.connect-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-brand .logo span { color: var(--orange); }
.footer-brand .tagline-foot {
  font-family: var(--font-display);
  font-size: 11px;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
  display: block;
}
.footer-brand p { font-size: 13px; line-height: 1.75; max-width: 260px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: background var(--transition), color var(--transition);
  color: rgba(255,255,255,0.5);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; margin-bottom: 12px;
}
.footer-contact-item .icon { color: var(--orange); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}
.footer-bottom a { color: var(--orange); }

/* ── MODALS ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.modal h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
}
.modal-form label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.modal-form input, .modal-form textarea, .modal-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 16px;
  transition: border-color var(--transition);
  outline: none;
}
.modal-form input:focus, .modal-form textarea:focus { border-color: var(--orange); }
.modal-form textarea { resize: vertical; min-height: 100px; }

/* ── ADMIN PANEL ── */
.admin-bar {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 999;
}
.admin-toggle {
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  transition: background var(--transition);
  font-family: var(--font-body);
}
.admin-toggle:hover { background: var(--orange); }
.admin-dot { width: 8px; height: 8px; background: #4caf50; border-radius: 50%; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .strip-item { min-width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: var(--black);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(244,121,32,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  position: relative;
}
.page-header .page-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  position: relative;
}

/* ── MOBILE NAV OPEN ── */
.nav-mobile-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 90px; left: 0; right: 0;
  background: var(--white);
  padding: 24px 28px 32px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-lg);
  gap: 16px;
}
.nav-mobile-open .nav-cta { display: block; }

/* ── 30TH ANNIVERSARY SECTION ── */
.anniv-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--black);
}
.anniv-photo-bg {
  position: absolute;
  inset: 0;
  background: url('images/photo-worship.jpg') center center / cover no-repeat;
  opacity: 0.08;
}
.anniv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,10,10,0.97) 50%, rgba(10,10,10,0.7) 100%);
}
.anniv-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.anniv-badge-large {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  background: var(--orange);
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 0 0 12px rgba(244,121,32,0.12), 0 0 0 24px rgba(244,121,32,0.06);
  animation: anniv-glow 3s ease-in-out infinite;
}
@keyframes anniv-glow {
  0%, 100% { box-shadow: 0 0 0 12px rgba(244,121,32,0.12), 0 0 0 24px rgba(244,121,32,0.06); }
  50% { box-shadow: 0 0 0 16px rgba(244,121,32,0.18), 0 0 0 32px rgba(244,121,32,0.08); }
}
.anniv-badge-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.anniv-badge-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: -2px;
}
.anniv-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.anniv-stat { text-align: center; flex: 1; }
.anniv-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.anniv-stat-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
}
.anniv-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Photo grid */
.anniv-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.anniv-photo {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  position: relative;
}
.anniv-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244,121,32,0.15), transparent);
  border-radius: var(--radius);
}
.anniv-photo-tall {
  grid-row: 1 / 3;
  border-radius: var(--radius);
}

/* Hero offset fix — anniversary bar pushes hero down */
.hero { margin-top: -68px; padding-top: 90px; } /* reset since bar handles offset */

@media (max-width: 900px) {
  .anniv-content { grid-template-columns: 1fr; }
  .anniv-right { display: none; }
  .anniv-photo-grid { display: none; }
}

/* ── GLOBAL MOBILE IMPROVEMENTS ── */
@media (max-width: 768px) {
  /* Larger touch targets */
  .btn { padding: 13px 22px; font-size: 14px; }
  .nav-cta a { padding: 10px 18px; font-size: 13px; }

  /* Hero */
  .hero-container { grid-template-columns: 1fr; padding-top: 60px; padding-bottom: 48px; }
  .hero h1 { font-size: clamp(32px, 9vw, 52px); }
  .hero-sub { font-size: 15px; }
  .hero-stats { gap: 20px; margin-top: 36px; padding-top: 24px; flex-wrap: wrap; }
  .hero-stat .num { font-size: 24px; }

  /* Service strip */
  .strip-item { padding: 16px 20px; min-width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .strip-item:last-child { border-bottom: none; }

  /* Sections */
  .section { padding: 48px 0; }
  .section-title { font-size: clamp(24px, 6vw, 36px); }

  /* About grid single col */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-visual { display: none; }

  /* Events grid 1 col */
  .events-grid { grid-template-columns: 1fr; }

  /* Sermons grid 1 col */
  .sermons-section .sermons-list { gap: 0; }

  /* Ministries 1 col */
  .ministries-grid { grid-template-columns: 1fr; }

  /* Blog 1 col */
  .blog-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* Anniversary section */
  .anniv-content { grid-template-columns: 1fr; }
  .anniv-right { display: none; }
  .anniv-badge-large { width: 88px; height: 88px; }
  .anniv-badge-num { font-size: 38px; }
  .anniv-stats { gap: 0; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr !important; }

  /* Values cards 1 col */
  .values-grid { grid-template-columns: 1fr; }

  /* Mobile nav open */
  .nav-mobile-open .nav-links {
    display: flex;
    position: fixed;
    top: 90px;
    z-index: 999;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .connect-btns { flex-direction: column; align-items: stretch; }
  .connect-btns .btn { text-align: center; justify-content: center; }
  .anniv-stats { flex-wrap: wrap; gap: 16px; }
  .three-b { flex-wrap: wrap; }
}
