/* ═══════════════════════════════════════════════════════════
   TLOLCC — The Light of Life Christian Church
   Main Stylesheet
   Palette: #2C1A0E (deep brown) · #B5451B (brick red)
            #C9A84C (antique gold) · #FAF7F2 (cream)
   Fonts:   Cormorant Garamond · Inter · Noto Serif SC
═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --brown:       #2C1A0E;
  --brown-dark:  #1A0F06;
  --brown-mid:   #3d2510;
  --red:         #B5451B;
  --red-dark:    #963814;
  --gold:        #C9A84C;
  --gold-dark:   #a88a38;
  --cream:       #FAF7F2;
  --cream-mid:   #F0E8DC;
  --cream-dark:  #E3D5C3;
  --text-dark:   #1A0F06;
  --text-mid:    #4A3220;
  --text-light:  #8B7050;

  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-chinese:  'Noto Serif SC', 'STSong', 'SimSun', serif;
  --ff-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h:       88px;
  --nav-h-sm:    70px;
  --max-w:       1200px;
  --sec-pad:     108px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:           0.32s var(--ease);
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

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

/* Chinese language override */
body.lang-zh h1,
body.lang-zh h2,
body.lang-zh h3,
body.lang-zh p,
body.lang-zh a,
body.lang-zh button,
body.lang-zh .hero-quote {
  font-family: var(--ff-chinese);
}

body.lang-zh .nav-link,
body.lang-zh .mobile-link,
body.lang-zh .btn,
body.lang-zh .btn-nav-contact,
body.lang-zh .lang-btn {
  font-family: var(--ff-chinese);
  letter-spacing: 0.04em;
}

/* smooth anchor scroll offset — nav shrinks when scrolled, use compact height */
[id] { scroll-margin-top: var(--nav-h-sm); }

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

/* ─── CONTAINER ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── TYPOGRAPHY HELPERS ─────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow.light { color: var(--gold); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--brown);
  margin-bottom: 20px;
}
.section-title.light { color: var(--cream); }

.section-sub {
  font-size: 15px;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}

.btn-filled {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-filled:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181,69,27,0.35);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,247,242,0.45);
}
.btn-outline-light:hover {
  border-color: var(--cream);
  background: rgba(250,247,242,0.08);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-outline-dark:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--brown);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

/* ─── FADE-UP ANIMATION ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.num-item.fade-up:nth-child(2) { transition-delay: 0.12s; }
.num-item.fade-up:nth-child(3) { transition-delay: 0.24s; }
.ministry-card.fade-up:nth-child(2) { transition-delay: 0.1s; }
.ministry-card.fade-up:nth-child(3) { transition-delay: 0.2s; }
.ministry-card.fade-up:nth-child(4) { transition-delay: 0.3s; }


/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--t), box-shadow var(--t);
}

#navbar.scrolled {
  background: var(--brown);
  box-shadow: 0 2px 32px rgba(0,0,0,0.35);
}

.nav-inner {
  width: 100%;
  padding: 0 48px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
  transition: height var(--t);
}
#navbar.scrolled .nav-inner { height: var(--nav-h-sm); }

/* Logo — displayed as-is, no filter applied.
   The PNG has a white background; for a transparent-background version
   the white box will disappear naturally on dark surfaces. */
.nav-logo img {
  height: 46px;
  width: auto;
  transition: height var(--t);
}
#navbar.scrolled .nav-logo img { height: 36px; }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-link {
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(250,247,242,0.78);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav-link:hover,
.nav-link.active { color: #fff; }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 7px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(250,247,242,0.5);
  padding: 2px 0;
  transition: color var(--t);
}
.lang-btn:hover,
.lang-btn.active { color: var(--gold); }
.lang-divider { color: rgba(250,247,242,0.2); font-size: 11px; }

.btn-nav-contact {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1.5px solid rgba(250,247,242,0.4);
  padding: 8px 20px;
  border-radius: 3px;
  transition: all var(--t);
}
.btn-nav-contact:hover {
  border-color: var(--cream);
  background: rgba(250,247,242,0.1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: all var(--t);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--brown);
  border-top: 1px solid rgba(250,247,242,0.07);
  padding: 16px 48px 28px;
}
.mobile-menu.open { display: flex; }

.mobile-link {
  color: rgba(250,247,242,0.72);
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(250,247,242,0.06);
  transition: color var(--t);
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover      { color: var(--gold); }


/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--brown);
  background-image: url('../Images/web_images/64f7be576365b13656a4d047_IMG-2881.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Repeating cross SVG tile */
.hero-cross-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cline x1='40' y1='10' x2='40' y2='70' stroke='%23C9A84C' stroke-width='0.7'/%3E%3Cline x1='22' y1='28' x2='58' y2='28' stroke='%23C9A84C' stroke-width='0.7'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0.055;
  pointer-events: none;
}

/* Deep warm overlay — brown multiply effect over photo */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,15,6,0.88) 0%,
    rgba(44,26,14,0.78) 45%,
    rgba(44,26,14,0.55) 100%
  );
  pointer-events: none;
}

/* Decorative large cross watermark, far right */
.hero-watermark {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-54%);
  width: clamp(180px, 22vw, 340px);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}
.hero-watermark svg { width: 100%; height: auto; }

/* Content */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 48px 80px max(48px, 10vw);
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(58px, 9vw, 110px);
  font-weight: 600;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}
.hero-title-line1 { font-weight: 300; letter-spacing: 0.02em; }
.hero-title-line2 { font-style: italic; color: var(--gold); font-weight: 400; }

.hero-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(250,247,242,0.62);
  max-width: 500px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  margin-bottom: 48px;
}

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

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  right: 52px;
  bottom: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(250,247,242,0.35);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  user-select: none;
}
.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(250,247,242,0.35), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 0.7;  transform: scaleY(0.65); }
}


/* ══════════════════════════════════════════════════════════
   INFO STRIP
══════════════════════════════════════════════════════════ */
.info-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 56px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.info-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  color: var(--red);
}
.info-icon svg { width: 100%; height: 100%; }

.info-text h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--red);
  margin-bottom: 6px;
}
.info-text p,
.info-text a {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mid);
  transition: color var(--t);
}
.info-text a:hover { color: var(--red); }


/* ══════════════════════════════════════════════════════════
   VIDEO SECTION
══════════════════════════════════════════════════════════ */
.video-section {
  background: var(--cream-mid);
  padding: var(--sec-pad) 0;
  text-align: center;
}
.video-section .section-title  { margin-bottom: 12px; }
.video-section .section-sub    { margin-bottom: 52px; }

.video-wrap {
  max-width: 840px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 64px rgba(44,26,14,0.18);
}
.video-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  /* YouTube thumbnail as cover + warm dark overlay for play button visibility */
  background:
    linear-gradient(rgba(26,15,6,0.42), rgba(44,26,14,0.48)),
    url('https://img.youtube.com/vi/g7tg9us4MaI/maxresdefault.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--t);
}
.video-placeholder:hover {
  background:
    linear-gradient(rgba(26,15,6,0.28), rgba(44,26,14,0.32)),
    url('https://img.youtube.com/vi/g7tg9us4MaI/maxresdefault.jpg') center / cover no-repeat;
}

.vp-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.vp-play {
  width: 72px;
  height: 72px;
  transition: transform var(--t);
}
.video-placeholder:hover .vp-play { transform: scale(1.12); }
.vp-label {
  font-size: 13px;
  color: rgba(250,247,242,0.55);
  letter-spacing: 0.08em;
}


/* ══════════════════════════════════════════════════════════
   ABOUT PREVIEW — numbered editorial
══════════════════════════════════════════════════════════ */
.about-preview {
  background: var(--cream);
  padding: var(--sec-pad) 0;
}

.about-header {
  text-align: center;
  margin-bottom: 72px;
}
.about-intro {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto;
}

/* 3-column numbered grid */
.num-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.num-item {
  position: relative;
  padding: 36px 28px 40px;
  background: var(--cream);
  border-top: 2px solid var(--cream-dark);
  overflow: hidden;
  transition: border-color var(--t);
}
.num-item:hover { border-top-color: var(--gold); }

/* Large watermark number — absolute, bottom-right */
.num-watermark {
  position: absolute;
  bottom: -28px;
  right: -8px;
  font-family: var(--ff-display);
  font-size: 148px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(44,26,14,0.07);
  user-select: none;
  pointer-events: none;
  transition: -webkit-text-stroke-color var(--t);
}
.num-item:hover .num-watermark {
  -webkit-text-stroke-color: rgba(201,168,76,0.12);
}

.num-label {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.num-item h3 {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 12px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.num-item p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-mid);
  position: relative;
  z-index: 1;
}

.about-cta { text-align: center; }


/* ══════════════════════════════════════════════════════════
   MINISTRIES PREVIEW
══════════════════════════════════════════════════════════ */
.ministries-preview {
  background: var(--brown);
  padding: var(--sec-pad) 0;
  text-align: center;
}
.ministries-preview .section-title { margin-bottom: 12px; }

/* 2×2 grid */
.ministry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 52px 0 48px;
  text-align: left;
}

.ministry-card {
  background: rgba(250,247,242,0.04);
  border: 1px solid rgba(250,247,242,0.07);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  padding: 36px 32px 36px 30px;
  transition: transform var(--t), background var(--t), border-left-color var(--t), box-shadow var(--t);
}
.ministry-card:hover {
  transform: translateY(-6px);
  background: rgba(250,247,242,0.07);
  border-left-color: var(--gold);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}

.ministry-icon {
  width: 38px;
  height: 38px;
  color: var(--gold);
  margin-bottom: 20px;
  transition: color var(--t);
}
.ministry-card:hover .ministry-icon { color: #e0c46a; }
.ministry-icon svg { width: 100%; height: 100%; }

.ministry-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.25;
}
.ministry-card p {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(250,247,242,0.55);
}

.ministries-cta { margin-top: 4px; }


/* ══════════════════════════════════════════════════════════
   JOIN CTA
══════════════════════════════════════════════════════════ */
.join-cta {
  position: relative;
  padding: 110px 48px;
  background-color: var(--brown);
  background-image: url('../Images/web_images/64f7be55956c303e96074e01_IMG-2865.jpg');
  background-size: cover;
  background-position: center 40%;
  text-align: center;
  overflow: hidden;
}
.join-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,15,6,0.82) 0%,
    rgba(44,26,14,0.88) 100%
  );
  pointer-events: none;
}
.join-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cline x1='40' y1='10' x2='40' y2='70' stroke='%23C9A84C' stroke-width='0.7'/%3E%3Cline x1='22' y1='28' x2='58' y2='28' stroke='%23C9A84C' stroke-width='0.7'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.join-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.join-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 66px);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 14px;
  word-break: keep-all;
  overflow-wrap: normal;
}
.join-content p {
  font-size: 15px;
  color: rgba(250,247,242,0.55);
  margin-bottom: 40px;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: normal;
}

.subscribe-form {
  display: flex;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(250,247,242,0.18);
  max-width: 440px;
  margin: 0 auto;
}
.subscribe-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(250,247,242,0.07);
  border: none;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 13.5px;
  outline: none;
  min-width: 0;
}
.subscribe-form input::placeholder { color: rgba(250,247,242,0.38); }
.subscribe-form button {
  padding: 14px 26px;
  background: var(--red);
  color: #fff;
  border: none;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t);
  white-space: nowrap;
}
.subscribe-form button:hover { background: var(--red-dark); }


/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--brown-dark);
  border-top: 1px solid rgba(250,247,242,0.06);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 48px 60px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.5fr;
  gap: 56px;
  align-items: start;
}

/* Brand col */
.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 18px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(250,247,242,0.45);
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-verse {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-style: italic;
}

/* Nav cols */
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 6px;
}
.footer-nav-col a {
  font-size: 13px;
  color: rgba(250,247,242,0.48);
  transition: color var(--t);
  letter-spacing: 0.02em;
}
.footer-nav-col a:hover { color: var(--gold); }

/* Contact col */
.footer-contact h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.9);
  margin-bottom: 20px;
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(250,247,242,0.48);
  margin-bottom: 12px;
  line-height: 1.6;
  transition: color var(--t);
}
.footer-contact-row:hover { color: rgba(250,247,242,0.8); }
.footer-contact-row svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

/* Bottom bar */
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 22px 48px;
  border-top: 1px solid rgba(250,247,242,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(250,247,242,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,247,242,0.45);
  transition: all var(--t);
}
.social-btn svg { width: 14px; height: 14px; }
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-copy {
  font-size: 11.5px;
  color: rgba(250,247,242,0.28);
  letter-spacing: 0.02em;
  text-align: center;
}

.scroll-top-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(250,247,242,0.14);
  border-radius: 50%;
  background: none;
  color: rgba(250,247,242,0.45);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
}
.scroll-top-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { gap: 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .num-grid    { gap: 20px; }
  .ministry-grid { gap: 16px; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --sec-pad:  72px;
    --nav-h:    66px;
    --nav-h-sm: 54px;
  }

  .container    { padding: 0 24px; }
  .nav-inner    { padding: 0 24px; }
  .mobile-menu  { padding: 16px 24px 24px; }

  /* Hide desktop nav */
  .nav-links,
  .btn-nav-contact { display: none; }

  .hamburger { display: flex; }

  /* Hero */
  .hero {
    background-attachment: scroll; /* Fix iOS fixed-bg bug */
    background-position: center center;
  }
  .hero-content { padding: 64px 24px; }
  .hero-scroll-hint { display: none; }
  .hero-watermark { opacity: 0.04; right: -20px; }

  /* Info strip */
  .info-grid { grid-template-columns: 1fr; gap: 26px; }

  /* Video */
  .video-section .section-sub { padding: 0 16px; }

  /* About */
  .num-grid { grid-template-columns: 1fr; }
  .num-watermark { font-size: 100px; bottom: -18px; right: -4px; }

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

  /* Join */
  .join-cta { padding: 80px 24px; }
  .subscribe-form { flex-direction: column; border-radius: 4px; }
  .subscribe-form input  { border-radius: 3px 3px 0 0; }
  .subscribe-form button { border-radius: 0 0 3px 3px; padding: 14px; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 56px 24px 40px;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    padding: 20px 24px;
    gap: 14px;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL  (≤ 480px)
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title { font-size: 48px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
