@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cinzel+Decorative:wght@400;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
  --bg:         #F8F3EA;
  --bg-2:       #EDE4D2;
  --bg-3:       #DDD4BF;
  --bg-dark:    #1E0F07;
  --text:       #2C1810;
  --text-mid:   #5C3D25;
  --text-light: #8B6040;
  --gold:       #C8962A;
  --gold-light: #E8BF5A;
  --gold-glow:  rgba(200,150,42,0.35);
  --gold-dark:  #9B7018;
  --accent:     #7A3D1A;
  --accent-dark:#4A2010;
  --white:      #FEFCF7;
  --shadow:     rgba(44,24,16,0.12);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: 0.3s ease;
  --font-head:  'Cinzel', serif;
  --font-body:  'Lora', serif;
}

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

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

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

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

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

/* ─── NAVIGATION ─────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(30, 15, 7, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

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

/* LOGO */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-svg { width: 44px; height: 54px; flex-shrink: 0; }

.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }

.logo-name {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.logo-tagline {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 0.58rem;
  color: var(--text-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(248,243,234,0.8);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(200,150,42,0.1);
}

.nav-cta {
  font-family: var(--font-head) !important;
  font-size: 0.78rem !important;
  background: var(--gold) !important;
  color: var(--bg-dark) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--bg-dark) !important;
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO ───────────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 5, 2, 0.35) 0%,
    rgba(10, 5, 2, 0.20) 40%,
    rgba(10, 5, 2, 0.50) 100%
  );
  z-index: 1;
}

.hero-content { z-index: 2; }
.hero-scroll   { z-index: 2; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 860px;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-verse {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  color: rgba(248,243,234,0.75);
  margin-bottom: 2.4rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 1.0s forwards;
}

.hero-verse cite {
  display: block;
  font-style: normal;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 0.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 1.3s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(200,150,42,0.4);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200,150,42,0.55);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(248,243,234,0.4);
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(200,150,42,0.08);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 2s forwards;
}

.hero-scroll span {
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(248,243,234,0.5);
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(200,150,42,0.6);
  border-bottom: 1.5px solid rgba(200,150,42,0.6);
  transform: rotate(45deg);
  animation: bounce 1.8s infinite;
}

/* ─── PAGE HERO (inner pages) ────────────────────── */

.page-hero {
  padding: 140px 2rem 80px;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,150,42,0.12) 0%, transparent 70%);
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero .eyebrow {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-hero p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(248,243,234,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── SECTION LAYOUT ─────────────────────────────── */

section { padding: 80px 2rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-bottom: 3rem;
}

.section-sub.light { color: rgba(248,243,234,0.7); }

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ─── SERVICES CARDS ─────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 2px 16px var(--shadow);
  border: 1px solid rgba(200,150,42,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px var(--shadow);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(200,150,42,0.15), rgba(200,150,42,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(200,150,42,0.2);
}

.service-icon svg { width: 26px; height: 26px; stroke: var(--gold); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── WHY US / FEATURES ──────────────────────────── */

.why-us { background: var(--bg-dark); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item { text-align: center; }

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  background: rgba(200,150,42,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200,150,42,0.25);
}

.feature-icon svg { width: 30px; height: 30px; stroke: var(--gold-light); }

.feature-item h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.feature-item p {
  font-size: 0.93rem;
  color: rgba(248,243,234,0.65);
  line-height: 1.6;
}

/* ─── STATS ──────────────────────────────────────── */

.stats { background: var(--bg-2); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ─── SCRIPTURE BANNER ───────────────────────────── */

.scripture-banner {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, #5C2E0E 100%);
  text-align: center;
  padding: 80px 2rem;
  position: relative;
  overflow: hidden;
}

.scripture-banner::before {
  content: '\2020';
  position: absolute;
  font-size: 20rem;
  color: rgba(255,255,255,0.03);
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: serif;
  pointer-events: none;
  line-height: 1;
}

.scripture-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}

.scripture-ref {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* ─── PROCESS ────────────────────────────────────── */

.process { background: var(--bg-2); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(200,150,42,0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process-step h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.process-step p { font-size: 0.92rem; color: var(--text-mid); }

/* ─── CTA BAND ───────────────────────────────────── */

.cta-band {
  background: var(--bg-dark);
  text-align: center;
  padding: 80px 2rem;
}

.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band p {
  font-size: 1.05rem;
  color: rgba(248,243,234,0.65);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ─── CONTACT FORM ───────────────────────────────── */

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-info p { color: var(--text-mid); margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.contact-detail svg { width: 20px; height: 20px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }

.contact-detail span { font-size: 0.95rem; color: var(--text-mid); }

.contact-verse {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
}

.contact-verse p {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}

.contact-verse cite {
  font-style: normal;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
}

/* FORM */
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: 0 4px 24px var(--shadow); }

.form-group { margin-bottom: 1.4rem; }

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

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--bg-3);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,42,0.12);
}

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

.form-group select { cursor: pointer; }

.cf-turnstile { margin: 1rem 0; }

.form-submit { margin-top: 0.5rem; }

.form-submit .btn { width: 100%; justify-content: center; }

.form-success, .form-error {
  display: none;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.form-success { background: rgba(70,130,60,0.1); color: #2D6B23; border: 1px solid rgba(70,130,60,0.3); }
.form-error   { background: rgba(180,50,40,0.1); color: #8B2020; border: 1px solid rgba(180,50,40,0.3); }

/* ─── PLAN OF SALVATION ──────────────────────────── */

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

.salvation-intro {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}

.salvation-intro p { font-size: 1.1rem; color: var(--text-mid); }

.salvation-steps { display: flex; flex-direction: column; gap: 3rem; max-width: 820px; margin: 0 auto; }

.salvation-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.step-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bg-dark);
  box-shadow: 0 4px 16px rgba(200,150,42,0.3);
}

.step-body h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.step-body p { font-size: 0.97rem; color: var(--text-mid); margin-bottom: 0.8rem; }

.step-verse {
  padding: 1rem 1.2rem;
  background: var(--bg-2);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.step-verse cite {
  display: block;
  font-style: normal;
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-top: 0.4rem;
}

.salvation-prayer {
  max-width: 720px;
  margin: 4rem auto 0;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.salvation-prayer h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.prayer-text {
  font-style: italic;
  font-size: 1rem;
  color: rgba(248,243,234,0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.salvation-prayer p.note {
  font-size: 0.88rem;
  color: rgba(248,243,234,0.45);
  font-style: normal;
  margin: 0;
}

/* ─── FOOTER ─────────────────────────────────────── */

.site-footer {
  background: var(--bg-dark);
  padding: 60px 2rem 30px;
  color: rgba(248,243,234,0.6);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(248,243,234,0.08);
}

.footer-brand .site-logo { margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(248,243,234,0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(248,243,234,0.55);
  transition: color var(--transition);
}

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

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(248,243,234,0.3);
}

.footer-bottom a { color: rgba(248,243,234,0.45); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── SCROLL ANIMATIONS ──────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── KEYFRAMES ──────────────────────────────────── */

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ─── RESPONSIVE ─────────────────────────────────── */

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav-links { display: none; flex-direction: column; gap: 0; background: rgba(18,8,4,0.97); position: absolute; top: 80px; left: 0; right: 0; padding: 1rem 0 1.5rem; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.7rem 2rem; width: 100%; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .salvation-step { grid-template-columns: 1fr; }
  .step-marker { margin-bottom: 0.5rem; }
}
