@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Epilogue:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy:       #0f1f3d;
  --navy-mid:   #1a3158;
  --navy-light: #243f6a;
  --gold:       #c9963c;
  --gold-light: #e8b55a;
  --cream:      #faf7f2;
  --warm-white: #ffffff;
  --text-dark:  #1a1a2e;
  --text-mid:   #3d4b6b;
  --text-light: #6b7a99;
  --border:     #e2ddd6;
  --serif:      'DM Serif Display', Georgia, serif;
  --sans:       'Epilogue', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(15,31,61,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--warm-white);
  letter-spacing: 0.01em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold-light); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* HERO */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,150,60,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,150,60,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,60,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36,63,106,0.6) 0%, transparent 70%);
  bottom: -50px; left: -50px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 780px;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--warm-white);
  margin-bottom: 24px;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 15px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--gold-light); color: var(--gold-light); }
.hero-fit-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}
.hero-fit-link a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* SHARED SECTION STYLES */
section { padding: 100px 40px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.75;
  font-weight: 300;
}

/* WHO THIS IS FOR */
#who { background: var(--warm-white); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}
.who-cards { display: flex; flex-direction: column; gap: 20px; }
.who-card {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 6px 6px 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.who-card:hover { transform: translateX(4px); }
.who-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.who-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.65; }
.who-community {
  background: var(--navy);
  border-radius: 8px;
  padding: 36px;
  color: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.who-community-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.who-community p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  font-weight: 300;
}
.who-community strong { color: var(--gold-light); font-weight: 600; }

/* SERVICES */
#services { background: var(--cream); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 32px;
}
.package-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: background 0.25s;
}
.package-card:hover { box-shadow: 0 12px 40px rgba(15,31,61,0.1); transform: translateY(-3px); }
.package-card:hover::before { background: var(--gold); }
.package-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1rem;
  border-radius: 4px;
  margin-bottom: 18px;
}
.package-title { font-family: var(--serif); font-size: 1.35rem; color: var(--navy); margin-bottom: 8px; }
.package-tagline { font-size: 0.88rem; color: var(--text-light); margin-bottom: 20px; font-style: italic; }
.package-includes { list-style: none; margin-bottom: 24px; flex: 1; }
.package-includes li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  line-height: 1.5;
}
.package-includes li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.package-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--cream);
  padding: 10px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.btn-package {
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--warm-white);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}
.btn-package:hover { background: var(--navy-light); }
.services-also {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 20px;
  border: 1px dashed var(--border);
  border-radius: 6px;
}
.services-also strong { color: var(--text-mid); }

/* HOW IT WORKS */
#how { background: var(--navy); }
#how .section-title { color: var(--warm-white); }
#how .section-eyebrow { color: var(--gold-light); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
}
.step {
  padding: 36px 28px;
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.step:last-child { border-right: none; }
.step:hover { background: rgba(255,255,255,0.07); }
.step-num { font-family: var(--serif); font-size: 2.5rem; color: rgba(201,150,60,0.3); line-height: 1; margin-bottom: 16px; }
.step-title { font-weight: 700; font-size: 0.95rem; color: var(--warm-white); margin-bottom: 10px; }
.step p { font-size: 0.88rem; color: rgba(255,255,255,0.58); line-height: 1.65; font-weight: 300; }
.steps-guarantee {
  margin-top: 32px;
  padding: 20px 28px;
  background: rgba(201,150,60,0.1);
  border: 1px solid rgba(201,150,60,0.25);
  border-radius: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  text-align: center;
}
.steps-guarantee strong { color: var(--gold-light); }

/* WHY TRUST */
#why { background: var(--warm-white); }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 56px;
}
.trust-items { display: flex; flex-direction: column; gap: 28px; }
.trust-item { display: flex; gap: 20px; }
.trust-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.trust-item-title { font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.trust-item p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }
.trust-example {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}
.trust-example-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.trust-example h4 { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; }
.trust-example p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.trust-example a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; font-size: 0.9rem; }
.trust-example a:hover { color: var(--navy); }

/* FAQ */
#faq { background: var(--cream); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.faq-item {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.faq-q {
  padding: 22px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.15s;
  user-select: none;
}
.faq-q:hover { background: var(--cream); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
  font-weight: 300;
}
.faq-item.open .faq-icon { background: var(--gold); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 18px 24px 22px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* ABOUT */
#about { background: var(--warm-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.about-badge {
  background: var(--navy);
  border-radius: 8px;
  padding: 40px 36px;
  color: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.about-badge::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(201,150,60,0.12);
}
.about-initials { font-family: var(--serif); font-size: 3.5rem; color: var(--gold-light); line-height: 1; margin-bottom: 20px; }
.about-name { font-weight: 700; font-size: 1.1rem; color: var(--warm-white); margin-bottom: 6px; }
.about-title-small { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.about-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  padding: 5px 12px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.12);
}
.about-content p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.about-content p strong { color: var(--navy); font-weight: 600; }
.about-commitment {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* CONTACT */
#contact { background: var(--navy); position: relative; overflow: hidden; }
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,150,60,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,150,60,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
#contact .section-eyebrow { color: var(--gold-light); }
#contact .section-title { color: var(--warm-white); }
#contact .section-lead { color: rgba(255,255,255,0.65); }
.contact-bullets { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.contact-bullets li { display: flex; gap: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.contact-bullets li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-weight: 700; }
.pilot-box {
  margin-top: 36px;
  padding: 20px 24px;
  background: rgba(201,150,60,0.1);
  border: 1px solid rgba(201,150,60,0.25);
  border-radius: 6px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.pilot-box strong { color: var(--gold-light); }
.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 40px 36px;
}
.contact-form h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--warm-white); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--warm-white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy); color: var(--warm-white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.form-submit:hover { background: var(--gold-light); }
.form-alt { margin-top: 20px; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; }
.form-alt a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.form-success { display: none; text-align: center; padding: 40px 20px; color: var(--warm-white); }
.form-success .check { font-size: 2.5rem; margin-bottom: 16px; }
.form-success h4 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 10px; color: var(--gold-light); }
.form-success p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

/* FOOTER */
footer {
  background: #0a1526;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-logo { font-family: var(--serif); font-size: 1.1rem; color: rgba(255,255,255,0.7); text-decoration: none; }
.foot-logo span { color: var(--gold); }
footer p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.8rem; }
footer a:hover { color: var(--gold-light); }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { 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; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 72px 24px; }
  #hero { padding: 100px 24px 72px; }
  .who-grid, .trust-grid, .about-grid, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .packages-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* Logo image in nav */
.nav-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
