/* ===================================================
   Earl Grey Congregation of Jehovah's Witnesses
   Main Stylesheet — style.css
   =================================================== */

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

/* ===================================================
   CSS Custom Properties (Design Tokens)
   =================================================== */
:root {
  --primary:      #1B2A4A;
  --primary-light:#243660;
  --secondary:    #C8A951;
  --secondary-dark:#A88A30;
  --accent:       #2E86AB;
  --bg-light:     #F8F9FA;
  --bg-section:   #F0F2F5;
  --bg-dark:      #0F1A2E;
  --bg-darker:    #080F1C;
  --text-dark:    #2D3436;
  --text-light:   #FFFFFF;
  --text-muted:   #636E72;
  --border:       #E9ECEF;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow:       0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.16);
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   all 0.3s ease;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --header-height:80px;
}

/* ===================================================
   Reset & Base
   =================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul { list-style: none; }

/* ===================================================
   Typography
   =================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===================================================
   Layout Utilities
   =================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-light);
}

.section-dark p {
  color: rgba(255,255,255,0.72);
}

.section-alt {
  background: var(--bg-section);
}

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

.section-header .label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===================================================
   Grid & Flex
   =================================================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ===================================================
   Buttons
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.btn-primary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,81,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--text-light);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* ===================================================
   HEADER
   =================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(15, 26, 46, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(11, 19, 35, 0.98);
  box-shadow: var(--shadow-lg);
  height: 68px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

/* Logo + Brand */
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo {
  width: auto;
  height: 50px;
  flex-shrink: 0;
  object-fit: contain;
  transition: var(--transition);
}

.site-header.scrolled .header-logo {
  height: 42px;
}

.header-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.brand-location {
  font-size: 0.72rem;
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-list a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--text-light);
  background: rgba(200,169,81,0.15);
}

.nav-list a.active {
  color: var(--secondary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger:hover {
  background: rgba(255,255,255,0.08);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--bg-darker);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  z-index: 999;
  flex-direction: column;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  display: block;
  padding: 14px 28px;
  color: rgba(255,255,255,0.80);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--secondary);
  background: rgba(200,169,81,0.06);
  padding-left: 36px;
}

/* ===================================================
   Page Offset (for fixed header)
   =================================================== */
main {
  margin-top: var(--header-height);
}

/* ===================================================
   HERO SECTIONS
   =================================================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-full {
  min-height: 92vh;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 8s ease;
}

.hero:hover .hero-img {
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,26,46,0.92) 0%,
    rgba(27,42,74,0.78) 50%,
    rgba(15,26,46,0.60) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--secondary);
}

.hero h1 {
  color: var(--text-light);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}

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

/* ===================================================
   CARDS
   =================================================== */
.card {
  background: var(--text-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card-body {
  padding: 28px;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(200,169,81,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.card-body h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Feature Cards (icon-top style) */
.feature-card {
  background: var(--text-light);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(200,169,81,0.30);
}

.feature-card .icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(200,169,81,0.15), rgba(200,169,81,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

/* Info Card (horizontal layout) */
.info-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--text-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(200,169,81,0.25);
}

.info-card .icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(200,169,81,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.info-card h4 {
  margin-bottom: 6px;
  color: var(--primary);
}

/* ===================================================
   SCHEDULE / MEETING TABLE
   =================================================== */
.schedule-block {
  background: var(--text-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.schedule-header {
  background: var(--primary);
  color: var(--text-light);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.schedule-header .sch-icon {
  font-size: 1.6rem;
}

.schedule-header h3 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.schedule-header span {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 500;
}

.schedule-body {
  padding: 24px 28px;
}

.sch-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.sch-item:last-child { border-bottom: none; }

.sch-item .sch-time {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary);
  white-space: nowrap;
  min-width: 80px;
  padding-top: 2px;
}

.sch-item .sch-desc h4 {
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.sch-item .sch-desc p {
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

/* ===================================================
   FAQ ACCORDION
   =================================================== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(200,169,81,0.35);
}

.faq-question {
  width: 100%;
  background: var(--text-light);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-section);
}

.faq-question .faq-icon {
  font-size: 1.4rem;
  color: var(--secondary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--bg-light);
}

.faq-answer-inner {
  padding: 20px 24px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ===================================================
   STEPS / HOW IT WORKS
   =================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--text-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(200,169,81,0.30);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h4 {
  margin-bottom: 10px;
}

/* ===================================================
   QUOTE / BIBLE VERSE
   =================================================== */
.bible-quote {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bible-quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 14rem;
  font-family: Georgia, serif;
  color: rgba(200,169,81,0.10);
  line-height: 1;
}

.bible-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.bible-quote cite {
  font-size: 0.9rem;
  color: var(--secondary);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ===================================================
   CONTACT ELEMENTS
   =================================================== */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--bg-section);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-info-item:hover {
  background: var(--text-light);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-info-item h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--secondary);
  margin-bottom: 6px;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact-info-item a:hover {
  color: var(--primary);
}

/* Contact Form */
.contact-form {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  background: var(--text-light);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.12);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-success {
  display: none;
  padding: 18px 24px;
  background: rgba(46,134,75,0.12);
  border: 1.5px solid rgba(46,134,75,0.30);
  border-radius: var(--radius-sm);
  color: #1a6b35;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* ===================================================
   MAP EMBED
   =================================================== */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===================================================
   IMAGE GALLERY / MOSAIC
   =================================================== */
.img-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.img-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-mosaic img:hover {
  transform: scale(1.04);
}

.img-mosaic .img-main {
  grid-row: span 2;
}

/* ===================================================
   STATS BANNER
   =================================================== */
.stats-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-item p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--primary);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(27,42,74,0.78);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,0.72);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Footer brand */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.3;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

/* Footer nav column */
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--secondary);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.60);
  font-size: 0.93rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--secondary);
  font-size: 1.1rem;
}

.footer-links a:hover {
  color: var(--text-light);
  padding-left: 4px;
}

/* Footer contact */
.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact-item .fc-icon {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.65);
}

.footer-contact-item a:hover {
  color: var(--secondary);
}

/* Footer bottom bar */
.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom a {
  color: var(--secondary);
}

/* ===================================================
   SCROLL ANIMATION (AOS-lite)
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===================================================
   BADGES & TAGS
   =================================================== */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.badge-gold {
  background: rgba(200,169,81,0.15);
  color: var(--secondary-dark);
}

.badge-navy {
  background: rgba(27,42,74,0.10);
  color: var(--primary);
}

/* ===================================================
   INLINE SPLIT SECTION
   =================================================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-section .split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}

.split-section .split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.split-section:hover .split-img img {
  transform: scale(1.04);
}

.split-content .label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}

.split-content h2 {
  margin-bottom: 20px;
}

.split-content p {
  margin-bottom: 28px;
}

/* ===================================================
   PAGE HERO (non-home)
   =================================================== */
.page-hero {
  min-height: 420px;
}

/* ===================================================
   BREADCRUMB
   =================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.breadcrumb a {
  color: var(--secondary);
}

.breadcrumb span {
  color: rgba(255,255,255,0.35);
}

/* ===================================================
   UTILITY
   =================================================== */
.text-center { text-align: center; }
.text-gold { color: var(--secondary); }
.text-white { color: var(--text-light); }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: span 2; }
}

@media (max-width: 868px) {
  .split-section { grid-template-columns: 1fr; }
  .split-section .split-img { height: 300px; order: -1; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .img-mosaic { grid-template-rows: auto; }
  .img-mosaic .img-main { grid-row: span 1; }
}

@media (max-width: 768px) {
  :root { --header-height: 68px; }

  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .section { padding: 64px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > *:first-child { grid-column: span 1; }

  .hero-full { min-height: 75vh; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }

  .contact-form { padding: 28px 22px; }
  .bible-quote { padding: 40px 28px; }
  .bible-quote::before { font-size: 8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .brand-name { font-size: 0.88rem; }
}
