/* v2 — full local copy
   ============================================================
   BREAD OF LIFE CHURCH — Modern Dark Stylesheet
   Blue · Gold · Gray · Black · Glass
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  /* Core palette */
  --black:       #07090c;
  --dark:        #0b0f17;
  --dark-2:      #111827;
  --dark-3:      #1c2535;
  --navy:        #0f2238;
  --blue:        #1a3a5c;
  --blue-mid:    #1d4a7a;
  --blue-light:  #2563a8;

  /* Gold */
  --gold:        #c9a84c;
  --gold-bright: #e8c96a;
  --gold-dark:   #a07828;
  --gold-muted:  rgba(201,168,76,.12);

  /* Grays */
  --gray-1: #1f2937;
  --gray-2: #374151;
  --gray-3: #4b5563;
  --gray-4: #6b7280;
  --gray-5: #9ca3af;
  --gray-6: #d1d5db;
  --gray-bg:#f0f2f5;

  /* White */
  --white: #ffffff;

  /* Glass */
  --glass:              rgba(255,255,255,.05);
  --glass-md:           rgba(255,255,255,.08);
  --glass-border:       rgba(255,255,255,.09);
  --glass-border-gold:  rgba(201,168,76,.25);
  --glass-dark:         rgba(7,9,12,.55);

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0,0,0,.30);
  --shadow:      0 8px 32px rgba(0,0,0,.40);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.50);
  --shadow-gold: 0 8px 32px rgba(201,168,76,.22);

  /* Hero overlay */
  --hero-overlay: rgba(7,9,12,.55);

  /* Transitions */
  --t:      .3s ease;
  --t-slow: .65s ease;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Layout */
  --max-w:       1200px;
  --radius:      6px;
  --radius-lg:   14px;
  --radius-pill: 999px;
  --section-py:  96px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-6);
  background: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}
body.loaded { opacity: 1; }

/* Ukrainian text overflow protection */
[data-i18n], .btn, .site-nav a, .mobile-nav a,
.section-title, .section-subtitle, .section-label,
.footer-col a, p {
  overflow-wrap: break-word;
  word-break: break-word;
}
.btn { white-space: normal; text-align: center; }
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.08rem; }
p  { color: var(--gray-5); font-size: .97rem; }

.text-gold     { color: var(--gold); }
.text-gradient {
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title   { margin-bottom: 1rem; }
.section-subtitle{ font-size: 1rem; max-width: 580px; color: var(--gray-5); }

.text-center { text-align: center; }
.text-center .section-label          { justify-content: center; }
.text-center .section-label::before  { display: none; }
.text-center .section-label::after   {
  content: '';
  display: block;
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
  flex-shrink: 0;
}
.text-center .section-subtitle { margin: 0 auto; }

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-py) 0; }

/* Background variants */
.section--dark   { background: var(--dark); }
.section--dark-2 { background: var(--dark-2); }
.section--dark-3 { background: var(--dark-3); }
.section--light  { background: var(--gray-bg); color: var(--dark); }
.section--white  { background: var(--white);   color: var(--dark); }

/* Force dark text on all light-background sections */
.section--light h1, .section--light h2, .section--light h3,
.section--light h4, .section--light h5,
.section--white h1, .section--white h2, .section--white h3,
.section--white h4, .section--white h5 { color: var(--dark); }
.section--light p, .section--white p   { color: var(--gray-3); }
.section--light .section-subtitle,
.section--white .section-subtitle      { color: var(--gray-4); }
.section--light .event-card__title,
.section--light .event-item__title,
.section--white .event-card__title,
.section--white .event-item__title     { color: var(--dark); }
.section--light .leader-card__name,
.section--white .leader-card__name     { color: var(--white); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

@media(min-width:640px){
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media(min-width:900px){
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(4,1fr); }
}
.flex-center { display: flex; align-items: center; justify-content: center; gap: 16px; }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  transition: var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Gold */
.btn--primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(201,168,76,.28);
}
.btn--primary:hover { box-shadow: 0 8px 32px rgba(201,168,76,.45); transform: translateY(-2px); }

/* Navy */
.btn--secondary {
  background: var(--blue-mid);
  color: var(--white);
}
.btn--secondary:hover { background: var(--blue-light); transform: translateY(-2px); }

/* Ghost white */
.btn--ghost-white {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}

/* Ghost gold */
.btn--ghost-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.4);
}
.btn--ghost-gold:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Outline white */
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.07);
  transform: translateY(-2px);
}

/* Solid white (on hero) */
.btn--white {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.30);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.40); }

.btn-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ============================================================
   6. IMAGE PLACEHOLDERS
   ============================================================ */
.img-placeholder {
  width: 100%;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--navy) 60%, var(--blue) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: rgba(255,255,255,.22);
  font-family: var(--font-heading);
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  gap: 8px;
}
.img-placeholder::before { content: '📷'; font-size: 1.8rem; opacity: .25; }
.img-placeholder span { opacity: .45; font-size: .62rem; }

/* ============================================================
   7. HEADER & NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  overflow: visible;
  transition: background var(--t), padding var(--t), box-shadow var(--t);
  padding: 2px 0;
}
.site-header.transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.solid {
  background: rgba(11,15,23,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 4px 40px rgba(0,0,0,.5);
  padding: 2px 0;
}

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; overflow: visible; }
.site-logo__icon {
  /* Legacy fallback if SVG img not used */
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201,168,76,.35);
}
/* Feather SVG logo image */
.site-logo__img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.18));
}
.site-logo__text {
  font-family: var(--font-heading);
  font-weight: 800; font-size: .88rem;
  color: var(--white); line-height: 1.15;
}
.site-logo__text span {
  display: block; font-size: .58rem; font-weight: 500;
  opacity: .5; letter-spacing: .16em; text-transform: uppercase;
}

/* Desktop nav */
.site-nav { display: none; align-items: center; gap: 2px; }
.site-nav a {
  font-family: var(--font-heading);
  font-size: .95rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  padding: 8px 13px;
  border-radius: var(--radius);
  transition: var(--t);
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute; bottom: 3px; left: 13px; right: 13px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: center; transition: transform var(--t);
}
.site-nav a:hover, .site-nav a.active { color: var(--white); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }

.site-nav .nav-give {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--dark) !important;
  padding: 9px 20px; border-radius: var(--radius-pill);
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(201,168,76,.30);
}
.site-nav .nav-give::after { display: none; }
.site-nav .nav-give:hover { box-shadow: 0 6px 24px rgba(201,168,76,.48); transform: translateY(-1px); }

/* Header right */
.header-right { display: flex; align-items: center; gap: 16px; }

/* Language switcher */
.lang-switcher { display: flex; align-items: center; gap: 2px; font-family: 'Apple Color Emoji','Segoe UI Emoji','Noto Color Emoji',var(--font-heading); font-size: .75rem; font-weight: 700; }
.lang-switcher button {
  padding: 5px 9px; border-radius: var(--radius);
  color: rgba(255,255,255,.42); transition: var(--t); letter-spacing: .06em;
  display: inline-flex; align-items: center; gap: 5px;
}
.lang-switcher button.active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--dark);
}
.lang-switcher button:hover:not(.active) { color: var(--white); }
.lang-switcher span { color: rgba(255,255,255,.14); }

/* Hamburger */
.hamburger { width: 36px; height: 36px; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 100%; height: 2px; background: rgba(255,255,255,.78); border-radius: 2px; transition: var(--t); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0;
  background: rgba(7,9,12,.97);
  backdrop-filter: blur(24px);
  z-index: 998;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  opacity: 0; pointer-events: none; transition: opacity var(--t);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.45rem; font-weight: 800;
  color: rgba(255,255,255,.72);
  padding: 12px 36px; border-radius: var(--radius);
  transition: var(--t);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .nav-give {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--dark) !important;
  margin-top: 8px; border-radius: var(--radius-pill);
}
.mobile-nav .lang-switcher { margin-top: 20px; }

@media(min-width:860px){ .site-nav { display: flex; } .hamburger { display: none; } }

/* ============================================================
   8. HERO SLIDER
   ============================================================ */
.hero {
  position: relative; width: 100%;
  height: 100vh; min-height: 640px; overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: opacity 1.4s ease-in-out, transform 8s ease;
  will-change: background-position;
}
.hero__slide.active { opacity: 1; transform: scale(1); }
.hero:hover .hero__slide.active { transform: scale(1.03); transition: opacity 1.4s ease-in-out, transform 1.2s ease; }

/* Placeholder gradients — UPDATE each with real images */
.hero__slide--1 { background-color: #07111e; }
.hero__slide--2 { background: linear-gradient(135deg, #091a12 0%, #1a3a28 60%, #0b2018 100%); }
.hero__slide--3 { background: linear-gradient(135deg, #180f04 0%, #3a2a10 60%, #261c07 100%); }
.hero__slide--4 { background: linear-gradient(135deg, #09090f 0%, #1a1a36 60%, #0e0e26 100%); }

/* Cinematic overlay */
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: var(--hero-overlay);
}
/* Gold accent line at bottom */
.hero__overlay::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .55;
}

/* Hero content */
.hero__content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 200px 20px 100px;
}
.hero__label {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-heading);
  font-size: .66rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 20px;
  opacity: 0; animation: fadeUp .8s .3s ease forwards;
}
.hero__label::before, .hero__label::after {
  content: ''; display: block; width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero__label::after { transform: scaleX(-1); }

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 600; color: var(--white);
  line-height: 1.08; margin-bottom: 20px;
  max-width: 860px; letter-spacing: -.02em;
  opacity: 0; animation: fadeUp .8s .5s ease forwards;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,.68); max-width: 520px;
  margin-bottom: 44px; font-weight: 300; letter-spacing: .01em;
  opacity: 0; animation: fadeUp .8s .7s ease forwards;
}
.hero__cta {
  opacity: 0; animation: fadeUp .8s .9s ease forwards;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.hero__cta .btn {
  border-radius: var(--radius);
}

/* Arrows */
.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.75); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t); backdrop-filter: blur(8px);
}
.hero__arrow:hover { background: rgba(201,168,76,.22); border-color: var(--gold); color: var(--gold); }
.hero__arrow--prev { left: 28px; }
.hero__arrow--next { right: 28px; }

/* Dots */
.hero__dots {
  position: absolute; bottom: 36px;
  left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 7px; align-items: center;
}
.hero__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.28);
  border: 1px solid rgba(255,255,255,.38);
  transition: all .4s ease; cursor: pointer;
}
.hero__dot.active { background: var(--gold); border-color: var(--gold); width: 22px; border-radius: 3px; }

/* ============================================================
   9. SERVICE TIMES  (full section, easy to add cards)
   ============================================================ */
.service-times-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px;
}
@media(min-width:560px){ .service-times-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px){ .service-times-grid { grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); } }

.service-time-card {
  background: var(--dark-3);
  border-radius: var(--radius-lg); padding: 38px 28px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.06);
  border-top: 3px solid var(--gold);
  position: relative; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.service-time-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top center, rgba(201,168,76,.07), transparent 68%);
  pointer-events: none;
}
.service-time-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(201,168,76,.18);
}
.service-time-card__day {
  font-family: var(--font-heading); font-size: .64rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.service-time-card__time {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 900; color: var(--white); line-height: 1;
}
.service-time-card__time--end { color: rgba(255,255,255,.38); font-size: clamp(1.5rem, 3vw, 2rem); }
.service-time-card__dash { font-size: .9rem; color: rgba(255,255,255,.14); margin: 8px 0; }
.service-time-card__label {
  font-family: var(--font-heading); font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gray-5);
  margin: 20px 0 10px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.service-time-card__desc { font-size: .84rem; color: var(--gray-4); line-height: 1.65; margin-bottom: 0; }

.service-times-footer {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: 24px; padding-top: 8px;
}
.service-times-location {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: .84rem; font-weight: 600; color: var(--gray-5);
}
.service-times-location__icon { font-size: 1rem; }

/* ============================================================
   10. WELCOME SPLIT
   ============================================================ */
.welcome { background: var(--dark-2); }
.welcome__inner {
  display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center;
}
.welcome__img {
  height: 440px; border-radius: var(--radius-lg);
  overflow: hidden; position: relative; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.06);
}
.welcome__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,9,12,.55) 0%, transparent 60%);
  border-radius: var(--radius-lg);
}
.welcome__body { max-width: 560px; }
.welcome__body h2 { color: var(--white); margin-bottom: 1.2rem; }
.welcome__body p  { margin-bottom: 1.2rem; color: var(--gray-5); }

@media(min-width:860px){ .welcome__inner { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   11. MINISTRY CARDS
   ============================================================ */
.ministries-home { background: var(--white); }
.ministries-home .section-title   { color: var(--dark); }
.ministries-home .section-subtitle{ color: var(--gray-3); }
.ministries-home .section-label   { color: var(--gold); }
.ministry-card {
  background: var(--blue);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.ministry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25), 0 0 0 1px rgba(201,168,76,.35);
  border-color: rgba(201,168,76,.4);
}
.ministry-card__img { height: 200px; }
.ministry-card__body { padding: 24px; }
.ministry-card__icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(201,168,76,.28);
}
.ministry-card__title {
  font-family: var(--font-heading); font-size: .98rem; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.ministry-card__body p { font-size: .85rem; margin-bottom: 16px; color: rgba(255,255,255,.8); }
.ministry-card__link {
  font-family: var(--font-heading); font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px; transition: var(--t);
}
.ministry-card__link:hover { gap: 12px; color: var(--gold-bright); }

/* ============================================================
   12. SERMON PREVIEW
   ============================================================ */
.sermon-preview { background: var(--dark-2); }
.sermon-preview__inner {
  display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center;
}
.sermon-preview__video {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--black); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.07);
}
.sermon-preview__video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.sermon-preview__video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,.35);
  background: linear-gradient(135deg, var(--black), var(--navy)); gap: 12px; cursor: pointer;
}
.play-icon {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; padding-left: 4px; transition: var(--t);
}
.sermon-preview__video-placeholder:hover .play-icon {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: var(--gold); color: var(--dark); box-shadow: var(--shadow-gold);
}
.sermon-preview__body { max-width: 500px; }
.sermon-preview__body p { margin-bottom: 1.5rem; }
.sermon-series {
  display: inline-block;
  font-family: var(--font-heading); font-size: .64rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  background: var(--gold-muted);
  border: 1px solid rgba(201,168,76,.2);
  padding: 5px 14px; border-radius: var(--radius-pill); margin-bottom: 14px;
}
@media(min-width:860px){ .sermon-preview__inner { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   13. EVENTS PREVIEW
   ============================================================ */
.events-preview { background: var(--dark); }
.event-card {
  background: var(--dark-3); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid rgba(255,255,255,.06);
  display: flex; gap: 20px; align-items: flex-start;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(201,168,76,.14); }
.event-card__date {
  flex-shrink: 0; width: 60px; text-align: center;
  background: var(--navy); border-radius: var(--radius); padding: 12px 8px;
  border: 1px solid rgba(201,168,76,.15);
}
.event-card__month {
  font-family: var(--font-heading); font-size: .54rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
}
.event-card__day {
  font-family: var(--font-heading); font-size: 1.9rem; font-weight: 900;
  color: var(--white); line-height: 1;
}
.event-card__body { flex: 1; }
.event-card__title {
  font-family: var(--font-heading); font-size: .96rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.event-card__meta { font-size: .77rem; color: var(--gray-4); margin-bottom: 10px; }
.event-card__desc { font-size: .84rem; margin-bottom: 14px; color: var(--gray-5); }
.event-card__link {
  font-family: var(--font-heading); font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px; transition: var(--t);
}
.event-card__link:hover { gap: 12px; color: var(--gold-bright); }

/* ============================================================
   14. GIVING STRIP  (dark gradient + subtle dot pattern)
   ============================================================ */
.giving-strip {
  position: relative; padding: 96px 0; text-align: center;
  background: linear-gradient(135deg, var(--black) 0%, var(--navy) 50%, var(--dark) 100%);
  overflow: hidden;
}
.giving-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,168,76,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.giving-strip::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.giving-strip h2 { color: var(--white); margin-bottom: 14px; position: relative; }
.giving-strip p  {
  color: rgba(255,255,255,.58); margin-bottom: 36px; font-size: 1.03rem;
  position: relative; max-width: 520px; margin-left: auto; margin-right: auto; margin-bottom: 36px;
}

/* ============================================================
   15. TRANSPARENT / PHOTO SECTIONS
   Add .section--photo to any section with a background image.
   ============================================================ */
.section--photo {
  position: relative; background-size: cover;
  background-position: center; background-attachment: fixed;
}
.section--photo::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(7,9,12,.70); backdrop-filter: blur(1px);
}
.section--photo > * { position: relative; }

/* ============================================================
   16. CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-bright));
  padding: 48px 0;
}
.cta-strip__inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 24px;
}
.cta-strip h3   { color: var(--dark); font-size: 1.45rem; }
.cta-strip p    { color: rgba(7,9,12,.65); margin-top: 4px; }
.cta-strip__btns{ display: flex; flex-wrap: wrap; gap: 12px; }
.cta-strip .btn--secondary { background: var(--dark); color: var(--white); }
.cta-strip .btn--outline   { border-color: rgba(7,9,12,.28); color: var(--dark); }
.cta-strip .btn--outline:hover { background: rgba(7,9,12,.1); }

/* ============================================================
   17. FOOTER
   ============================================================ */
.site-footer { background: var(--black); border-top: 1px solid rgba(255,255,255,.06); }
.footer-main {
  padding: 72px 0 48px; display: grid; grid-template-columns: 1fr; gap: 44px;
}
.footer-brand .site-logo { margin-bottom: 18px; }
.footer-brand p { font-size: .86rem; max-width: 280px; line-height: 1.8; color: var(--gray-4); }
.footer-social { display: flex; gap: 8px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-4); font-size: .85rem; transition: var(--t);
}
.footer-social a:hover {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: var(--gold); color: var(--dark);
}
.footer-col h4 {
  font-family: var(--font-heading); font-size: .63rem; font-weight: 700;
  letter-spacing: .20em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a  { font-size: .84rem; color: var(--gray-4); transition: var(--t); }
.footer-col a:hover { color: var(--gold-bright); }
.footer-col address { font-style: normal; font-size: .84rem; line-height: 2.1; color: var(--gray-4); }
.footer-col address a { display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: .76rem; color: var(--gray-4); }
.footer-bottom .lang-switcher button { color: rgba(255,255,255,.32); }

@media(min-width:640px){ .footer-main { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px){ .footer-main { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

/* ============================================================
   18. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 90px;
  background-color: var(--navy);
  /* ↓ INSERT YOUR PAGE HERO IMAGE HERE — replace url('') with your image path */
  /* background-image: url('images/hero-about.jpg'); */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center; position: relative; overflow: hidden;
}
/* Dark overlay on top of background image */
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(5,10,20,.58) 0%, rgba(10,28,58,.46) 60%, rgba(20,14,4,.48) 100%);
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.3), transparent);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1  { color: var(--white); margin-bottom: 14px; position: relative; }
.page-hero p   { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto; position: relative; }
.page-hero .breadcrumb {
  font-family: var(--font-heading); font-size: .63rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px; position: relative;
}
.page-hero .breadcrumb a { color: rgba(201,168,76,.58); }
.page-hero .breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   19. SERVICE BLOCKS (Plan Your Visit page)
   ============================================================ */
.service-block {
  background: var(--dark-3); border-radius: var(--radius-lg); padding: 40px;
  border: 1px solid rgba(255,255,255,.06);
  border-left: 3px solid var(--gold);
  position: relative; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.service-block::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(201,168,76,.06), transparent 60%);
  pointer-events: none;
}
.service-block:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-block__time {
  font-family: var(--font-heading); font-size: 2.2rem; font-weight: 900;
  color: var(--gold); margin-bottom: 4px;
}
.service-block__title {
  font-family: var(--font-heading); font-size: 1.12rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.service-block p { font-size: .9rem; margin-bottom: 22px; color: var(--gray-5); }

/* Visit info cards */
.visit-info-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.visit-info-card {
  background: var(--dark-3); border-radius: var(--radius-lg); padding: 28px; text-align: center;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform var(--t), border-color var(--t);
}
.visit-info-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.18); }
.visit-info-card .icon { font-size: 2.2rem; margin-bottom: 14px; }
.visit-info-card h4   { font-size: .94rem; color: var(--white); margin-bottom: 8px; }
.visit-info-card p    { font-size: .83rem; color: var(--gray-5); }

@media(min-width:640px){ .visit-info-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px){ .visit-info-grid { grid-template-columns: repeat(4,1fr); } }

.map-container {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.06); height: 380px;
  background: var(--dark-3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-5); font-family: var(--font-heading); font-size: .9rem; font-weight: 600;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   20. SERMONS
   ============================================================ */
.sermon-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media(min-width:640px){ .sermon-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px){ .sermon-grid { grid-template-columns: repeat(3,1fr); } }

.sermon-card {
  background: var(--dark-3); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.sermon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(201,168,76,.14); }
.sermon-card__thumb { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.sermon-card__thumb .play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(7,9,12,.45); color: rgba(255,255,255,.75); font-size: 1.8rem; transition: var(--t);
}
.sermon-card:hover .play-overlay { background: rgba(7,9,12,.62); }
.sermon-card__thumb .thumb-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy), var(--blue-mid)); }
.sermon-card__body { padding: 20px; }
.sermon-card__series { font-family: var(--font-heading); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.sermon-card__title { font-family: var(--font-heading); font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.sermon-card__meta  { font-size: .75rem; color: var(--gray-4); }

.series-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.series-tab {
  font-family: var(--font-heading); font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 18px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.1); color: var(--gray-4); transition: var(--t);
}
.series-tab.active, .series-tab:hover {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: var(--gold); color: var(--dark);
}

/* ============================================================
   21. ABOUT
   ============================================================ */
.beliefs-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media(min-width:640px){ .beliefs-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px){ .beliefs-grid { grid-template-columns: repeat(3,1fr); } }

.belief-card {
  background: var(--dark-3); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid rgba(255,255,255,.06); border-top: 3px solid var(--gold);
  transition: transform var(--t), box-shadow var(--t);
}
.belief-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.belief-card .num { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 900; color: rgba(201,168,76,.11); line-height: 1; margin-bottom: 8px; }
.belief-card h4   { font-size: .96rem; color: var(--white); margin-bottom: 8px; }
.belief-card p    { font-size: .84rem; color: var(--gray-5); }

.leaders-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width:640px){ .leaders-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px){ .leaders-grid { grid-template-columns: repeat(3,1fr); } }

.leader-card {
  background: var(--dark-3); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.06); text-align: center;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.leader-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(201,168,76,.14); }
.leader-card__photo  { height: 240px; }
.leader-card__body   { padding: 24px; }
.leader-card__name   { font-size: 1.06rem; color: var(--white); margin-bottom: 4px; }
.leader-card__role   { font-family: var(--font-heading); font-size: .63rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.leader-card__body p { font-size: .83rem; color: var(--gray-5); }

/* ============================================================
   22. EVENTS PAGE
   ============================================================ */
.events-list { display: flex; flex-direction: column; gap: 14px; }
.event-item {
  background: var(--dark-3); border-radius: var(--radius-lg); padding: 26px 32px;
  border: 1px solid rgba(255,255,255,.06); border-left: 3px solid var(--blue-mid);
  display: flex; gap: 24px; align-items: flex-start;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.event-item:hover { transform: translateX(6px); box-shadow: var(--shadow); border-left-color: var(--gold); }
.event-item__date    { flex-shrink: 0; width: 66px; text-align: center; }
.event-item__month   { font-family: var(--font-heading); font-size: .56rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); background: var(--gold-muted); border: 1px solid rgba(201,168,76,.15); border-radius: 4px; padding: 3px 6px; margin-bottom: 4px; display: block; }
.event-item__day     { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 900; color: var(--white); line-height: 1; }
.event-item__content { flex: 1; }
.event-item__title   { font-family: var(--font-heading); font-size: 1.08rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.event-item__meta    { font-size: .78rem; color: var(--gray-4); margin-bottom: 10px; }
.event-item__meta span { margin-right: 16px; }
.event-item p        { font-size: .87rem; margin-bottom: 14px; color: var(--gray-5); }

/* ============================================================
   23. GIVE
   ============================================================ */
.give-methods { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
@media(min-width:640px){ .give-methods { grid-template-columns: repeat(2,1fr); } }

.give-method-card {
  background: var(--dark-3); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  display: flex; flex-direction: row; align-items: center; gap: 20px;
}
.give-method-card:hover { transform: translateY(-5px); border-color: rgba(201,168,76,.24); box-shadow: var(--shadow-gold); }
.give-method-card h3   { font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.give-method-card p    { font-size: .82rem; margin-bottom: 0; color: var(--gray-5); }
@media(max-width:640px) {
  .give-methods { grid-template-columns: 1fr !important; }
  .give-method-card { flex-direction: column; align-items: center; text-align: center; }
  .give-method-card > div:first-child { text-align: center !important; width: 100%; }
  .give-method-card > div:last-child { width: 180px !important; height: 180px !important; }
}

/* ============================================================
   24. CONTACT
   ============================================================ */
.contact-form {
  background: var(--dark-3); border-radius: var(--radius-lg); padding: 22px 26px;
  border: 1px solid rgba(255,255,255,.06); box-shadow: var(--shadow);
}
.contact-form h3 { color: var(--white); }
.form-group { margin-bottom: 10px; }
.form-group label {
  display: block; font-family: var(--font-heading);
  font-size: .63rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--gray-5); margin-bottom: 5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); font-size: .88rem;
  color: var(--white); background: rgba(255,255,255,.04);
  transition: border-color var(--t), background var(--t);
  outline: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: rgba(201,168,76,.5); background: rgba(255,255,255,.06); }
.form-group textarea { resize: vertical; min-height: 72px; }
.form-group select { color: var(--gray-5); }
.form-group select option { background: var(--dark-2); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media(min-width:640px){ .form-row { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   25. NEW CHURCH / CONSTRUCTION
   ============================================================ */
.before-after__grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media(min-width:760px){ .before-after__grid { grid-template-columns: 1fr 1fr; } }

.ba-block__label {
  font-family: var(--font-heading); font-size: .63rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--radius-pill); margin-bottom: 16px; display: inline-block;
}
.ba-block__label--before { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: var(--gray-5); }
.ba-block__label--after  { background: var(--gold-muted); border: 1px solid rgba(201,168,76,.2); color: var(--gold); }
.ba-block__img { height: 320px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.06); }

.photo-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
@media(min-width:640px){ .photo-grid { grid-template-columns: repeat(3,1fr); } }
@media(min-width:900px){ .photo-grid { grid-template-columns: repeat(4,1fr); } }

.photo-item {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t); cursor: pointer;
}
.photo-item:hover { transform: scale(1.03); box-shadow: var(--shadow); border-color: rgba(201,168,76,.2); position: relative; z-index: 1; }
.photo-item__img    { height: 220px; background: linear-gradient(135deg, var(--dark-3), var(--navy)); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.2); font-size: 1.8rem; }
.photo-item__caption{ display: none; }

.progress-bar-track { background: rgba(255,255,255,.07); border-radius: 20px; height: 8px; overflow: hidden; margin: 12px 0 6px; border: 1px solid rgba(255,255,255,.05); }
.progress-bar-fill  { height: 100%; border-radius: 20px; background: linear-gradient(90deg, var(--gold-bright), var(--gold)); transition: width 1.5s ease; box-shadow: 0 0 12px rgba(201,168,76,.4); }

.lightbox-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.94); z-index: 9999; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(14px); }
.lightbox-overlay.open { display: flex; }
.lightbox-inner { max-width: 900px; width: 100%; text-align: center; position: relative; }
.lightbox-placeholder { width: 100%; height: 500px; background: linear-gradient(135deg, var(--dark-3), var(--navy)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.28); font-size: 1.2rem; border: 1px solid rgba(255,255,255,.06); }
.lightbox-caption { color: rgba(255,255,255,.55); margin-top: 14px; font-size: .88rem; }
.lightbox-close { position: absolute; top: -44px; right: 0; color: rgba(255,255,255,.55); font-size: 1.6rem; background: none; border: none; cursor: pointer; transition: color var(--t); }
.lightbox-close:hover { color: var(--gold); }

/* ============================================================
   26. ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; will-change: transform, opacity; }
.reveal.visible { opacity: 1; transform: none; will-change: auto; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ============================================================
   27. UTILITIES
   ============================================================ */
.mb-0{margin-bottom:0}.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}
.mb-24{margin-bottom:24px}.mb-32{margin-bottom:32px}.mb-48{margin-bottom:48px}
.mt-24{margin-top:24px}.mt-32{margin-top:32px}.mt-48{margin-top:48px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* ============================================================
   28. MOBILE OPTIMIZATIONS (375px / 768px)
   ============================================================ */
@media(max-width:480px) {
  /* Nav */
  .site-nav a { font-size: .78rem; padding: 7px 9px; letter-spacing: .04em; }

  /* Hero — title larger, content pushed lower so title has room */
  .hero__title { font-size: clamp(2.4rem, 9vw, 3rem); }
  .hero__content { padding: 180px 16px 60px; justify-content: flex-end; padding-bottom: 120px; }
  .hero__cta { margin-top: 28px; }

  /* Footer brand paragraph */
  .footer-brand p { font-size: .8rem; }

  /* Give methods stack */
  .give-method-card { flex-direction: column; align-items: center; text-align: center; }

  /* Contact form full width */
  .contact-form { padding: 16px; }
  .form-row { grid-template-columns: 1fr; }

  /* Section padding reduction */
  .section { padding: 56px 0; }

  /* Page cards 1 col on very small screens */
  .page-cards-grid { grid-template-columns: 1fr !important; }

  /* Social strip — stay in one row, smaller cards */
  .social-cards-strip { flex-direction: row !important; align-items: center; justify-content: center; gap: 10px !important; }
  .social-strip-card { width: 100px !important; height: 100px !important; border-radius: 14px !important; flex-shrink: 0; }
}

@media(max-width:768px) {
  /* Slide arrows — raised from bottom on mobile */
  .hero__arrow {
    top: auto;
    bottom: 72px;
    transform: none;
    width: 40px;
    height: 40px;
    font-size: .85rem;
  }
  .hero__arrow--prev { left: 16px; }
  .hero__arrow--next { right: 16px; }

  /* Page cards grid */
  .page-cards-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Shorts grid */
  .shorts-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Media social grid */
  .media-social-grid { grid-template-columns: 1fr !important; }

  /* Contact social grid */
  .contact-social-grid { grid-template-columns: repeat(2,1fr) !important; }

  /* Give method cards stack vertically */
  .give-methods { grid-template-columns: 1fr !important; }

  /* Prevent images from causing overflow */
  img { max-width: 100%; height: auto; }

  /* CTA strip flex column */
  .cta-strip__inner { flex-direction: column; text-align: center; }
  .cta-strip__btns { justify-content: center; }
}

/* Prevent horizontal overflow globally */
html, body { max-width: 100%; overflow-x: hidden; }
