:root {
  --navy: #081a30;
  --navy-2: #102c4d;
  --gold: #d4a94e;
  --gold-light: #f0d792;
  --cream: #fbf7ee;
  --white: #ffffff;
  --text: #27364a;
  --muted: #68778a;
  --line: #e5dfd2;
  --shadow: 0 18px 50px rgba(8, 26, 48, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(8,26,48,.08);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--navy); background: var(--gold-light);
  font-size: 22px;
}
.brand strong, .brand small { display: block; line-height: 1.15; }
.brand strong { font-family: "Cormorant Garamond", serif; font-size: 20px; }
.brand small { color: var(--muted); letter-spacing: .12em; text-transform: uppercase; font-size: 10px; }

.main-nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; }
.main-nav a:hover { color: var(--gold); }
.nav-cta { padding: 10px 18px; border-radius: 999px; background: var(--navy); color: white !important; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 5px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 30%, rgba(212,169,78,.22), transparent 25%),
    linear-gradient(135deg, var(--cream), #ffffff 55%, #eef3f7);
}
.hero-glow { position: absolute; inset: auto -10% -50% 45%; height: 600px; background: rgba(212,169,78,.08); border-radius: 50%; }
.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 70px;
  padding-block: 100px;
}
.eyebrow {
  margin: 0 0 14px;
  color: #9a7025;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
}
.eyebrow.light { color: var(--gold-light); }
h1, h2, h3 { font-family: "Cormorant Garamond", serif; color: var(--navy); line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(54px, 7vw, 86px); margin-bottom: 24px; }
h2 { font-size: clamp(40px, 5vw, 60px); margin-bottom: 20px; }
h3 { font-size: 27px; margin-bottom: 10px; }
.hero-text { max-width: 680px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; gap: 14px; margin: 32px 0; flex-wrap: wrap; }
.button {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 52px; padding: 0 24px; border-radius: 999px;
  font-weight: 700; border: 1px solid transparent; cursor: pointer;
}
.primary { background: var(--navy); color: white; }
.primary:hover { background: var(--navy-2); transform: translateY(-2px); }
.secondary { border-color: var(--navy); color: var(--navy); }
.secondary:hover { background: var(--navy); color: white; }
.hero-points { display: flex; gap: 18px; flex-wrap: wrap; color: var(--navy); font-size: 13px; font-weight: 700; }
.hero-points span::before { content: "◆"; color: var(--gold); margin-right: 8px; }

.hero-art {
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border-radius: 40px 40px 160px 160px;
  overflow: hidden;
  padding: 40px 25px;
  color: white;
  background:
    linear-gradient(rgba(8,26,48,.05), rgba(8,26,48,.8)),
    linear-gradient(160deg, #8eb3ca 0%, #d9c48c 45%, #152c45 100%);
  box-shadow: var(--shadow);
}
.cross-light {
  position: absolute;
  top: 42px;
  font-size: 110px;
  color: white;
  text-shadow: 0 0 30px rgba(255,255,255,.9), 0 0 90px rgba(240,215,146,.9);
}
.highway {
  width: 78%;
  height: 280px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
  transform: perspective(500px) rotateX(56deg);
  transform-origin: bottom;
}
.highway span { background: linear-gradient(to top, rgba(255,255,255,.72), rgba(255,255,255,.08)); border-radius: 6px; }
.hero-art p { margin: 10px 0 0; letter-spacing: .22em; font-size: 11px; font-weight: 700; }

.verse-banner { background: var(--navy); color: white; text-align: center; padding: 30px 0; }
.verse-banner p { font-family: "Cormorant Garamond", serif; font-size: 29px; margin: 0 0 4px; }
.verse-banner strong { color: var(--gold-light); font-size: 13px; letter-spacing: .12em; }

.section { padding: 110px 0; }
.section-heading { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-heading > p:last-child { color: var(--muted); }

.timeline { max-width: 900px; margin: auto; position: relative; }
.timeline::before { content: ""; position: absolute; left: 76px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.timeline-item { display: grid; grid-template-columns: 125px 1fr; gap: 30px; margin-bottom: 30px; position: relative; }
.year {
  position: relative; z-index: 2;
  width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy); color: white; border: 7px solid white;
  box-shadow: 0 0 0 1px var(--line);
  font-family: "Cormorant Garamond", serif; font-size: 24px; font-weight: 700;
}
.timeline-card { padding: 28px 30px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 10px 30px rgba(8,26,48,.06); }
.timeline-card p { margin-bottom: 0; color: var(--muted); }

.vision-section { background: var(--navy); color: rgba(255,255,255,.78); }
.vision-section h2 { color: white; }
.vision-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.vision-symbol {
  min-height: 470px; border: 1px solid rgba(255,255,255,.16); border-radius: 32px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  overflow: hidden; padding: 35px; background: linear-gradient(180deg, #173a60, #081a30);
}
.sun { position: absolute; align-self: center; margin-bottom: 265px; font-size: 100px; color: var(--gold-light); text-shadow: 0 0 45px rgba(240,215,146,.75); }
.road-lines { width: 85%; height: 320px; display: grid; grid-template-columns: repeat(8, 1fr); gap: 5px; transform: perspective(450px) rotateX(55deg); transform-origin: bottom; }
.road-lines span { background: linear-gradient(to top, rgba(240,215,146,.9), rgba(240,215,146,.05)); }
.vision-symbol small { letter-spacing: .15em; color: var(--gold-light); }

.paths-section { background: var(--cream); }
.paths-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.path-card { padding: 30px 25px; min-height: 250px; background: white; border-radius: 20px; border: 1px solid var(--line); transition: .25s ease; }
.path-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.path-card span { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--gold-light); color: var(--navy); font-weight: 800; font-size: 13px; margin-bottom: 28px; }
.path-card p { color: var(--muted); font-size: 14px; }

.scripture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.scripture-grid article { padding: 38px; border-radius: 24px; background: var(--navy); color: rgba(255,255,255,.76); }
.scripture-grid h3 { color: white; font-size: 36px; margin: 18px 0; }
.scripture-grid span { color: var(--gold-light); font-size: 11px; letter-spacing: .14em; font-weight: 700; }

.mission-section { padding: 30px 0 100px; }
.mission-box { background: linear-gradient(135deg, var(--navy), #1c4b77); border-radius: 30px; padding: 55px; display: flex; justify-content: space-between; align-items: center; gap: 30px; color: white; }
.mission-box h2 { color: white; max-width: 760px; margin-bottom: 0; font-size: clamp(36px, 4vw, 54px); }
.light-button { background: white; color: var(--navy); white-space: nowrap; }

.contact-section { background: #f3f5f7; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-grid > div > p { color: var(--muted); }
.contact-details { margin-top: 30px; padding: 25px; border-left: 4px solid var(--gold); background: white; }
.contact-details p { margin: 8px 0; }
.contact-form { background: white; border-radius: 24px; padding: 34px; box-shadow: var(--shadow); }
.contact-form label { display: block; font-weight: 700; font-size: 13px; color: var(--navy); margin-bottom: 18px; }
.contact-form input, .contact-form textarea {
  width: 100%; margin-top: 8px; border: 1px solid #dce2e8; border-radius: 12px;
  padding: 14px 15px; font: inherit; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,169,78,.15); }

footer { background: #061323; color: rgba(255,255,255,.65); padding: 35px 0; }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 30px; font-size: 13px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand strong { color: white; }
.footer-brand p { margin: 2px 0 0; }

@media (max-width: 980px) {
  .main-nav {
    position: absolute; left: 20px; right: 20px; top: 86px;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: white; border-radius: 18px; box-shadow: var(--shadow); padding: 16px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px; }
  .menu-button { display: block; }
  .hero-grid, .vision-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-block: 75px; gap: 45px; }
  .hero-art { max-width: 600px; width: 100%; margin: auto; }
  .paths-grid { grid-template-columns: repeat(2, 1fr); }
  .scripture-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand strong { font-size: 17px; }
  h1 { font-size: 48px; }
  .section { padding: 80px 0; }
  .hero-grid { min-height: auto; }
  .hero-art { min-height: 390px; }
  .timeline::before { left: 30px; }
  .timeline-item { grid-template-columns: 62px 1fr; gap: 15px; }
  .year { width: 62px; height: 62px; border-width: 5px; font-size: 18px; }
  .timeline-card { padding: 22px; }
  .paths-grid { grid-template-columns: 1fr; }
  .mission-box { padding: 35px 25px; flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 24px; }
  .footer-wrap { flex-direction: column; text-align: center; }
}
