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

:root {
  color-scheme: light only;
}

:root {
  --navy: #06264a;
  --navy-md: #0d3d6e;
  --signal: #68afff;
  --signal-d: #4a8fd4;
  --gold: #b8973a;
  --gold-lt: #d4af5a;
  --parch: #f5f0e8;
  --parch-d: #ede6d8;
  --text: #2a2a2a;
  --muted: #666;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--parch);
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 40px 100px;
}

/* Radial glow behind mark */
.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(104, 175, 255, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Subtle dot grid */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(104, 175, 255, 0.12) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 30%,
    transparent 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 700px;
  text-align: center;
}

/* Mark */
.hero-mark svg {
  width: 160px;
  height: 130px;
}

/* Wordmark */
.hero-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-wordmark .name {
  font-family: "Cinzel", serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #ece8e0;
  line-height: 1;
}

.hero-wordmark .name span {
  color: var(--signal);
  opacity: 0.8;
}

.hero-rule {
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 14px auto;
  opacity: 0.5;
}

.hero-wordmark .tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.hero-verse {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
}

.hero-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 36px;
  border: 1px solid rgba(104, 175, 255, 0.4);
  color: var(--signal);
  font-family: "Cinzel", serif;
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(104, 175, 255, 0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.hero-cta:hover::before {
  transform: scaleX(1);
}
.hero-cta:hover {
  border-color: rgba(104, 175, 255, 0.7);
}

/* scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.3;
  animation: bob 2s ease-in-out infinite;
  z-index: 2;
}

.scroll-hint span {
  font-family: "Cinzel", serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: white;
  text-transform: uppercase;
}

.scroll-hint svg {
  width: 16px;
}

@keyframes bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ─────────────────────────────────────────
   SECTION BASE
───────────────────────────────────────── */
section {
  padding: 100px 40px;
  max-width: 820px;
  margin: 0 auto;
}

.section-label {
  font-family: "Cinzel", serif;
  font-size: 15px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--signal-d);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: "";
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 28px;
}

h2 em {
  font-style: italic;
  color: var(--navy-md);
}

.body-text {
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: #3a3a3a;
}

.body-text + .body-text {
  margin-top: 20px;
}

/* ─────────────────────────────────────────
   WHY SECTION — dark band
───────────────────────────────────────── */
.why-band {
  background: var(--navy);
  padding: 0;
}

.why-band section {
  padding: 100px 40px;
}

.why-band h2 {
  color: #ece8e0;
}

.why-band h2 em {
  color: var(--signal);
  font-style: italic;
}

.why-band .body-text {
  color: rgba(255, 255, 255, 0.65);
}

.scripture-block {
  margin: 40px 0;
  padding: 28px 36px;
  border-left: 2px solid var(--gold);
  background: rgba(104, 175, 255, 0.04);
}

.scripture-block p {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.scripture-block cite {
  display: block;
  margin-top: 12px;
  font-family: "Cinzel", serif;
  font-size: 15px;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-style: normal;
  opacity: 0.7;
}

/* ─────────────────────────────────────────
   ME
───────────────────────────────────────── */

.me-band {
  background: #ffffff;
}

/* ─────────────────────────────────────────
   WHAT — offer cards
───────────────────────────────────────── */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.offer-card {
  padding: 28px 28px 24px;
  background: white;
  border-radius: 4px;
  border-top: 2px solid var(--gold);
  box-shadow: 0 2px 20px rgba(6, 38, 74, 0.07);
}

.offer-card h3 {
  font-family: "Cinzel", serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.offer-card p {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--navy);
}

.not-card {
  grid-column: 1 / -1;
  padding: 22px 28px;
  background: var(--parch);
  border-radius: 4px;
  border-left: 2px solid rgba(104, 175, 255, 0.4);
}

.not-card p {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--navy);
  font-style: italic;
}

/* ─────────────────────────────────────────
   WHO — light alternating band
───────────────────────────────────────── */
.who-band {
  background: #ffffff;
  padding: 0;
}

.who-band section {
  padding: 100px 40px;
}

.who-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.who-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.who-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(184, 151, 58, 0.15);
}

.who-item p {
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #3a3a3a;
}

.who-item p strong {
  font-weight: 500;
  color: var(--navy);
}

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
.steps {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: steps;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(6, 38, 74, 0.08);
  counter-increment: steps;
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: "Cinzel", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--navy);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--navy);
  margin-top: 2px;
}

.step-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-content p {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--navy);
}

/* ─────────────────────────────────────────
   CONTACT — dark footer band
───────────────────────────────────────── */
.contact-band {
  background: #ffffff;
  padding: 0;
}

.contact-band section {
  padding: 100px 40px;
  max-width: 620px;
}

.contact-band h2 {
  color: var(--navy);
}
.contact-band h2 em {
  color: var(--navy-md);
}
.contact-band .body-text {
  color: var(--navy);
}
.contact-band .section-label {
  color: var(--navy-md);
}
.contact-band .section-label::after {
  background: var(--gold);
}

.contact-form {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  background: #ffffff;
  border: 1px solid rgba(6, 38, 74, 0.2);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.field select option {
  background: #ffffff;
  color: var(--navy);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--signal-d);
  background: #ffffff;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(6, 38, 74, 0.25);
}

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

.submit-btn {
  align-self: flex-start;
  padding: 15px 40px;
  background: transparent;
  border: 1px solid rgba(6, 38, 74, 0.4);
  color: var(--navy);
  font-family: "Cinzel", serif;
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 38, 74, 0.05);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.submit-btn:hover::before {
  transform: scaleX(1);
}
.submit-btn:hover {
  border-color: var(--navy);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: #04182e;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-name {
  font-family: "Cinzel", serif;
  font-size: 15px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.8);
}

.footer-verse {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes pulse-ring {
  0% {
    r: 28;
    opacity: 0.2;
  }
  100% {
    r: 58;
    opacity: 0;
  }
}
@keyframes pulse-ring-2 {
  0% {
    r: 38;
    opacity: 0.13;
  }
  100% {
    r: 70;
    opacity: 0;
  }
}
@keyframes pulse-ring-3 {
  0% {
    r: 50;
    opacity: 0.07;
  }
  100% {
    r: 82;
    opacity: 0;
  }
}

.ring-1 {
  animation: pulse-ring 3s ease-out infinite;
}
.ring-2 {
  animation: pulse-ring-2 3s ease-out 0.8s infinite;
}
.ring-3 {
  animation: pulse-ring-3 3s ease-out 1.6s infinite;
}

/* fade-in on load */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-inner > * {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}
.hero-inner > *:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-inner > *:nth-child(2) {
  animation-delay: 0.3s;
}
.hero-inner > *:nth-child(3) {
  animation-delay: 0.5s;
}
.hero-inner > *:nth-child(4) {
  animation-delay: 0.65s;
}
.hero-inner > *:nth-child(5) {
  animation-delay: 0.8s;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 640px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  section {
    padding: 72px 24px;
  }
  .hero {
    padding: 60px 24px 80px;
  }
}

/* ─────────────────────────────────────────
   FORCE LIGHT MODE — override system dark mode
───────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  :root {
    --navy: #06264a;
    --navy-md: #0d3d6e;
    --signal: #68afff;
    --signal-d: #4a8fd4;
    --gold: #b8973a;
    --gold-lt: #d4af5a;
    --parch: #f5f0e8;
    --parch-d: #ede6d8;
    --text: #2a2a2a;
    --muted: #666;
  }

  body {
    background: #ede6d8 !important;
    color: #2a2a2a !important;
  }

  input,
  select,
  textarea,
  button {
    background-color: #ffffff !important;
    color: #06264a !important;
    border-color: rgba(6, 38, 74, 0.2) !important;
  }

  option {
    background-color: #ffffff !important;
    color: #06264a !important;
  }
}
