/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy-950: #060a12;
  --navy-900: #0a0f1a;
  --navy-800: #10182a;
  --navy-700: #182238;
  --gold: #d4af6a;
  --gold-light: #f0d99a;
  --ivory: #f8f4ec;
  --grey: #a9b2c3;
  --radius: 14px;
  --max-w: 1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background: var(--ivory);
  color: var(--navy-900);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.2;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; color: var(--navy-900); }
.section-title.center { text-align: center; }
.section-sub { color: #5a6373; max-width: 560px; margin: 0 auto 40px; }
.section-sub.center { text-align: center; }

.section-lead {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  color: #5a6373;
}
.section-lead p { margin-bottom: 14px; }

.how-extra {
  max-width: 760px;
  margin: 36px auto 0;
  text-align: center;
  color: #5a6373;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow-dark { color: #b98a3d; }
.eyebrow-center { text-align: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-950);
  box-shadow: 0 8px 24px rgba(212, 175, 106, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212, 175, 106, 0.45); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-outline-light {
  border: 2px solid var(--navy-950);
  color: var(--navy-950);
}
.btn-outline-light:hover { background: rgba(6,10,18,0.08); transform: translateY(-2px); }
.btn-nav {
  padding: 10px 22px;
  font-size: 0.85rem;
}
.lang-switch {
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: center;
}
.lang-switch:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6, 10, 18, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.logo span { color: var(--gold); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #d7dce4;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: #fff;
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(6,10,18,0.78) 0%, rgba(8,13,22,0.58) 45%, rgba(10,15,26,0.9) 100%),
    url('hero-banner.jpg') center 22% / cover no-repeat;
  overflow: hidden;
  padding-top: 72px;
}
@media (max-width: 720px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(6,10,18,0.8) 0%, rgba(8,13,22,0.62) 45%, rgba(10,15,26,0.92) 100%),
      url('hero-banner-mobile.jpg') 68% 15% / cover no-repeat;
  }
}
.aurora-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 20px 30px, #fff, transparent),
    radial-gradient(1.5px 1.5px at 120px 90px, #fff, transparent),
    radial-gradient(1px 1px at 220px 50px, #fff, transparent),
    radial-gradient(1.5px 1.5px at 320px 140px, #fff, transparent),
    radial-gradient(1px 1px at 400px 20px, #fff, transparent),
    radial-gradient(1.5px 1.5px at 480px 100px, #fff, transparent),
    radial-gradient(1px 1px at 560px 60px, #fff, transparent),
    radial-gradient(1.5px 1.5px at 650px 130px, #fff, transparent),
    radial-gradient(1px 1px at 780px 40px, #fff, transparent),
    radial-gradient(1.5px 1.5px at 900px 90px, #fff, transparent);
  background-repeat: repeat;
  background-size: 1000px 300px;
  opacity: 0.6;
}
.aurora {
  position: absolute;
  width: 140%;
  height: 60%;
  left: -20%;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  mix-blend-mode: screen;
  animation: drift 16s ease-in-out infinite alternate;
}
.a1 { top: -10%; background: radial-gradient(ellipse at center, #3ddc97, transparent 70%); animation-duration: 18s; }
.a2 { top: 5%; background: radial-gradient(ellipse at center, #7b6ce0, transparent 70%); animation-delay: -6s; animation-duration: 22s; }
.a3 { top: -5%; background: radial-gradient(ellipse at center, #4fb8d6, transparent 70%); animation-delay: -12s; animation-duration: 20s; }
@keyframes drift {
  0% { transform: translateX(-4%) translateY(0) scale(1); }
  100% { transform: translateX(4%) translateY(2%) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px 80px;
}
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 6vw, 3.6rem);
  max-width: 900px;
  margin: 0 auto 22px;
}
.hero-sub {
  color: var(--grey);
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 1.05rem;
}
.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.hero-stats div { display: flex; flex-direction: column; align-items: center; }
.hero-stats strong { color: var(--gold-light); font-size: 1.6rem; font-family: Georgia, serif; }
.hero-stats span { color: var(--grey); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.about-text p { color: #48505f; margin-bottom: 16px; }
.about-cards {
  display: grid;
  gap: 20px;
}
.mini-card {
  background: #fff;
  border: 1px solid #eee2cd;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 6px 20px rgba(20, 20, 40, 0.04);
}
.mini-icon { font-size: 1.6rem; }
.mini-card h3 { font-size: 1.05rem; margin: 10px 0 6px; }
.mini-card p { color: #6a7180; font-size: 0.92rem; }
.about-cta { text-align: center; margin-top: 44px; }

/* ============ HOW IT WORKS ============ */
.how { background: #fff; }
.offline-meet { background: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 30px 24px;
  position: relative;
  border: 1px solid #eee2cd;
}
.step-num {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 10px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: #6a7180; font-size: 0.92rem; }

/* ============ PROFILES ============ */
.profiles.alt { background: #fff; }
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.profile-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #eee2cd;
  box-shadow: 0 6px 20px rgba(20,20,40,0.05);
  text-align: center;
  padding-bottom: 18px;
  transition: transform 0.2s ease;
}
.profiles.alt .profile-card { background: var(--ivory); }
.profile-card:hover { transform: translateY(-4px); }
.profile-photo {
  display: block;
  height: 190px;
  position: relative;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  cursor: pointer;
}
.profile-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 35%, rgba(212,175,106,0.35), transparent 60%);
}
.daddy1 { background: linear-gradient(135deg, #1c2b45, #0e1626); }
.daddy2 { background: linear-gradient(135deg, #24384f, #101b2c); }
.daddy3 { background: linear-gradient(135deg, #1a2a3d, #0c1420); }
.daddy4 { background: linear-gradient(135deg, #26364a, #0f1a29); }
.baby1 { background: linear-gradient(135deg, #4a2b45, #1e1026); }
.baby2 { background: linear-gradient(135deg, #532f4f, #24122c); }
.baby3 { background: linear-gradient(135deg, #45283f, #1a0e20); }
.baby4 { background: linear-gradient(135deg, #4f2c4b, #221029); }
.verified-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.92);
  color: #1a7a3a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 1;
}
.profile-card h3 { margin-top: 16px; font-size: 1.1rem; }
.location { color: #8a92a0; font-size: 0.85rem; margin: 4px 0; }
.tagline { color: #5a6373; font-size: 0.85rem; padding: 0 14px; }
.profiles-cta { text-align: center; margin-top: 40px; }

/* ============ WHY US ============ */
.why { background: linear-gradient(180deg, var(--navy-950), var(--navy-800)); }
.why .eyebrow, .why .section-title { color: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
}
.why-icon { font-size: 2rem; }
.why-card h3 { color: var(--gold-light); font-size: 1.1rem; margin: 14px 0 8px; }
.why-card p { color: var(--grey); font-size: 0.9rem; }

/* ============ SUCCESS STORY ============ */
.success { background: #fff; }
.success-inner { max-width: 780px; }
.success-quote {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 46px 40px;
  position: relative;
  border: 1px solid #eee2cd;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 0;
  display: block;
  margin-bottom: 6px;
}
.success-quote p { color: #3d4452; font-size: 1.05rem; font-style: italic; margin-bottom: 20px; }
.success-quote footer { font-weight: 700; color: var(--navy-900); font-style: normal; }
.verified-tag { color: #1a7a3a; font-size: 0.8rem; margin-left: 8px; }

/* ============ FAQ ============ */
.faq { background: var(--ivory); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid #eee2cd;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navy-900);
}
.faq-toggle { color: var(--gold); font-size: 1.3rem; transition: transform 0.25s ease; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 220px; padding-bottom: 20px; }
.faq-answer p { color: #5a6373; font-size: 0.92rem; }

/* ============ CITIES ============ */
.cities { background: #fff; }
.city-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.city-card {
  background: var(--ivory);
  border: 1px solid #eee2cd;
  border-radius: var(--radius);
  padding: 26px 14px;
  text-align: center;
}
.city-card h3 { font-size: 1rem; margin-bottom: 6px; }
.city-card p { color: #8a92a0; font-size: 0.82rem; }

/* ============ FINAL CTA ============ */
.cta-final {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 80px 0;
  text-align: center;
}
.cta-inner h2 { color: var(--navy-950); font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 14px; }
.cta-inner p { color: #3a2e12; max-width: 560px; margin: 0 auto 30px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-950); padding: 70px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: var(--grey); font-size: 0.88rem; margin-top: 14px; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--grey); font-size: 0.88rem; margin-bottom: 10px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 24px; text-align: center; }
.footer-bottom p { color: #6a7180; font-size: 0.78rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6, 10, 18, 0.97);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 24px 24px;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a { padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .main-nav a.lang-switch { border-bottom: none; align-self: flex-start; margin-top: 6px; }
  .main-nav .btn-nav { text-align: center; margin-top: 10px; border: 1px solid var(--gold); }
  .nav-toggle { display: flex; }

  .section { padding: 60px 0; }
  .steps { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-stats { gap: 28px; }
}

@media (max-width: 460px) {
  .profile-card h3 { font-size: 1rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; }
}
